From 5af9af62ac4aef7abb83056e7bab7fb0869e1634 Mon Sep 17 00:00:00 2001 From: Malin E Date: Tue, 2 Aug 2022 10:49:21 +0200 Subject: [PATCH 01/81] Resize joystick axis and button lists on initialization --- apps/OpenSpace/main.cpp | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/apps/OpenSpace/main.cpp b/apps/OpenSpace/main.cpp index 95065776ac..c347f3bba2 100644 --- a/apps/OpenSpace/main.cpp +++ b/apps/OpenSpace/main.cpp @@ -226,21 +226,20 @@ void checkJoystickStatus() { state.isConnected = true; state.name = glfwGetJoystickName(i); - std::fill(state.axes.begin(), state.axes.end(), 0.f); - std::fill(state.buttons.begin(), state.buttons.end(), JoystickAction::Idle); - // Check axes and buttons glfwGetJoystickAxes(i, &state.nAxes); glfwGetJoystickButtons(i, &state.nButtons); + state.axes.resize(state.nAxes); + state.buttons.resize(state.nButtons); + + std::fill(state.axes.begin(), state.axes.end(), 0.f); + std::fill(state.buttons.begin(), state.buttons.end(), JoystickAction::Idle); } const float* axes = glfwGetJoystickAxes(i, &state.nAxes); - state.axes.resize(state.nAxes); std::memcpy(state.axes.data(), axes, state.nAxes * sizeof(float)); const unsigned char* buttons = glfwGetJoystickButtons(i, &state.nButtons); - state.buttons.resize(state.nButtons); - for (int j = 0; j < state.nButtons; ++j) { const bool currentlyPressed = buttons[j] == GLFW_PRESS; From b29b646cec33a692236f5e7af6b69f2e1e912789 Mon Sep 17 00:00:00 2001 From: Ylva Selling Date: Fri, 5 Aug 2022 14:27:01 -0400 Subject: [PATCH 02/81] Change how the calculation of the fine tuning is done --- .../skybrowser/include/targetbrowserpair.h | 2 +- modules/skybrowser/skybrowsermodule_lua.inl | 9 +++------ modules/skybrowser/src/targetbrowserpair.cpp | 20 ++++++------------- 3 files changed, 10 insertions(+), 21 deletions(-) diff --git a/modules/skybrowser/include/targetbrowserpair.h b/modules/skybrowser/include/targetbrowserpair.h index 1dffd0b3ac..6c6cd9ee1d 100644 --- a/modules/skybrowser/include/targetbrowserpair.h +++ b/modules/skybrowser/include/targetbrowserpair.h @@ -55,7 +55,7 @@ public: // Mouse interaction void startFinetuningTarget(); - void fineTuneTarget(const glm::vec2& startMouse, const glm::vec2& translation); + void fineTuneTarget(const glm::vec2& translation); void synchronizeAim(); // Browser diff --git a/modules/skybrowser/skybrowsermodule_lua.inl b/modules/skybrowser/skybrowsermodule_lua.inl index 088dff0a33..224c77b448 100644 --- a/modules/skybrowser/skybrowsermodule_lua.inl +++ b/modules/skybrowser/skybrowsermodule_lua.inl @@ -693,18 +693,15 @@ namespace { * and third is the end position of the drag. */ [[codegen::luawrap]] void finetuneTargetPosition(std::string identifier, - glm::vec2 startPosition, - glm::vec2 endPosition) + glm::dvec2 translation) { using namespace openspace; SkyBrowserModule* module = global::moduleEngine->module(); TargetBrowserPair* pair = module->pair(identifier); if (pair) { - glm::vec2 startScreenSpace = skybrowser::pixelToScreenSpace2d(startPosition); - glm::vec2 endScreenSpace = skybrowser::pixelToScreenSpace2d(endPosition); - glm::vec2 translation = endScreenSpace - startScreenSpace; - pair->fineTuneTarget(startScreenSpace, translation); + pair->fineTuneTarget(translation); + } } diff --git a/modules/skybrowser/src/targetbrowserpair.cpp b/modules/skybrowser/src/targetbrowserpair.cpp index aa02d8766a..a3627d2b01 100644 --- a/modules/skybrowser/src/targetbrowserpair.cpp +++ b/modules/skybrowser/src/targetbrowserpair.cpp @@ -85,22 +85,14 @@ void TargetBrowserPair::startFinetuningTarget() { // The fine tune of the target is a way to "drag and drop" the target with right click // drag on the sky browser window. This is to be able to drag the target around when it // has a very small field of view -void TargetBrowserPair::fineTuneTarget(const glm::vec2& startMouse, - const glm::vec2& translation) +void TargetBrowserPair::fineTuneTarget(const glm::vec2& translation) { - glm::vec2 fineTune = _browser->fineTuneVector(translation); - glm::vec2 endMouse = startMouse + fineTune; - - // Translation world - glm::dvec3 startWorld = skybrowser::localCameraToGalactic( - glm::vec3(startMouse, skybrowser::ScreenSpaceZ) + glm::dvec2 startRaDec = skybrowser::cartesianToSpherical( + skybrowser::galacticToEquatorial(glm::normalize(_startTargetPosition)) ); - glm::dvec3 endWorld = skybrowser::localCameraToGalactic( - glm::vec3(endMouse, skybrowser::ScreenSpaceZ) - ); - - glm::dvec3 translationWorld = endWorld - startWorld; - aimTargetGalactic(_startTargetPosition + translationWorld); + glm::dvec2 newRaDec = startRaDec + glm::dvec2(translation); + glm::dvec3 newCartesian = skybrowser::sphericalToCartesian(newRaDec); + aimTargetGalactic(skybrowser::equatorialToGalactic(newCartesian)); } void TargetBrowserPair::synchronizeAim() { From 02500983032ce30339854bd8dabea5eb4af2fd02 Mon Sep 17 00:00:00 2001 From: Ylva Selling Date: Fri, 12 Aug 2022 12:24:54 -0400 Subject: [PATCH 03/81] Add rounder border to target and browser, and add border radius to sky browser topic --- .../skybrowser/include/renderableskytarget.h | 4 +- .../skybrowser/include/targetbrowserpair.h | 1 + modules/skybrowser/include/wwtcommunicator.h | 5 ++- modules/skybrowser/shaders/target_fs.glsl | 44 ++++++++++++++----- modules/skybrowser/skybrowsermodule.cpp | 3 +- modules/skybrowser/skybrowsermodule_lua.inl | 14 ++++++ .../skybrowser/src/renderableskytarget.cpp | 5 +++ modules/skybrowser/src/targetbrowserpair.cpp | 6 +++ modules/skybrowser/src/wwtcommunicator.cpp | 12 ++++- 9 files changed, 80 insertions(+), 14 deletions(-) diff --git a/modules/skybrowser/include/renderableskytarget.h b/modules/skybrowser/include/renderableskytarget.h index 1cc6972253..148e8e2a9d 100644 --- a/modules/skybrowser/include/renderableskytarget.h +++ b/modules/skybrowser/include/renderableskytarget.h @@ -50,6 +50,7 @@ public: void setRatio(float ratio); void setColor(glm::ivec3 color); void setVerticalFov(double fov); + void setBorderRadius(double radius); // Display void highlight(const glm::ivec3& addition); @@ -62,7 +63,8 @@ private: properties::FloatProperty _crossHairSize; properties::FloatProperty _showRectangleThreshold; properties::FloatProperty _lineWidth; - + + double _borderRadius = 0.0; double _verticalFov = 10.0; glm::ivec3 _borderColor = glm::ivec3(230); diff --git a/modules/skybrowser/include/targetbrowserpair.h b/modules/skybrowser/include/targetbrowserpair.h index 1dffd0b3ac..977836388a 100644 --- a/modules/skybrowser/include/targetbrowserpair.h +++ b/modules/skybrowser/include/targetbrowserpair.h @@ -77,6 +77,7 @@ public: void setVerticalFov(double vfov); void setEquatorialAim(const glm::dvec2& aim); void setBorderColor(const glm::ivec3& color); + void setBorderRadius(double radius); void setBrowserRatio(float ratio); void setVerticalFovWithScroll(float scroll); void setImageCollectionIsLoaded(bool isLoaded); diff --git a/modules/skybrowser/include/wwtcommunicator.h b/modules/skybrowser/include/wwtcommunicator.h index 7e40e116df..cc458fedd2 100644 --- a/modules/skybrowser/include/wwtcommunicator.h +++ b/modules/skybrowser/include/wwtcommunicator.h @@ -60,11 +60,13 @@ public: glm::dvec2 fieldsOfView() const; std::vector selectedImages() const; std::vector opacities() const; + double borderRadius() const; void setImageCollectionIsLoaded(bool isLoaded); void setVerticalFov(double vfov); void setEquatorialAim(glm::dvec2 equatorial); void setBorderColor(glm::ivec3 color); + void setBorderRadius(double radius); void setTargetRoll(double roll); void updateBorderColor() const; @@ -73,7 +75,8 @@ public: protected: void setIdInBrowser(const std::string& id) const; std::deque>::iterator findSelectedImage(int i); - + + double _borderRadius = 0; double _verticalFov = 10.0f; glm::ivec3 _borderColor = glm::ivec3(70); glm::dvec2 _equatorialAim = glm::dvec2(0.0); diff --git a/modules/skybrowser/shaders/target_fs.glsl b/modules/skybrowser/shaders/target_fs.glsl index 724b294588..844b68fc76 100644 --- a/modules/skybrowser/shaders/target_fs.glsl +++ b/modules/skybrowser/shaders/target_fs.glsl @@ -36,6 +36,7 @@ uniform float lineWidth; uniform float ratio; uniform vec4 lineColor; uniform float fov; +uniform float borderRadius; uniform bool additiveBlending; uniform float opacity; @@ -45,7 +46,6 @@ uniform vec3 multiplyColor; // This compensates for the optical illusion that vertical lines appear thinner const float VerticalThickness = 1.1; - float createLine(float lineCenter, float lineWidth, float coord) { // Calculate edges of line float startEdge = lineCenter - (lineWidth * 0.5); @@ -54,10 +54,6 @@ float createLine(float lineCenter, float lineWidth, float coord) { return step(startEdge, coord) - step(endEdge, coord); } -float createFilledRectangle(float width, float height, vec2 coord) { - return createLine(0.5, width, coord.x) * createLine(0.5, height, coord.y); -} - float createCrosshair(in float linewidth, in float ratio, in vec2 coord) { const float Center = 0.5; float crosshairVertical = createLine(Center, linewidth * VerticalThickness, coord.x); @@ -66,6 +62,13 @@ float createCrosshair(in float linewidth, in float ratio, in vec2 coord) { return crosshairHorizontal + crosshairVertical; } +float roundedRectangle(vec2 coord, vec2 size, vec4 radius) { + radius.xy = (coord.x > 0.0) ? radius.xy : radius.zw; + radius.x = (coord.y > 0.0) ? radius.x : radius.y; + + vec2 q = abs(coord) - size + radius.x; + return min(max(q.x, q.y),0.0) + length(max(q, 0.0)) - radius.x; +} Fragment getFragment() { float rectangle = 0.0; @@ -78,13 +81,34 @@ Fragment getFragment() { crosshair *= crossHairBox; if (showRectangle) { - float lineWidthX = lineWidth * 2 * VerticalThickness; float lineWidthY = lineWidth * 2; - float height = ((fov * 0.5)/maxWwtFov)-lineWidthX; + float lineWidthX = lineWidth * 2 * VerticalThickness; + float height = ((fov * 0.5)/maxWwtFov)-lineWidth; float width = (height * ratio) - lineWidthY; - float outerEdge = createFilledRectangle(width, height, vs_st); - float innerEdge = createFilledRectangle(width-lineWidthY, height-lineWidthX, vs_st); - rectangle = outerEdge - innerEdge; + vec2 size = vec2(width, height); + + // The radius of the corners (in pixels) clockwise starting in the top left + vec4 radius = vec4(clamp(borderRadius * 0.5 * min(height, width), 0.0, 0.5 * min(height, width))); + + // Calculate distance to edge + float distance = roundedRectangle(vs_st.xy - vec2(0.5), size / 2.0f, radius); + + // How soft the edges should be (in pixels) + // Higher values could be used to simulate a drop shadow + float edgeSoftness = 2.0f; + // Smooth the result (free antialiasing) + float smoothedAlpha = 1.0f - smoothstep(0.0f, edgeSoftness, distance); + + // Border + float borderThickness = lineWidth * 0.5; + float borderSoftness = 0.000f; + float borderAlpha = 1.0f-smoothstep(borderThickness - borderSoftness, borderThickness, abs(distance)); + + // Colors + float borderColor = 1.0; + float bgColor = 0.0; + + rectangle = mix(bgColor, mix(bgColor, borderColor, borderAlpha), smoothedAlpha); } float result = clamp(crosshair + rectangle, 0.0, 1.0); diff --git a/modules/skybrowser/skybrowsermodule.cpp b/modules/skybrowser/skybrowsermodule.cpp index 9bac48e218..8c158c4787 100644 --- a/modules/skybrowser/skybrowsermodule.cpp +++ b/modules/skybrowser/skybrowsermodule.cpp @@ -523,7 +523,8 @@ scripting::LuaLibrary SkyBrowserModule::luaLibrary() const { codegen::lua::ShowAllTargetsAndBrowsers, codegen::lua::PointSpaceCraft, codegen::lua::GetWwtImageCollectionUrl, - codegen::lua::StopAnimations + codegen::lua::StopAnimations, + codegen::lua::SetBorderRadius } }; } diff --git a/modules/skybrowser/skybrowsermodule_lua.inl b/modules/skybrowser/skybrowsermodule_lua.inl index 088dff0a33..a91f0c7cc2 100644 --- a/modules/skybrowser/skybrowsermodule_lua.inl +++ b/modules/skybrowser/skybrowsermodule_lua.inl @@ -628,6 +628,20 @@ namespace { } } +/** + * Takes an identifier to a sky browser and a radius value between 0 and 1, where 0 is + * rectangular and 1 is circular + */ +[[codegen::luawrap]] void setBorderRadius(std::string identifier, double radius) { + using namespace openspace; + + SkyBrowserModule* module = global::moduleEngine->module(); + TargetBrowserPair* pair = module->pair(identifier); + if (pair) { + pair->setBorderRadius(radius); + } +} + /** * Sets the screen space size of the sky browser to the numbers specified by the input * [x, y]. diff --git a/modules/skybrowser/src/renderableskytarget.cpp b/modules/skybrowser/src/renderableskytarget.cpp index ebfe9ab4b3..bc8413f6b6 100644 --- a/modules/skybrowser/src/renderableskytarget.cpp +++ b/modules/skybrowser/src/renderableskytarget.cpp @@ -151,6 +151,7 @@ void RenderableSkyTarget::render(const RenderData& data, RendererTasks&) { _shader->setUniform("ratio", _ratio); _shader->setUniform("lineColor", color); _shader->setUniform("fov", static_cast(_verticalFov)); + _shader->setUniform("borderRadius", static_cast(_borderRadius)); glm::dvec3 objectPositionWorld = glm::dvec3( glm::translate( @@ -231,4 +232,8 @@ void RenderableSkyTarget::setVerticalFov(double fov) { _verticalFov = fov; } +void RenderableSkyTarget::setBorderRadius(double radius) { + _borderRadius = radius; +} + } // namespace openspace diff --git a/modules/skybrowser/src/targetbrowserpair.cpp b/modules/skybrowser/src/targetbrowserpair.cpp index aa02d8766a..a0ed56d8df 100644 --- a/modules/skybrowser/src/targetbrowserpair.cpp +++ b/modules/skybrowser/src/targetbrowserpair.cpp @@ -196,6 +196,7 @@ ghoul::Dictionary TargetBrowserPair::dataAsDictionary() const { res.setValue("selectedImages", selectedImages()); res.setValue("scale", static_cast(_browser->scale())); res.setValue("opacities", _browser->opacities()); + res.setValue("borderRadius", _browser->borderRadius()); std::vector> copies = displayCopies(); std::vector> showCopies = _browser->showDisplayCopies(); @@ -278,6 +279,11 @@ void TargetBrowserPair::setBorderColor(const glm::ivec3& color) { _browser->setBorderColor(color); } +void TargetBrowserPair::setBorderRadius(double radius) { + _browser->setBorderRadius(radius); + _targetRenderable->setBorderRadius(radius); +} + void TargetBrowserPair::setBrowserRatio(float ratio) { _browser->setRatio(ratio); _targetRenderable->setRatio(ratio); diff --git a/modules/skybrowser/src/wwtcommunicator.cpp b/modules/skybrowser/src/wwtcommunicator.cpp index 05c025497e..b700ba8c12 100644 --- a/modules/skybrowser/src/wwtcommunicator.cpp +++ b/modules/skybrowser/src/wwtcommunicator.cpp @@ -94,6 +94,10 @@ std::vector WwtCommunicator::opacities() const { return opacities; } +double WwtCommunicator::borderRadius() const { + return _borderRadius; +} + void WwtCommunicator::setTargetRoll(double roll) { _targetRoll = roll; } @@ -105,7 +109,7 @@ void WwtCommunicator::setVerticalFov(double vfov) { void WwtCommunicator::setWebpageBorderColor(glm::ivec3 color) const { std::string stringColor = fmt::format("{},{},{}", color.x, color.y, color.z); - std::string scr = "document.body.style.backgroundColor = 'rgb(" + stringColor + ")';"; + std::string scr = "setBackgroundColor('rgb(" + stringColor + ")');"; executeJavascript(scr); } @@ -119,6 +123,12 @@ void WwtCommunicator::setBorderColor(glm::ivec3 color) { _borderColorIsDirty = true; } +void WwtCommunicator::setBorderRadius(double radius) { + _borderRadius = radius; + std::string scr = "setBorderRadius(" + std::to_string(radius) + ");"; + executeJavascript(scr); +} + void WwtCommunicator::updateBorderColor() const { setWebpageBorderColor(_borderColor); } From 74f6f0803aeeead3242d768e2669b835aba16ea0 Mon Sep 17 00:00:00 2001 From: Ylva Selling Date: Fri, 12 Aug 2022 15:01:32 -0400 Subject: [PATCH 04/81] Fix some bugs with the border radius --- modules/skybrowser/include/screenspaceskybrowser.h | 1 + modules/skybrowser/shaders/target_fs.glsl | 4 ++++ modules/skybrowser/skybrowsermodule_lua.inl | 3 ++- modules/skybrowser/src/screenspaceskybrowser.cpp | 7 ++++++- 4 files changed, 13 insertions(+), 2 deletions(-) diff --git a/modules/skybrowser/include/screenspaceskybrowser.h b/modules/skybrowser/include/screenspaceskybrowser.h index 6c470bed53..58365d0e49 100644 --- a/modules/skybrowser/include/screenspaceskybrowser.h +++ b/modules/skybrowser/include/screenspaceskybrowser.h @@ -78,6 +78,7 @@ private: bool _isSyncedWithWwt = false; bool _textureDimensionsIsDirty = false; bool _ratioIsDirty = false; + bool _radiusIsDirty = false; bool _isInitialized = false; float _ratio = 1.f; diff --git a/modules/skybrowser/shaders/target_fs.glsl b/modules/skybrowser/shaders/target_fs.glsl index 844b68fc76..87a398c43f 100644 --- a/modules/skybrowser/shaders/target_fs.glsl +++ b/modules/skybrowser/shaders/target_fs.glsl @@ -54,6 +54,10 @@ float createLine(float lineCenter, float lineWidth, float coord) { return step(startEdge, coord) - step(endEdge, coord); } +float createFilledRectangle(float width, float height, vec2 coord) { + return createLine(0.5, width, coord.x) * createLine(0.5, height, coord.y); +} + float createCrosshair(in float linewidth, in float ratio, in vec2 coord) { const float Center = 0.5; float crosshairVertical = createLine(Center, linewidth * VerticalThickness, coord.x); diff --git a/modules/skybrowser/skybrowsermodule_lua.inl b/modules/skybrowser/skybrowsermodule_lua.inl index a91f0c7cc2..711d1fdc97 100644 --- a/modules/skybrowser/skybrowsermodule_lua.inl +++ b/modules/skybrowser/skybrowsermodule_lua.inl @@ -431,7 +431,8 @@ namespace { glm::vec3 positionTarget = glm::vec3(0.9f, 0.4f, -2.1f); glm::dvec3 galacticTarget = skybrowser::localCameraToGalactic(positionTarget); std::string guiPath = "/Sky Browser"; - std::string url = "http://wwt.openspaceproject.com/1/openspace/"; + //std::string url = "http://wwt.openspaceproject.com/1/openspace/"; + std::string url = "http://localhost:8000/openspace"; double fov = 70.0; double size = skybrowser::sizeFromFov(fov, galacticTarget); diff --git a/modules/skybrowser/src/screenspaceskybrowser.cpp b/modules/skybrowser/src/screenspaceskybrowser.cpp index d73a164b5f..d10a855ca5 100644 --- a/modules/skybrowser/src/screenspaceskybrowser.cpp +++ b/modules/skybrowser/src/screenspaceskybrowser.cpp @@ -201,6 +201,7 @@ void ScreenSpaceSkyBrowser::updateTextureResolution() { _browserPixeldimensions = glm::ivec2(newSize); _texture->setDimensions(glm::ivec3(newSize, 1)); _objectSize = glm::ivec3(_texture->dimensions()); + _radiusIsDirty = true; } void ScreenSpaceSkyBrowser::addDisplayCopy(const glm::vec3& raePosition, int nCopies) { @@ -324,8 +325,12 @@ void ScreenSpaceSkyBrowser::update() { _isInitialized = false; } - WwtCommunicator::update(); + if (_radiusIsDirty) { + setBorderRadius(_borderRadius); + } + ScreenSpaceRenderable::update(); + WwtCommunicator::update(); } void ScreenSpaceSkyBrowser::setVerticalFovWithScroll(float scroll) { From a4b145b2facebebe3c11ac0db769d0fbc42d4f59 Mon Sep 17 00:00:00 2001 From: Malin E Date: Fri, 19 Aug 2022 09:16:21 +0200 Subject: [PATCH 05/81] Only loop over the joystick axis that have been bound --- src/interaction/joystickcamerastates.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/interaction/joystickcamerastates.cpp b/src/interaction/joystickcamerastates.cpp index 93260f2945..cd1be5bca7 100644 --- a/src/interaction/joystickcamerastates.cpp +++ b/src/interaction/joystickcamerastates.cpp @@ -28,6 +28,7 @@ #include #include #include +#include #include #include @@ -63,7 +64,10 @@ void JoystickCameraStates::updateStateFromInput( } int nAxes = joystickInputStates.numAxes(joystickInputState.name); - for (int i = 0; i < nAxes; ++i) { + for (int i = 0; + i < std::min(static_cast(nAxes), joystick->axisMapping.size()); + ++i) + { AxisInformation t = joystick->axisMapping[i]; if (t.type == AxisType::None) { continue; From 12be6d5ab7fe807fc5cf226231201ab2e690aaef Mon Sep 17 00:00:00 2001 From: Ylva Selling Date: Thu, 25 Aug 2022 16:43:30 -0400 Subject: [PATCH 06/81] Make code backwards compatible --- modules/skybrowser/src/wwtcommunicator.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/skybrowser/src/wwtcommunicator.cpp b/modules/skybrowser/src/wwtcommunicator.cpp index 59b7138e17..2f699840e6 100644 --- a/modules/skybrowser/src/wwtcommunicator.cpp +++ b/modules/skybrowser/src/wwtcommunicator.cpp @@ -236,7 +236,7 @@ void WwtCommunicator::setBorderRadius(double radius) { void WwtCommunicator::updateBorderColor() const { std::string script = fmt::format( - "document.body.style.backgroundColor = 'rgb({},{},{})';", + "setBackgroundColor('rgb({},{},{})');", _borderColor.x, _borderColor.y, _borderColor.z ); executeJavascript(script); From 77822656b247989095e0beb8ad2af045bc0534db Mon Sep 17 00:00:00 2001 From: Ylva Selling Date: Thu, 25 Aug 2022 16:59:40 -0400 Subject: [PATCH 07/81] Update wwt url to the correct link --- modules/skybrowser/skybrowsermodule_lua.inl | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/modules/skybrowser/skybrowsermodule_lua.inl b/modules/skybrowser/skybrowsermodule_lua.inl index fb273952ed..35798b4e9c 100644 --- a/modules/skybrowser/skybrowsermodule_lua.inl +++ b/modules/skybrowser/skybrowsermodule_lua.inl @@ -431,8 +431,7 @@ namespace { glm::vec3 positionTarget = glm::vec3(0.9f, 0.4f, -2.1f); glm::dvec3 galacticTarget = skybrowser::localCameraToGalactic(positionTarget); std::string guiPath = "/Sky Browser"; - //std::string url = "http://wwt.openspaceproject.com/1/openspace/"; - std::string url = "http://localhost:8000/openspace"; + std::string url = "http://wwt.openspaceproject.com/1/openspace/"; double fov = 70.0; double size = skybrowser::sizeFromFov(fov, galacticTarget); From fffc48b627c82c31571ef9589181a80a5accd11d Mon Sep 17 00:00:00 2001 From: Ylva Selling Date: Thu, 25 Aug 2022 17:14:02 -0400 Subject: [PATCH 08/81] Fix comments on PR --- modules/skybrowser/include/wwtcommunicator.h | 2 +- modules/skybrowser/shaders/target_fs.glsl | 25 ++++++++++---------- modules/skybrowser/src/wwtcommunicator.cpp | 2 +- 3 files changed, 14 insertions(+), 15 deletions(-) diff --git a/modules/skybrowser/include/wwtcommunicator.h b/modules/skybrowser/include/wwtcommunicator.h index 560cafd137..e9e717cef6 100644 --- a/modules/skybrowser/include/wwtcommunicator.h +++ b/modules/skybrowser/include/wwtcommunicator.h @@ -71,7 +71,7 @@ protected: void setIdInBrowser(const std::string& id) const; std::deque>::iterator findSelectedImage(int i); - double _borderRadius = 0; + double _borderRadius = 0.0; double _verticalFov = 10.0f; glm::ivec3 _borderColor = glm::ivec3(70); glm::dvec2 _equatorialAim = glm::dvec2(0.0); diff --git a/modules/skybrowser/shaders/target_fs.glsl b/modules/skybrowser/shaders/target_fs.glsl index 87a398c43f..073c6513f2 100644 --- a/modules/skybrowser/shaders/target_fs.glsl +++ b/modules/skybrowser/shaders/target_fs.glsl @@ -66,12 +66,11 @@ float createCrosshair(in float linewidth, in float ratio, in vec2 coord) { return crosshairHorizontal + crosshairVertical; } -float roundedRectangle(vec2 coord, vec2 size, vec4 radius) { - radius.xy = (coord.x > 0.0) ? radius.xy : radius.zw; - radius.x = (coord.y > 0.0) ? radius.x : radius.y; - - vec2 q = abs(coord) - size + radius.x; - return min(max(q.x, q.y),0.0) + length(max(q, 0.0)) - radius.x; +// Creates a rounded rectangle where radius is [0, 1] from completely square +// to completely round +float roundedRectangle(vec2 coord, vec2 size, float radius) { + vec2 q = abs(coord) - size + vec2(radius); + return min(max(q.x, q.y), 0.0) + length(max(q, 0.0)) - radius; } Fragment getFragment() { @@ -87,26 +86,26 @@ Fragment getFragment() { if (showRectangle) { float lineWidthY = lineWidth * 2; float lineWidthX = lineWidth * 2 * VerticalThickness; - float height = ((fov * 0.5)/maxWwtFov)-lineWidth; + float height = ((fov * 0.5) / maxWwtFov) - lineWidth; float width = (height * ratio) - lineWidthY; vec2 size = vec2(width, height); // The radius of the corners (in pixels) clockwise starting in the top left - vec4 radius = vec4(clamp(borderRadius * 0.5 * min(height, width), 0.0, 0.5 * min(height, width))); + float radius = clamp(borderRadius * 0.5 * min(height, width), 0.0, 0.5 * min(height, width)); // Calculate distance to edge - float distance = roundedRectangle(vs_st.xy - vec2(0.5), size / 2.0f, radius); + float distance = roundedRectangle(vs_st.xy - vec2(0.5), size * 0.5, radius); // How soft the edges should be (in pixels) // Higher values could be used to simulate a drop shadow - float edgeSoftness = 2.0f; + float edgeSoftness = 2.0; // Smooth the result (free antialiasing) - float smoothedAlpha = 1.0f - smoothstep(0.0f, edgeSoftness, distance); + float smoothedAlpha = 1.0 - smoothstep(0.0, edgeSoftness, distance); // Border float borderThickness = lineWidth * 0.5; - float borderSoftness = 0.000f; - float borderAlpha = 1.0f-smoothstep(borderThickness - borderSoftness, borderThickness, abs(distance)); + float borderSoftness = 0.0; + float borderAlpha = 1.0-smoothstep(borderThickness - borderSoftness, borderThickness, abs(distance)); // Colors float borderColor = 1.0; diff --git a/modules/skybrowser/src/wwtcommunicator.cpp b/modules/skybrowser/src/wwtcommunicator.cpp index 2f699840e6..acae457541 100644 --- a/modules/skybrowser/src/wwtcommunicator.cpp +++ b/modules/skybrowser/src/wwtcommunicator.cpp @@ -230,7 +230,7 @@ void WwtCommunicator::setBorderColor(glm::ivec3 color) { void WwtCommunicator::setBorderRadius(double radius) { _borderRadius = radius; - std::string scr = "setBorderRadius(" + std::to_string(radius) + ");"; + std::string scr = fmt::format("setBorderRadius({});", radius); executeJavascript(scr); } From 8f98320bf69a503442553f912962adcd34063320 Mon Sep 17 00:00:00 2001 From: Alexander Bock Date: Wed, 21 Sep 2022 14:34:36 +0200 Subject: [PATCH 09/81] Add new functions into the window delegate to query node id --- apps/OpenSpace/main.cpp | 6 ++++++ include/openspace/engine/windowdelegate.h | 4 ++++ 2 files changed, 10 insertions(+) diff --git a/apps/OpenSpace/main.cpp b/apps/OpenSpace/main.cpp index 0799a706b6..4b50f87617 100644 --- a/apps/OpenSpace/main.cpp +++ b/apps/OpenSpace/main.cpp @@ -948,6 +948,12 @@ void setSgctDelegateFunctions() { sgctDelegate.showStatistics = [](bool enabled) { Engine::instance().setStatsGraphVisibility(enabled); }; + sgctDelegate.numberOfNodes = []() { + return ClusterManager::instance().numberOfNodes(); + }; + sgctDelegate.currentNode = []() { + return ClusterManager::instance().thisNodeId(); + }; } void checkCommandLineForSettings(int& argc, char** argv, bool& hasSGCT, bool& hasProfile, diff --git a/include/openspace/engine/windowdelegate.h b/include/openspace/engine/windowdelegate.h index b76a9bb765..5d707ed958 100644 --- a/include/openspace/engine/windowdelegate.h +++ b/include/openspace/engine/windowdelegate.h @@ -107,6 +107,10 @@ struct WindowDelegate { void (*setScreenshotFolder)(std::string) = [](std::string) {}; void (*showStatistics)(bool) = [](bool) {}; + + int (*numberOfNodes)() = []() { return 0; }; + + int (*currentNode)() = []() { return 0; }; }; } // namespace openspace From 4214811c6af6a72144f849b6261258d500e76621 Mon Sep 17 00:00:00 2001 From: Ylva Selling Date: Thu, 22 Sep 2022 03:07:04 -0400 Subject: [PATCH 10/81] Add lua function to reload a display copy on a specific node --- modules/skybrowser/include/browser.h | 1 + modules/skybrowser/skybrowsermodule.cpp | 3 ++- modules/skybrowser/skybrowsermodule_lua.inl | 27 +++++++++++++++++++++ modules/skybrowser/src/browser.cpp | 4 +++ 4 files changed, 34 insertions(+), 1 deletion(-) diff --git a/modules/skybrowser/include/browser.h b/modules/skybrowser/include/browser.h index 04e7a70f7e..b1fb89848c 100644 --- a/modules/skybrowser/include/browser.h +++ b/modules/skybrowser/include/browser.h @@ -72,6 +72,7 @@ public: void update(); void updateBrowserSize(); + void reload(); glm::vec2 browserPixelDimensions() const; float browserRatio() const; diff --git a/modules/skybrowser/skybrowsermodule.cpp b/modules/skybrowser/skybrowsermodule.cpp index 5d8c692343..3682cddb68 100644 --- a/modules/skybrowser/skybrowsermodule.cpp +++ b/modules/skybrowser/skybrowsermodule.cpp @@ -524,7 +524,8 @@ scripting::LuaLibrary SkyBrowserModule::luaLibrary() const { codegen::lua::ShowAllTargetsAndBrowsers, codegen::lua::PointSpaceCraft, codegen::lua::GetWwtImageCollectionUrl, - codegen::lua::StopAnimations + codegen::lua::StopAnimations, + codegen::lua::ReloadDisplayCopyOnNode } }; } diff --git a/modules/skybrowser/skybrowsermodule_lua.inl b/modules/skybrowser/skybrowsermodule_lua.inl index 25b1c8a769..fbebdb42d8 100644 --- a/modules/skybrowser/skybrowsermodule_lua.inl +++ b/modules/skybrowser/skybrowsermodule_lua.inl @@ -39,6 +39,33 @@ namespace { constexpr std::string_view _loggerCat = "SkyBrowserModule"; + +/** +* Reloads the sky browser display copy for the node index that is sent in. +* .If no ID is sent in, it will reload all display copies on that node. +*/ +[[codegen::luawrap]] void reloadDisplayCopyOnNode(int nodeIndex, std::string id = "all") { + using namespace openspace; + + if (global::windowDelegate->currentNode() != nodeIndex) + return; + + SkyBrowserModule* module = global::moduleEngine->module(); + if (id != "all") { + TargetBrowserPair* pair = module->pair(id); + if (pair) { + pair->browser()->reload(); + } + } + else { + const std::vector>& pairs = module->pairs(); + for (const std::unique_ptr& pair : pairs) { + pair->browser()->reload(); + } + } +} + + /** * Takes an index to an image and selects that image in the currently * selected sky browser. diff --git a/modules/skybrowser/src/browser.cpp b/modules/skybrowser/src/browser.cpp index fd8553e594..ee65c6838a 100644 --- a/modules/skybrowser/src/browser.cpp +++ b/modules/skybrowser/src/browser.cpp @@ -179,6 +179,10 @@ void Browser::updateBrowserSize() { _browserDimensions = _texture->dimensions(); } +void Browser::reload() { + _reload.set(true); +} + float Browser::browserRatio() const { return static_cast(_texture->dimensions().x) / static_cast(_texture->dimensions().y); From 2c31e485d8d13508350bedda16dec337c6adf043 Mon Sep 17 00:00:00 2001 From: Ylva Selling Date: Thu, 22 Sep 2022 04:23:16 -0400 Subject: [PATCH 11/81] Add potential fix for flickering of target --- modules/skybrowser/include/screenspaceskybrowser.h | 2 +- modules/skybrowser/src/screenspaceskybrowser.cpp | 3 ++- modules/skybrowser/src/targetbrowserpair.cpp | 3 ++- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/modules/skybrowser/include/screenspaceskybrowser.h b/modules/skybrowser/include/screenspaceskybrowser.h index a2faed2372..84fa784e0f 100644 --- a/modules/skybrowser/include/screenspaceskybrowser.h +++ b/modules/skybrowser/include/screenspaceskybrowser.h @@ -50,7 +50,7 @@ public: glm::dvec2 fineTuneVector(const glm::dvec2& drag); bool isInitialized() const; - void setVerticalFovWithScroll(float scroll); + double setVerticalFovWithScroll(float scroll); void setOpacity(float opacity); void setRatio(float ratio); void setIdInBrowser() const; diff --git a/modules/skybrowser/src/screenspaceskybrowser.cpp b/modules/skybrowser/src/screenspaceskybrowser.cpp index 63cee8a767..f094d7a91a 100644 --- a/modules/skybrowser/src/screenspaceskybrowser.cpp +++ b/modules/skybrowser/src/screenspaceskybrowser.cpp @@ -328,12 +328,13 @@ void ScreenSpaceSkyBrowser::update() { ScreenSpaceRenderable::update(); } -void ScreenSpaceSkyBrowser::setVerticalFovWithScroll(float scroll) { +double ScreenSpaceSkyBrowser::setVerticalFovWithScroll(float scroll) { // Make scroll more sensitive the smaller the FOV double x = _verticalFov; double zoomFactor = atan(x / 50.0) + exp(x / 40.0) - 0.99999999999999999999999999999; double zoom = scroll > 0.0 ? zoomFactor : -zoomFactor; _verticalFov = std::clamp(_verticalFov + zoom, 0.0, 70.0); + return _verticalFov; } void ScreenSpaceSkyBrowser::bindTexture() { diff --git a/modules/skybrowser/src/targetbrowserpair.cpp b/modules/skybrowser/src/targetbrowserpair.cpp index cdc74f04f1..028d6ffce8 100644 --- a/modules/skybrowser/src/targetbrowserpair.cpp +++ b/modules/skybrowser/src/targetbrowserpair.cpp @@ -262,7 +262,8 @@ void TargetBrowserPair::setBrowserRatio(float ratio) { } void TargetBrowserPair::setVerticalFovWithScroll(float scroll) { - _browser->setVerticalFovWithScroll(scroll); + double fov = _browser->setVerticalFovWithScroll(scroll); + _target->setVerticalFov(fov); } void TargetBrowserPair::setImageCollectionIsLoaded(bool isLoaded) { From a88ea892db0e2457dfa12cebca495906162f325f Mon Sep 17 00:00:00 2001 From: Ylva Selling Date: Thu, 22 Sep 2022 04:25:57 -0400 Subject: [PATCH 12/81] Fix typo --- modules/skybrowser/src/targetbrowserpair.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/skybrowser/src/targetbrowserpair.cpp b/modules/skybrowser/src/targetbrowserpair.cpp index 028d6ffce8..d2a8b16c8c 100644 --- a/modules/skybrowser/src/targetbrowserpair.cpp +++ b/modules/skybrowser/src/targetbrowserpair.cpp @@ -263,7 +263,7 @@ void TargetBrowserPair::setBrowserRatio(float ratio) { void TargetBrowserPair::setVerticalFovWithScroll(float scroll) { double fov = _browser->setVerticalFovWithScroll(scroll); - _target->setVerticalFov(fov); + _targetRenderable->setVerticalFov(fov); } void TargetBrowserPair::setImageCollectionIsLoaded(bool isLoaded) { From a49e37fedc5cd9574cab4da60401ba35a189521a Mon Sep 17 00:00:00 2001 From: Ylva Selling Date: Thu, 22 Sep 2022 05:10:05 -0400 Subject: [PATCH 13/81] Turn vertical fov into properties to ensure that the fov is synchronized on all nodes --- .../skybrowser/include/renderableskytarget.h | 3 +-- modules/skybrowser/include/wwtcommunicator.h | 4 +++- .../skybrowser/src/renderableskytarget.cpp | 15 ++++++++++++++ .../skybrowser/src/screenspaceskybrowser.cpp | 1 + modules/skybrowser/src/wwtcommunicator.cpp | 20 ++++++++++++++++++- 5 files changed, 39 insertions(+), 4 deletions(-) diff --git a/modules/skybrowser/include/renderableskytarget.h b/modules/skybrowser/include/renderableskytarget.h index 03859dcddb..b92801d622 100644 --- a/modules/skybrowser/include/renderableskytarget.h +++ b/modules/skybrowser/include/renderableskytarget.h @@ -61,8 +61,7 @@ private: properties::FloatProperty _crossHairSize; properties::FloatProperty _showRectangleThreshold; properties::FloatProperty _lineWidth; - - double _verticalFov = 10.0; + properties::DoubleProperty _verticalFov; glm::ivec3 _borderColor = glm::ivec3(230); float _ratio = 1.f; diff --git a/modules/skybrowser/include/wwtcommunicator.h b/modules/skybrowser/include/wwtcommunicator.h index e8344e2142..639d030331 100644 --- a/modules/skybrowser/include/wwtcommunicator.h +++ b/modules/skybrowser/include/wwtcommunicator.h @@ -26,6 +26,7 @@ #define __OPENSPACE_MODULE_SKYBROWSER___WWTCOMMUNICATOR___H__ #include +#include #include @@ -69,7 +70,8 @@ protected: void setIdInBrowser(const std::string& id) const; std::deque>::iterator findSelectedImage(int i); - double _verticalFov = 10.0f; + properties::DoubleProperty _verticalFov; + glm::ivec3 _borderColor = glm::ivec3(70); glm::dvec2 _equatorialAim = glm::dvec2(0.0); double _targetRoll = 0.0; diff --git a/modules/skybrowser/src/renderableskytarget.cpp b/modules/skybrowser/src/renderableskytarget.cpp index ebfe9ab4b3..3eb07446e2 100644 --- a/modules/skybrowser/src/renderableskytarget.cpp +++ b/modules/skybrowser/src/renderableskytarget.cpp @@ -68,6 +68,12 @@ namespace { "The thickness of the line of the target. The larger number, the thicker line" }; + constexpr openspace::properties::Property::PropertyInfo VerticalFovInfo = { + "VerticalFov", + "Vertical Field Of View", + "The vertical field of view of the target." + }; + struct [[codegen::Dictionary(RenderableSkyTarget)]] Parameters { // [[codegen::verbatim(crossHairSizeInfo.description)]] std::optional crossHairSize; @@ -77,6 +83,9 @@ namespace { // [[codegen::verbatim(LineWidthInfo.description)]] std::optional lineWidth; + + // [[codegen::verbatim(VerticalFovInfo.description)]] + std::optional verticalFov; }; #include "renderableskytarget_codegen.cpp" @@ -93,6 +102,7 @@ RenderableSkyTarget::RenderableSkyTarget(const ghoul::Dictionary& dictionary) , _crossHairSize(crossHairSizeInfo, 2.f, 1.f, 10.f) , _showRectangleThreshold(RectangleThresholdInfo, 5.f, 0.1f, 70.f) , _lineWidth(LineWidthInfo, 13.f, 1.f, 100.f) + , _verticalFov(VerticalFovInfo, 10.0, 0.00000000001, 70.0) , _borderColor(220, 220, 220) { // Handle target dimension property @@ -104,7 +114,12 @@ RenderableSkyTarget::RenderableSkyTarget(const ghoul::Dictionary& dictionary) _showRectangleThreshold = p.rectangleThreshold.value_or(_showRectangleThreshold); addProperty(_showRectangleThreshold); + _lineWidth = p.lineWidth.value_or(_lineWidth); addProperty(_lineWidth); + + _verticalFov= p.verticalFov.value_or(_verticalFov); + _verticalFov.setReadOnly(true); + addProperty(_verticalFov); } void RenderableSkyTarget::bindTexture() {} diff --git a/modules/skybrowser/src/screenspaceskybrowser.cpp b/modules/skybrowser/src/screenspaceskybrowser.cpp index f094d7a91a..2165dee49e 100644 --- a/modules/skybrowser/src/screenspaceskybrowser.cpp +++ b/modules/skybrowser/src/screenspaceskybrowser.cpp @@ -119,6 +119,7 @@ ScreenSpaceSkyBrowser::ScreenSpaceSkyBrowser(const ghoul::Dictionary& dictionary addProperty(_browserDimensions); addProperty(_reload); addProperty(_textureQuality); + addProperty(_verticalFov); _textureQuality.onChange([this]() { _textureDimensionsIsDirty = true; }); diff --git a/modules/skybrowser/src/wwtcommunicator.cpp b/modules/skybrowser/src/wwtcommunicator.cpp index 8f91b7bf91..82f5577c0d 100644 --- a/modules/skybrowser/src/wwtcommunicator.cpp +++ b/modules/skybrowser/src/wwtcommunicator.cpp @@ -116,13 +116,31 @@ namespace { MessageCounter++; return msg; } + + constexpr openspace::properties::Property::PropertyInfo VerticalFovInfo = { + "VerticalFov", + "Vertical Field Of View", + "The vertical field of view of the target." + }; + + struct [[codegen::Dictionary(WwtCommunicator)]] Parameters { + // [[codegen::verbatim(VerticalFovInfo.description)]] + std::optional verticalFov; + }; + #include "wwtcommunicator_codegen.cpp" } // namespace namespace openspace { WwtCommunicator::WwtCommunicator(const ghoul::Dictionary& dictionary) : Browser(dictionary) -{} + , _verticalFov(VerticalFovInfo, 10.0, 0.00000000001, 70.0) +{ + // Handle target dimension property + const Parameters p = codegen::bake(dictionary); + _verticalFov = p.verticalFov.value_or(_verticalFov); + _verticalFov.setReadOnly(true); +} void WwtCommunicator::update() { // Cap how messages are passed From f6c3ab2ee8be130d00dab2da94d57226ffb9214d Mon Sep 17 00:00:00 2001 From: Ylva Selling Date: Thu, 22 Sep 2022 05:10:33 -0400 Subject: [PATCH 14/81] Set the size of the target on the master node only to ensure that the target plane is the same size on all nodes in a cluster --- modules/skybrowser/skybrowsermodule_lua.inl | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/modules/skybrowser/skybrowsermodule_lua.inl b/modules/skybrowser/skybrowsermodule_lua.inl index fbebdb42d8..42d8a590df 100644 --- a/modules/skybrowser/skybrowsermodule_lua.inl +++ b/modules/skybrowser/skybrowsermodule_lua.inl @@ -446,6 +446,10 @@ namespace { [[codegen::luawrap]] void createTargetBrowserPair() { using namespace openspace; + if (!global::windowDelegate->isMaster()) { + return; + } + SkyBrowserModule* module = global::moduleEngine->module(); int uniqueIdentifier = module->uniqueIdentifierCounter(); @@ -507,23 +511,23 @@ namespace { global::scriptEngine->queueScript( "openspace.addScreenSpaceRenderable(" + browser + ");", - scripting::ScriptEngine::RemoteScripting::No + scripting::ScriptEngine::RemoteScripting::Yes ); global::scriptEngine->queueScript( "openspace.addSceneGraphNode(" + target + ");", - scripting::ScriptEngine::RemoteScripting::No + scripting::ScriptEngine::RemoteScripting::Yes ); global::scriptEngine->queueScript( "openspace.skybrowser.addPairToSkyBrowserModule('" + idTarget + "','" + idBrowser + "');", - scripting::ScriptEngine::RemoteScripting::No + scripting::ScriptEngine::RemoteScripting::Yes ); global::scriptEngine->queueScript( "openspace.skybrowser.setSelectedBrowser('" + idBrowser + "');", - scripting::ScriptEngine::RemoteScripting::No + scripting::ScriptEngine::RemoteScripting::Yes ); } From 7ed3c785786ccdc95c26944657d1c80a2770ff5b Mon Sep 17 00:00:00 2001 From: Ylva Selling Date: Fri, 23 Sep 2022 12:53:16 -0400 Subject: [PATCH 15/81] Set initialize to false when reloading so the browser can redo the initialization process --- modules/skybrowser/skybrowsermodule_lua.inl | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/skybrowser/skybrowsermodule_lua.inl b/modules/skybrowser/skybrowsermodule_lua.inl index 42d8a590df..4ab3b2247e 100644 --- a/modules/skybrowser/skybrowsermodule_lua.inl +++ b/modules/skybrowser/skybrowsermodule_lua.inl @@ -54,6 +54,7 @@ namespace { if (id != "all") { TargetBrowserPair* pair = module->pair(id); if (pair) { + pair->browser()->setIsInitialized(false); pair->browser()->reload(); } } From 0fd20db5e87d935506fe85e94c548cb1400c7c9f Mon Sep 17 00:00:00 2001 From: Ylva Selling Date: Fri, 23 Sep 2022 12:53:41 -0400 Subject: [PATCH 16/81] Add property for synchronizing aim so synchronization can be turned off for performance reasons --- modules/skybrowser/skybrowsermodule.cpp | 18 ++++++++++++++++-- modules/skybrowser/skybrowsermodule.h | 1 + 2 files changed, 17 insertions(+), 2 deletions(-) diff --git a/modules/skybrowser/skybrowsermodule.cpp b/modules/skybrowser/skybrowsermodule.cpp index 3682cddb68..1ddddb3ce3 100644 --- a/modules/skybrowser/skybrowsermodule.cpp +++ b/modules/skybrowser/skybrowsermodule.cpp @@ -92,6 +92,12 @@ namespace { "inversed" }; + constexpr openspace::properties::Property::PropertyInfo SynchronizeAimInfo = { + "SynchronizeAim", + "Synchronize Aim", + "If checked, the target and the browser will have synchronized aim." + }; + constexpr openspace::properties::Property::PropertyInfo SpaceCraftTimeInfo = { "SpaceCraftAnimationTime", "Space Craft Animation Time", @@ -127,6 +133,9 @@ namespace { // [[codegen::verbatim(InverseZoomInfo.description)]] std::optional inverseZoomDirection; + // [[codegen::verbatim(SynchronizeAimInfo.description)]] + std::optional synchronizeAim; + // [[codegen::verbatim(SpaceCraftTimeInfo.description)]] std::optional spaceCraftAnimationTime; @@ -149,6 +158,7 @@ SkyBrowserModule::SkyBrowserModule() , _browserAnimationSpeed(BrowserSpeedInfo, 5.0, 0.0, 10.0) , _hideTargetsBrowsersWithGui(HideWithGuiInfo, false) , _inverseZoomDirection(InverseZoomInfo, false) + , _synchronizeAim(SynchronizeAimInfo, true) , _spaceCraftAnimationTime(SpaceCraftTimeInfo, 2.0, 0.0, 10.0) , _wwtImageCollectionUrl( ImageCollectionInfo, @@ -165,6 +175,7 @@ SkyBrowserModule::SkyBrowserModule() addProperty(_inverseZoomDirection); addProperty(_spaceCraftAnimationTime); addProperty(_wwtImageCollectionUrl); + addProperty(_synchronizeAim); _wwtImageCollectionUrl.setReadOnly(true); // Set callback functions @@ -209,8 +220,10 @@ SkyBrowserModule::SkyBrowserModule() } if (_isCameraInSolarSystem) { - for (const std::unique_ptr& pair : _targetsBrowsers) { - pair->synchronizeAim(); + if (_synchronizeAim) { + for (const std::unique_ptr& pair : _targetsBrowsers) { + pair->synchronizeAim(); + } } incrementallyAnimateTargets(); } @@ -230,6 +243,7 @@ void SkyBrowserModule::internalInitialize(const ghoul::Dictionary& dict) { _browserAnimationSpeed = p.browserSpeed.value_or(_browserAnimationSpeed); _inverseZoomDirection = p.inverseZoomDirection.value_or(_inverseZoomDirection); _wwtImageCollectionUrl = p.wwtImageCollectionUrl.value_or(_wwtImageCollectionUrl); + _synchronizeAim = p.synchronizeAim.value_or(_synchronizeAim); _hideTargetsBrowsersWithGui = p.hideTargetsBrowsersGui.value_or( _hideTargetsBrowsersWithGui ); diff --git a/modules/skybrowser/skybrowsermodule.h b/modules/skybrowser/skybrowsermodule.h index 52c85970f9..04810aff33 100644 --- a/modules/skybrowser/skybrowsermodule.h +++ b/modules/skybrowser/skybrowsermodule.h @@ -101,6 +101,7 @@ private: properties::DoubleProperty _browserAnimationSpeed; properties::BoolProperty _hideTargetsBrowsersWithGui; properties::BoolProperty _inverseZoomDirection; + properties::BoolProperty _synchronizeAim; properties::DoubleProperty _spaceCraftAnimationTime; properties::StringProperty _wwtImageCollectionUrl; From 90f2ad0cbed72edde41ecc9ab0a9b6e357152da7 Mon Sep 17 00:00:00 2001 From: Micah Acinapura Date: Tue, 4 Oct 2022 14:12:00 -0400 Subject: [PATCH 17/81] telling browser to reload collection on reload --- modules/skybrowser/skybrowsermodule_lua.inl | 3 +++ 1 file changed, 3 insertions(+) diff --git a/modules/skybrowser/skybrowsermodule_lua.inl b/modules/skybrowser/skybrowsermodule_lua.inl index 4ab3b2247e..b8fad22aed 100644 --- a/modules/skybrowser/skybrowsermodule_lua.inl +++ b/modules/skybrowser/skybrowsermodule_lua.inl @@ -55,12 +55,15 @@ namespace { TargetBrowserPair* pair = module->pair(id); if (pair) { pair->browser()->setIsInitialized(false); + pair->browser()->setImageCollectionIsLoaded(false); pair->browser()->reload(); } } else { const std::vector>& pairs = module->pairs(); for (const std::unique_ptr& pair : pairs) { + pair->browser()->setIsInitialized(false); + pair->browser()->setImageCollectionIsLoaded(false); pair->browser()->reload(); } } From ec3a765d1a9d772e8e9db3e6590ebfc76f8bdb8a Mon Sep 17 00:00:00 2001 From: Emma Broman Date: Thu, 6 Oct 2022 17:16:53 +0200 Subject: [PATCH 18/81] Add an empty profile --- data/profiles/empty.profile | 42 +++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 data/profiles/empty.profile diff --git a/data/profiles/empty.profile b/data/profiles/empty.profile new file mode 100644 index 0000000000..da68f0065a --- /dev/null +++ b/data/profiles/empty.profile @@ -0,0 +1,42 @@ +{ + "assets": [ + "base_blank" + ], + "camera": { + "aim": "", + "anchor": "Root", + "frame": "", + "position": { + "x": 20.0, + "y": 20.0, + "z": 20.0 + }, + "type": "setNavigationState", + "up": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yaw": 0.0 + }, + "delta_times": [ + 1.0 + ], + "mark_nodes": [], + "meta": { + "author": "OpenSpace Team", + "description": "An empty profile, without anything special at all.", + "license": "MIT License", + "name": "Empty", + "url": "https://www.openspaceproject.com", + "version": "1.0" + }, + "time": { + "type": "relative", + "value": "-1d" + }, + "version": { + "major": 1, + "minor": 0 + } +} \ No newline at end of file From 5a970ee6e07ddb72d54c7e373256e9c3a595511d Mon Sep 17 00:00:00 2001 From: Emma Broman Date: Thu, 6 Oct 2022 22:13:06 +0200 Subject: [PATCH 19/81] Add a function to skip immediately to the end of a playing camera path --- include/openspace/navigation/pathnavigator.h | 3 ++ src/navigation/pathnavigator.cpp | 48 ++++++++++++++------ src/navigation/pathnavigator_lua.inl | 5 ++ 3 files changed, 41 insertions(+), 15 deletions(-) diff --git a/include/openspace/navigation/pathnavigator.h b/include/openspace/navigation/pathnavigator.h index 681e7acc03..c684abbadf 100644 --- a/include/openspace/navigation/pathnavigator.h +++ b/include/openspace/navigation/pathnavigator.h @@ -72,6 +72,7 @@ public: void abortPath(); void pausePath(); void continuePath(); + void skipToEnd(); Path::Type defaultPathType() const; double minValidBoundingSphere() const; @@ -99,6 +100,8 @@ private: bool _isPlaying = false; bool _startSimulationTimeOnFinish = false; + bool _setCameraToEndNextFrame = false; + properties::OptionProperty _defaultPathType; properties::BoolProperty _includeRoll; properties::FloatProperty _speedScale; diff --git a/src/navigation/pathnavigator.cpp b/src/navigation/pathnavigator.cpp index 42e6ca9f33..7ab680b944 100644 --- a/src/navigation/pathnavigator.cpp +++ b/src/navigation/pathnavigator.cpp @@ -214,6 +214,18 @@ void PathNavigator::updateCamera(double deltaTime) { return; } + if (_setCameraToEndNextFrame) { + LDEBUG("Skipped to end of camera path"); + camera()->setPose(_currentPath->endPoint().pose()); + global::navigationHandler->orbitalNavigator().setFocusNode( + _currentPath->endPoint().nodeIdentifier(), + false + ); + handlePathEnd(); + _setCameraToEndNextFrame = false; + return; + } + // Prevent long delta times due to e.g. computations from other actions to cause // really big jumps in the motion along the path // OBS! Causes problems if the general FPS is lower than 10, but then the user should @@ -241,19 +253,6 @@ void PathNavigator::updateCamera(double deltaTime) { if (_currentPath->hasReachedEnd()) { LINFO("Reached target"); handlePathEnd(); - - if (_applyIdleBehaviorOnFinish) { - constexpr const char ApplyIdleBehaviorScript[] = - "openspace.setPropertyValueSingle(" - "'NavigationHandler.OrbitalNavigator.IdleBehavior.ApplyIdleBehavior'," - "true" - ");"; - - global::scriptEngine->queueScript( - ApplyIdleBehaviorScript, - openspace::scripting::ScriptEngine::RemoteScripting::Yes - ); - } return; } } @@ -368,6 +367,14 @@ void PathNavigator::continuePath() { _isPlaying = true; } +void PathNavigator::skipToEnd() { + if (!openspace::global::navigationHandler->pathNavigator().isPlayingPath()) { + LWARNING("No camera path is currently active"); + } + + _setCameraToEndNextFrame = true; +} + Path::Type PathNavigator::defaultPathType() const { return static_cast(_defaultPathType.value()); } @@ -430,15 +437,25 @@ const std::vector& PathNavigator::relevantNodes() { void PathNavigator::handlePathEnd() { _isPlaying = false; + global::openSpaceEngine->resetMode(); if (_startSimulationTimeOnFinish) { openspace::global::scriptEngine->queueScript( "openspace.time.setPause(false)", scripting::ScriptEngine::RemoteScripting::Yes ); + _startSimulationTimeOnFinish = false; + } + + if (_applyIdleBehaviorOnFinish) { + global::scriptEngine->queueScript( + "openspace.setPropertyValueSingle(" + "'NavigationHandler.OrbitalNavigator.IdleBehavior.ApplyIdleBehavior'," + "true" + ");", + openspace::scripting::ScriptEngine::RemoteScripting::Yes + ); } - _startSimulationTimeOnFinish = false; - global::openSpaceEngine->resetMode(); } void PathNavigator::findRelevantNodes() { @@ -504,6 +521,7 @@ scripting::LuaLibrary PathNavigator::luaLibrary() { codegen::lua::ContinuePath, codegen::lua::PausePath, codegen::lua::StopPath, + codegen::lua::SkipToEnd, codegen::lua::FlyTo, codegen::lua::FlyToHeight, codegen::lua::FlyToNavigationState, diff --git a/src/navigation/pathnavigator_lua.inl b/src/navigation/pathnavigator_lua.inl index 0a60a57bbb..a2ade6c473 100644 --- a/src/navigation/pathnavigator_lua.inl +++ b/src/navigation/pathnavigator_lua.inl @@ -46,6 +46,11 @@ namespace { openspace::global::navigationHandler->pathNavigator().abortPath(); } +// Immediately skips to the end of the current camera path, if one is being played. +[[codegen::luawrap]] void skipToEnd() { + openspace::global::navigationHandler->pathNavigator().skipToEnd(); +} + /** * Move the camera to the node with the specified identifier. The optional double * specifies the duration of the motion, in seconds. If the optional bool is set to true From 819229222991caafb9759077efc1ffac88569306 Mon Sep 17 00:00:00 2001 From: Emma Broman Date: Thu, 6 Oct 2022 22:25:27 +0200 Subject: [PATCH 20/81] Move `findNodeNearTarget` function from path to pathnavigator To reduce conflicts between wisdome installation branch and master --- include/openspace/navigation/pathnavigator.h | 7 ++++ src/navigation/path.cpp | 39 +------------------- src/navigation/pathnavigator.cpp | 39 ++++++++++++++++++++ 3 files changed, 47 insertions(+), 38 deletions(-) diff --git a/include/openspace/navigation/pathnavigator.h b/include/openspace/navigation/pathnavigator.h index c684abbadf..8f3d8d1895 100644 --- a/include/openspace/navigation/pathnavigator.h +++ b/include/openspace/navigation/pathnavigator.h @@ -80,6 +80,13 @@ public: const std::vector& relevantNodes(); + /** + * Find a node close to the given node. Closeness is determined by a factor times + * the bounding sphere of the object + * \return pointer to the SGN if one was found, nullptr otherwise + */ + static SceneGraphNode* findNodeNearTarget(const SceneGraphNode* node); + /** * \return The Lua library that contains all Lua functions available to affect the * path navigation diff --git a/src/navigation/path.cpp b/src/navigation/path.cpp index 10b9004471..0b3fd62ed2 100644 --- a/src/navigation/path.cpp +++ b/src/navigation/path.cpp @@ -36,7 +36,6 @@ #include #include #include -#include #include #include #include @@ -440,50 +439,14 @@ Waypoint waypointFromCamera() { return Waypoint{ pos, rot, node }; } -SceneGraphNode* findNodeNearTarget(const SceneGraphNode* node) { - const std::vector& relevantNodes = - global::navigationHandler->pathNavigator().relevantNodes(); - - for (SceneGraphNode* n : relevantNodes) { - bool isSame = (n->identifier() == node->identifier()); - // If the nodes are in the very same position, they are probably representing - // the same object - isSame |= - glm::distance(n->worldPosition(), node->worldPosition()) < LengthEpsilon; - - if (isSame) { - continue; - } - - constexpr float proximityRadiusFactor = 3.f; - - const float bs = static_cast(n->boundingSphere()); - const float proximityRadius = proximityRadiusFactor * bs; - const glm::dvec3 posInModelCoords = - glm::inverse(n->modelTransform()) * glm::dvec4(node->worldPosition(), 1.0); - - bool isClose = collision::isPointInsideSphere( - posInModelCoords, - glm::dvec3(0.0, 0.0, 0.0), - proximityRadius - ); - - if (isClose) { - return n; - } - } - - return nullptr; -} - // Compute a target position close to the specified target node, using knowledge of // the start point and a desired distance from the node's center glm::dvec3 computeGoodStepDirection(const SceneGraphNode* targetNode, const Waypoint& startPoint) { const glm::dvec3 nodePos = targetNode->worldPosition(); - const SceneGraphNode* closeNode = findNodeNearTarget(targetNode); const SceneGraphNode* sun = sceneGraphNode(SunIdentifier); + const SceneGraphNode* closeNode = PathNavigator::findNodeNearTarget(targetNode); // @TODO (2021-07-09, emmbr): Not nice to depend on a specific scene graph node, // as it might not exist. Ideally, each SGN could know about their preferred diff --git a/src/navigation/pathnavigator.cpp b/src/navigation/pathnavigator.cpp index 7ab680b944..a4b74cc394 100644 --- a/src/navigation/pathnavigator.cpp +++ b/src/navigation/pathnavigator.cpp @@ -38,6 +38,7 @@ #include #include #include +#include #include #include #include @@ -497,6 +498,44 @@ void PathNavigator::findRelevantNodes() { _relevantNodes = resultingNodes; } + +SceneGraphNode* PathNavigator::findNodeNearTarget(const SceneGraphNode* node) { + constexpr float LengthEpsilon = 1e-5f; + const std::vector& relNodes = + global::navigationHandler->pathNavigator().relevantNodes(); + + for (SceneGraphNode* n : relNodes) { + bool isSame = (n->identifier() == node->identifier()); + // If the nodes are in the very same position, they are probably representing + // the same object + isSame |= + glm::distance(n->worldPosition(), node->worldPosition()) < LengthEpsilon; + + if (isSame) { + continue; + } + + constexpr float proximityRadiusFactor = 3.f; + + const float bs = static_cast(n->boundingSphere()); + const float proximityRadius = proximityRadiusFactor * bs; + const glm::dvec3 posInModelCoords = + glm::inverse(n->modelTransform()) * glm::dvec4(node->worldPosition(), 1.0); + + bool isClose = collision::isPointInsideSphere( + posInModelCoords, + glm::dvec3(0.0, 0.0, 0.0), + proximityRadius + ); + + if (isClose) { + return n; + } + } + + return nullptr; +} + void PathNavigator::removeRollRotation(CameraPose& pose, double deltaTime) { const glm::dvec3 anchorPos = anchor()->worldPosition(); const glm::dvec3 cameraDir = glm::normalize( From bcdeeef351e9f3957b849899419fc4fce978f5df Mon Sep 17 00:00:00 2001 From: Emma Broman Date: Thu, 6 Oct 2022 22:28:08 +0200 Subject: [PATCH 21/81] Remove an extra line --- src/navigation/pathnavigator.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/navigation/pathnavigator.cpp b/src/navigation/pathnavigator.cpp index a4b74cc394..d1638cc7c4 100644 --- a/src/navigation/pathnavigator.cpp +++ b/src/navigation/pathnavigator.cpp @@ -498,7 +498,6 @@ void PathNavigator::findRelevantNodes() { _relevantNodes = resultingNodes; } - SceneGraphNode* PathNavigator::findNodeNearTarget(const SceneGraphNode* node) { constexpr float LengthEpsilon = 1e-5f; const std::vector& relNodes = From 06a22c25928ba3783694f0902fa505e96e44a367 Mon Sep 17 00:00:00 2001 From: Emma Broman Date: Fri, 7 Oct 2022 09:17:58 +0200 Subject: [PATCH 22/81] Fix problem with camera path not finishing properly on skipToEnd --- include/openspace/navigation/path.h | 6 ++++++ src/navigation/path.cpp | 5 +++++ src/navigation/pathnavigator.cpp | 1 + 3 files changed, 12 insertions(+) diff --git a/include/openspace/navigation/path.h b/include/openspace/navigation/path.h index a376684cd4..fc9fd79a0e 100644 --- a/include/openspace/navigation/path.h +++ b/include/openspace/navigation/path.h @@ -75,6 +75,12 @@ public: */ CameraPose traversePath(double dt, float speedScale = 1.f); + /** + * Function that can be used to permaturely quit a path ,for example when skipping + * to the end + */ + void quitPath(); + /** * Return the identifer of the node that is the current appropriate anchor node, of * the start and end waypoint's reference node. Dtermined based on how far along the diff --git a/src/navigation/path.cpp b/src/navigation/path.cpp index 0b3fd62ed2..48032b2d44 100644 --- a/src/navigation/path.cpp +++ b/src/navigation/path.cpp @@ -177,6 +177,11 @@ CameraPose Path::traversePath(double dt, float speedScale) { return newPose; } +void Path::quitPath() { + _traveledDistance = pathLength(); + _shouldQuit = true; +} + std::string Path::currentAnchor() const { bool pastHalfway = (_traveledDistance / pathLength()) > 0.5; return (pastHalfway) ? _end.nodeIdentifier() : _start.nodeIdentifier(); diff --git a/src/navigation/pathnavigator.cpp b/src/navigation/pathnavigator.cpp index d1638cc7c4..0caefdbfd4 100644 --- a/src/navigation/pathnavigator.cpp +++ b/src/navigation/pathnavigator.cpp @@ -217,6 +217,7 @@ void PathNavigator::updateCamera(double deltaTime) { if (_setCameraToEndNextFrame) { LDEBUG("Skipped to end of camera path"); + _currentPath->quitPath(); camera()->setPose(_currentPath->endPoint().pose()); global::navigationHandler->orbitalNavigator().setFocusNode( _currentPath->endPoint().nodeIdentifier(), From 49da498ee33e554dd281481d75f1eedc1444ac07 Mon Sep 17 00:00:00 2001 From: Ylva Selling Date: Fri, 7 Oct 2022 16:08:34 -0400 Subject: [PATCH 23/81] Fix bug of sending set radius message too early --- modules/skybrowser/src/screenspaceskybrowser.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/skybrowser/src/screenspaceskybrowser.cpp b/modules/skybrowser/src/screenspaceskybrowser.cpp index 3221e4569f..4e973ef289 100644 --- a/modules/skybrowser/src/screenspaceskybrowser.cpp +++ b/modules/skybrowser/src/screenspaceskybrowser.cpp @@ -328,6 +328,7 @@ void ScreenSpaceSkyBrowser::update() { if (_radiusIsDirty) { setBorderRadius(_borderRadius); + _radiusIsDirty = false; } ScreenSpaceRenderable::update(); From 59209928e6a462a17df8457f622c16da5b29ac6c Mon Sep 17 00:00:00 2001 From: Ylva Selling Date: Fri, 7 Oct 2022 16:08:51 -0400 Subject: [PATCH 24/81] Clamp user input --- modules/skybrowser/skybrowsermodule_lua.inl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/skybrowser/skybrowsermodule_lua.inl b/modules/skybrowser/skybrowsermodule_lua.inl index e752903d28..309f2b04d0 100644 --- a/modules/skybrowser/skybrowsermodule_lua.inl +++ b/modules/skybrowser/skybrowsermodule_lua.inl @@ -673,7 +673,7 @@ namespace { SkyBrowserModule* module = global::moduleEngine->module(); TargetBrowserPair* pair = module->pair(identifier); if (pair) { - pair->setBorderRadius(radius); + pair->setBorderRadius(std::clamp(radius, 0.0, 1.0)); } } From c710aa3a34b4c72651f41b6f92e400192aae08ff Mon Sep 17 00:00:00 2001 From: Ylva Selling Date: Fri, 7 Oct 2022 16:20:43 -0400 Subject: [PATCH 25/81] Ensure browser is initialized properly before executing javascript --- modules/skybrowser/skybrowsermodule_lua.inl | 3 ++- modules/skybrowser/src/screenspaceskybrowser.cpp | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/modules/skybrowser/skybrowsermodule_lua.inl b/modules/skybrowser/skybrowsermodule_lua.inl index 309f2b04d0..488b81eb4e 100644 --- a/modules/skybrowser/skybrowsermodule_lua.inl +++ b/modules/skybrowser/skybrowsermodule_lua.inl @@ -672,7 +672,8 @@ namespace { SkyBrowserModule* module = global::moduleEngine->module(); TargetBrowserPair* pair = module->pair(identifier); - if (pair) { + // Make sure the webpage has loaded properly before executing javascript on it + if (pair && pair->browser()->isInitialized()) { pair->setBorderRadius(std::clamp(radius, 0.0, 1.0)); } } diff --git a/modules/skybrowser/src/screenspaceskybrowser.cpp b/modules/skybrowser/src/screenspaceskybrowser.cpp index 4e973ef289..6936337919 100644 --- a/modules/skybrowser/src/screenspaceskybrowser.cpp +++ b/modules/skybrowser/src/screenspaceskybrowser.cpp @@ -326,7 +326,7 @@ void ScreenSpaceSkyBrowser::update() { _isInitialized = false; } - if (_radiusIsDirty) { + if (_radiusIsDirty && _isInitialized) { setBorderRadius(_borderRadius); _radiusIsDirty = false; } From 2dd981aed3a3ad56bab219fdf3578af757244801 Mon Sep 17 00:00:00 2001 From: Ylva Selling Date: Fri, 7 Oct 2022 16:21:41 -0400 Subject: [PATCH 26/81] Update hash for GUI --- data/assets/util/webgui.asset | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/assets/util/webgui.asset b/data/assets/util/webgui.asset index 046e87c494..7fd95f5665 100644 --- a/data/assets/util/webgui.asset +++ b/data/assets/util/webgui.asset @@ -3,7 +3,7 @@ asset.require("./static_server") local guiCustomization = asset.require("customization/gui") -- Select which commit hashes to use for the frontend and backend -local frontendHash = "9f0298993d738f487c93c559084593945b5e093e" +local frontendHash = "cf7b5df404cdbfb0409a94bb47d5365dcfb6f8f6" local dataProvider = "data.openspaceproject.com/files/webgui" local frontend = asset.syncedResource({ From e12500812f9384c789b251cf4a5152f4ce88c74d Mon Sep 17 00:00:00 2001 From: Emma Broman Date: Wed, 12 Oct 2022 15:54:17 +0200 Subject: [PATCH 27/81] Fix a typo --- modules/space/labelscomponent.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/space/labelscomponent.cpp b/modules/space/labelscomponent.cpp index 5d6a6572d6..bf65758ddc 100644 --- a/modules/space/labelscomponent.cpp +++ b/modules/space/labelscomponent.cpp @@ -42,7 +42,7 @@ namespace { constexpr openspace::properties::Property::PropertyInfo FileInfo = { "File", "File", - "The speck label file with tha data for the labels" + "The speck label file with the data for the labels" }; constexpr openspace::properties::Property::PropertyInfo UnitInfo = { From 4a8e4a35bc32c967b3d61231e80d27cac10c4253 Mon Sep 17 00:00:00 2001 From: Ylva Selling Date: Wed, 12 Oct 2022 11:08:24 -0400 Subject: [PATCH 28/81] Create timer that allows the browser to reload before changing the border radius --- modules/skybrowser/include/screenspaceskybrowser.h | 2 ++ modules/skybrowser/src/screenspaceskybrowser.cpp | 9 +++++++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/modules/skybrowser/include/screenspaceskybrowser.h b/modules/skybrowser/include/screenspaceskybrowser.h index e5abaa69c0..90eb3c2073 100644 --- a/modules/skybrowser/include/screenspaceskybrowser.h +++ b/modules/skybrowser/include/screenspaceskybrowser.h @@ -37,6 +37,7 @@ namespace openspace { class ScreenSpaceSkyBrowser : public ScreenSpaceRenderable, public WwtCommunicator { public: + static constexpr int RadiusTimeOut = 25; explicit ScreenSpaceSkyBrowser(const ghoul::Dictionary& dictionary); ~ScreenSpaceSkyBrowser() override; @@ -80,6 +81,7 @@ private: bool _ratioIsDirty = false; bool _radiusIsDirty = false; bool _isInitialized = false; + int _borderRadiusTimer = -1; float _ratio = 1.f; }; diff --git a/modules/skybrowser/src/screenspaceskybrowser.cpp b/modules/skybrowser/src/screenspaceskybrowser.cpp index 6936337919..1724dccd8b 100644 --- a/modules/skybrowser/src/screenspaceskybrowser.cpp +++ b/modules/skybrowser/src/screenspaceskybrowser.cpp @@ -129,6 +129,7 @@ ScreenSpaceSkyBrowser::ScreenSpaceSkyBrowser(const ghoul::Dictionary& dictionary _scale.onChange([this]() { updateTextureResolution(); + _borderRadiusTimer = 0; }); _useRadiusAzimuthElevation.onChange( @@ -325,11 +326,15 @@ void ScreenSpaceSkyBrowser::update() { if (_shouldReload) { _isInitialized = false; } - - if (_radiusIsDirty && _isInitialized) { + // After the texture has been updated, wait a little bit before updating the border + // radius so the browser has time to update its size + if (_radiusIsDirty && _isInitialized && _borderRadiusTimer == RadiusTimeOut) { setBorderRadius(_borderRadius); _radiusIsDirty = false; + _borderRadiusTimer = -1; } + _borderRadiusTimer++; + ScreenSpaceRenderable::update(); WwtCommunicator::update(); From b8c0a92c7cd75be985273be26d567e5f29946410 Mon Sep 17 00:00:00 2001 From: Alexander Bock Date: Fri, 14 Oct 2022 11:08:35 +0200 Subject: [PATCH 29/81] Provide a better error message when trying to edit a profile that does not exist (closes #2224) --- apps/OpenSpace/ext/launcher/src/launcherwindow.cpp | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/apps/OpenSpace/ext/launcher/src/launcherwindow.cpp b/apps/OpenSpace/ext/launcher/src/launcherwindow.cpp index 572c02a976..8209cec583 100644 --- a/apps/OpenSpace/ext/launcher/src/launcherwindow.cpp +++ b/apps/OpenSpace/ext/launcher/src/launcherwindow.cpp @@ -570,6 +570,19 @@ void LauncherWindow::openProfileEditor(const std::string& profile, bool isUserPr // Otherwise, we want to load that profile std::string fullProfilePath = saveProfilePath + profile + ".profile"; + + // Verify that the file actually exists + if (!std::filesystem::exists(fullProfilePath)) { + QMessageBox::critical( + this, + "Exception", + QString::fromStdString(fmt::format( + "Could not open profile file '{}'", fullProfilePath + )) + ); + + return; + } p = loadProfileFromFile(this, fullProfilePath); if (!p.has_value()) { return; From 524b78f5d274909bd790e82cbeffdb84eb3a585d Mon Sep 17 00:00:00 2001 From: Alexander Bock Date: Fri, 14 Oct 2022 11:24:44 +0200 Subject: [PATCH 30/81] Add the ability to disablee keybindings (closes #2238) --- .../openspace/navigation/navigationhandler.h | 3 +++ src/engine/openspaceengine.cpp | 6 ++++- src/navigation/navigationhandler.cpp | 26 ++++++++++++++----- 3 files changed, 27 insertions(+), 8 deletions(-) diff --git a/include/openspace/navigation/navigationhandler.h b/include/openspace/navigation/navigationhandler.h index ed17a81d7d..5899b7b9fb 100644 --- a/include/openspace/navigation/navigationhandler.h +++ b/include/openspace/navigation/navigationhandler.h @@ -90,6 +90,8 @@ public: // Callback functions void keyboardCallback(Key key, KeyModifier modifier, KeyAction action); + bool disabledKeybindings() const; + void mouseButtonCallback(MouseButton button, MouseAction action); void mousePositionCallback(double x, double y); void mouseScrollWheelCallback(double pos); @@ -169,6 +171,7 @@ private: std::optional _pendingNavigationState; + properties::BoolProperty _disableKeybindings; properties::BoolProperty _disableMouseInputs; properties::BoolProperty _disableJoystickInputs; properties::BoolProperty _useKeyFrameInteraction; diff --git a/src/engine/openspaceengine.cpp b/src/engine/openspaceengine.cpp index 17d75934b3..5ebce6a3cf 100644 --- a/src/engine/openspaceengine.cpp +++ b/src/engine/openspaceengine.cpp @@ -1443,7 +1443,11 @@ void OpenSpaceEngine::keyboardCallback(Key key, KeyModifier mod, KeyAction actio } global::navigationHandler->keyboardCallback(key, mod, action); - global::keybindingManager->keyboardCallback(key, mod, action); + + if (!global::navigationHandler->disabledKeybindings()) { + global::keybindingManager->keyboardCallback(key, mod, action); + } + global::interactionMonitor->markInteraction(); } diff --git a/src/navigation/navigationhandler.cpp b/src/navigation/navigationhandler.cpp index 44785df83e..fc6c60dc50 100644 --- a/src/navigation/navigationhandler.cpp +++ b/src/navigation/navigationhandler.cpp @@ -59,20 +59,26 @@ namespace { constexpr std::string_view _loggerCat = "NavigationHandler"; - using namespace openspace; - constexpr properties::Property::PropertyInfo KeyDisableMouseInputInfo = { + constexpr openspace::properties::Property::PropertyInfo DisableKeybindingsInfo = { + "DisableKeybindings", + "Disable all Keybindings", + "Disables all keybindings without removing them. Please note that this does not " + "apply to the key to open the console" + }; + + constexpr openspace::properties::Property::PropertyInfo DisableMouseInputInfo = { "DisableMouseInputs", "Disable all mouse inputs", "Disables all mouse inputs and prevents them from affecting the camera" }; - constexpr properties::Property::PropertyInfo KeyDisableJoystickInputInfo = { + constexpr openspace::properties::Property::PropertyInfo DisableJoystickInputInfo = { "DisableJoystickInputs", "Disable all joystick inputs", "Disables all joystick inputs and prevents them from affecting the camera" }; - constexpr properties::Property::PropertyInfo KeyFrameInfo = { + constexpr openspace::properties::Property::PropertyInfo FrameInfo = { "UseKeyFrameInteraction", "Use keyframe interaction", "If this is set to 'true' the entire interaction is based off key frames rather " @@ -84,13 +90,15 @@ namespace openspace::interaction { NavigationHandler::NavigationHandler() : properties::PropertyOwner({ "NavigationHandler" }) - , _disableMouseInputs(KeyDisableMouseInputInfo, false) - , _disableJoystickInputs(KeyDisableJoystickInputInfo, false) - , _useKeyFrameInteraction(KeyFrameInfo, false) + , _disableKeybindings(DisableKeybindingsInfo, false) + , _disableMouseInputs(DisableMouseInputInfo, false) + , _disableJoystickInputs(DisableJoystickInputInfo, false) + , _useKeyFrameInteraction(FrameInfo, false) { addPropertySubOwner(_orbitalNavigator); addPropertySubOwner(_pathNavigator); + addProperty(_disableKeybindings); addProperty(_disableMouseInputs); addProperty(_disableJoystickInputs); addProperty(_useKeyFrameInteraction); @@ -368,6 +376,10 @@ void NavigationHandler::keyboardCallback(Key key, KeyModifier modifier, KeyActio _keyboardInputState.keyboardCallback(key, modifier, action); } +bool NavigationHandler::disabledKeybindings() const { + return _disableKeybindings; +} + NavigationState NavigationHandler::navigationState() const { const SceneGraphNode* referenceFrame = _orbitalNavigator.followingAnchorRotation() ? _orbitalNavigator.anchorNode() : From aeb366ae616300eddba6554d9276ab87a8349e9c Mon Sep 17 00:00:00 2001 From: Alexander Bock Date: Sat, 15 Oct 2022 00:08:22 +0200 Subject: [PATCH 31/81] Add new dashboard item to show elapsed times (closes #2234). Cleanup handling of TimeConversion and add unit testing --- data/assets/examples/dashboarditems.asset | 9 + include/openspace/util/timeconversion.h | 5 +- modules/base/CMakeLists.txt | 2 + modules/base/basemodule.cpp | 2 + modules/base/dashboard/dashboarditemdate.cpp | 2 +- .../dashboard/dashboarditemelapsedtime.cpp | 184 ++++++ .../base/dashboard/dashboarditemelapsedtime.h | 59 ++ modules/imgui/src/guispacetimecomponent.cpp | 4 +- .../dashboard/dashboarditeminstruments.cpp | 2 +- src/util/timeconversion.cpp | 126 ++-- tests/CMakeLists.txt | 3 +- tests/test_timeconversion.cpp | 567 ++++++++++++++++++ 12 files changed, 913 insertions(+), 52 deletions(-) create mode 100644 modules/base/dashboard/dashboarditemelapsedtime.cpp create mode 100644 modules/base/dashboard/dashboarditemelapsedtime.h create mode 100644 tests/test_timeconversion.cpp diff --git a/data/assets/examples/dashboarditems.asset b/data/assets/examples/dashboarditems.asset index 08e61ac06d..ba5138ba6b 100644 --- a/data/assets/examples/dashboarditems.asset +++ b/data/assets/examples/dashboarditems.asset @@ -52,6 +52,12 @@ local property_value = { DisplayString = "Earth is enabled: {}" } +local elapsed_time = { + Type = "DashboardItemElapsedTime", + Identifier = "ElapsedTime", + ReferenceTime = "2022-10-12 12:00:00" +} + asset.onInitialize(function() openspace.dashboard.addDashboardItem(angle) openspace.dashboard.addDashboardItem(date) @@ -61,9 +67,11 @@ asset.onInitialize(function() openspace.dashboard.addDashboardItem(parallel_connection) openspace.dashboard.addDashboardItem(mission) openspace.dashboard.addDashboardItem(property_value) + openspace.dashboard.addDashboardItem(elapsed_time) end) asset.onDeinitialize(function() + openspace.dashboard.removeDashboardItem(elapsed_time) openspace.dashboard.removeDashboardItem(property_value) openspace.dashboard.removeDashboardItem(mission) openspace.dashboard.removeDashboardItem(parallel_connection) @@ -74,6 +82,7 @@ asset.onDeinitialize(function() openspace.dashboard.removeDashboardItem(angle) end) +asset.export(elapsed_time) asset.export(property_value) asset.export(mission) asset.export(parallel_connection) diff --git a/include/openspace/util/timeconversion.h b/include/openspace/util/timeconversion.h index 38a4fc8f19..bf4caf076d 100644 --- a/include/openspace/util/timeconversion.h +++ b/include/openspace/util/timeconversion.h @@ -168,7 +168,10 @@ constexpr TimeUnit timeUnitFromString(std::string_view unitName) { } } -std::pair simplifyTime(double seconds, +std::pair simplifyTime(double seconds, + bool forceSingularForm = false); + +std::vector> splitTime(double seconds, bool forceSingularForm = false); constexpr double convertTime(double t, TimeUnit sourceUnit, TimeUnit destinationUnit) { diff --git a/modules/base/CMakeLists.txt b/modules/base/CMakeLists.txt index cb0f531ca0..bc5bb13686 100644 --- a/modules/base/CMakeLists.txt +++ b/modules/base/CMakeLists.txt @@ -28,6 +28,7 @@ set(HEADER_FILES dashboard/dashboarditemangle.h dashboard/dashboarditemdate.h dashboard/dashboarditemdistance.h + dashboard/dashboarditemelapsedtime.h dashboard/dashboarditemframerate.h dashboard/dashboarditemmission.h dashboard/dashboarditemparallelconnection.h @@ -82,6 +83,7 @@ set(SOURCE_FILES dashboard/dashboarditemangle.cpp dashboard/dashboarditemdate.cpp dashboard/dashboarditemdistance.cpp + dashboard/dashboarditemelapsedtime.cpp dashboard/dashboarditemframerate.cpp dashboard/dashboarditemmission.cpp dashboard/dashboarditemparallelconnection.cpp diff --git a/modules/base/basemodule.cpp b/modules/base/basemodule.cpp index 5dbbcd999e..a9d840a6d4 100644 --- a/modules/base/basemodule.cpp +++ b/modules/base/basemodule.cpp @@ -27,6 +27,7 @@ #include #include #include +#include #include #include #include @@ -106,6 +107,7 @@ void BaseModule::internalInitialize(const ghoul::Dictionary&) { fDashboard->registerClass("DashboardItemAngle"); fDashboard->registerClass("DashboardItemDate"); fDashboard->registerClass("DashboardItemDistance"); + fDashboard->registerClass("DashboardItemElapsedTime"); fDashboard->registerClass("DashboardItemFramerate"); fDashboard->registerClass("DashboardItemMission"); fDashboard->registerClass( diff --git a/modules/base/dashboard/dashboarditemdate.cpp b/modules/base/dashboard/dashboarditemdate.cpp index fa02763c3f..d585e4156b 100644 --- a/modules/base/dashboard/dashboarditemdate.cpp +++ b/modules/base/dashboard/dashboarditemdate.cpp @@ -39,7 +39,7 @@ namespace { constexpr openspace::properties::Property::PropertyInfo FormatStringInfo = { "FormatString", "Format String", - "The format text describing how this dashboard item renders it's text. This text " + "The format text describing how this dashboard item renders its text. This text " "must contain exactly one {} which is a placeholder that will contain the date" }; diff --git a/modules/base/dashboard/dashboarditemelapsedtime.cpp b/modules/base/dashboard/dashboarditemelapsedtime.cpp new file mode 100644 index 0000000000..8b54382c63 --- /dev/null +++ b/modules/base/dashboard/dashboarditemelapsedtime.cpp @@ -0,0 +1,184 @@ +/***************************************************************************************** + * * + * OpenSpace * + * * + * Copyright (c) 2014-2022 * + * * + * Permission is hereby granted, free of charge, to any person obtaining a copy of this * + * software and associated documentation files (the "Software"), to deal in the Software * + * without restriction, including without limitation the rights to use, copy, modify, * + * merge, publish, distribute, sublicense, and/or sell copies of the Software, and to * + * permit persons to whom the Software is furnished to do so, subject to the following * + * conditions: * + * * + * The above copyright notice and this permission notice shall be included in all copies * + * or substantial portions of the Software. * + * * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, * + * INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A * + * PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT * + * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF * + * CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE * + * OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * + ****************************************************************************************/ + +#include + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +namespace { + constexpr openspace::properties::Property::PropertyInfo FormatStringInfo = { + "FormatString", + "Format String", + "The format text describing how this dashboard item renders its text. This text " + "must contain exactly one {} which is a placeholder that will contain the value " + "of the elapsed time." + }; + + constexpr openspace::properties::Property::PropertyInfo ReferenceTimeInfo = { + "ReferenceTime", + "Reference Time", + "The reference time relative to which the elapsed time is specified. The format " + "must be an ISO 8601-compliant date string" + }; + + constexpr openspace::properties::Property::PropertyInfo SimplifyTimeInfo = { + "SimplifyTime", + "Simplify Time", + "If this value is enabled, the elapsed time will be simplified into seconds, " + "minutes, hours, etc. If the value is disabled, the elapsed time is always " + "presented in seconds. The default value for this is 'true'." + }; + + constexpr openspace::properties::Property::PropertyInfo LowestTimeUnitInfo = { + "LowestTimeUnit", + "Lowest Time Unit when Simplifying", + "If 'SimplifyTime' is enabled, this is the lowest time unit that will be shown. " + "All finer grained timesteps will be ignored." + }; + + struct [[codegen::Dictionary(DashboardItemElapsedTime)]] Parameters { + // [[codegen::verbatim(FormatStringInfo.description)]] + std::optional formatString; + + // [[codegen::verbatim(ReferenceTimeInfo.description)]] + std::string referenceTime; + + // [[codegen::verbatim(SimplifyTimeInfo.description)]] + std::optional simplifyTime; + + enum class [[codegen::map(openspace::TimeUnit)]] TimeUnit { + Nanosecond, + Microsecond, + Millisecond, + Second, + Minute, + Hour, + Day, + Month, + Year + }; + + // [[codegen::verbatim(LowestTimeUnitInfo.description)]] + std::optional lowestTimeUnit; + }; +#include "dashboarditemelapsedtime_codegen.cpp" +} // namespace + +namespace openspace { + +documentation::Documentation DashboardItemElapsedTime::Documentation() { + return codegen::doc("base_dashboarditem_elapsedtime"); +} + +DashboardItemElapsedTime::DashboardItemElapsedTime(const ghoul::Dictionary& dictionary) + : DashboardTextItem(dictionary, 15.f) + , _formatString(FormatStringInfo, "Elapsed time: {}") + , _referenceTime(ReferenceTimeInfo) + , _simplifyTime(SimplifyTimeInfo, true) + , _lowestTimeUnit(LowestTimeUnitInfo) +{ + const Parameters p = codegen::bake(dictionary); + + _formatString = p.formatString.value_or(_formatString); + + _referenceTime.onChange([this]() { + _referenceJ2000 = Time::convertTime(_referenceTime); + }); + _referenceTime = p.referenceTime; + addProperty(_referenceTime); + + _simplifyTime = p.simplifyTime.value_or(_simplifyTime); + addProperty(_simplifyTime); + + for (TimeUnit u : TimeUnits) { + _lowestTimeUnit.addOption(static_cast(u), std::string(nameForTimeUnit(u))); + } + _lowestTimeUnit = static_cast(TimeUnit::Second); + TimeUnit u = codegen::map( + p.lowestTimeUnit.value_or(Parameters::TimeUnit::Second) + ); + _lowestTimeUnit = static_cast(u); + addProperty(_lowestTimeUnit); +} + +void DashboardItemElapsedTime::render(glm::vec2& penPosition) { + ZoneScoped + + double delta = global::timeManager->time().j2000Seconds() - _referenceJ2000; + + if (_simplifyTime) { + using namespace std::chrono; + + TimeUnit lowestTime = TimeUnit(_lowestTimeUnit.value()); + std::string_view lowestUnitS = nameForTimeUnit(lowestTime, false); + std::string_view lowestUnitP = nameForTimeUnit(lowestTime, true); + + std::vector> ts = splitTime(delta); + std::string time; + for (const std::pair& t : ts) { + time += fmt::format("{} {} ", t.first, t.second); + if (t.second == lowestUnitS || t.second == lowestUnitP) { + // We have reached the lowest unit the user was interested in + break; + } + } + + // Remove the " " at the end + time = time.substr(0, time.size() - 2); + + RenderFont( + *_font, + penPosition, + fmt::format(fmt::runtime(_formatString.value()), time) + ); + } + else { + std::string time = fmt::format("{} s", delta); + RenderFont( + *_font, + penPosition, + fmt::format(fmt::runtime(_formatString.value()), time) + ); + } + + penPosition.y -= _font->height(); +} + +glm::vec2 DashboardItemElapsedTime::size() const { + ZoneScoped + + const double delta = global::timeManager->time().j2000Seconds() - _referenceJ2000; + return _font->boundingBox(fmt::format(fmt::runtime(_formatString.value()), delta)); +} + +} // namespace openspace diff --git a/modules/base/dashboard/dashboarditemelapsedtime.h b/modules/base/dashboard/dashboarditemelapsedtime.h new file mode 100644 index 0000000000..83a5961b3c --- /dev/null +++ b/modules/base/dashboard/dashboarditemelapsedtime.h @@ -0,0 +1,59 @@ +/***************************************************************************************** + * * + * OpenSpace * + * * + * Copyright (c) 2014-2022 * + * * + * Permission is hereby granted, free of charge, to any person obtaining a copy of this * + * software and associated documentation files (the "Software"), to deal in the Software * + * without restriction, including without limitation the rights to use, copy, modify, * + * merge, publish, distribute, sublicense, and/or sell copies of the Software, and to * + * permit persons to whom the Software is furnished to do so, subject to the following * + * conditions: * + * * + * The above copyright notice and this permission notice shall be included in all copies * + * or substantial portions of the Software. * + * * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, * + * INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A * + * PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT * + * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF * + * CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE * + * OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * + ****************************************************************************************/ + +#ifndef __OPENSPACE_MODULE_BASE___DASHBOARDITEMELAPSEDTIME___H__ +#define __OPENSPACE_MODULE_BASE___DASHBOARDITEMELAPSEDTIME___H__ + +#include + +#include +#include +#include + +namespace openspace { + +namespace documentation { struct Documentation; } + +class DashboardItemElapsedTime : public DashboardTextItem { +public: + DashboardItemElapsedTime(const ghoul::Dictionary& dictionary); + ~DashboardItemElapsedTime() override = default; + + void render(glm::vec2& penPosition) override; + + glm::vec2 size() const override; + + static documentation::Documentation Documentation(); + +private: + properties::StringProperty _formatString; + properties::StringProperty _referenceTime; + double _referenceJ2000 = 0.0; + properties::BoolProperty _simplifyTime; + properties::OptionProperty _lowestTimeUnit; +}; + +} // namespace openspace + +#endif // __OPENSPACE_MODULE_BASE___DASHBOARDITEMDATE___H__ diff --git a/modules/imgui/src/guispacetimecomponent.cpp b/modules/imgui/src/guispacetimecomponent.cpp index 9b4c47f2cd..8de8461198 100644 --- a/modules/imgui/src/guispacetimecomponent.cpp +++ b/modules/imgui/src/guispacetimecomponent.cpp @@ -339,9 +339,9 @@ void GuiSpaceTimeComponent::render() { { const float dt = static_cast(global::timeManager->targetDeltaTime()); if (_firstFrame) { - const std::pair& dtInfo = simplifyTime(dt); + const std::pair& dtInfo = simplifyTime(dt); _deltaTime = static_cast(dtInfo.first); - _deltaTimeUnit = timeUnitFromString(dtInfo.second.c_str()); + _deltaTimeUnit = timeUnitFromString(dtInfo.second); _timeUnits = std::accumulate( openspace::TimeUnits.begin(), diff --git a/modules/spacecraftinstruments/dashboard/dashboarditeminstruments.cpp b/modules/spacecraftinstruments/dashboard/dashboarditeminstruments.cpp index 4ddd6accfc..ae6a0512e6 100644 --- a/modules/spacecraftinstruments/dashboard/dashboarditeminstruments.cpp +++ b/modules/spacecraftinstruments/dashboard/dashboarditeminstruments.cpp @@ -144,7 +144,7 @@ void DashboardItemInstruments::render(glm::vec2& penPosition) { ghoul::fontrendering::CrDirection::Down ); - std::pair remainingConv = simplifyTime(remaining); + std::pair remainingConv = simplifyTime(remaining); // If the remaining time is below 5 minutes, we switch over to seconds display if (remaining < 5 * 60) { diff --git a/src/util/timeconversion.cpp b/src/util/timeconversion.cpp index 7dedad8140..4d38a3d384 100644 --- a/src/util/timeconversion.cpp +++ b/src/util/timeconversion.cpp @@ -28,57 +28,91 @@ #include +namespace { + std::pair extractUnit(double seconds) { + using namespace openspace; + + const double secondsVal = glm::abs(seconds); + + if (secondsVal == 0.0) { + return { 0.0, TimeUnit::Second }; + } + else if (secondsVal <= 1e-6) { + const double val = seconds / 1e-9; + return { val, TimeUnit::Nanosecond }; + } + else if (secondsVal <= 1e-3) { + const double val = seconds / 1e-6; + return { val, TimeUnit::Microsecond }; + } + else if (secondsVal <= 1.0) { + const double val = seconds / 1e-3; + return { val, TimeUnit::Millisecond }; + } + else if (secondsVal <= SecondsPerMinute) { + return { seconds, TimeUnit::Second }; + } + else if (secondsVal <= SecondsPerHour) { + const double val = seconds / SecondsPerMinute; + return { val, TimeUnit::Minute }; + } + else if (secondsVal <= SecondsPerDay) { + const double val = seconds / SecondsPerHour; + return { val, TimeUnit::Hour }; + } + else if (secondsVal <= SecondsPerMonth) { + const double val = seconds / SecondsPerDay; + return { val, TimeUnit::Day }; + } + else if (secondsVal <= SecondsPerYear) { + const double val = seconds / SecondsPerMonth; + return { val, TimeUnit::Month }; + } + else { + const double val = seconds / SecondsPerYear; + return { val, TimeUnit::Year }; + } + } +} // namespace + namespace openspace { -std::pair simplifyTime(double seconds, bool forceSingularForm) { - const double secondsVal = glm::abs(seconds); +std::pair simplifyTime(double seconds, bool forceSingularForm) { + std::pair p = extractUnit(seconds); - if (secondsVal == 0.0) { - return { 0.0, forceSingularForm ? "second" : "seconds" }; - } - else if (secondsVal > 1e-3 && secondsVal < SecondsPerMinute) { - return { seconds, (seconds == 1.0 || forceSingularForm) ? "second" : "seconds" }; - } + bool pluralForm = (p.first != 1.0 && !forceSingularForm); + return { p.first, nameForTimeUnit(p.second, pluralForm) }; +} - if (secondsVal <= 1e-9) { - const double val = seconds / 1e-9; - return { val, (val == 1.0 || forceSingularForm) ? "nanosecond" : "nanoseconds" }; - } - else if (secondsVal <= 1e-6) { - const double val = seconds / 1e-6; - return { - val, - (val == 1.0 || forceSingularForm) ? "microsecond" : "microseconds" - }; - } - else if (secondsVal <= 1e-3) { - const double val = seconds / 1e-3; - return { - val, - (val == 1.0 || forceSingularForm) ? "millisecond" : "milliseconds" - }; - } +std::vector> splitTime(double seconds, + bool forceSingularForm) +{ + std::vector> res; - if (secondsVal >= SecondsPerYear) { - const double val = seconds / SecondsPerYear; - return { val, (val == 1.0 || forceSingularForm) ? "year" : "years" }; - } - else if (secondsVal >= SecondsPerMonth) { - const double val = seconds / SecondsPerMonth; - return { val, (val == 1.0 || forceSingularForm) ? "month" : "months" }; - } - else if (secondsVal >= SecondsPerDay) { - const double val = seconds / SecondsPerDay; - return { val, (val == 1.0 || forceSingularForm) ? "day" : "days" }; - } - else if (secondsVal >= SecondsPerHour) { - const double val = seconds / SecondsPerHour; - return { val, (val == 1.0 || forceSingularForm) ? "hour" : "hours" }; - } - else { - const double val = seconds / SecondsPerMinute; - return { val, (val == 1.0 || forceSingularForm) ? "minute" : "minutes" }; - } + double secondsVal = std::abs(seconds); + + do { + std::pair p = extractUnit(secondsVal); + + if (p.second == TimeUnit::Nanosecond) { + // We have reached the lowest supported time unit + + bool pluralForm = (p.first != 1.0 && !forceSingularForm); + res.push_back({ p.first, nameForTimeUnit(p.second, pluralForm) }); + break; + } + + double pt = std::floor(p.first); + + // Add the unit the list + bool pluralForm = (p.first != 1.0 && !forceSingularForm); + res.push_back({ pt, nameForTimeUnit(p.second, pluralForm) }); + + // Adjust the remaining time + secondsVal -= convertTime(pt, p.second, TimeUnit::Second); + } while (secondsVal != 0.0); + + return res; } } // namespace openspace diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 93a213a112..916e8bede9 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -40,8 +40,9 @@ add_executable( test_rawvolumeio.cpp test_scriptscheduler.cpp test_spicemanager.cpp - test_timequantizer.cpp + test_timeconversion.cpp test_timeline.cpp + test_timequantizer.cpp property/test_property_optionproperty.cpp property/test_property_listproperties.cpp diff --git a/tests/test_timeconversion.cpp b/tests/test_timeconversion.cpp new file mode 100644 index 0000000000..77f02be295 --- /dev/null +++ b/tests/test_timeconversion.cpp @@ -0,0 +1,567 @@ +/***************************************************************************************** + * * + * OpenSpace * + * * + * Copyright (c) 2014-2022 * + * * + * Permission is hereby granted, free of charge, to any person obtaining a copy of this * + * software and associated documentation files (the "Software"), to deal in the Software * + * without restriction, including without limitation the rights to use, copy, modify, * + * merge, publish, distribute, sublicense, and/or sell copies of the Software, and to * + * permit persons to whom the Software is furnished to do so, subject to the following * + * conditions: * + * * + * The above copyright notice and this permission notice shall be included in all copies * + * or substantial portions of the Software. * + * * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, * + * INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A * + * PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT * + * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF * + * CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE * + * OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * + ****************************************************************************************/ + +#include "catch2/catch.hpp" + +#include + +using namespace openspace; + +TEST_CASE("TimeConversion: Simplify Time Round", "[timeconversion]") { + { + std::pair p = simplifyTime(0.0, false); + CHECK(p.first == 0.0); + CHECK(p.second == "seconds"); + } + { + std::pair p = simplifyTime(0.0, true); + CHECK(p.first == 0.0); + CHECK(p.second == "second"); + } + { + std::pair p = simplifyTime(2e-9, false); + CHECK(p.first == 2.0); + CHECK(p.second == "nanoseconds"); + } + { + std::pair p = simplifyTime(2e-9, true); + CHECK(p.first == 2.0); + CHECK(p.second == "nanosecond"); + } + { + std::pair p = simplifyTime(2e-6, false); + CHECK(p.first == 2.0); + CHECK(p.second == "microseconds"); + } + { + std::pair p = simplifyTime(2e-6, true); + CHECK(p.first == 2.0); + CHECK(p.second == "microsecond"); + } + { + std::pair p = simplifyTime(2e-3, false); + CHECK(p.first == 2.0); + CHECK(p.second == "milliseconds"); + } + { + std::pair p = simplifyTime(2e-3, true); + CHECK(p.first == 2.0); + CHECK(p.second == "millisecond"); + } + { + std::pair p = simplifyTime(2.0, false); + CHECK(p.first == 2.0); + CHECK(p.second == "seconds"); + } + { + std::pair p = simplifyTime(2.0, true); + CHECK(p.first == 2.0); + CHECK(p.second == "second"); + } + { + std::pair p = simplifyTime(120.0, false); + CHECK(p.first == 2.0); + CHECK(p.second == "minutes"); + } + { + std::pair p = simplifyTime(120.0, true); + CHECK(p.first == 2.0); + CHECK(p.second == "minute"); + } + { + std::pair p = simplifyTime(7200.0, false); + CHECK(p.first == 2.0); + CHECK(p.second == "hours"); + } + { + std::pair p = simplifyTime(7200.0, true); + CHECK(p.first == 2.0); + CHECK(p.second == "hour"); + } + { + std::pair p = simplifyTime(172800.0, false); + CHECK(p.first == 2.0); + CHECK(p.second == "days"); + } + { + std::pair p = simplifyTime(172800.0, true); + CHECK(p.first == 2.0); + CHECK(p.second == "day"); + } + { + std::pair p = simplifyTime(5259492.0, false); + CHECK(p.first == 2.0); + CHECK(p.second == "months"); + } + { + std::pair p = simplifyTime(5259492.0, true); + CHECK(p.first == 2.0); + CHECK(p.second == "month"); + } + { + std::pair p = simplifyTime(63113904.0, false); + CHECK(p.first == 2.0); + CHECK(p.second == "years"); + } + { + std::pair p = simplifyTime(63113904.0, true); + CHECK(p.first == 2.0); + CHECK(p.second == "year"); + } +} + +TEST_CASE("TimeConversion: Simplify Time Fractional", "[timeconversion]") { + { + std::pair p = simplifyTime(32e-10, false); + CHECK(Approx(p.first) == 3.2); + CHECK(p.second == "nanoseconds"); + } + { + std::pair p = simplifyTime(32e-10, true); + CHECK(Approx(p.first) == 3.2); + CHECK(p.second == "nanosecond"); + } + { + std::pair p = simplifyTime(32e-7, false); + CHECK(Approx(p.first) == 3.2); + CHECK(p.second == "microseconds"); + } + { + std::pair p = simplifyTime(32e-7, true); + CHECK(Approx(p.first) == 3.2); + CHECK(p.second == "microsecond"); + } + { + std::pair p = simplifyTime(32e-4, false); + CHECK(Approx(p.first) == 3.2); + CHECK(p.second == "milliseconds"); + } + { + std::pair p = simplifyTime(32e-4, true); + CHECK(Approx(p.first) == 3.2); + CHECK(p.second == "millisecond"); + } + { + std::pair p = simplifyTime(3.2, false); + CHECK(Approx(p.first) == 3.2); + CHECK(p.second == "seconds"); + } + { + std::pair p = simplifyTime(3.2, true); + CHECK(Approx(p.first) == 3.2); + CHECK(p.second == "second"); + } + { + std::pair p = simplifyTime(192.0, false); + CHECK(Approx(p.first) == 3.2); + CHECK(p.second == "minutes"); + } + { + std::pair p = simplifyTime(192.0, true); + CHECK(Approx(p.first) == 3.2); + CHECK(p.second == "minute"); + } + { + std::pair p = simplifyTime(11520.0, false); + CHECK(Approx(p.first) == 3.2); + CHECK(p.second == "hours"); + } + { + std::pair p = simplifyTime(11520.0, true); + CHECK(Approx(p.first) == 3.2); + CHECK(p.second == "hour"); + } + { + std::pair p = simplifyTime(276480.0, false); + CHECK(Approx(p.first) == 3.2); + CHECK(p.second == "days"); + } + { + std::pair p = simplifyTime(276480.0, true); + CHECK(Approx(p.first) == 3.2); + CHECK(p.second == "day"); + } + { + std::pair p = simplifyTime(8415187.2, false); + CHECK(Approx(p.first) == 3.2); + CHECK(p.second == "months"); + } + { + std::pair p = simplifyTime(8415187.2, true); + CHECK(Approx(p.first) == 3.2); + CHECK(p.second == "month"); + } + { + std::pair p = simplifyTime(100982246.4, false); + CHECK(Approx(p.first) == 3.2); + CHECK(p.second == "years"); + } + { + std::pair p = simplifyTime(100982246.4, true); + CHECK(Approx(p.first) == 3.2); + CHECK(p.second == "year"); + } +} + +TEST_CASE("TimeConversion: Split Time Multiple Round", "[timeconversion]") { + { + std::vector> p = splitTime(0.0, false); + REQUIRE(p.size() == 1); + CHECK(p[0].first == 0.0); + CHECK(p[0].second == "seconds"); + } + { + std::vector> p = splitTime(0.0, true); + REQUIRE(p.size() == 1); + CHECK(p[0].first == 0.0); + CHECK(p[0].second == "second"); + } + { + std::vector> p = splitTime(2e-9, false); + REQUIRE(p.size() == 1); + CHECK(p[0].first == 2.0); + CHECK(p[0].second == "nanoseconds"); + } + { + std::vector> p = splitTime(2e-9, true); + REQUIRE(p.size() == 1); + CHECK(p[0].first == 2.0); + CHECK(p[0].second == "nanosecond"); + } + { + std::vector> p = splitTime(2e-6, false); + REQUIRE(p.size() == 1); + CHECK(p[0].first == 2.0); + CHECK(p[0].second == "microseconds"); + } + { + std::vector> p = splitTime(2e-6, true); + REQUIRE(p.size() == 1); + CHECK(p[0].first == 2.0); + CHECK(p[0].second == "microsecond"); + } + { + std::vector> p = splitTime(2e-3, false); + REQUIRE(p.size() == 1); + CHECK(p[0].first == 2.0); + CHECK(p[0].second == "milliseconds"); + } + { + std::vector> p = splitTime(2e-3, true); + REQUIRE(p.size() == 1); + CHECK(p[0].first == 2.0); + CHECK(p[0].second == "millisecond"); + } + { + std::vector> p = splitTime(2.0, false); + REQUIRE(p.size() == 1); + CHECK(p[0].first == 2.0); + CHECK(p[0].second == "seconds"); + } + { + std::vector> p = splitTime(2.0, true); + REQUIRE(p.size() == 1); + CHECK(p[0].first == 2.0); + CHECK(p[0].second == "second"); + } + { + std::vector> p = splitTime(120.0, false); + REQUIRE(p.size() == 1); + CHECK(p[0].first == 2.0); + CHECK(p[0].second == "minutes"); + } + { + std::vector> p = splitTime(120.0, true); + REQUIRE(p.size() == 1); + CHECK(p[0].first == 2.0); + CHECK(p[0].second == "minute"); + } + { + std::vector> p = splitTime(7200.0, false); + REQUIRE(p.size() == 1); + CHECK(p[0].first == 2.0); + CHECK(p[0].second == "hours"); + } + { + std::vector> p = splitTime(7200.0, true); + REQUIRE(p.size() == 1); + CHECK(p[0].first == 2.0); + CHECK(p[0].second == "hour"); + } + { + std::vector> p = splitTime(172800.0, false); + REQUIRE(p.size() == 1); + CHECK(p[0].first == 2.0); + CHECK(p[0].second == "days"); + } + { + std::vector> p = splitTime(172800.0, true); + REQUIRE(p.size() == 1); + CHECK(p[0].first == 2.0); + CHECK(p[0].second == "day"); + } + { + std::vector> p = splitTime(5259492.0, false); + REQUIRE(p.size() == 1); + CHECK(p[0].first == 2.0); + CHECK(p[0].second == "months"); + } + { + std::vector> p = splitTime(5259492.0, true); + REQUIRE(p.size() == 1); + CHECK(p[0].first == 2.0); + CHECK(p[0].second == "month"); + } + { + std::vector> p = splitTime(63113904.0, false); + REQUIRE(p.size() == 1); + CHECK(p[0].first == 2.0); + CHECK(p[0].second == "years"); + } + { + std::vector> p = splitTime(63113904.0, true); + REQUIRE(p.size() == 1); + CHECK(p[0].first == 2.0); + CHECK(p[0].second == "year"); + } +} + +TEST_CASE("TimeConversion: Split Time Fractional", "[timeconversion]") { + { + std::vector> p = splitTime(32e-10, false); + REQUIRE(p.size() == 1); + CHECK(Approx(p[0].first) == 3.2); + CHECK(p[0].second == "nanoseconds"); + } + { + std::vector> p = splitTime(32e-10, true); + REQUIRE(p.size() == 1); + CHECK(Approx(p[0].first) == 3.2); + CHECK(p[0].second == "nanosecond"); + } + { + std::vector> p = splitTime(32e-7, false); + REQUIRE(p.size() == 2); + CHECK(Approx(p[0].first) == 3.0); + CHECK(p[0].second == "microseconds"); + CHECK(Approx(p[1].first) == 200.0); + CHECK(p[1].second == "nanoseconds"); + } + { + std::vector> p = splitTime(32e-7, true); + REQUIRE(p.size() == 2); + CHECK(Approx(p[0].first) == 3.0); + CHECK(p[0].second == "microsecond"); + CHECK(Approx(p[1].first) == 200.0); + CHECK(p[1].second == "nanosecond"); + } + { + std::vector> p = splitTime(32e-4, false); + REQUIRE(p.size() == 3); + CHECK(Approx(p[0].first) == 3.0); + CHECK(p[0].second == "milliseconds"); + CHECK(Approx(p[1].first) == 200.0); + CHECK(p[1].second == "microseconds"); + // This is some floating point inaccuracy + CHECK(p[2].first < 1e-3); + CHECK(p[2].second == "nanoseconds"); + } + { + std::vector> p = splitTime(32e-4, true); + REQUIRE(p.size() == 3); + CHECK(Approx(p[0].first) == 3.0); + CHECK(p[0].second == "millisecond"); + CHECK(Approx(p[1].first) == 200.0); + CHECK(p[1].second == "microsecond"); + // This is some floating point inaccuracy + CHECK(p[2].first < 1e-3); + CHECK(p[2].second == "nanosecond"); + } + { + std::vector> p = splitTime(3.2, false); + REQUIRE(p.size() == 3); + CHECK(Approx(p[0].first) == 3.0); + CHECK(p[0].second == "seconds"); + CHECK(Approx(p[1].first) == 200.0); + CHECK(p[1].second == "milliseconds"); + // This is some floating point inaccuracy + CHECK(p[2].first < 1e-3); + CHECK(p[2].second == "nanoseconds"); + } + { + std::vector> p = splitTime(3.2, true); + REQUIRE(p.size() == 3); + CHECK(Approx(p[0].first) == 3.0); + CHECK(p[0].second == "second"); + CHECK(Approx(p[1].first) == 200.0); + CHECK(p[1].second == "millisecond"); + // This is some floating point inaccuracy + CHECK(p[2].first < 1e-3); + CHECK(p[2].second == "nanosecond"); + } + { + std::vector> p = splitTime(192.0, false); + REQUIRE(p.size() == 2); + CHECK(Approx(p[0].first) == 3.0); + CHECK(p[0].second == "minutes"); + CHECK(Approx(p[1].first) == 12.0); + CHECK(p[1].second == "seconds"); + } + { + std::vector> p = splitTime(192.0, true); + REQUIRE(p.size() == 2); + CHECK(Approx(p[0].first) == 3.0); + CHECK(p[0].second == "minute"); + CHECK(Approx(p[1].first) == 12.0); + CHECK(p[1].second == "second"); + } + { + std::vector> p = splitTime(11520.0, false); + REQUIRE(p.size() == 2); + CHECK(Approx(p[0].first) == 3.0); + CHECK(p[0].second == "hours"); + CHECK(Approx(p[1].first) == 12.0); + CHECK(p[1].second == "minutes"); + } + { + std::vector> p = splitTime(11520.0, true); + REQUIRE(p.size() == 2); + CHECK(Approx(p[0].first) == 3.0); + CHECK(p[0].second == "hour"); + CHECK(Approx(p[1].first) == 12.0); + CHECK(p[1].second == "minute"); + } + { + std::vector> p = splitTime(276480.0, false); + REQUIRE(p.size() == 3); + CHECK(Approx(p[0].first) == 3.0); + CHECK(p[0].second == "days"); + CHECK(Approx(p[1].first) == 4); + CHECK(p[1].second == "hours"); + CHECK(Approx(p[2].first) == 48); + CHECK(p[2].second == "minutes"); + } + { + std::vector> p = splitTime(276480.0, true); + REQUIRE(p.size() == 3); + CHECK(Approx(p[0].first) == 3.0); + CHECK(p[0].second == "day"); + CHECK(Approx(p[1].first) == 4); + CHECK(p[1].second == "hour"); + CHECK(Approx(p[2].first) == 48); + CHECK(p[2].second == "minute"); + } + { + std::vector> p = splitTime(8414838.0, false); + REQUIRE(p.size() == 3); + CHECK(Approx(p[0].first) == 3.0); + CHECK(p[0].second == "months"); + CHECK(Approx(p[1].first) == 6.0); + CHECK(p[1].second == "days"); + CHECK(Approx(p[2].first) == 2.0); + CHECK(p[2].second == "hours"); + + } + { + std::vector> p = splitTime(8414838.0, true); + REQUIRE(p.size() == 3); + CHECK(Approx(p[0].first) == 3.0); + CHECK(p[0].second == "month"); + CHECK(Approx(p[1].first) == 6.0); + CHECK(p[1].second == "day"); + CHECK(Approx(p[2].first) == 2.0); + CHECK(p[2].second == "hour"); + } + { + std::vector> p = + splitTime(100981548.0, false); + REQUIRE(p.size() == 4); + CHECK(Approx(p[0].first) == 3.0); + CHECK(p[0].second == "years"); + CHECK(Approx(p[1].first) == 2.0); + CHECK(p[1].second == "months"); + CHECK(Approx(p[2].first) == 12.0); + CHECK(p[2].second == "days"); + CHECK(Approx(p[3].first) == 4.0); + CHECK(p[3].second == "hours"); + } + { + std::vector> p = splitTime(100981548.0, true); + REQUIRE(p.size() == 4); + CHECK(Approx(p[0].first) == 3.0); + CHECK(p[0].second == "year"); + CHECK(Approx(p[1].first) == 2.0); + CHECK(p[1].second == "month"); + CHECK(Approx(p[2].first) == 12.0); + CHECK(p[2].second == "day"); + CHECK(Approx(p[3].first) == 4.0); + CHECK(p[3].second == "hour"); + } + { + std::vector> p = + splitTime(100981676.388, false); + REQUIRE(p.size() == 9); + CHECK(Approx(p[0].first) == 3.0); + CHECK(p[0].second == "years"); + CHECK(Approx(p[1].first) == 2.0); + CHECK(p[1].second == "months"); + CHECK(Approx(p[2].first) == 12.0); + CHECK(p[2].second == "days"); + CHECK(Approx(p[3].first) == 4.0); + CHECK(p[3].second == "hours"); + CHECK(Approx(p[4].first) == 2.0); + CHECK(p[4].second == "minutes"); + CHECK(Approx(p[5].first) == 8.0); + CHECK(p[5].second == "seconds"); + CHECK(Approx(p[6].first) == 387.0); + CHECK(p[6].second == "milliseconds"); + CHECK(Approx(p[7].first) == 999.0); + CHECK(p[7].second == "microseconds"); + CHECK(Approx(p[8].first) == 996.54293059); + CHECK(p[8].second == "nanoseconds"); + } + { + std::vector> p = + splitTime(100981676.388, true); + REQUIRE(p.size() == 9); + CHECK(Approx(p[0].first) == 3.0); + CHECK(p[0].second == "year"); + CHECK(Approx(p[1].first) == 2.0); + CHECK(p[1].second == "month"); + CHECK(Approx(p[2].first) == 12.0); + CHECK(p[2].second == "day"); + CHECK(Approx(p[3].first) == 4.0); + CHECK(p[3].second == "hour"); + CHECK(Approx(p[4].first) == 2.0); + CHECK(p[4].second == "minute"); + CHECK(Approx(p[5].first) == 8.0); + CHECK(p[5].second == "second"); + CHECK(Approx(p[6].first) == 387.0); + CHECK(p[6].second == "millisecond"); + CHECK(Approx(p[7].first) == 999.0); + CHECK(p[7].second == "microsecond"); + CHECK(Approx(p[8].first) == 996.54293059); + CHECK(p[8].second == "nanosecond"); + } +} From 009da9426ecf3b4b716c34915effdf19ed0e67b9 Mon Sep 17 00:00:00 2001 From: Emma Broman Date: Thu, 20 Oct 2022 13:13:40 +0200 Subject: [PATCH 32/81] Add a function to target previous interesting anchor Not only next --- src/navigation/navigationhandler.cpp | 3 ++- src/navigation/navigationhandler_lua.inl | 32 ++++++++++++++++++++++++ 2 files changed, 34 insertions(+), 1 deletion(-) diff --git a/src/navigation/navigationhandler.cpp b/src/navigation/navigationhandler.cpp index fc6c60dc50..27ca0633ce 100644 --- a/src/navigation/navigationhandler.cpp +++ b/src/navigation/navigationhandler.cpp @@ -630,7 +630,8 @@ scripting::LuaLibrary NavigationHandler::luaLibrary() { codegen::lua::AddGlobalRoll, codegen::lua::TriggerIdleBehavior, codegen::lua::ListAllJoysticks, - codegen::lua::TargetNextInterestingAnchor + codegen::lua::TargetNextInterestingAnchor, + codegen::lua::TargetPreviousInterestingAnchor } }; } diff --git a/src/navigation/navigationhandler_lua.inl b/src/navigation/navigationhandler_lua.inl index baa7a0b88a..9e838cebab 100644 --- a/src/navigation/navigationhandler_lua.inl +++ b/src/navigation/navigationhandler_lua.inl @@ -140,6 +140,38 @@ namespace { global::navigationHandler->orbitalNavigator().startRetargetAnchor(); } +// Picks the previous node from the interesting nodes out of the profile and selects that. +// If the current anchor is not an interesting node, the first will be selected +[[codegen::luawrap]] void targetPreviousInterestingAnchor() { + using namespace openspace; + if (global::profile->markNodes.empty()) { + LWARNINGC( + "targetPreviousInterestingAnchor", + "Profile does not define any interesting nodes" + ); + return; + } + const std::vector& markNodes = global::profile->markNodes; + + std::string currAnchor = + global::navigationHandler->orbitalNavigator().anchorNode()->identifier(); + + auto it = std::find(markNodes.begin(), markNodes.end(), currAnchor); + if (it == markNodes.end()) { + // We want to use the first node if the current node is not an interesting node + global::navigationHandler->orbitalNavigator().setFocusNode(markNodes.front()); + } + else if (it == markNodes.begin()) { + // We want to use the last node if the current node is the first in the list + global::navigationHandler->orbitalNavigator().setFocusNode(markNodes.back()); + } + else { + // Otherwise we can just select the previous one + global::navigationHandler->orbitalNavigator().setFocusNode(*(it - 1)); + } + global::navigationHandler->orbitalNavigator().startRetargetAnchor(); +} + /** * Finds the input joystick with the given 'name' and binds the axis identified by the * second argument to be used as the type identified by the third argument. If From 24fbdfe9cc25871eaa45c6cce6cd5c36493066fc Mon Sep 17 00:00:00 2001 From: Emma Broman Date: Thu, 27 Oct 2022 19:34:30 +0200 Subject: [PATCH 33/81] Update webgui hash to get tooltip fix --- data/assets/util/webgui.asset | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/assets/util/webgui.asset b/data/assets/util/webgui.asset index 7fd95f5665..e2640585b3 100644 --- a/data/assets/util/webgui.asset +++ b/data/assets/util/webgui.asset @@ -3,7 +3,7 @@ asset.require("./static_server") local guiCustomization = asset.require("customization/gui") -- Select which commit hashes to use for the frontend and backend -local frontendHash = "cf7b5df404cdbfb0409a94bb47d5365dcfb6f8f6" +local frontendHash = "fedebf63786c4aaa25123e782d1468ac5a695ac1" local dataProvider = "data.openspaceproject.com/files/webgui" local frontend = asset.syncedResource({ From 70bfeb12ed101c71931b2e4db2ea94d5cf79a865 Mon Sep 17 00:00:00 2001 From: Ylva Selling Date: Thu, 27 Oct 2022 14:07:39 -0400 Subject: [PATCH 34/81] Fix comments on PR --- modules/skybrowser/include/screenspaceskybrowser.h | 2 +- modules/skybrowser/src/screenspaceskybrowser.cpp | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/modules/skybrowser/include/screenspaceskybrowser.h b/modules/skybrowser/include/screenspaceskybrowser.h index 90eb3c2073..721f9d0067 100644 --- a/modules/skybrowser/include/screenspaceskybrowser.h +++ b/modules/skybrowser/include/screenspaceskybrowser.h @@ -37,7 +37,6 @@ namespace openspace { class ScreenSpaceSkyBrowser : public ScreenSpaceRenderable, public WwtCommunicator { public: - static constexpr int RadiusTimeOut = 25; explicit ScreenSpaceSkyBrowser(const ghoul::Dictionary& dictionary); ~ScreenSpaceSkyBrowser() override; @@ -68,6 +67,7 @@ public: static documentation::Documentation Documentation(); private: + static constexpr int RadiusTimeOut = 25; properties::FloatProperty _textureQuality; properties::BoolProperty _isHidden; std::vector> _displayCopies; diff --git a/modules/skybrowser/src/screenspaceskybrowser.cpp b/modules/skybrowser/src/screenspaceskybrowser.cpp index 1724dccd8b..77ab8784f9 100644 --- a/modules/skybrowser/src/screenspaceskybrowser.cpp +++ b/modules/skybrowser/src/screenspaceskybrowser.cpp @@ -130,7 +130,7 @@ ScreenSpaceSkyBrowser::ScreenSpaceSkyBrowser(const ghoul::Dictionary& dictionary _scale.onChange([this]() { updateTextureResolution(); _borderRadiusTimer = 0; - }); + }); _useRadiusAzimuthElevation.onChange( [this]() { @@ -334,7 +334,6 @@ void ScreenSpaceSkyBrowser::update() { _borderRadiusTimer = -1; } _borderRadiusTimer++; - ScreenSpaceRenderable::update(); WwtCommunicator::update(); From cd92ea31dddaa90501c3448e1a501cc50d36d016 Mon Sep 17 00:00:00 2001 From: Ylva Selling Date: Thu, 27 Oct 2022 17:09:22 -0400 Subject: [PATCH 35/81] First draft of using equatorial coordinates for dragging --- modules/skybrowser/src/targetbrowserpair.cpp | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/modules/skybrowser/src/targetbrowserpair.cpp b/modules/skybrowser/src/targetbrowserpair.cpp index fa6cf38527..4f3e8883b8 100644 --- a/modules/skybrowser/src/targetbrowserpair.cpp +++ b/modules/skybrowser/src/targetbrowserpair.cpp @@ -74,20 +74,28 @@ void TargetBrowserPair::setImageOrder(int i, int order) { } void TargetBrowserPair::startFinetuningTarget() { + _startTargetPosition = _targetNode->worldPosition(); } -// The fine tune of the target is a way to "drag and drop" the target with right click +// The fine tune of the target is a way to "drag and drop" the target with click // drag on the sky browser window. This is to be able to drag the target around when it // has a very small field of view void TargetBrowserPair::fineTuneTarget(const glm::vec2& translation) { - glm::dvec2 startRaDec = skybrowser::cartesianToSpherical( - skybrowser::galacticToEquatorial(glm::normalize(_startTargetPosition)) + glm::dvec3 startTarget = skybrowser::galacticToEquatorial( + glm::normalize(_startTargetPosition) ); + glm::dvec2 fovs = _browser->fieldsOfView(); + glm::dvec3 upperRightCorner = startTarget - 0.5 * skybrowser::sphericalToCartesian(glm::dvec2(-fovs[0], fovs[1])); + glm::dvec3 lowerLeftCorner = startTarget - 0.5 * skybrowser::sphericalToCartesian(glm::dvec2(fovs[0], -fovs[1])); + glm::dvec3 upperLeftCorner = startTarget - 0.5 * skybrowser::sphericalToCartesian(fovs); - glm::dvec2 newRaDec = startRaDec + glm::dvec2(translation); - glm::dvec3 newCartesian = skybrowser::sphericalToCartesian(newRaDec); + glm::dvec3 vecToRight = (upperRightCorner - upperLeftCorner) * static_cast(translation[0]); + glm::dvec3 vecToDown = (lowerLeftCorner - upperLeftCorner) * static_cast(translation[1]); + + + glm::dvec3 newCartesian = startTarget - (vecToRight + vecToDown); aimTargetGalactic( _targetNode->identifier(), skybrowser::equatorialToGalactic(newCartesian) From f1ff3c2db35d7401867f9e22fc30a6a3d2c9bc61 Mon Sep 17 00:00:00 2001 From: Ylva Selling Date: Thu, 27 Oct 2022 17:15:53 -0400 Subject: [PATCH 36/81] Cleanup --- modules/skybrowser/src/targetbrowserpair.cpp | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/modules/skybrowser/src/targetbrowserpair.cpp b/modules/skybrowser/src/targetbrowserpair.cpp index 4f3e8883b8..68a1207a92 100644 --- a/modules/skybrowser/src/targetbrowserpair.cpp +++ b/modules/skybrowser/src/targetbrowserpair.cpp @@ -86,13 +86,19 @@ void TargetBrowserPair::fineTuneTarget(const glm::vec2& translation) glm::dvec3 startTarget = skybrowser::galacticToEquatorial( glm::normalize(_startTargetPosition) ); + glm::dvec2 multiplierRight = { -1.0, 1.0 }; + glm::dvec2 multiplierLeft = { 1.0, -1.0 }; + glm::dvec2 drag = glm::dvec2(translation); glm::dvec2 fovs = _browser->fieldsOfView(); - glm::dvec3 upperRightCorner = startTarget - 0.5 * skybrowser::sphericalToCartesian(glm::dvec2(-fovs[0], fovs[1])); - glm::dvec3 lowerLeftCorner = startTarget - 0.5 * skybrowser::sphericalToCartesian(glm::dvec2(fovs[0], -fovs[1])); - glm::dvec3 upperLeftCorner = startTarget - 0.5 * skybrowser::sphericalToCartesian(fovs); + glm::dvec3 cartUpperRight = skybrowser::sphericalToCartesian(fovs * multiplierRight); + glm::dvec3 cartLowerLeft = skybrowser::sphericalToCartesian(fovs * multiplierLeft); + glm::dvec3 cartUpperLeft = skybrowser::sphericalToCartesian(fovs); + glm::dvec3 upperRightCorner = startTarget - 0.5 * cartUpperRight; + glm::dvec3 lowerLeftCorner = startTarget - 0.5 * cartLowerLeft; + glm::dvec3 upperLeftCorner = startTarget - 0.5 * cartUpperLeft; - glm::dvec3 vecToRight = (upperRightCorner - upperLeftCorner) * static_cast(translation[0]); - glm::dvec3 vecToDown = (lowerLeftCorner - upperLeftCorner) * static_cast(translation[1]); + glm::dvec3 vecToRight = (upperRightCorner - upperLeftCorner) * drag.x; + glm::dvec3 vecToDown = (lowerLeftCorner - upperLeftCorner) * drag.y; glm::dvec3 newCartesian = startTarget - (vecToRight + vecToDown); From 68ea36e08da55666513f3571963f9d9684acfc7f Mon Sep 17 00:00:00 2001 From: Ylva Selling Date: Fri, 28 Oct 2022 14:03:41 -0400 Subject: [PATCH 37/81] Use renderable target vectors to calculate translation --- .../skybrowser/include/renderableskytarget.h | 4 +++ .../skybrowser/src/renderableskytarget.cpp | 18 ++++++++++--- modules/skybrowser/src/targetbrowserpair.cpp | 27 +++++-------------- 3 files changed, 24 insertions(+), 25 deletions(-) diff --git a/modules/skybrowser/include/renderableskytarget.h b/modules/skybrowser/include/renderableskytarget.h index 8aa0b2a2d3..8279f17606 100644 --- a/modules/skybrowser/include/renderableskytarget.h +++ b/modules/skybrowser/include/renderableskytarget.h @@ -57,6 +57,8 @@ public: static documentation::Documentation Documentation(); + glm::dvec3 rightVector(); + glm::dvec3 upVector(); private: // Properties properties::FloatProperty _crossHairSize; @@ -67,6 +69,8 @@ private: double _borderRadius = 0.0; glm::ivec3 _borderColor = glm::ivec3(230); float _ratio = 1.f; + glm::dvec3 _rightVector; + glm::dvec3 _upVector; }; } // namespace openspace diff --git a/modules/skybrowser/src/renderableskytarget.cpp b/modules/skybrowser/src/renderableskytarget.cpp index a0356dc2af..1bb88121b5 100644 --- a/modules/skybrowser/src/renderableskytarget.cpp +++ b/modules/skybrowser/src/renderableskytarget.cpp @@ -151,6 +151,16 @@ glm::ivec3 RenderableSkyTarget::borderColor() const { return _borderColor; } +glm::dvec3 RenderableSkyTarget::rightVector() { + double scaling = (_verticalFov / 70)* static_cast(_size.value()); + return scaling * _rightVector; +} + +glm::dvec3 RenderableSkyTarget::upVector() { + double scaling = (_verticalFov / 70) * static_cast(_size.value()); + return scaling * _upVector; +} + void RenderableSkyTarget::render(const RenderData& data, RendererTasks&) { ZoneScoped const bool showRectangle = _verticalFov > _showRectangleThreshold; @@ -175,14 +185,14 @@ void RenderableSkyTarget::render(const RenderData& data, RendererTasks&) { ); glm::dvec3 normal = glm::normalize(data.camera.positionVec3() - objectPositionWorld); - glm::dvec3 newRight = glm::normalize( + _rightVector = glm::normalize( glm::cross(data.camera.lookUpVectorWorldSpace(), normal) ); - glm::dvec3 newUp = glm::cross(normal, newRight); + _upVector = glm::cross(normal, _rightVector); glm::dmat4 cameraOrientedRotation = glm::dmat4(1.0); - cameraOrientedRotation[0] = glm::dvec4(newRight, 0.0); - cameraOrientedRotation[1] = glm::dvec4(newUp, 0.0); + cameraOrientedRotation[0] = glm::dvec4(_rightVector, 0.0); + cameraOrientedRotation[1] = glm::dvec4(_upVector, 0.0); cameraOrientedRotation[2] = glm::dvec4(normal, 0.0); const glm::dmat4 rotationTransform = _billboard ? diff --git a/modules/skybrowser/src/targetbrowserpair.cpp b/modules/skybrowser/src/targetbrowserpair.cpp index 68a1207a92..fc9ca529e1 100644 --- a/modules/skybrowser/src/targetbrowserpair.cpp +++ b/modules/skybrowser/src/targetbrowserpair.cpp @@ -81,30 +81,15 @@ void TargetBrowserPair::startFinetuningTarget() { // The fine tune of the target is a way to "drag and drop" the target with click // drag on the sky browser window. This is to be able to drag the target around when it // has a very small field of view -void TargetBrowserPair::fineTuneTarget(const glm::vec2& translation) -{ - glm::dvec3 startTarget = skybrowser::galacticToEquatorial( - glm::normalize(_startTargetPosition) - ); - glm::dvec2 multiplierRight = { -1.0, 1.0 }; - glm::dvec2 multiplierLeft = { 1.0, -1.0 }; - glm::dvec2 drag = glm::dvec2(translation); - glm::dvec2 fovs = _browser->fieldsOfView(); - glm::dvec3 cartUpperRight = skybrowser::sphericalToCartesian(fovs * multiplierRight); - glm::dvec3 cartLowerLeft = skybrowser::sphericalToCartesian(fovs * multiplierLeft); - glm::dvec3 cartUpperLeft = skybrowser::sphericalToCartesian(fovs); - glm::dvec3 upperRightCorner = startTarget - 0.5 * cartUpperRight; - glm::dvec3 lowerLeftCorner = startTarget - 0.5 * cartLowerLeft; - glm::dvec3 upperLeftCorner = startTarget - 0.5 * cartUpperLeft; +void TargetBrowserPair::fineTuneTarget(const glm::vec2& translation) { + glm::dvec2 percentage = glm::dvec2(translation); + glm::dvec3 right = _targetRenderable->rightVector() * percentage.x; + glm::dvec3 up = _targetRenderable->upVector() * percentage.y; - glm::dvec3 vecToRight = (upperRightCorner - upperLeftCorner) * drag.x; - glm::dvec3 vecToDown = (lowerLeftCorner - upperLeftCorner) * drag.y; - - - glm::dvec3 newCartesian = startTarget - (vecToRight + vecToDown); + glm::dvec3 newCartesian = _startTargetPosition - (right - up); aimTargetGalactic( _targetNode->identifier(), - skybrowser::equatorialToGalactic(newCartesian) + newCartesian ); } From 6249fa6d89ed8f4647b524d4ec1d97b87e419037 Mon Sep 17 00:00:00 2001 From: Alexander Bock Date: Sun, 30 Oct 2022 12:54:14 +0100 Subject: [PATCH 38/81] Collection of a number of changes (#2286) * Cleanup Property code * Remove NOLINT statements * Return Property class types as string_view * Remove getStringValue function * Simplify string value retrieval * Ensure that image paths in the ImageSequenceTileProvider are sorted (closes #2205) * Some cleanup of OpenSpaceEngine * Cleanup documentation * Some more cleanup of engine classes * Some more cleanup * Update SGCT repository * Use new Jenkins node identifiers as the old method broke with update --- Jenkinsfile | 8 +- apps/OpenSpace/ext/sgct | 2 +- ext/ghoul | 2 +- include/openspace/camera/camera.h | 2 +- include/openspace/engine/openspaceengine.h | 9 +- .../properties/list/doublelistproperty.h | 2 +- .../properties/list/intlistproperty.h | 2 +- .../properties/list/stringlistproperty.h | 2 +- .../properties/matrix/dmat2property.h | 2 +- .../properties/matrix/dmat3property.h | 2 +- .../properties/matrix/dmat4property.h | 2 +- .../properties/matrix/mat2property.h | 2 +- .../properties/matrix/mat3property.h | 2 +- .../properties/matrix/mat4property.h | 2 +- .../openspace/properties/numericalproperty.h | 2 +- include/openspace/properties/optionproperty.h | 2 +- include/openspace/properties/property.h | 49 +- .../properties/scalar/boolproperty.h | 2 +- .../properties/scalar/doubleproperty.h | 2 +- .../properties/scalar/floatproperty.h | 2 +- .../openspace/properties/scalar/intproperty.h | 2 +- .../properties/scalar/longproperty.h | 2 +- .../properties/scalar/shortproperty.h | 2 +- .../properties/scalar/uintproperty.h | 2 +- .../properties/scalar/ulongproperty.h | 2 +- .../properties/scalar/ushortproperty.h | 2 +- .../openspace/properties/selectionproperty.h | 2 +- include/openspace/properties/stringproperty.h | 2 +- .../openspace/properties/templateproperty.h | 4 +- .../openspace/properties/templateproperty.inl | 11 +- .../openspace/properties/triggerproperty.h | 4 +- .../properties/vector/dvec2property.h | 2 +- .../properties/vector/dvec3property.h | 2 +- .../properties/vector/dvec4property.h | 2 +- .../properties/vector/ivec2property.h | 2 +- .../properties/vector/ivec3property.h | 2 +- .../properties/vector/ivec4property.h | 2 +- .../properties/vector/uvec2property.h | 2 +- .../properties/vector/uvec3property.h | 2 +- .../properties/vector/uvec4property.h | 2 +- .../properties/vector/vec2property.h | 2 +- .../properties/vector/vec3property.h | 2 +- .../properties/vector/vec4property.h | 2 +- include/openspace/rendering/renderengine.h | 2 +- include/openspace/scene/scene.h | 11 +- include/openspace/scene/scenegraphnode.h | 2 +- include/openspace/scripting/scriptengine.h | 5 +- include/openspace/util/timemanager.h | 2 +- .../dashboard/dashboarditempropertyvalue.cpp | 4 +- .../lightsource/scenegraphlightsource.cpp | 22 +- .../base/rendering/screenspaceframebuffer.cpp | 2 +- .../base/rendering/screenspaceimageonline.cpp | 2 +- modules/globebrowsing/src/ringscomponent.cpp | 2 +- .../imagesequencetileprovider.cpp | 1 + modules/imgui/src/guipropertycomponent.cpp | 2 +- modules/imgui/src/renderproperties.cpp | 12 +- modules/server/src/jsonconverters.cpp | 2 +- modules/space/rendering/renderablerings.cpp | 2 +- modules/space/rendering/renderablestars.cpp | 4 +- .../rendering/renderablemodelprojection.cpp | 2 +- .../rendering/renderableplaneprojection.cpp | 2 +- .../rendering/renderableplanetprojection.cpp | 2 +- modules/touch/src/touchmarker.cpp | 2 +- modules/volume/transferfunctionproperty.cpp | 2 +- modules/volume/transferfunctionproperty.h | 2 +- src/camera/camera.cpp | 2 +- src/engine/downloadmanager.cpp | 42 +- src/engine/globals.cpp | 2 +- src/engine/moduleengine.cpp | 4 +- src/engine/openspaceengine.cpp | 433 ++++++++---------- src/engine/openspaceengine_lua.inl | 3 +- src/interaction/sessionrecording.cpp | 4 +- src/navigation/navigationhandler.cpp | 2 +- src/navigation/pathnavigator.cpp | 2 +- src/properties/list/doublelistproperty.cpp | 2 +- src/properties/list/intlistproperty.cpp | 2 +- src/properties/list/stringlistproperty.cpp | 2 +- src/properties/matrix/dmat2property.cpp | 2 +- src/properties/matrix/dmat3property.cpp | 2 +- src/properties/matrix/dmat4property.cpp | 2 +- src/properties/matrix/mat2property.cpp | 2 +- src/properties/matrix/mat3property.cpp | 2 +- src/properties/matrix/mat4property.cpp | 2 +- src/properties/optionproperty.cpp | 7 +- src/properties/property.cpp | 130 ++---- src/properties/scalar/boolproperty.cpp | 2 +- src/properties/scalar/doubleproperty.cpp | 2 +- src/properties/scalar/floatproperty.cpp | 2 +- src/properties/scalar/intproperty.cpp | 2 +- src/properties/scalar/longproperty.cpp | 2 +- src/properties/scalar/shortproperty.cpp | 2 +- src/properties/scalar/uintproperty.cpp | 2 +- src/properties/scalar/ulongproperty.cpp | 2 +- src/properties/scalar/ushortproperty.cpp | 2 +- src/properties/selectionproperty.cpp | 2 +- src/properties/stringproperty.cpp | 2 +- src/properties/triggerproperty.cpp | 9 +- src/properties/vector/dvec2property.cpp | 2 +- src/properties/vector/dvec3property.cpp | 2 +- src/properties/vector/dvec4property.cpp | 2 +- src/properties/vector/ivec2property.cpp | 2 +- src/properties/vector/ivec3property.cpp | 2 +- src/properties/vector/ivec4property.cpp | 2 +- src/properties/vector/uvec2property.cpp | 2 +- src/properties/vector/uvec3property.cpp | 2 +- src/properties/vector/uvec4property.cpp | 2 +- src/properties/vector/vec2property.cpp | 2 +- src/properties/vector/vec3property.cpp | 2 +- src/properties/vector/vec4property.cpp | 2 +- src/rendering/luaconsole.cpp | 2 +- src/rendering/renderengine.cpp | 42 +- src/rendering/screenspacerenderable.cpp | 2 +- src/rendering/transferfunction.cpp | 2 +- src/scene/lightsource.cpp | 5 +- src/scene/profile.cpp | 2 +- src/scene/scene.cpp | 86 +--- src/scene/scenegraphnode.cpp | 13 +- src/scripting/scriptengine.cpp | 41 +- src/util/factorymanager.cpp | 18 + src/util/httprequest.cpp | 2 +- src/util/json_helper.cpp | 20 +- src/util/planegeometry.cpp | 2 +- src/util/sphere.cpp | 4 +- src/util/spicemanager.cpp | 12 +- src/util/syncbuffer.cpp | 2 +- src/util/timemanager.cpp | 2 +- src/util/transformationmanager.cpp | 2 +- .../property/test_property_listproperties.cpp | 9 +- .../test_property_selectionproperty.cpp | 8 +- 129 files changed, 467 insertions(+), 761 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 730909116e..7405ada9a9 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -68,7 +68,7 @@ parallel tools: { }, linux_gcc_make: { if (env.USE_BUILD_OS_LINUX == 'true') { - node('linux' && 'gcc') { + node('linux-gcc') { stage('linux-gcc-make/scm') { deleteDir(); gitHelper.checkoutGit(url, branch); @@ -114,7 +114,7 @@ linux_gcc_make: { }, linux_gcc_ninja: { if (env.USE_BUILD_OS_LINUX == 'true') { - node('linux' && 'gcc') { + node('linux-gcc') { stage('linux-gcc-ninja/scm') { deleteDir(); gitHelper.checkoutGit(url, branch); @@ -158,7 +158,7 @@ linux_gcc_ninja: { }, linux_clang_make: { if (env.USE_BUILD_OS_LINUX == 'true') { - node('linux' && 'clang') { + node('linux-clang') { stage('linux-clang-make/scm') { deleteDir() gitHelper.checkoutGit(url, branch); @@ -203,7 +203,7 @@ linux_clang_make: { }, linux_clang_ninja: { if (env.USE_BUILD_OS_LINUX == 'true') { - node('linux' && 'clang') { + node('linux-clang') { stage('linux-clang-ninja/scm') { deleteDir() gitHelper.checkoutGit(url, branch); diff --git a/apps/OpenSpace/ext/sgct b/apps/OpenSpace/ext/sgct index e40111d616..f48a48307f 160000 --- a/apps/OpenSpace/ext/sgct +++ b/apps/OpenSpace/ext/sgct @@ -1 +1 @@ -Subproject commit e40111d616e85b61632b74a6b900fe6b88d2b74b +Subproject commit f48a48307fa76c0ec9a9db0423ae417cf301f76f diff --git a/ext/ghoul b/ext/ghoul index b676d66bc0..df84293686 160000 --- a/ext/ghoul +++ b/ext/ghoul @@ -1 +1 @@ -Subproject commit b676d66bc028e26dbf2fa0a39c67e35667df13f9 +Subproject commit df84293686f270d40be22725e6b11a4e020b8bf3 diff --git a/include/openspace/camera/camera.h b/include/openspace/camera/camera.h index a9f398e25d..5e66fb54b7 100644 --- a/include/openspace/camera/camera.h +++ b/include/openspace/camera/camera.h @@ -145,7 +145,7 @@ public: // [[deprecated("Replaced by Camera::SgctInternal::viewProjectionMatrix()")]] const glm::mat4& viewProjectionMatrix() const; - std::vector getSyncables(); + std::vector syncables(); // Static constants // (2021-07-16, emmbr) Note that this hard coded vector for the view direction is also diff --git a/include/openspace/engine/openspaceengine.h b/include/openspace/engine/openspaceengine.h index 7f715b4629..adef08025d 100644 --- a/include/openspace/engine/openspaceengine.h +++ b/include/openspace/engine/openspaceengine.h @@ -104,7 +104,7 @@ public: void touchDetectionCallback(TouchInput input); void touchUpdateCallback(TouchInput input); void touchExitCallback(TouchInput input); - void handleDragDrop(const std::string& file); + void handleDragDrop(std::filesystem::path file); std::vector encode(); void decode(std::vector data); @@ -126,8 +126,7 @@ public: AssetManager& assetManager(); LoadingScreen* loadingScreen(); - void writeSceneDocumentation(); - void writeStaticDocumentation(); + void writeDocumentation(); void createUserDirectoriesIfNecessary(); /** @@ -141,7 +140,6 @@ private: void loadFonts(); void runGlobalCustomizationScripts(); - std::string generateFilePath(std::string openspaceRelativePath); void resetPropertyChangeFlagsOfSubowners(openspace::properties::PropertyOwner* po); properties::BoolProperty _printEvents; @@ -156,9 +154,6 @@ private: glm::vec2 _mousePosition = glm::vec2(0.f); - //grabs json from each module to pass to the documentation engine. - std::string _documentationJson; - std::future _writeDocumentationTask; ShutdownInformation _shutdown; diff --git a/include/openspace/properties/list/doublelistproperty.h b/include/openspace/properties/list/doublelistproperty.h index d3fb84b990..ca4f1d8b24 100644 --- a/include/openspace/properties/list/doublelistproperty.h +++ b/include/openspace/properties/list/doublelistproperty.h @@ -34,7 +34,7 @@ public: DoubleListProperty(Property::PropertyInfo info, std::vector values = std::vector()); - std::string className() const override; + std::string_view className() const override; int typeLua() const override; using TemplateProperty>::operator std::vector; diff --git a/include/openspace/properties/list/intlistproperty.h b/include/openspace/properties/list/intlistproperty.h index d0a432815e..2e13e0a4ac 100644 --- a/include/openspace/properties/list/intlistproperty.h +++ b/include/openspace/properties/list/intlistproperty.h @@ -34,7 +34,7 @@ public: IntListProperty(Property::PropertyInfo info, std::vector values = std::vector()); - std::string className() const override; + std::string_view className() const override; int typeLua() const override; using TemplateProperty>::operator std::vector; diff --git a/include/openspace/properties/list/stringlistproperty.h b/include/openspace/properties/list/stringlistproperty.h index 3a3a70ac9e..1b1cfca68d 100644 --- a/include/openspace/properties/list/stringlistproperty.h +++ b/include/openspace/properties/list/stringlistproperty.h @@ -35,7 +35,7 @@ public: StringListProperty(Property::PropertyInfo info, std::vector values = std::vector()); - std::string className() const override; + std::string_view className() const override; int typeLua() const override; using TemplateProperty>::operator std::vector; diff --git a/include/openspace/properties/matrix/dmat2property.h b/include/openspace/properties/matrix/dmat2property.h index 953a5396db..8b3293b1aa 100644 --- a/include/openspace/properties/matrix/dmat2property.h +++ b/include/openspace/properties/matrix/dmat2property.h @@ -41,7 +41,7 @@ public: ghoul::createFillMat2x2(std::numeric_limits::max()), glm::dmat2x2 stepValue = ghoul::createFillMat2x2(0.01)); - std::string className() const override; + std::string_view className() const override; int typeLua() const override; using TemplateProperty::operator=; diff --git a/include/openspace/properties/matrix/dmat3property.h b/include/openspace/properties/matrix/dmat3property.h index ec36ca48d7..58c5610c4a 100644 --- a/include/openspace/properties/matrix/dmat3property.h +++ b/include/openspace/properties/matrix/dmat3property.h @@ -41,7 +41,7 @@ public: ghoul::createFillMat3x3(std::numeric_limits::max()), glm::dmat3x3 stepValue = ghoul::createFillMat3x3(0.01)); - std::string className() const override; + std::string_view className() const override; int typeLua() const override; using TemplateProperty::operator=; diff --git a/include/openspace/properties/matrix/dmat4property.h b/include/openspace/properties/matrix/dmat4property.h index 3b2e8928f9..f05988cad8 100644 --- a/include/openspace/properties/matrix/dmat4property.h +++ b/include/openspace/properties/matrix/dmat4property.h @@ -41,7 +41,7 @@ public: ghoul::createFillMat4x4(std::numeric_limits::max()), glm::dmat4x4 stepValue = ghoul::createFillMat4x4(0.01)); - std::string className() const override; + std::string_view className() const override; int typeLua() const override; using TemplateProperty::operator=; diff --git a/include/openspace/properties/matrix/mat2property.h b/include/openspace/properties/matrix/mat2property.h index 458338e1ef..203f25ad2e 100644 --- a/include/openspace/properties/matrix/mat2property.h +++ b/include/openspace/properties/matrix/mat2property.h @@ -41,7 +41,7 @@ public: ghoul::createFillMat2x2(std::numeric_limits::max()), glm::mat2x2 stepValue = ghoul::createFillMat2x2(0.01f)); - std::string className() const override; + std::string_view className() const override; int typeLua() const override; using TemplateProperty::operator=; diff --git a/include/openspace/properties/matrix/mat3property.h b/include/openspace/properties/matrix/mat3property.h index 457ed99465..01c74a913d 100644 --- a/include/openspace/properties/matrix/mat3property.h +++ b/include/openspace/properties/matrix/mat3property.h @@ -41,7 +41,7 @@ public: ghoul::createFillMat3x3(std::numeric_limits::max()), glm::mat3x3 stepValue = ghoul::createFillMat3x3(0.01f)); - std::string className() const override; + std::string_view className() const override; int typeLua() const override; using TemplateProperty::operator=; diff --git a/include/openspace/properties/matrix/mat4property.h b/include/openspace/properties/matrix/mat4property.h index e5a97df2c7..6a82647161 100644 --- a/include/openspace/properties/matrix/mat4property.h +++ b/include/openspace/properties/matrix/mat4property.h @@ -41,7 +41,7 @@ public: ghoul::createFillMat4x4(std::numeric_limits::max()), glm::mat4x4 stepValue = ghoul::createFillMat4x4(0.01f)); - std::string className() const override; + std::string_view className() const override; int typeLua() const override; using TemplateProperty::operator=; diff --git a/include/openspace/properties/numericalproperty.h b/include/openspace/properties/numericalproperty.h index 8e40185467..06f2f5d68c 100644 --- a/include/openspace/properties/numericalproperty.h +++ b/include/openspace/properties/numericalproperty.h @@ -35,7 +35,7 @@ public: NumericalProperty(Property::PropertyInfo info, T value, T minimumValue, T maximumValue, T steppingValue, float exponent = 1.f); - virtual std::string className() const override = 0; + virtual std::string_view className() const override = 0; virtual int typeLua() const override = 0; T minValue() const; diff --git a/include/openspace/properties/optionproperty.h b/include/openspace/properties/optionproperty.h index b07efec1ec..a618bce27a 100644 --- a/include/openspace/properties/optionproperty.h +++ b/include/openspace/properties/optionproperty.h @@ -82,7 +82,7 @@ public: * * \return The name of this class for reflection purposes */ - std::string className() const override; + std::string_view className() const override; using IntProperty::operator=; /** diff --git a/include/openspace/properties/property.h b/include/openspace/properties/property.h index 6e9303a271..f17c3c85aa 100644 --- a/include/openspace/properties/property.h +++ b/include/openspace/properties/property.h @@ -30,6 +30,7 @@ #include #include #include +#include struct lua_State; @@ -114,7 +115,8 @@ public: /// This OnChangeHandle can be used to remove all onChange callbacks from this /// Property - static OnChangeHandle OnChangeHandleAll; + constexpr static OnChangeHandle OnChangeHandleAll = + std::numeric_limits::max(); /** * The constructor for the property. The \p info (see #PropertyInfo) contains @@ -145,7 +147,7 @@ public: * * \return The class name of the Property */ - virtual std::string className() const = 0; + virtual std::string_view className() const = 0; /** * This method returns the encapsulated value of the Property to the caller. The type @@ -223,17 +225,7 @@ public: * \param value The value to which the Property will be encoded * \return \p true if the encoding succeeded, \p false otherwise */ - virtual bool getStringValue(std::string& value) const; - - /** - * This method encodes the encapsulated value of this Property as a - * std::string. - * - * \return the string value - * - * \throw ghoul::RuntimeError If value could not be fetched - */ - std::string getStringValue() const; + virtual std::string stringValue() const; /** * This method registers a \p callback function that will be called every time if @@ -382,11 +374,11 @@ public: void setReadOnly(bool state); /** - * Default view options that can be used in the Property::setViewOption method. The - * values are: - * - Property::ViewOptions::Color = \c Color (Intended for Vec3 and Vec4), - * - Property::ViewOptions::MinMaxRange = \c MinMaxRange (Intended for Vec2) - */ + * Default view options that can be used in the Property::setViewOption method. The + * values are: + * - Property::ViewOptions::Color = \c Color (Intended for Vec3 and Vec4), + * - Property::ViewOptions::MinMaxRange = \c MinMaxRange (Intended for Vec2) + */ struct ViewOptions { static const char* Color; static const char* MinMaxRange; @@ -426,14 +418,6 @@ public: */ const ghoul::Dictionary& metaData() const; - /** - * Convert the Property into a string containing a JSON representation of the - * Property. Includes description of the object. - * - * \return The JSON string - */ - virtual std::string toJson() const; - /** * Get a valid JSON formatted representation of the Property's value. * @@ -457,7 +441,7 @@ public: * * \return The base description common to all Property classes */ - std::string generateBaseJsonDescription() const; + std::string generateJsonDescription() const; /** * Creates the information for the \c MetaData key-part of the JSON description for @@ -496,14 +480,6 @@ public: void resetToUnchanged(); protected: - static const char* IdentifierKey; - static const char* NameKey; - static const char* TypeKey; - static const char* DescriptionKey; - static const char* JsonValueKey; - static const char* MetaDataKey; - static const char* AdditionalDataKey; - /** * This method must be called by all subclasses whenever the encapsulated value has * changed and potential listeners need to be informed. @@ -547,9 +523,6 @@ private: #endif }; -/// This function sanitizes an incoming string for JSON control characters -std::string sanitizeString(const std::string& str); - } // namespace openspace::properties #endif // __OPENSPACE_CORE___PROPERTY___H__ diff --git a/include/openspace/properties/scalar/boolproperty.h b/include/openspace/properties/scalar/boolproperty.h index 05a92c864a..c100171f3b 100644 --- a/include/openspace/properties/scalar/boolproperty.h +++ b/include/openspace/properties/scalar/boolproperty.h @@ -48,7 +48,7 @@ class BoolProperty : public TemplateProperty { public: BoolProperty(Property::PropertyInfo info, bool value = false); - std::string className() const override; + std::string_view className() const override; int typeLua() const override; using TemplateProperty::operator=; diff --git a/include/openspace/properties/scalar/doubleproperty.h b/include/openspace/properties/scalar/doubleproperty.h index 095b0e659c..65b3c8f549 100644 --- a/include/openspace/properties/scalar/doubleproperty.h +++ b/include/openspace/properties/scalar/doubleproperty.h @@ -51,7 +51,7 @@ public: double minValue = std::numeric_limits::lowest(), double maxValue = std::numeric_limits::max(), double stepValue = 0.01); - std::string className() const override; + std::string_view className() const override; int typeLua() const override; using TemplateProperty::operator=; diff --git a/include/openspace/properties/scalar/floatproperty.h b/include/openspace/properties/scalar/floatproperty.h index b1d60b80b7..b52f9d7754 100644 --- a/include/openspace/properties/scalar/floatproperty.h +++ b/include/openspace/properties/scalar/floatproperty.h @@ -51,7 +51,7 @@ public: float minValue = std::numeric_limits::lowest(), float maxValue = std::numeric_limits::max(), float stepValue = 0.01f); - std::string className() const override; + std::string_view className() const override; int typeLua() const override; using TemplateProperty::operator=; diff --git a/include/openspace/properties/scalar/intproperty.h b/include/openspace/properties/scalar/intproperty.h index 51f4ea5fef..906dbddaf5 100644 --- a/include/openspace/properties/scalar/intproperty.h +++ b/include/openspace/properties/scalar/intproperty.h @@ -51,7 +51,7 @@ public: int minValue = std::numeric_limits::lowest(), int maxValue = std::numeric_limits::max(), int stepValue = 1); - std::string className() const override; + std::string_view className() const override; int typeLua() const override; using TemplateProperty::operator=; diff --git a/include/openspace/properties/scalar/longproperty.h b/include/openspace/properties/scalar/longproperty.h index 6abd2d0932..f8b7586347 100644 --- a/include/openspace/properties/scalar/longproperty.h +++ b/include/openspace/properties/scalar/longproperty.h @@ -52,7 +52,7 @@ public: long maxValue = std::numeric_limits::max(), long stepValue = long(1)); - std::string className() const override; + std::string_view className() const override; int typeLua() const override; using TemplateProperty::operator=; diff --git a/include/openspace/properties/scalar/shortproperty.h b/include/openspace/properties/scalar/shortproperty.h index 012402dda0..b60cd2c721 100644 --- a/include/openspace/properties/scalar/shortproperty.h +++ b/include/openspace/properties/scalar/shortproperty.h @@ -52,7 +52,7 @@ public: short maxValue = std::numeric_limits::max(), short stepValue = short(1)); - std::string className() const override; + std::string_view className() const override; int typeLua() const override; using TemplateProperty::operator=; diff --git a/include/openspace/properties/scalar/uintproperty.h b/include/openspace/properties/scalar/uintproperty.h index 20e5d3c35b..9064f1a386 100644 --- a/include/openspace/properties/scalar/uintproperty.h +++ b/include/openspace/properties/scalar/uintproperty.h @@ -52,7 +52,7 @@ public: unsigned int maxValue = std::numeric_limits::max(), unsigned int stepValue = 1); - std::string className() const override; + std::string_view className() const override; int typeLua() const override; using TemplateProperty::operator=; diff --git a/include/openspace/properties/scalar/ulongproperty.h b/include/openspace/properties/scalar/ulongproperty.h index 36d49dedf1..f5c7e3a31f 100644 --- a/include/openspace/properties/scalar/ulongproperty.h +++ b/include/openspace/properties/scalar/ulongproperty.h @@ -52,7 +52,7 @@ public: unsigned long maxValue = std::numeric_limits::max(), unsigned long stepValue = 1ul); - std::string className() const override; + std::string_view className() const override; int typeLua() const override; using TemplateProperty::operator=; diff --git a/include/openspace/properties/scalar/ushortproperty.h b/include/openspace/properties/scalar/ushortproperty.h index 4a8a7ae536..12b69295e6 100644 --- a/include/openspace/properties/scalar/ushortproperty.h +++ b/include/openspace/properties/scalar/ushortproperty.h @@ -52,7 +52,7 @@ public: unsigned short maxValue = std::numeric_limits::max(), unsigned short stepValue = 1); - std::string className() const override; + std::string_view className() const override; int typeLua() const override; using TemplateProperty::operator=; diff --git a/include/openspace/properties/selectionproperty.h b/include/openspace/properties/selectionproperty.h index 447b403a38..21c44985a0 100644 --- a/include/openspace/properties/selectionproperty.h +++ b/include/openspace/properties/selectionproperty.h @@ -37,7 +37,7 @@ class SelectionProperty : public TemplateProperty> { public: SelectionProperty(Property::PropertyInfo info); - std::string className() const override; + std::string_view className() const override; int typeLua() const override; /** diff --git a/include/openspace/properties/stringproperty.h b/include/openspace/properties/stringproperty.h index 8a82e79835..b803285993 100644 --- a/include/openspace/properties/stringproperty.h +++ b/include/openspace/properties/stringproperty.h @@ -33,7 +33,7 @@ class StringProperty : public TemplateProperty { public: StringProperty(Property::PropertyInfo info, std::string value = ""); - std::string className() const override; + std::string_view className() const override; int typeLua() const override; using TemplateProperty::operator=; diff --git a/include/openspace/properties/templateproperty.h b/include/openspace/properties/templateproperty.h index 6e5121a329..4bbb48e423 100644 --- a/include/openspace/properties/templateproperty.h +++ b/include/openspace/properties/templateproperty.h @@ -71,7 +71,7 @@ public: * * \return The class name for the TemplateProperty */ - virtual std::string className() const override = 0; + virtual std::string_view className() const override = 0; /** * Returns the stored value packed into a ghoul::any object. @@ -127,7 +127,7 @@ public: * \param value The string object in which to store the resulting encoding * \return \c true if the encoding succeeded; \c false otherwise */ - virtual bool getStringValue(std::string& value) const override; + virtual std::string stringValue() const override; /** * Returns the description for this TemplateProperty as a Lua script that returns a diff --git a/include/openspace/properties/templateproperty.inl b/include/openspace/properties/templateproperty.inl index 7b0d76389b..014e690192 100644 --- a/include/openspace/properties/templateproperty.inl +++ b/include/openspace/properties/templateproperty.inl @@ -60,12 +60,6 @@ void openspace::properties::TemplateProperty::setValue(T val) { } } -template -std::ostream& operator<<(std::ostream& os, const TemplateProperty& obj) { - os << obj.value(); - return os; -} - template std::any TemplateProperty::get() const { return std::any(_value); @@ -99,9 +93,8 @@ bool TemplateProperty::setLuaValue(lua_State* state) { } template -bool TemplateProperty::getStringValue(std::string& outValue) const { - outValue = toStringConversion(); - return true; +std::string TemplateProperty::stringValue() const { + return toStringConversion(); } } // namespace openspace::properties diff --git a/include/openspace/properties/triggerproperty.h b/include/openspace/properties/triggerproperty.h index 09c5a75e40..f3ec305720 100644 --- a/include/openspace/properties/triggerproperty.h +++ b/include/openspace/properties/triggerproperty.h @@ -49,7 +49,7 @@ public: * Returns the class name TriggerProperty. * \return The class name TriggerProperty */ - std::string className() const override; + std::string_view className() const override; /** * Accepts only the LUA_TNIL type and will notify all the listeners @@ -66,8 +66,6 @@ public: */ void set(std::any value) override; - std::string toJson() const override; - std::string jsonValue() const override; }; diff --git a/include/openspace/properties/vector/dvec2property.h b/include/openspace/properties/vector/dvec2property.h index 7519edf158..1b634c18f1 100644 --- a/include/openspace/properties/vector/dvec2property.h +++ b/include/openspace/properties/vector/dvec2property.h @@ -39,7 +39,7 @@ public: glm::dvec2 maxValue = glm::dvec2(std::numeric_limits::max()), glm::dvec2 stepValue = glm::dvec2(0.01)); - std::string className() const override; + std::string_view className() const override; int typeLua() const override; using TemplateProperty::operator=; diff --git a/include/openspace/properties/vector/dvec3property.h b/include/openspace/properties/vector/dvec3property.h index 8a52d85b54..cd8d4cead6 100644 --- a/include/openspace/properties/vector/dvec3property.h +++ b/include/openspace/properties/vector/dvec3property.h @@ -39,7 +39,7 @@ public: glm::dvec3 maxValue = glm::dvec3(std::numeric_limits::max()), glm::dvec3 stepValue = glm::dvec3(0.01)); - std::string className() const override; + std::string_view className() const override; int typeLua() const override; using TemplateProperty::operator=; diff --git a/include/openspace/properties/vector/dvec4property.h b/include/openspace/properties/vector/dvec4property.h index 54e0742b9e..43f1259f36 100644 --- a/include/openspace/properties/vector/dvec4property.h +++ b/include/openspace/properties/vector/dvec4property.h @@ -39,7 +39,7 @@ public: glm::dvec4 maxValue = glm::dvec4(std::numeric_limits::max()), glm::dvec4 stepValue = glm::dvec4(0.01)); - std::string className() const override; + std::string_view className() const override; int typeLua() const override; using TemplateProperty::operator=; diff --git a/include/openspace/properties/vector/ivec2property.h b/include/openspace/properties/vector/ivec2property.h index e40d59ad4b..d8b20fa684 100644 --- a/include/openspace/properties/vector/ivec2property.h +++ b/include/openspace/properties/vector/ivec2property.h @@ -39,7 +39,7 @@ public: glm::ivec2 maxValue = glm::ivec2(std::numeric_limits::max()), glm::ivec2 stepValue = glm::ivec2(1)); - std::string className() const override; + std::string_view className() const override; int typeLua() const override; using TemplateProperty::operator=; diff --git a/include/openspace/properties/vector/ivec3property.h b/include/openspace/properties/vector/ivec3property.h index efb7527eb3..573d8b80e7 100644 --- a/include/openspace/properties/vector/ivec3property.h +++ b/include/openspace/properties/vector/ivec3property.h @@ -39,7 +39,7 @@ public: glm::ivec3 maxValue = glm::ivec3(std::numeric_limits::max()), glm::ivec3 stepValue = glm::ivec3(1)); - std::string className() const override; + std::string_view className() const override; int typeLua() const override; using TemplateProperty::operator=; diff --git a/include/openspace/properties/vector/ivec4property.h b/include/openspace/properties/vector/ivec4property.h index c5bbea993b..841bb0404b 100644 --- a/include/openspace/properties/vector/ivec4property.h +++ b/include/openspace/properties/vector/ivec4property.h @@ -39,7 +39,7 @@ public: glm::ivec4 maxValue = glm::ivec4(std::numeric_limits::max()), glm::ivec4 stepValue = glm::ivec4(1)); - std::string className() const override; + std::string_view className() const override; int typeLua() const override; using TemplateProperty::operator=; diff --git a/include/openspace/properties/vector/uvec2property.h b/include/openspace/properties/vector/uvec2property.h index 1e7fc2aa93..5ca0850741 100644 --- a/include/openspace/properties/vector/uvec2property.h +++ b/include/openspace/properties/vector/uvec2property.h @@ -39,7 +39,7 @@ public: glm::uvec2 maxValue = glm::uvec2(std::numeric_limits::max()), glm::uvec2 stepValue = glm::uvec2(1)); - std::string className() const override; + std::string_view className() const override; int typeLua() const override; using TemplateProperty::operator=; diff --git a/include/openspace/properties/vector/uvec3property.h b/include/openspace/properties/vector/uvec3property.h index 293a74e826..1f24f3411b 100644 --- a/include/openspace/properties/vector/uvec3property.h +++ b/include/openspace/properties/vector/uvec3property.h @@ -39,7 +39,7 @@ public: glm::uvec3 maxValue = glm::uvec3(std::numeric_limits::max()), glm::uvec3 stepValue = glm::uvec3(1)); - std::string className() const override; + std::string_view className() const override; int typeLua() const override; using TemplateProperty::operator=; diff --git a/include/openspace/properties/vector/uvec4property.h b/include/openspace/properties/vector/uvec4property.h index 253e4a187a..5391febdec 100644 --- a/include/openspace/properties/vector/uvec4property.h +++ b/include/openspace/properties/vector/uvec4property.h @@ -39,7 +39,7 @@ public: glm::uvec4 maxValue = glm::uvec4(std::numeric_limits::max()), glm::uvec4 stepValue = glm::uvec4(1)); - std::string className() const override; + std::string_view className() const override; int typeLua() const override; using TemplateProperty::operator=; diff --git a/include/openspace/properties/vector/vec2property.h b/include/openspace/properties/vector/vec2property.h index dd655e1f16..0af248451e 100644 --- a/include/openspace/properties/vector/vec2property.h +++ b/include/openspace/properties/vector/vec2property.h @@ -39,7 +39,7 @@ public: glm::vec2 maxValue = glm::vec2(std::numeric_limits::max()), glm::vec2 stepValue = glm::vec2(0.01f)); - std::string className() const override; + std::string_view className() const override; int typeLua() const override; using TemplateProperty::operator=; diff --git a/include/openspace/properties/vector/vec3property.h b/include/openspace/properties/vector/vec3property.h index 4b7dee52f0..1f6392bf26 100644 --- a/include/openspace/properties/vector/vec3property.h +++ b/include/openspace/properties/vector/vec3property.h @@ -39,7 +39,7 @@ public: glm::vec3 maxValue = glm::vec3(std::numeric_limits::max()), glm::vec3 stepValue = glm::vec3(0.01f)); - std::string className() const override; + std::string_view className() const override; int typeLua() const override; using TemplateProperty::operator=; diff --git a/include/openspace/properties/vector/vec4property.h b/include/openspace/properties/vector/vec4property.h index 7550b0734e..a29fc2280b 100644 --- a/include/openspace/properties/vector/vec4property.h +++ b/include/openspace/properties/vector/vec4property.h @@ -39,7 +39,7 @@ public: glm::vec4 maxValue = glm::vec4(std::numeric_limits::max()), glm::vec4 stepValue = glm::vec4(0.01f)); - std::string className() const override; + std::string_view className() const override; int typeLua() const override; using TemplateProperty::operator=; diff --git a/include/openspace/rendering/renderengine.h b/include/openspace/rendering/renderengine.h index dfc751a3f3..0b5809eec4 100644 --- a/include/openspace/rendering/renderengine.h +++ b/include/openspace/rendering/renderengine.h @@ -90,7 +90,7 @@ public: void renderEndscreen(); void postDraw(); - float globalBlackOutFactor(); + float globalBlackOutFactor() const; void setGlobalBlackOutFactor(float opacity); float hdrExposure() const; diff --git a/include/openspace/scene/scene.h b/include/openspace/scene/scene.h index 6ec1097326..cbd3368a25 100644 --- a/include/openspace/scene/scene.h +++ b/include/openspace/scene/scene.h @@ -69,7 +69,7 @@ public: * \param message The reason that caused this exception to be thrown * \param component The optional compoment that caused this exception to be thrown * \pre message may not be empty - */ + */ explicit InvalidSceneError(std::string msg, std::string comp = ""); }; @@ -100,11 +100,6 @@ public: */ ghoul::mm_unique_ptr detachNode(SceneGraphNode& node); - /** - * Set the camera of the scene - */ - void setCamera(std::unique_ptr camera); - /** * Return the camera */ @@ -147,8 +142,8 @@ public: void unregisterNode(SceneGraphNode* node); /** - * Mark the node registry as dirty - */ + * Mark the node registry as dirty + */ void markNodeRegistryDirty(); /** diff --git a/include/openspace/scene/scenegraphnode.h b/include/openspace/scene/scenegraphnode.h index b2046ae194..31c4f97018 100644 --- a/include/openspace/scene/scenegraphnode.h +++ b/include/openspace/scene/scenegraphnode.h @@ -178,7 +178,7 @@ private: properties::StringProperty _guiDisplayName; properties::StringProperty _guiDescription; - // Transformation defined by ephemeris, rotation and scale + // Transformation defined by translation, rotation and scale struct { ghoul::mm_unique_ptr translation; ghoul::mm_unique_ptr rotation; diff --git a/include/openspace/scripting/scriptengine.h b/include/openspace/scripting/scriptengine.h index 14d62325e9..9267963c47 100644 --- a/include/openspace/scripting/scriptengine.h +++ b/include/openspace/scripting/scriptengine.h @@ -85,8 +85,6 @@ public: bool runScript(const std::string& script, ScriptCallback callback = ScriptCallback()); bool runScriptFile(const std::filesystem::path& filename); - bool writeLog(const std::string& script); - virtual void preSync(bool isMaster) override; virtual void encode(SyncBuffer* syncBuffer) override; virtual void decode(SyncBuffer* syncBuffer) override; @@ -102,13 +100,14 @@ public: private: BooleanType(Replace); + void writeLog(const std::string& script); + bool registerLuaLibrary(lua_State* state, LuaLibrary& library); void addLibraryFunctions(lua_State* state, LuaLibrary& library, Replace replace); bool isLibraryNameAllowed(lua_State* state, const std::string& name); void addBaseLibrary(); - void remapPrintFunction(); ghoul::lua::LuaState _state; std::vector _registeredLibraries; diff --git a/include/openspace/util/timemanager.h b/include/openspace/util/timemanager.h index 4bca989b82..a61d2d891d 100644 --- a/include/openspace/util/timemanager.h +++ b/include/openspace/util/timemanager.h @@ -59,7 +59,7 @@ public: const Time& integrateFromTime() const; const Timeline& timeline() const; - std::vector getSyncables(); + std::vector syncables(); void preSynchronization(double dt); TimeKeyframeData interpolate(double applicationTime); diff --git a/modules/base/dashboard/dashboarditempropertyvalue.cpp b/modules/base/dashboard/dashboarditempropertyvalue.cpp index 281b700eee..69d781d0eb 100644 --- a/modules/base/dashboard/dashboarditempropertyvalue.cpp +++ b/modules/base/dashboard/dashboarditempropertyvalue.cpp @@ -93,9 +93,7 @@ void DashboardItemPropertyValue::render(glm::vec2& penPosition) { } if (_property) { - std::string value; - _property->getStringValue(value); - + std::string value = _property->stringValue(); RenderFont( *_font, penPosition, diff --git a/modules/base/lightsource/scenegraphlightsource.cpp b/modules/base/lightsource/scenegraphlightsource.cpp index a4f41729b3..3365c2a4ee 100644 --- a/modules/base/lightsource/scenegraphlightsource.cpp +++ b/modules/base/lightsource/scenegraphlightsource.cpp @@ -67,20 +67,6 @@ SceneGraphLightSource::SceneGraphLightSource() , _sceneGraphNodeReference(NodeInfo, "") { addProperty(_intensity); - addProperty(_sceneGraphNodeReference); -} - -SceneGraphLightSource::SceneGraphLightSource(const ghoul::Dictionary& dictionary) - : LightSource(dictionary) - , _intensity(IntensityInfo, 1.f, 0.f, 1.f) - , _sceneGraphNodeReference(NodeInfo, "") -{ - const Parameters p = codegen::bake(dictionary); - - _intensity = p.intensity.value_or(_intensity); - addProperty(_intensity); - - _sceneGraphNodeReference = p.node; _sceneGraphNodeReference.onChange([this]() { _sceneGraphNode = global::renderEngine->scene()->sceneGraphNode(_sceneGraphNodeReference); @@ -88,6 +74,14 @@ SceneGraphLightSource::SceneGraphLightSource(const ghoul::Dictionary& dictionary addProperty(_sceneGraphNodeReference); } +SceneGraphLightSource::SceneGraphLightSource(const ghoul::Dictionary& dictionary) + : SceneGraphLightSource() +{ + const Parameters p = codegen::bake(dictionary); + _intensity = p.intensity.value_or(_intensity); + _sceneGraphNodeReference = p.node; +} + bool SceneGraphLightSource::initialize() { ZoneScoped diff --git a/modules/base/rendering/screenspaceframebuffer.cpp b/modules/base/rendering/screenspaceframebuffer.cpp index 17b7f0d869..f371e4cfa5 100644 --- a/modules/base/rendering/screenspaceframebuffer.cpp +++ b/modules/base/rendering/screenspaceframebuffer.cpp @@ -83,7 +83,7 @@ ScreenSpaceFramebuffer::ScreenSpaceFramebuffer(const ghoul::Dictionary& dictiona _size.set(glm::vec4(0.f, 0.f, resolution.x, resolution.y)); } -ScreenSpaceFramebuffer::~ScreenSpaceFramebuffer() {} // NOLINT +ScreenSpaceFramebuffer::~ScreenSpaceFramebuffer() {} bool ScreenSpaceFramebuffer::initializeGL() { ScreenSpaceRenderable::initializeGL(); diff --git a/modules/base/rendering/screenspaceimageonline.cpp b/modules/base/rendering/screenspaceimageonline.cpp index afc25f1ba3..b4ee5cc725 100644 --- a/modules/base/rendering/screenspaceimageonline.cpp +++ b/modules/base/rendering/screenspaceimageonline.cpp @@ -83,7 +83,7 @@ ScreenSpaceImageOnline::ScreenSpaceImageOnline(const ghoul::Dictionary& dictiona addProperty(_texturePath); } -ScreenSpaceImageOnline::~ScreenSpaceImageOnline() {} // NOLINT +ScreenSpaceImageOnline::~ScreenSpaceImageOnline() {} bool ScreenSpaceImageOnline::deinitializeGL() { _texture = nullptr; diff --git a/modules/globebrowsing/src/ringscomponent.cpp b/modules/globebrowsing/src/ringscomponent.cpp index 1093d89cb4..8953889000 100644 --- a/modules/globebrowsing/src/ringscomponent.cpp +++ b/modules/globebrowsing/src/ringscomponent.cpp @@ -814,7 +814,7 @@ void RingsComponent::createPlane() { GL_FLOAT, GL_FALSE, sizeof(VertexData), - reinterpret_cast(offsetof(VertexData, s)) // NOLINT + reinterpret_cast(offsetof(VertexData, s)) ); } diff --git a/modules/globebrowsing/src/tileprovider/imagesequencetileprovider.cpp b/modules/globebrowsing/src/tileprovider/imagesequencetileprovider.cpp index b0b1423be5..d227f2a31c 100644 --- a/modules/globebrowsing/src/tileprovider/imagesequencetileprovider.cpp +++ b/modules/globebrowsing/src/tileprovider/imagesequencetileprovider.cpp @@ -140,6 +140,7 @@ void ImageSequenceTileProvider::reset() { _imagePaths.push_back(p.path()); } } + std::sort(_imagePaths.begin(), _imagePaths.end()); _index = 0; _index.setMaxValue(static_cast(_imagePaths.size() - 1)); diff --git a/modules/imgui/src/guipropertycomponent.cpp b/modules/imgui/src/guipropertycomponent.cpp index c4454cb2f9..f3fe2cffef 100644 --- a/modules/imgui/src/guipropertycomponent.cpp +++ b/modules/imgui/src/guipropertycomponent.cpp @@ -497,7 +497,7 @@ void GuiPropertyComponent::renderProperty(properties::Property* prop, const auto v = static_cast>(visibilityFilter); const auto propV = static_cast>(prop->visibility()); if (v >= propV) { - auto it = FunctionMapping.find(prop->className()); + auto it = FunctionMapping.find(std::string(prop->className())); if (it != FunctionMapping.end()) { if (owner) { it->second( diff --git a/modules/imgui/src/renderproperties.cpp b/modules/imgui/src/renderproperties.cpp index 53193a5764..d17af16953 100644 --- a/modules/imgui/src/renderproperties.cpp +++ b/modules/imgui/src/renderproperties.cpp @@ -282,9 +282,7 @@ void renderDoubleListProperty(Property* prop, const std::string& ownerName, const std::string& name = p->guiName(); ImGui::PushID((ownerName + '.' + name).c_str()); - std::string value; - p->getStringValue(value); - + std::string value = p->stringValue(); renderListProperty(name, p->fullyQualifiedIdentifier(), value); if (showTooltip) { @@ -302,9 +300,7 @@ void renderIntListProperty(Property* prop, const std::string& ownerName, const std::string& name = p->guiName(); ImGui::PushID((ownerName + '.' + name).c_str()); - std::string value; - p->getStringValue(value); - + std::string value = p->stringValue(); renderListProperty(name, p->fullyQualifiedIdentifier(), value); if (showTooltip) { @@ -322,9 +318,7 @@ void renderStringListProperty(Property* prop, const std::string& ownerName, const std::string& name = p->guiName(); ImGui::PushID((ownerName + '.' + name).c_str()); - std::string value; - p->getStringValue(value); - + std::string value = p->stringValue(); renderListProperty(name, p->fullyQualifiedIdentifier(), value); if (showTooltip) { diff --git a/modules/server/src/jsonconverters.cpp b/modules/server/src/jsonconverters.cpp index 248968d834..17427313c6 100644 --- a/modules/server/src/jsonconverters.cpp +++ b/modules/server/src/jsonconverters.cpp @@ -34,7 +34,7 @@ using json = nlohmann::json; namespace openspace::properties { void to_json(json& j, const Property& p) { - std::string description = p.generateBaseJsonDescription(); + std::string description = p.generateJsonDescription(); json desc = json::parse(description); std::string value = p.jsonValue(); diff --git a/modules/space/rendering/renderablerings.cpp b/modules/space/rendering/renderablerings.cpp index db847fc948..bdf2ad1db9 100644 --- a/modules/space/rendering/renderablerings.cpp +++ b/modules/space/rendering/renderablerings.cpp @@ -301,7 +301,7 @@ void RenderableRings::createPlane() { GL_FLOAT, GL_FALSE, sizeof(VertexData), - reinterpret_cast(offsetof(VertexData, s)) // NOLINT + reinterpret_cast(offsetof(VertexData, s)) ); } diff --git a/modules/space/rendering/renderablestars.cpp b/modules/space/rendering/renderablestars.cpp index 48a0bc7602..60fb29ead1 100644 --- a/modules/space/rendering/renderablestars.cpp +++ b/modules/space/rendering/renderablestars.cpp @@ -1203,7 +1203,7 @@ void RenderableStars::update(const UpdateData&) { GL_FLOAT, GL_TRUE, stride, - reinterpret_cast(offsetof(VelocityVBOLayout, vx)) // NOLINT + reinterpret_cast(offsetof(VelocityVBOLayout, vx)) ); break; @@ -1255,7 +1255,7 @@ void RenderableStars::update(const UpdateData&) { GL_FLOAT, GL_FALSE, stride, - reinterpret_cast(offsetof(OtherDataLayout, value)) // NOLINT + reinterpret_cast(offsetof(OtherDataLayout, value)) ); } } diff --git a/modules/spacecraftinstruments/rendering/renderablemodelprojection.cpp b/modules/spacecraftinstruments/rendering/renderablemodelprojection.cpp index 7b98035fa2..132d3d491b 100644 --- a/modules/spacecraftinstruments/rendering/renderablemodelprojection.cpp +++ b/modules/spacecraftinstruments/rendering/renderablemodelprojection.cpp @@ -112,7 +112,7 @@ RenderableModelProjection::RenderableModelProjection(const ghoul::Dictionary& di addProperty(_performShading); } -RenderableModelProjection::~RenderableModelProjection() {} // NOLINT +RenderableModelProjection::~RenderableModelProjection() {} bool RenderableModelProjection::isReady() const { return (_programObject != nullptr) && _projectionComponent.isReady(); diff --git a/modules/spacecraftinstruments/rendering/renderableplaneprojection.cpp b/modules/spacecraftinstruments/rendering/renderableplaneprojection.cpp index 0a216914d2..b585b70fbf 100644 --- a/modules/spacecraftinstruments/rendering/renderableplaneprojection.cpp +++ b/modules/spacecraftinstruments/rendering/renderableplaneprojection.cpp @@ -82,7 +82,7 @@ RenderablePlaneProjection::RenderablePlaneProjection(const ghoul::Dictionary& di } } -RenderablePlaneProjection::~RenderablePlaneProjection() {} // NOLINT +RenderablePlaneProjection::~RenderablePlaneProjection() {} bool RenderablePlaneProjection::isReady() const { return _shader && _texture; diff --git a/modules/spacecraftinstruments/rendering/renderableplanetprojection.cpp b/modules/spacecraftinstruments/rendering/renderableplanetprojection.cpp index 6431461397..c2e725a3f2 100644 --- a/modules/spacecraftinstruments/rendering/renderableplanetprojection.cpp +++ b/modules/spacecraftinstruments/rendering/renderableplanetprojection.cpp @@ -299,7 +299,7 @@ RenderablePlanetProjection::RenderablePlanetProjection(const ghoul::Dictionary& addProperty(_segments); } -RenderablePlanetProjection::~RenderablePlanetProjection() {} // NOLINT +RenderablePlanetProjection::~RenderablePlanetProjection() {} void RenderablePlanetProjection::initializeGL() { _programObject = SpacecraftInstrumentsModule::ProgramObjectManager.request( diff --git a/modules/touch/src/touchmarker.cpp b/modules/touch/src/touchmarker.cpp index 7348129b7f..22fe8ff506 100644 --- a/modules/touch/src/touchmarker.cpp +++ b/modules/touch/src/touchmarker.cpp @@ -83,7 +83,7 @@ TouchMarker::TouchMarker() addProperty(_color); } -TouchMarker::~TouchMarker() {} // NOLINT +TouchMarker::~TouchMarker() {} void TouchMarker::initialize() { glGenVertexArrays(1, &_quad); // generate array diff --git a/modules/volume/transferfunctionproperty.cpp b/modules/volume/transferfunctionproperty.cpp index ac7c17ae13..ee54b0ab64 100644 --- a/modules/volume/transferfunctionproperty.cpp +++ b/modules/volume/transferfunctionproperty.cpp @@ -32,7 +32,7 @@ TransferFunctionProperty::TransferFunctionProperty(Property::PropertyInfo info, : TemplateProperty(std::move(info), value) {} -std::string TransferFunctionProperty::className() const { +std::string_view TransferFunctionProperty::className() const { return "TransferFunctionProperty"; } diff --git a/modules/volume/transferfunctionproperty.h b/modules/volume/transferfunctionproperty.h index 03d39f4365..642e2cf7e3 100644 --- a/modules/volume/transferfunctionproperty.h +++ b/modules/volume/transferfunctionproperty.h @@ -35,7 +35,7 @@ public: TransferFunctionProperty(Property::PropertyInfo info, volume::TransferFunction value = volume::TransferFunction()); - std::string className() const override; + std::string_view className() const override; int typeLua() const override; using TemplateProperty::operator=; diff --git a/src/camera/camera.cpp b/src/camera/camera.cpp index 8f3f944263..d9120431e4 100644 --- a/src/camera/camera.cpp +++ b/src/camera/camera.cpp @@ -288,7 +288,7 @@ const glm::mat4& Camera::viewProjectionMatrix() const { return sgctInternal.viewProjectionMatrix(); } -std::vector Camera::getSyncables() { +std::vector Camera::syncables() { return { &_position, &_rotation, &_scaling }; } diff --git a/src/engine/downloadmanager.cpp b/src/engine/downloadmanager.cpp index 7b57907d13..c37e260277 100644 --- a/src/engine/downloadmanager.cpp +++ b/src/engine/downloadmanager.cpp @@ -159,16 +159,16 @@ std::shared_ptr DownloadManager::downloadFile( { CURL* curl = curl_easy_init(); if (curl) { - curl_easy_setopt(curl, CURLOPT_URL, url.c_str()); // NOLINT - curl_easy_setopt(curl, CURLOPT_USERAGENT, "OpenSpace"); // NOLINT - curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1L); // NOLINT - curl_easy_setopt(curl, CURLOPT_WRITEDATA, fp); // NOLINT - curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, &writeData); // NOLINT + curl_easy_setopt(curl, CURLOPT_URL, url.c_str()); + curl_easy_setopt(curl, CURLOPT_USERAGENT, "OpenSpace"); + curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1L); + curl_easy_setopt(curl, CURLOPT_WRITEDATA, fp); + curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, &writeData); if (timeout_secs) { - curl_easy_setopt(curl, CURLOPT_TIMEOUT, timeout_secs); // NOLINT + curl_easy_setopt(curl, CURLOPT_TIMEOUT, timeout_secs); } if (failOnError) { - curl_easy_setopt(curl, CURLOPT_FAILONERROR, 1L); // NOLINT + curl_easy_setopt(curl, CURLOPT_FAILONERROR, 1L); } ProgressInformation p = { @@ -179,10 +179,10 @@ std::shared_ptr DownloadManager::downloadFile( #if LIBCURL_VERSION_NUM >= 0x072000 // xferinfo was introduced in 7.32.0, if a lower curl version is used the // progress will not be shown for downloads on the splash screen - curl_easy_setopt(curl, CURLOPT_XFERINFOFUNCTION, xferinfo); // NOLINT - curl_easy_setopt(curl, CURLOPT_XFERINFODATA, &p); // NOLINT + curl_easy_setopt(curl, CURLOPT_XFERINFOFUNCTION, xferinfo); + curl_easy_setopt(curl, CURLOPT_XFERINFODATA, &p); #endif - curl_easy_setopt(curl, CURLOPT_NOPROGRESS, 0L); // NOLINT + curl_easy_setopt(curl, CURLOPT_NOPROGRESS, 0L); CURLcode res = curl_easy_perform(curl); curl_easy_cleanup(curl); @@ -242,22 +242,22 @@ std::future DownloadManager::fetchFile( throw ghoul::RuntimeError("Error initializing cURL"); } - curl_easy_setopt(curl, CURLOPT_URL, url.c_str()); // NOLINT - curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1L); // NOLINT - curl_easy_setopt(curl, CURLOPT_USERAGENT, "OpenSpace"); // NOLINT + curl_easy_setopt(curl, CURLOPT_URL, url.c_str()); + curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1L); + curl_easy_setopt(curl, CURLOPT_USERAGENT, "OpenSpace"); curl_easy_setopt(curl, CURLOPT_WRITEDATA, reinterpret_cast(&file)); - curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, writeMemoryCallback); // NOLINT - curl_easy_setopt(curl, CURLOPT_TIMEOUT, 5L); // NOLINT - curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, false); // NOLINT + curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, writeMemoryCallback); + curl_easy_setopt(curl, CURLOPT_TIMEOUT, 5L); + curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, false); // Will fail when response status is 400 or above - curl_easy_setopt(curl, CURLOPT_FAILONERROR, 1L); // NOLINT + curl_easy_setopt(curl, CURLOPT_FAILONERROR, 1L); CURLcode res = curl_easy_perform(curl); if (res == CURLE_OK) { // ask for the content-type char* ct; - res = curl_easy_getinfo(curl, CURLINFO_CONTENT_TYPE, &ct); // NOLINT + res = curl_easy_getinfo(curl, CURLINFO_CONTENT_TYPE, &ct); if (res == CURLE_OK) { std::string extension = std::string(ct); std::stringstream ss(extension); @@ -299,14 +299,14 @@ void DownloadManager::getFileExtension(const std::string& url, auto requestFunction = [url, finishedCb = std::move(finishedCallback)]() { CURL* curl = curl_easy_init(); if (curl) { - curl_easy_setopt(curl, CURLOPT_URL, url.c_str()); // NOLINT + curl_easy_setopt(curl, CURLOPT_URL, url.c_str()); //USING CURLOPT NOBODY - curl_easy_setopt(curl, CURLOPT_NOBODY, 1); // NOLINT + curl_easy_setopt(curl, CURLOPT_NOBODY, 1); CURLcode res = curl_easy_perform(curl); if (CURLE_OK == res) { char* ct; // ask for the content-type - res = curl_easy_getinfo(curl, CURLINFO_CONTENT_TYPE, &ct); // NOLINT + res = curl_easy_getinfo(curl, CURLINFO_CONTENT_TYPE, &ct); if ((res == CURLE_OK) && ct && finishedCb) { finishedCb(std::string(ct)); } diff --git a/src/engine/globals.cpp b/src/engine/globals.cpp index ddd1b0777f..8f897cafe6 100644 --- a/src/engine/globals.cpp +++ b/src/engine/globals.cpp @@ -637,7 +637,7 @@ void deinitialize() { ssr->deinitialize(); } - syncEngine->removeSyncables(timeManager->getSyncables()); + syncEngine->removeSyncables(timeManager->syncables()); moduleEngine->deinitialize(); luaConsole->deinitialize(); diff --git a/src/engine/moduleengine.cpp b/src/engine/moduleengine.cpp index 47f733b0a1..4c9da424d5 100644 --- a/src/engine/moduleengine.cpp +++ b/src/engine/moduleengine.cpp @@ -92,7 +92,6 @@ void ModuleEngine::initialize( } addPropertySubOwner(m); - } } @@ -153,12 +152,11 @@ void ModuleEngine::registerModule(std::unique_ptr mod) { ); if (it != _modules.end()) { throw ghoul::RuntimeError( - "Module name '" + mod->identifier() + "' was registered before", + fmt::format("Module name '{}' was registered before", mod->identifier()), "ModuleEngine" ); } - LDEBUG(fmt::format("Registering module '{}'", mod->identifier())); LDEBUG(fmt::format("Registered module '{}'", mod->identifier())); _modules.push_back(std::move(mod)); } diff --git a/src/engine/openspaceengine.cpp b/src/engine/openspaceengine.cpp index 5ebce6a3cf..9a12a4d31e 100644 --- a/src/engine/openspaceengine.cpp +++ b/src/engine/openspaceengine.cpp @@ -45,30 +45,22 @@ #include #include #include -#include #include #include #include -#include #include #include #include #include #include #include -#include -#include -#include -#include #include -#include #include #include #include #include #include #include -#include #include #include #include @@ -154,16 +146,6 @@ OpenSpaceEngine::OpenSpaceEngine() , _showHiddenSceneGraphNodes(ShowHiddenSceneInfo, false) { FactoryManager::initialize(); - FactoryManager::ref().addFactory("Renderable"); - FactoryManager::ref().addFactory("Translation"); - FactoryManager::ref().addFactory("Rotation"); - FactoryManager::ref().addFactory("Scale"); - FactoryManager::ref().addFactory("TimeFrame"); - FactoryManager::ref().addFactory("LightSource"); - FactoryManager::ref().addFactory("Task"); - FactoryManager::ref().addFactory("ResourceSynchronization"); - FactoryManager::ref().addFactory("DashboardItem"); - SpiceManager::initialize(); TransformationManager::initialize(); @@ -181,7 +163,7 @@ OpenSpaceEngine::OpenSpaceEngine() }); } -OpenSpaceEngine::~OpenSpaceEngine() {} // NOLINT +OpenSpaceEngine::~OpenSpaceEngine() {} void OpenSpaceEngine::registerPathTokens() { LTRACE("OpenSpaceEngine::initialize(begin)"); @@ -225,13 +207,7 @@ void OpenSpaceEngine::initialize() { std::string cacheFolder = absPath("${CACHE}").string(); if (global::configuration->usePerProfileCache) { - std::string profile = global::configuration->profile; - if (profile.empty()) { - throw ghoul::RuntimeError( - "Unexpected error: Configuration file profile was empty" - ); - } - cacheFolder = cacheFolder + "-" + profile; + cacheFolder = cacheFolder + "-" + global::configuration->profile; LINFO(fmt::format("Old cache: {}", absPath("${CACHE}"))); LINFO(fmt::format("New cache: {}", cacheFolder)); @@ -244,7 +220,7 @@ void OpenSpaceEngine::initialize() { // Create directories that doesn't exist for (const std::string& token : FileSys.tokens()) { - if (!std::filesystem::is_directory(token)) { + if (!std::filesystem::is_directory(absPath(token))) { std::filesystem::create_directories(absPath(token)); } } @@ -329,63 +305,58 @@ void OpenSpaceEngine::initialize() { LDEBUG("Registering Lua libraries"); registerCoreClasses(*global::scriptEngine); - // Process profile file (must be provided in configuration file) - if (!global::configuration->profile.empty()) { - std::filesystem::path profile; - if (!std::filesystem::is_regular_file(global::configuration->profile)) { - std::filesystem::path userCandidate = absPath(fmt::format( - "${{USER_PROFILES}}/{}.profile", global::configuration->profile - )); - std::filesystem::path profileCandidate = absPath(fmt::format( - "${{PROFILES}}/{}.profile", global::configuration->profile - )); + // Process profile file + std::filesystem::path profile; + if (!std::filesystem::is_regular_file(global::configuration->profile)) { + std::filesystem::path userCandidate = absPath(fmt::format( + "${{USER_PROFILES}}/{}.profile", global::configuration->profile + )); + std::filesystem::path profileCandidate = absPath(fmt::format( + "${{PROFILES}}/{}.profile", global::configuration->profile + )); - // Give the user profile priority if there are both - if (std::filesystem::is_regular_file(userCandidate)) { - profile = userCandidate; - } - else if (std::filesystem::is_regular_file(profileCandidate)) { - profile = profileCandidate; - } - else { - throw ghoul::RuntimeError(fmt::format( - "Could not load profile '{}': File does not exist", - global::configuration->profile - )); - } + // Give the user profile priority if there are both + if (std::filesystem::is_regular_file(userCandidate)) { + profile = userCandidate; + } + else if (std::filesystem::is_regular_file(profileCandidate)) { + profile = profileCandidate; } else { - profile = global::configuration->profile; - } - - // Load the profile - std::ifstream inFile; - try { - inFile.open(profile, std::ifstream::in); - } - catch (const std::ifstream::failure& e) { throw ghoul::RuntimeError(fmt::format( - "Exception opening profile file for read: {} ({})", - profile, e.what()) - ); + "Could not load profile '{}': File does not exist", + global::configuration->profile + )); } - - std::string content( - (std::istreambuf_iterator(inFile)), - std::istreambuf_iterator() - ); - *global::profile = Profile(content); + } + else { + profile = global::configuration->profile; } + // Load the profile + std::ifstream inFile; + try { + inFile.open(profile, std::ifstream::in); + } + catch (const std::ifstream::failure& e) { + throw ghoul::RuntimeError(fmt::format( + "Exception opening profile file for read: {} ({})", profile, e.what() + )); + } + + std::string content( + (std::istreambuf_iterator(inFile)), + std::istreambuf_iterator() + ); + *global::profile = Profile(content); + // Set up asset loader - global::openSpaceEngine->_assetManager = std::make_unique( + _assetManager = std::make_unique( global::scriptEngine->luaState(), - absPath("${ASSETS}").string() + absPath("${ASSETS}") ); - global::scriptEngine->addLibrary( - global::openSpaceEngine->_assetManager->luaLibrary() - ); + global::scriptEngine->addLibrary(_assetManager->luaLibrary()); for (OpenSpaceModule* module : global::moduleEngine->modules()) { global::scriptEngine->addLibrary(module->luaLibrary()); @@ -397,12 +368,6 @@ void OpenSpaceEngine::initialize() { global::scriptEngine->initialize(); - // To be concluded - _documentationJson.clear(); - _documentationJson += "{\"documentation\":["; - - writeStaticDocumentation(); - _shutdown.waitTime = global::configuration->shutdownCountdown; global::navigationHandler->initialize(); @@ -418,27 +383,6 @@ void OpenSpaceEngine::initialize() { LTRACE("OpenSpaceEngine::initialize(end)"); } -std::string OpenSpaceEngine::generateFilePath(std::string openspaceRelativePath) { - // @TODO (abock, 2021-05-16) This whole function can die, I think - std::string path = absPath(openspaceRelativePath).string(); - // Needs to handle either windows (which seems to require double back-slashes) - // or unix path slashes. - const std::string search = "\\"; - const std::string replace = "\\\\"; - if (path.find(search) != std::string::npos) { - size_t start_pos = 0; - while ((start_pos = path.find(search, start_pos)) != std::string::npos) { - path.replace(start_pos, search.length(), replace); - start_pos += replace.length(); - } - path.append(replace); - } - else { - path.append("/"); - } - return path.append(global::configuration->profile); -} - void OpenSpaceEngine::initializeGL() { ZoneScoped @@ -545,7 +489,7 @@ void OpenSpaceEngine::initializeGL() { bool synchronous = global::configuration->openGLDebugContext.isSynchronous; setDebugOutput(DebugOutput(debugActive), SynchronousOutput(synchronous)); - for (const configuration::Configuration::OpenGLDebugContext::IdentifierFilter&f : + for (const configuration::Configuration::OpenGLDebugContext::IdentifierFilter& f : global::configuration->openGLDebugContext.identifierFilters) { setDebugMessageControl( @@ -569,13 +513,12 @@ void OpenSpaceEngine::initializeGL() { } auto callback = [](Source source, Type type, Severity severity, - unsigned int id, std::string message) -> void + unsigned int id, std::string message) -> void { const std::string s = ghoul::to_string(source); const std::string t = ghoul::to_string(type); - const std::string category = - "OpenGL (" + s + ") [" + t + "] {" + std::to_string(id) + "}"; + const std::string category = fmt::format("OpenGL ({}) [{}] {{{}}}", s, t, id); switch (severity) { case Severity::High: LERRORC(category, message); @@ -669,7 +612,8 @@ void OpenSpaceEngine::initializeGL() { if (lvl > LogLevel::Trace) { LWARNING( "Logging OpenGL calls is enabled, but the selected log level does " - "not include TRACE, so no OpenGL logs will be printed"); + "not include TRACE, so no OpenGL logs will be printed" + ); } else { using namespace glbinding; @@ -735,9 +679,9 @@ void OpenSpaceEngine::loadAssets() { if (_scene) { ZoneScopedN("Reset scene") - global::syncEngine->removeSyncables(global::timeManager->getSyncables()); + global::syncEngine->removeSyncables(global::timeManager->syncables()); if (_scene && _scene->camera()) { - global::syncEngine->removeSyncables(_scene->camera()->getSyncables()); + global::syncEngine->removeSyncables(_scene->camera()->syncables()); } global::renderEngine->setScene(nullptr); global::renderEngine->setCamera(nullptr); @@ -761,12 +705,9 @@ void OpenSpaceEngine::loadAssets() { _scene = std::make_unique(std::move(sceneInitializer)); global::renderEngine->setScene(_scene.get()); - global::rootPropertyOwner->addPropertySubOwner(_scene.get()); - _scene->setCamera(std::make_unique()); - Camera* camera = _scene->camera(); - camera->setParent(_scene->root()); + Camera* camera = _scene->camera(); global::renderEngine->setCamera(camera); global::navigationHandler->setCamera(camera); const SceneGraphNode* parent = camera->parent(); @@ -917,9 +858,9 @@ void OpenSpaceEngine::loadAssets() { global::renderEngine->updateScene(); - global::syncEngine->addSyncables(global::timeManager->getSyncables()); + global::syncEngine->addSyncables(global::timeManager->syncables()); if (_scene && _scene->camera()) { - global::syncEngine->addSyncables(_scene->camera()->getSyncables()); + global::syncEngine->addSyncables(_scene->camera()->syncables()); } #ifdef __APPLE__ @@ -928,7 +869,7 @@ void OpenSpaceEngine::loadAssets() { runGlobalCustomizationScripts(); - _writeDocumentationTask = std::async(&OpenSpaceEngine::writeSceneDocumentation, this); + _writeDocumentationTask = std::async(&OpenSpaceEngine::writeDocumentation, this); LTRACE("OpenSpaceEngine::loadAsset(end)"); } @@ -950,7 +891,7 @@ void OpenSpaceEngine::deinitialize() { } if (global::renderEngine->scene() && global::renderEngine->scene()->camera()) { global::syncEngine->removeSyncables( - global::renderEngine->scene()->camera()->getSyncables() + global::renderEngine->scene()->camera()->syncables() ); } global::sessionRecording->deinitialize(); @@ -1003,31 +944,6 @@ void OpenSpaceEngine::deinitializeGL() { LTRACE("OpenSpaceEngine::deinitializeGL(end)"); } -void OpenSpaceEngine::writeStaticDocumentation() { - std::string path = global::configuration->documentation.path; - if (!path.empty()) { - - DocEng.addHandlebarTemplates(global::scriptEngine->templatesToRegister()); - DocEng.addHandlebarTemplates(FactoryManager::ref().templatesToRegister()); - DocEng.addHandlebarTemplates(DocEng.templatesToRegister()); - - _documentationJson += "{\"name\":\"Scripting\","; - _documentationJson += "\"identifier\":\"" + global::scriptEngine->jsonName(); - _documentationJson += "\",\"data\":" + global::scriptEngine->generateJson(); - _documentationJson += "},"; - - _documentationJson += "{\"name\":\"Top Level\","; - _documentationJson += "\"identifier\":\"" + DocEng.jsonName(); - _documentationJson += "\",\"data\":" + DocEng.generateJson(); - _documentationJson += "},"; - - _documentationJson += "{\"name\":\"Factory\","; - _documentationJson += "\"identifier\":\"" + FactoryManager::ref().jsonName(); - _documentationJson += "\",\"data\":" + FactoryManager::ref().generateJson(); - _documentationJson += "},"; - } -} - void OpenSpaceEngine::createUserDirectoriesIfNecessary() { LTRACE(absPath("${USER}").string()); @@ -1083,9 +999,7 @@ void OpenSpaceEngine::loadFonts() { bool success = global::fontManager->registerFontPath(key, fontName); if (!success) { - LERROR(fmt::format( - "Error registering font {} with key '{}'", fontName, key - )); + LERROR(fmt::format("Error registering font {} with key '{}'", fontName, key)); } } @@ -1097,61 +1011,83 @@ void OpenSpaceEngine::loadFonts() { } } -void OpenSpaceEngine::writeSceneDocumentation() { +void OpenSpaceEngine::writeDocumentation() { ZoneScoped // Write documentation to json files if config file supplies path for doc files - std::string path = global::configuration->documentation.path; - if (!path.empty()) { - std::future root = std::async( - &properties::PropertyOwner::generateJson, - global::rootPropertyOwner - ); - - std::future scene = std::async( - &properties::PropertyOwner::generateJson, - _scene.get() - ); - - - - path = absPath(path).string() + '/'; - _documentationJson += "{\"name\":\"Keybindings\",\"identifier\":\""; - _documentationJson += global::keybindingManager->jsonName() + "\","; - _documentationJson += "\"data\":"; - _documentationJson += global::keybindingManager->generateJson(); - _documentationJson += "},"; - _documentationJson += "{\"name\":\"Scene License Information\","; - _documentationJson += "\"identifier\":\"sceneLicense"; - _documentationJson += "\",\"data\":"; - _documentationJson += SceneLicenseWriter().generateJson(); - _documentationJson += "},"; - _documentationJson += "{\"name\":\"Scene Properties\","; - _documentationJson += "\"identifier\":\"propertylist";// + _scene->jsonName(); - _documentationJson += "\",\"data\":" + root.get(); - _documentationJson += "},"; - _documentationJson += "{\"name\":\"Scene Graph Information\","; - _documentationJson += "\"identifier\":\"propertylist"; - _documentationJson += "\",\"data\":" + scene.get(); - _documentationJson += "}"; - - //add templates for the jsons we just registered - DocEng.addHandlebarTemplates(global::keybindingManager->templatesToRegister()); - //TODO this is in efficaiant, here i am just instaning the class to get - //at a member variable which is staticly defined. How do i just get that - SceneLicenseWriter writer; - DocEng.addHandlebarTemplates(writer.templatesToRegister()); - DocEng.addHandlebarTemplates(global::rootPropertyOwner->templatesToRegister()); - - //the static documentation shoudl be finished already - //so now that we wrote the static and secene json files - //we should write the html file that uses them. - _documentationJson += "]}"; - - DocEng.writeDocumentationHtml(path, _documentationJson); + if (path.empty()) { + // if path was empty, that means that no documentation is requested + return; } - //no else, if path was empty, that means that no documentation is requested + path = absPath(path).string() + '/'; + + // Start the async requests as soon as possible so they are finished when we need them + std::future root = std::async( + &properties::PropertyOwner::generateJson, + global::rootPropertyOwner + ); + + std::future scene = std::async( + &properties::PropertyOwner::generateJson, + _scene.get() + ); + + + DocEng.addHandlebarTemplates(global::scriptEngine->templatesToRegister()); + DocEng.addHandlebarTemplates(FactoryManager::ref().templatesToRegister()); + DocEng.addHandlebarTemplates(DocEng.templatesToRegister()); + + std::string json = "{\"documentation\":["; + + json += fmt::format( + R"({{"name":"{}","identifier":"{}","data":{}}},)", + "Scripting", + global::scriptEngine->jsonName(), + global::scriptEngine->generateJson() + ); + + json += fmt::format( + R"({{"name":"{}","identifier":"{}","data":{}}},)", + "Top Level", DocEng.jsonName(), DocEng.generateJson() + ); + + json += fmt::format( + R"({{"name":"{}","identifier":"{}","data":{}}},)", + "Factory", FactoryManager::ref().jsonName(), FactoryManager::ref().generateJson() + ); + + json += fmt::format( + R"({{"name":"{}","identifier":"{}","data":{}}},)", + "Keybindings", + global::keybindingManager->jsonName(), + global::keybindingManager->generateJson() + ); + + SceneLicenseWriter writer; + json += fmt::format( + R"({{"name":"{}","identifier":"{}","data":{}}},)", + "Scene License Information", writer.jsonName(), writer.generateJson() + ); + + json += fmt::format( + R"({{"name":"{}","identifier":"{}","data":{}}},)", + "Scene Properties", "propertylist", root.get() + ); + + json += fmt::format( + R"({{"name":"{}","identifier":"{}","data":{}}})", + "Scene Graph Information", "propertylist", scene.get() + ); + + json += "]}"; + + // Add templates for the JSONs we just registered + DocEng.addHandlebarTemplates(global::keybindingManager->templatesToRegister()); + DocEng.addHandlebarTemplates(writer.templatesToRegister()); + DocEng.addHandlebarTemplates(global::rootPropertyOwner->templatesToRegister()); + + DocEng.writeDocumentationHtml(path, json); } void OpenSpaceEngine::preSynchronization() { @@ -1479,9 +1415,9 @@ void OpenSpaceEngine::mouseButtonCallback(MouseButton button, MouseAction action if (isConsumed) { // If the mouse was released, we still want to forward it to the navigation // handler in order to reliably terminate a rotation or zoom, or to the other - // callbacks to for example release a drag and drop of a UI window. Accidentally - // moving the cursor over a UI window is easy to miss and leads to weird - // continuing movement + // callbacks to for example release a drag and drop of a UI window. + // Accidentally moving the cursor over a UI window is easy to miss and leads + // to weird continuing movement if (action == MouseAction::Release) { continue; } @@ -1504,9 +1440,7 @@ void OpenSpaceEngine::mouseButtonCallback(MouseButton button, MouseAction action global::interactionMonitor->markInteraction(); } -void OpenSpaceEngine::mousePositionCallback(double x, double y, - IsGuiWindow isGuiWindow) -{ +void OpenSpaceEngine::mousePositionCallback(double x, double y, IsGuiWindow isGuiWindow) { ZoneScoped using F = global::callback::MousePositionCallback; @@ -1570,9 +1504,7 @@ void OpenSpaceEngine::touchExitCallback(TouchInput input) { } } -void OpenSpaceEngine::handleDragDrop(const std::string& file) { - std::filesystem::path f(file); - +void OpenSpaceEngine::handleDragDrop(std::filesystem::path file) { ghoul::lua::LuaState s(ghoul::lua::LuaState::IncludeStandardLibrary::Yes); std::filesystem::path absolutePath = absPath("${SCRIPTS}/drag_drop_handler.lua"); int status = luaL_loadfile(s, absolutePath.string().c_str()); @@ -1585,11 +1517,11 @@ void OpenSpaceEngine::handleDragDrop(const std::string& file) { ghoul::lua::push(s, file); lua_setglobal(s, "filename"); - std::string basename = f.filename().string(); + std::string basename = file.filename().string(); ghoul::lua::push(s, basename); lua_setglobal(s, "basename"); - std::string extension = f.extension().string(); + std::string extension = file.extension().string(); std::transform( extension.begin(), extension.end(), extension.begin(), @@ -1620,8 +1552,7 @@ void OpenSpaceEngine::handleDragDrop(const std::string& file) { std::vector OpenSpaceEngine::encode() { ZoneScoped - std::vector buffer = global::syncEngine->encodeSyncables(); - return buffer; + return global::syncEngine->encodeSyncables(); } void OpenSpaceEngine::decode(std::vector data) { @@ -1714,6 +1645,35 @@ void OpenSpaceEngine::removeModeChangeCallback(CallbackHandle handle) { _modeChangeCallbacks.erase(it); } +scripting::LuaLibrary OpenSpaceEngine::luaLibrary() { + return { + "", + { + codegen::lua::ToggleShutdown, + codegen::lua::WriteDocumentation, + codegen::lua::SetScreenshotFolder, + codegen::lua::AddTag, + codegen::lua::RemoveTag, + codegen::lua::DownloadFile, + codegen::lua::CreateSingleColorImage, + codegen::lua::IsMaster, + codegen::lua::Version + }, + { + absPath("${SCRIPTS}/core_scripts.lua") + } + }; +} + +LoadingScreen* OpenSpaceEngine::loadingScreen() { + return _loadingScreen.get(); +} + +AssetManager& OpenSpaceEngine::assetManager() { + ghoul_assert(_assetManager, "Asset Manager must not be nullptr"); + return *_assetManager; +} + void setCameraFromProfile(const Profile& p) { if (!p.camera.has_value()) { // If the camera is not specified, we want to set it to a sensible default value @@ -1751,10 +1711,10 @@ void setCameraFromProfile(const Profile& p) { global::navigationHandler->setNavigationStateNextFrame(nav); }, [](const Profile::CameraGoToGeo& geo) { - //Instead of direct calls to navigation state code, lua commands with - //globebrowsing goToGeo are used because this prevents a module - //dependency in this core code. Eventually, goToGeo will be incorporated - //in the OpenSpace core and this code will change. + // Instead of direct calls to navigation state code, lua commands with + // globebrowsing goToGeo are used because this prevents a module + // dependency in this core code. Eventually, goToGeo will be incorporated + // in the OpenSpace core and this code will change. std::string geoScript = fmt::format("openspace.globebrowsing.goToGeo" "([[{}]], {}, {}", geo.anchor, geo.latitude, geo.longitude); if (geo.altitude.has_value()) { @@ -1803,16 +1763,14 @@ void setActionsFromProfile(const Profile& p) { LERROR("Identifier must to provided to register action"); } if (global::actionManager->hasAction(a.identifier)) { - LERROR( - fmt::format("Action for identifier '{}' already existed & registered", - a.identifier) - ); + LERROR(fmt::format( + "Action for identifier '{}' already existed & registered", a.identifier + )); } if (a.script.empty()) { - LERROR( - fmt::format("Identifier '{}' doesn't provide a Lua command to execute", - a.identifier) - ); + LERROR(fmt::format( + "Identifier '{}' doesn't provide a Lua command to execute", a.identifier + )); } interaction::Action action; action.identifier = a.identifier; @@ -1834,12 +1792,10 @@ void setKeybindingsFromProfile(const Profile& p) { LERROR(fmt::format("Action '{}' does not exist", k.action)); } if (k.key.key == openspace::Key::Unknown) { - LERROR( - fmt::format( - "Could not find key '{}'", - std::to_string(static_cast(k.key.key)) - ) - ); + LERROR(fmt::format( + "Could not find key '{}'", + std::to_string(static_cast(k.key.key)) + )); } global::keybindingManager->bindKey(k.key.key, k.key.modifier, k.action); } @@ -1863,33 +1819,4 @@ void setAdditionalScriptsFromProfile(const Profile& p) { } } -scripting::LuaLibrary OpenSpaceEngine::luaLibrary() { - return { - "", - { - codegen::lua::ToggleShutdown, - codegen::lua::WriteDocumentation, - codegen::lua::SetScreenshotFolder, - codegen::lua::AddTag, - codegen::lua::RemoveTag, - codegen::lua::DownloadFile, - codegen::lua::CreateSingleColorImage, - codegen::lua::IsMaster, - codegen::lua::Version - }, - { - absPath("${SCRIPTS}/core_scripts.lua") - } - }; -} - -LoadingScreen* OpenSpaceEngine::loadingScreen() { - return _loadingScreen.get(); -} - -AssetManager& OpenSpaceEngine::assetManager() { - ghoul_assert(_assetManager, "Asset Manager must not be nullptr"); - return *_assetManager; -} - } // namespace openspace diff --git a/src/engine/openspaceengine_lua.inl b/src/engine/openspaceengine_lua.inl index d7f028ba22..008d9eded7 100644 --- a/src/engine/openspaceengine_lua.inl +++ b/src/engine/openspaceengine_lua.inl @@ -38,8 +38,7 @@ namespace { * Writes out documentation files */ [[codegen::luawrap]] void writeDocumentation() { - openspace::global::openSpaceEngine->writeStaticDocumentation(); - openspace::global::openSpaceEngine->writeSceneDocumentation(); + openspace::global::openSpaceEngine->writeDocumentation(); } // Sets the folder used for storing screenshots or session recording frames diff --git a/src/interaction/sessionrecording.cpp b/src/interaction/sessionrecording.cpp index 365fd801f4..e6a665b1eb 100644 --- a/src/interaction/sessionrecording.cpp +++ b/src/interaction/sessionrecording.cpp @@ -107,7 +107,7 @@ SessionRecording::SessionRecording(bool isGlobal) } } -SessionRecording::~SessionRecording() { // NOLINT +SessionRecording::~SessionRecording() { } void SessionRecording::deinitialize() { @@ -955,7 +955,7 @@ void SessionRecording::savePropertyBaseline(properties::Property& prop) { if (!isPropAlreadySaved) { std::string initialScriptCommand = fmt::format( "openspace.setPropertyValueSingle(\"{}\", {})", - propIdentifier, prop.getStringValue() + propIdentifier, prop.stringValue() ); saveScriptKeyframeToPropertiesBaseline(initialScriptCommand); _propertyBaselinesSaved.push_back(propIdentifier); diff --git a/src/navigation/navigationhandler.cpp b/src/navigation/navigationhandler.cpp index 27ca0633ce..adccd599a4 100644 --- a/src/navigation/navigationhandler.cpp +++ b/src/navigation/navigationhandler.cpp @@ -104,7 +104,7 @@ NavigationHandler::NavigationHandler() addProperty(_useKeyFrameInteraction); } -NavigationHandler::~NavigationHandler() {} // NOLINT +NavigationHandler::~NavigationHandler() {} void NavigationHandler::initialize() { ZoneScoped diff --git a/src/navigation/pathnavigator.cpp b/src/navigation/pathnavigator.cpp index 0caefdbfd4..eac2e4631b 100644 --- a/src/navigation/pathnavigator.cpp +++ b/src/navigation/pathnavigator.cpp @@ -157,7 +157,7 @@ PathNavigator::PathNavigator() addProperty(_relevantNodeTags); } -PathNavigator::~PathNavigator() {} // NOLINT +PathNavigator::~PathNavigator() {} Camera* PathNavigator::camera() const { return global::navigationHandler->camera(); diff --git a/src/properties/list/doublelistproperty.cpp b/src/properties/list/doublelistproperty.cpp index 58360f9317..9e3c69a704 100644 --- a/src/properties/list/doublelistproperty.cpp +++ b/src/properties/list/doublelistproperty.cpp @@ -37,7 +37,7 @@ DoubleListProperty::DoubleListProperty(Property::PropertyInfo info, : ListProperty(std::move(info), std::move(values)) {} -std::string DoubleListProperty::className() const { +std::string_view DoubleListProperty::className() const { return "DoubleListProperty"; } diff --git a/src/properties/list/intlistproperty.cpp b/src/properties/list/intlistproperty.cpp index 56b83a09f7..ff65d8ff5f 100644 --- a/src/properties/list/intlistproperty.cpp +++ b/src/properties/list/intlistproperty.cpp @@ -36,7 +36,7 @@ IntListProperty::IntListProperty(Property::PropertyInfo info, std::vector v : ListProperty(std::move(info), std::move(values)) {} -std::string IntListProperty::className() const { +std::string_view IntListProperty::className() const { return "IntListProperty"; } diff --git a/src/properties/list/stringlistproperty.cpp b/src/properties/list/stringlistproperty.cpp index 844760f90a..86ebb1b8ca 100644 --- a/src/properties/list/stringlistproperty.cpp +++ b/src/properties/list/stringlistproperty.cpp @@ -37,7 +37,7 @@ StringListProperty::StringListProperty(Property::PropertyInfo info, : ListProperty(std::move(info), std::move(values)) {} -std::string StringListProperty::className() const { +std::string_view StringListProperty::className() const { return "StringListProperty"; } diff --git a/src/properties/matrix/dmat2property.cpp b/src/properties/matrix/dmat2property.cpp index 0eb881aaf5..01d2596072 100644 --- a/src/properties/matrix/dmat2property.cpp +++ b/src/properties/matrix/dmat2property.cpp @@ -41,7 +41,7 @@ DMat2Property::DMat2Property(Property::PropertyInfo info, glm::dmat2x2 value, ) {} -std::string DMat2Property::className() const { +std::string_view DMat2Property::className() const { return "DMat2Property"; } diff --git a/src/properties/matrix/dmat3property.cpp b/src/properties/matrix/dmat3property.cpp index 6810a1a1a3..845a7bc8b9 100644 --- a/src/properties/matrix/dmat3property.cpp +++ b/src/properties/matrix/dmat3property.cpp @@ -41,7 +41,7 @@ DMat3Property::DMat3Property(Property::PropertyInfo info, glm::dmat3x3 value, ) {} -std::string DMat3Property::className() const { +std::string_view DMat3Property::className() const { return "DMat3Property"; } diff --git a/src/properties/matrix/dmat4property.cpp b/src/properties/matrix/dmat4property.cpp index b7a6de4f5e..ad4de4acdc 100644 --- a/src/properties/matrix/dmat4property.cpp +++ b/src/properties/matrix/dmat4property.cpp @@ -41,7 +41,7 @@ DMat4Property::DMat4Property(Property::PropertyInfo info, glm::dmat4x4 value, ) {} -std::string DMat4Property::className() const { +std::string_view DMat4Property::className() const { return "DMat4Property"; } diff --git a/src/properties/matrix/mat2property.cpp b/src/properties/matrix/mat2property.cpp index 8a1c2a3700..76b96d4a78 100644 --- a/src/properties/matrix/mat2property.cpp +++ b/src/properties/matrix/mat2property.cpp @@ -41,7 +41,7 @@ Mat2Property::Mat2Property(Property::PropertyInfo info, glm::mat2x2 value, ) {} -std::string Mat2Property::className() const { +std::string_view Mat2Property::className() const { return "Mat2Property"; } diff --git a/src/properties/matrix/mat3property.cpp b/src/properties/matrix/mat3property.cpp index b9b251dc77..178a3ec8fa 100644 --- a/src/properties/matrix/mat3property.cpp +++ b/src/properties/matrix/mat3property.cpp @@ -41,7 +41,7 @@ Mat3Property::Mat3Property(Property::PropertyInfo info, glm::mat3x3 value, ) {} -std::string Mat3Property::className() const { +std::string_view Mat3Property::className() const { return "Mat3Property"; } diff --git a/src/properties/matrix/mat4property.cpp b/src/properties/matrix/mat4property.cpp index 6348a5043e..ac4e8bbbc0 100644 --- a/src/properties/matrix/mat4property.cpp +++ b/src/properties/matrix/mat4property.cpp @@ -41,7 +41,7 @@ Mat4Property::Mat4Property(Property::PropertyInfo info, glm::mat4x4 value, ) {} -std::string Mat4Property::className() const { +std::string_view Mat4Property::className() const { return "Mat4Property"; } diff --git a/src/properties/optionproperty.cpp b/src/properties/optionproperty.cpp index 9fa5a78045..e4e539b653 100644 --- a/src/properties/optionproperty.cpp +++ b/src/properties/optionproperty.cpp @@ -25,6 +25,7 @@ #include +#include #include namespace { @@ -45,7 +46,7 @@ OptionProperty::OptionProperty(PropertyInfo info, DisplayType displayType) , _displayType(displayType) {} -std::string OptionProperty::className() const { +std::string_view OptionProperty::className() const { return "OptionProperty"; } @@ -158,9 +159,9 @@ std::string OptionProperty::generateAdditionalJsonDescription() const { for (size_t i = 0; i < _options.size(); ++i) { const Option& o = _options[i]; std::string v = std::to_string(o.value); - std::string vSan = sanitizeString(v); + std::string vSan = escapedJson(v); std::string d = o.description; - std::string dSan = sanitizeString(d); + std::string dSan = escapedJson(d); result += '{'; result += fmt::format(R"("{}": "{}")", vSan, dSan); diff --git a/src/properties/property.cpp b/src/properties/property.cpp index 5f72b7e005..f6012e4f4f 100644 --- a/src/properties/property.cpp +++ b/src/properties/property.cpp @@ -25,6 +25,7 @@ #include #include +#include #include #include #include @@ -35,60 +36,21 @@ namespace { constexpr std::string_view MetaDataKeyReadOnly = "isReadOnly"; constexpr std::string_view MetaDataKeyViewOptions = "ViewOptions"; constexpr std::string_view MetaDataKeyVisibility = "Visibility"; + + constexpr std::string_view IdentifierKey = "Identifier"; + constexpr std::string_view NameKey = "Name"; + constexpr std::string_view TypeKey = "Type"; + constexpr std::string_view DescriptionKey = "Description"; + constexpr std::string_view JsonValueKey = "Value"; + constexpr std::string_view MetaDataKey = "MetaData"; + constexpr std::string_view AdditionalDataKey = "AdditionalData"; } // namespace namespace openspace::properties { -Property::OnChangeHandle Property::OnChangeHandleAll = - std::numeric_limits::max(); - const char* Property::ViewOptions::Color = "Color"; const char* Property::ViewOptions::MinMaxRange = "MinMaxRange"; -const char* Property::IdentifierKey = "Identifier"; -const char* Property::NameKey = "Name"; -const char* Property::TypeKey = "Type"; -const char* Property::DescriptionKey = "Description"; -const char* Property::JsonValueKey = "Value"; -const char* Property::MetaDataKey = "MetaData"; -const char* Property::AdditionalDataKey = "AdditionalData"; - - -std::string sanitizeString(const std::string& s) { - std::string result; - - for (const char& c : s) { - switch (c) { - case '"': - result += "\\\""; - break; - case '\\': - result += "\\\\"; - break; - case '\b': - result += "\\b"; - break; - case '\f': - result += "\\f"; - break; - case '\n': - result += "\\n"; - break; - case '\r': - result += "\\r"; - break; - case '\t': - result += "\\t"; - break; - default: - result += c; - } - } - - return result; -} - - #ifdef _DEBUG uint64_t Property::Identifier = 0; #endif @@ -121,7 +83,7 @@ std::string Property::fullyQualifiedIdentifier() const { while (currentOwner) { std::string ownerId = currentOwner->identifier(); if (!ownerId.empty()) { - identifier = ownerId + "." + identifier; // NOLINT + identifier = ownerId + "." + identifier; } currentOwner = currentOwner->owner(); } @@ -136,7 +98,7 @@ bool Property::getLuaValue(lua_State*) const { return false; } -void Property::set(std::any) {} // NOLINT +void Property::set(std::any) {} bool Property::setLuaValue(lua_State*) { return false; @@ -150,17 +112,8 @@ int Property::typeLua() const { return LUA_TNIL; } -bool Property::getStringValue(std::string&) const { - return false; -} - -std::string Property::getStringValue() const { - std::string value; - bool status = getStringValue(value); - if (!status) { - throw ghoul::RuntimeError("Could not get string value", identifier()); - } - return value; +std::string Property::stringValue() const { + return ""; } const std::string& Property::guiName() const { @@ -224,16 +177,8 @@ const ghoul::Dictionary& Property::metaData() const { return _metaData; } -std::string Property::toJson() const { - std::string result = "{"; - result += "\"" + std::string(DescriptionKey) + "\": " + - generateBaseJsonDescription() + ", "; - result += "\"" + std::string(JsonValueKey) + "\": " + jsonValue() + '}'; - return result; -} - std::string Property::jsonValue() const { - return getStringValue(); + return stringValue(); } Property::OnChangeHandle Property::onChange(std::function callback) { @@ -319,22 +264,20 @@ void Property::resetToUnchanged() { _isValueDirty = false; } -std::string Property::generateBaseJsonDescription() const { - std::string cName = className(); - std::string cNameSan = sanitizeString(cName); +std::string Property::generateJsonDescription() const { + std::string cName = escapedJson(std::string(className())); std::string identifier = fullyQualifiedIdentifier(); - std::string identifierSan = sanitizeString(identifier); + std::string identifierSan = escapedJson(identifier); std::string gName = guiName(); - std::string gNameSan = sanitizeString(gName); + std::string gNameSan = escapedJson(gName); std::string metaData = generateMetaDataJsonDescription(); std::string description = generateAdditionalJsonDescription(); - return - "{ \"" + std::string(TypeKey) + "\": \"" + cNameSan + "\", " + - "\"" + std::string(IdentifierKey) + "\": \"" + identifierSan + "\", " + - "\"" + std::string(NameKey) + "\": \"" + gNameSan + "\", " + - "\"" + std::string(MetaDataKey) + "\": " + metaData + ", " + - "\"" + std::string(AdditionalDataKey) + "\": " + description + " }"; + return fmt::format( + R"({{"{}":"{}","{}":"{}","{}":"{}","{}":{},"{}":{}}})", + TypeKey, cName, IdentifierKey, identifierSan, NameKey, gNameSan, MetaDataKey, + metaData, AdditionalDataKey, description + ); } std::string Property::generateMetaDataJsonDescription() const { @@ -357,21 +300,22 @@ std::string Property::generateMetaDataJsonDescription() const { std::string isReadOnlyString = (isReadOnly ? "true" : "false"); std::string groupId = groupIdentifier(); - std::string sanitizedGroupId = sanitizeString(groupId); + std::string sanitizedGroupId = escapedJson(groupId); std::string viewOptions = "{}"; - if (_metaData.hasValue(MetaDataKeyViewOptions)) { - viewOptions = ghoul::formatJson( - _metaData.value(MetaDataKeyViewOptions) - ); - } + if (_metaData.hasValue(MetaDataKeyViewOptions)) { + viewOptions = ghoul::formatJson( + _metaData.value(MetaDataKeyViewOptions) + ); + } - std::string result = "{ "; - result += fmt::format("\"{}\": \"{}\",", MetaDataKeyGroup, sanitizedGroupId); - result += fmt::format("\"{}\": \"{}\",", MetaDataKeyVisibility, vis); - result += fmt::format("\"{}\": {},", MetaDataKeyReadOnly, isReadOnlyString); - result += fmt::format("\"{}\": {}", MetaDataKeyViewOptions, viewOptions); - result += " }"; + std::string result = fmt::format( + R"({{"{}":"{}","{}":"{}","{}":{},"{}":{}}})", + MetaDataKeyGroup, sanitizedGroupId, + MetaDataKeyVisibility, vis, + MetaDataKeyReadOnly, isReadOnlyString, + MetaDataKeyViewOptions, viewOptions + ); return result; } @@ -379,7 +323,7 @@ std::string Property::generateAdditionalJsonDescription() const { return "{}"; } -void Property::setInterpolationTarget(std::any) {} // NOLINT +void Property::setInterpolationTarget(std::any) {} void Property::setLuaInterpolationTarget(lua_State*) {} void Property::interpolateValue(float, ghoul::EasingFunc) {} diff --git a/src/properties/scalar/boolproperty.cpp b/src/properties/scalar/boolproperty.cpp index 08a2be4a76..9709498368 100644 --- a/src/properties/scalar/boolproperty.cpp +++ b/src/properties/scalar/boolproperty.cpp @@ -33,7 +33,7 @@ BoolProperty::BoolProperty(Property::PropertyInfo info, bool value) : TemplateProperty(std::move(info), value) {} -std::string BoolProperty::className() const { +std::string_view BoolProperty::className() const { return "BoolProperty"; } diff --git a/src/properties/scalar/doubleproperty.cpp b/src/properties/scalar/doubleproperty.cpp index d4bd6c7a10..96adca4909 100644 --- a/src/properties/scalar/doubleproperty.cpp +++ b/src/properties/scalar/doubleproperty.cpp @@ -33,7 +33,7 @@ DoubleProperty::DoubleProperty(Property::PropertyInfo info, double value, : NumericalProperty(std::move(info), value, minValue, maxValue, stepValue) {} -std::string DoubleProperty::className() const { +std::string_view DoubleProperty::className() const { return "DoubleProperty"; } diff --git a/src/properties/scalar/floatproperty.cpp b/src/properties/scalar/floatproperty.cpp index 9dfaa82636..8b6f05edc4 100644 --- a/src/properties/scalar/floatproperty.cpp +++ b/src/properties/scalar/floatproperty.cpp @@ -33,7 +33,7 @@ FloatProperty::FloatProperty(Property::PropertyInfo info, float value, : NumericalProperty(std::move(info), value, minValue, maxValue, stepValue) {} -std::string FloatProperty::className() const { +std::string_view FloatProperty::className() const { return "FloatProperty"; } diff --git a/src/properties/scalar/intproperty.cpp b/src/properties/scalar/intproperty.cpp index 60cd511f3d..758dff8f2f 100644 --- a/src/properties/scalar/intproperty.cpp +++ b/src/properties/scalar/intproperty.cpp @@ -33,7 +33,7 @@ IntProperty::IntProperty(Property::PropertyInfo info, int value, : NumericalProperty(std::move(info), value, minValue, maxValue, stepValue) {} -std::string IntProperty::className() const { +std::string_view IntProperty::className() const { return "IntProperty"; } diff --git a/src/properties/scalar/longproperty.cpp b/src/properties/scalar/longproperty.cpp index f7c0ad1fd0..4d7a8cc73d 100644 --- a/src/properties/scalar/longproperty.cpp +++ b/src/properties/scalar/longproperty.cpp @@ -33,7 +33,7 @@ LongProperty::LongProperty(Property::PropertyInfo info, long value, : NumericalProperty(std::move(info), value, minValue, maxValue, stepValue) {} -std::string LongProperty::className() const { +std::string_view LongProperty::className() const { return "LongProperty"; } diff --git a/src/properties/scalar/shortproperty.cpp b/src/properties/scalar/shortproperty.cpp index 11c0872282..88339a9c53 100644 --- a/src/properties/scalar/shortproperty.cpp +++ b/src/properties/scalar/shortproperty.cpp @@ -33,7 +33,7 @@ ShortProperty::ShortProperty(Property::PropertyInfo info, short value, short min : NumericalProperty(std::move(info), value, minValue, maxValue, stepValue) {} -std::string ShortProperty::className() const { +std::string_view ShortProperty::className() const { return "ShortProperty"; } diff --git a/src/properties/scalar/uintproperty.cpp b/src/properties/scalar/uintproperty.cpp index 71f3b4fad4..62ad26d27d 100644 --- a/src/properties/scalar/uintproperty.cpp +++ b/src/properties/scalar/uintproperty.cpp @@ -40,7 +40,7 @@ UIntProperty::UIntProperty(Property::PropertyInfo info, unsigned int value, ) {} -std::string UIntProperty::className() const { +std::string_view UIntProperty::className() const { return "UIntProperty"; } diff --git a/src/properties/scalar/ulongproperty.cpp b/src/properties/scalar/ulongproperty.cpp index b386922098..84fae8d7ff 100644 --- a/src/properties/scalar/ulongproperty.cpp +++ b/src/properties/scalar/ulongproperty.cpp @@ -40,7 +40,7 @@ ULongProperty::ULongProperty(Property::PropertyInfo info, unsigned long value, ) {} -std::string ULongProperty::className() const { +std::string_view ULongProperty::className() const { return "ULongProperty"; } diff --git a/src/properties/scalar/ushortproperty.cpp b/src/properties/scalar/ushortproperty.cpp index 4ec5b4f512..d6be61dad8 100644 --- a/src/properties/scalar/ushortproperty.cpp +++ b/src/properties/scalar/ushortproperty.cpp @@ -40,7 +40,7 @@ UShortProperty::UShortProperty(Property::PropertyInfo info, unsigned short value ) {} -std::string UShortProperty::className() const { +std::string_view UShortProperty::className() const { return "UShortProperty"; } diff --git a/src/properties/selectionproperty.cpp b/src/properties/selectionproperty.cpp index 4d0b5338d3..3d65d8d1ff 100644 --- a/src/properties/selectionproperty.cpp +++ b/src/properties/selectionproperty.cpp @@ -43,7 +43,7 @@ SelectionProperty::SelectionProperty(Property::PropertyInfo info) : TemplateProperty(std::move(info), std::set()) {} -std::string SelectionProperty::className() const { +std::string_view SelectionProperty::className() const { return "SelectionProperty"; } diff --git a/src/properties/stringproperty.cpp b/src/properties/stringproperty.cpp index 60840d4bdb..2302ef8e1e 100644 --- a/src/properties/stringproperty.cpp +++ b/src/properties/stringproperty.cpp @@ -34,7 +34,7 @@ StringProperty::StringProperty(Property::PropertyInfo info, std::string value) : TemplateProperty(info, value) {} -std::string StringProperty::className() const { +std::string_view StringProperty::className() const { return "StringProperty"; } diff --git a/src/properties/triggerproperty.cpp b/src/properties/triggerproperty.cpp index b7e58a6275..312f148fe1 100644 --- a/src/properties/triggerproperty.cpp +++ b/src/properties/triggerproperty.cpp @@ -30,7 +30,7 @@ TriggerProperty::TriggerProperty(PropertyInfo info) : Property(std::move(info)) {} -std::string TriggerProperty::className() const { +std::string_view TriggerProperty::className() const { return "TriggerProperty"; } @@ -43,13 +43,6 @@ void TriggerProperty::set(std::any) { notifyChangeListeners(); } -std::string TriggerProperty::toJson() const { - std::string result = "{"; - result += "\"" + std::string(DescriptionKey) + "\": " + generateBaseJsonDescription(); - result += "}"; - return result; -} - std::string TriggerProperty::jsonValue() const { return "true"; } diff --git a/src/properties/vector/dvec2property.cpp b/src/properties/vector/dvec2property.cpp index 715b6be6d9..88aefa1d78 100644 --- a/src/properties/vector/dvec2property.cpp +++ b/src/properties/vector/dvec2property.cpp @@ -41,7 +41,7 @@ DVec2Property::DVec2Property(Property::PropertyInfo info, glm::dvec2 value, ) {} -std::string DVec2Property::className() const { +std::string_view DVec2Property::className() const { return "DVec2Property"; } diff --git a/src/properties/vector/dvec3property.cpp b/src/properties/vector/dvec3property.cpp index d45b34068a..00667d8050 100644 --- a/src/properties/vector/dvec3property.cpp +++ b/src/properties/vector/dvec3property.cpp @@ -41,7 +41,7 @@ DVec3Property::DVec3Property(Property::PropertyInfo info, glm::dvec3 value, ) {} -std::string DVec3Property::className() const { +std::string_view DVec3Property::className() const { return "DVec3Property"; } diff --git a/src/properties/vector/dvec4property.cpp b/src/properties/vector/dvec4property.cpp index 49ebcf7205..5a07cb11e9 100644 --- a/src/properties/vector/dvec4property.cpp +++ b/src/properties/vector/dvec4property.cpp @@ -41,7 +41,7 @@ DVec4Property::DVec4Property(Property::PropertyInfo info, glm::dvec4 value, ) {} -std::string DVec4Property::className() const { +std::string_view DVec4Property::className() const { return "DVec4Property"; } diff --git a/src/properties/vector/ivec2property.cpp b/src/properties/vector/ivec2property.cpp index db617df509..4937ecdc3f 100644 --- a/src/properties/vector/ivec2property.cpp +++ b/src/properties/vector/ivec2property.cpp @@ -41,7 +41,7 @@ IVec2Property::IVec2Property(Property::PropertyInfo info, glm::ivec2 value, ) {} -std::string IVec2Property::className() const { +std::string_view IVec2Property::className() const { return "IVec2Property"; } diff --git a/src/properties/vector/ivec3property.cpp b/src/properties/vector/ivec3property.cpp index e2f7ceb241..341f6b510f 100644 --- a/src/properties/vector/ivec3property.cpp +++ b/src/properties/vector/ivec3property.cpp @@ -41,7 +41,7 @@ IVec3Property::IVec3Property(Property::PropertyInfo info, glm::ivec3 value, ) {} -std::string IVec3Property::className() const { +std::string_view IVec3Property::className() const { return "IVec3Property"; } diff --git a/src/properties/vector/ivec4property.cpp b/src/properties/vector/ivec4property.cpp index d00607aed0..aa105756a1 100644 --- a/src/properties/vector/ivec4property.cpp +++ b/src/properties/vector/ivec4property.cpp @@ -41,7 +41,7 @@ IVec4Property::IVec4Property(Property::PropertyInfo info, glm::ivec4 value, ) {} -std::string IVec4Property::className() const { +std::string_view IVec4Property::className() const { return "IVec4Property"; } diff --git a/src/properties/vector/uvec2property.cpp b/src/properties/vector/uvec2property.cpp index f6f6a9fd62..8c44a9855a 100644 --- a/src/properties/vector/uvec2property.cpp +++ b/src/properties/vector/uvec2property.cpp @@ -41,7 +41,7 @@ UVec2Property::UVec2Property(Property::PropertyInfo info, glm::uvec2 value, ) {} -std::string UVec2Property::className() const { +std::string_view UVec2Property::className() const { return "UVec2Property"; } diff --git a/src/properties/vector/uvec3property.cpp b/src/properties/vector/uvec3property.cpp index 07820176bb..194ec25279 100644 --- a/src/properties/vector/uvec3property.cpp +++ b/src/properties/vector/uvec3property.cpp @@ -41,7 +41,7 @@ UVec3Property::UVec3Property(Property::PropertyInfo info, glm::uvec3 value, ) {} -std::string UVec3Property::className() const { +std::string_view UVec3Property::className() const { return "UVec3Property"; } diff --git a/src/properties/vector/uvec4property.cpp b/src/properties/vector/uvec4property.cpp index bd802f0ad0..e07940fc24 100644 --- a/src/properties/vector/uvec4property.cpp +++ b/src/properties/vector/uvec4property.cpp @@ -41,7 +41,7 @@ UVec4Property::UVec4Property(Property::PropertyInfo info, glm::uvec4 value, ) {} -std::string UVec4Property::className() const { +std::string_view UVec4Property::className() const { return "UVec4Property"; } diff --git a/src/properties/vector/vec2property.cpp b/src/properties/vector/vec2property.cpp index b910b138ed..0c69336a1f 100644 --- a/src/properties/vector/vec2property.cpp +++ b/src/properties/vector/vec2property.cpp @@ -40,7 +40,7 @@ Vec2Property::Vec2Property(Property::PropertyInfo info, glm::vec2 value, ) {} -std::string Vec2Property::className() const { +std::string_view Vec2Property::className() const { return "Vec2Property"; } diff --git a/src/properties/vector/vec3property.cpp b/src/properties/vector/vec3property.cpp index 488dd97607..8ee408d3c0 100644 --- a/src/properties/vector/vec3property.cpp +++ b/src/properties/vector/vec3property.cpp @@ -40,7 +40,7 @@ Vec3Property::Vec3Property(Property::PropertyInfo info, glm::vec3 value, ) {} -std::string Vec3Property::className() const { +std::string_view Vec3Property::className() const { return "Vec3Property"; } diff --git a/src/properties/vector/vec4property.cpp b/src/properties/vector/vec4property.cpp index 8681a1e094..fce95037e3 100644 --- a/src/properties/vector/vec4property.cpp +++ b/src/properties/vector/vec4property.cpp @@ -40,7 +40,7 @@ Vec4Property::Vec4Property(Property::PropertyInfo info, glm::vec4 value, ) {} -std::string Vec4Property::className() const { +std::string_view Vec4Property::className() const { return "Vec4Property"; } diff --git a/src/rendering/luaconsole.cpp b/src/rendering/luaconsole.cpp index e4bcd43207..b31c0ea85c 100644 --- a/src/rendering/luaconsole.cpp +++ b/src/rendering/luaconsole.cpp @@ -166,7 +166,7 @@ LuaConsole::LuaConsole() addProperty(_historyTextColor); } -LuaConsole::~LuaConsole() {} // NOLINT +LuaConsole::~LuaConsole() {} void LuaConsole::initialize() { ZoneScoped diff --git a/src/rendering/renderengine.cpp b/src/rendering/renderengine.cpp index 19ab3b5ae9..ea8351917d 100644 --- a/src/rendering/renderengine.cpp +++ b/src/rendering/renderengine.cpp @@ -411,7 +411,7 @@ RenderEngine::RenderEngine() addProperty(_disabledFontColor); } -RenderEngine::~RenderEngine() {} // NOLINT +RenderEngine::~RenderEngine() {} void RenderEngine::initialize() { ZoneScoped @@ -632,9 +632,7 @@ void RenderEngine::render(const glm::mat4& sceneMatrix, const glm::mat4& viewMat glm::mat4 combinedGlobalRot = nodeRot * globalRot; if (_camera) { - _camera->sgctInternal.setViewMatrix( - viewMatrix * combinedGlobalRot * sceneMatrix - ); + _camera->sgctInternal.setViewMatrix(viewMatrix * combinedGlobalRot * sceneMatrix); _camera->sgctInternal.setSceneMatrix(combinedGlobalRot * sceneMatrix); _camera->sgctInternal.setProjectionMatrix(projectionMatrix); _camera->invalidateCache(); @@ -642,8 +640,7 @@ void RenderEngine::render(const glm::mat4& sceneMatrix, const glm::mat4& viewMat const int fpsLimit = _framerateLimit; if (fpsLimit > 0) { - // Using a sleep here is not optimal, but we are not looking for FPS-perfect - // limiting + // Using a sleep here is not optimal, but we are not looking for perfect timing std::this_thread::sleep_until(_lastFrameTime); const double delta = (1.0 / fpsLimit) * 1000.0 * 1000.0; auto now = std::chrono::high_resolution_clock::now(); @@ -652,11 +649,7 @@ void RenderEngine::render(const glm::mat4& sceneMatrix, const glm::mat4& viewMat const bool renderingEnabled = delegate.isMaster() ? !_disableMasterRendering : true; if (renderingEnabled && !delegate.isGuiWindow() && _globalBlackOutFactor > 0.f) { - _renderer.render( - _scene, - _camera, - _globalBlackOutFactor - ); + _renderer.render(_scene, _camera, _globalBlackOutFactor); } // The CEF webbrowser fix has to be called at least once per frame and we are doing @@ -896,7 +889,7 @@ ghoul::opengl::OpenGLStateCache& RenderEngine::openglStateCache() { return *_openglStateCache; } -float RenderEngine::globalBlackOutFactor() { +float RenderEngine::globalBlackOutFactor() const { return _globalBlackOutFactor; } @@ -982,12 +975,7 @@ void RenderEngine::removeRenderProgram(ghoul::opengl::ProgramObject* program) { return; } - auto it = std::find( - _programs.begin(), - _programs.end(), - program - ); - + auto it = std::find(_programs.begin(), _programs.end(), program); if (it != _programs.end()) { _programs.erase(it); } @@ -1056,19 +1044,18 @@ scripting::LuaLibrary RenderEngine::luaLibrary() { } void RenderEngine::addScreenSpaceRenderable(std::unique_ptr s) { - const std::string identifier = s->identifier(); - if (std::find_if( + auto it = std::find_if( global::screenSpaceRenderables->begin(), global::screenSpaceRenderables->end(), [&identifier](const std::unique_ptr& ssr) { return ssr->identifier() == identifier; - }) != global::screenSpaceRenderables->end() - ) { + } + ); + if (it != global::screenSpaceRenderables->end()) { LERROR(fmt::format( - "Cannot add scene space renderable. " - "An element with identifier '{}' already exists", + "Cannot add scene space renderable. Identifier '{}' already exists", identifier )); return; @@ -1142,7 +1129,7 @@ void RenderEngine::renderCameraInformation() { return; } - const glm::vec4 EnabledColor = _enabledFontColor.value(); + const glm::vec4 EnabledColor = _enabledFontColor.value(); const glm::vec4 DisabledColor = _disabledFontColor.value(); const glm::vec2 rotationBox = _fontCameraInfo->boundingBox("Rotation"); @@ -1216,10 +1203,7 @@ void RenderEngine::renderVersionInformation() { FR::defaultRenderer().render( *_fontVersionInfo, - glm::vec2( - fontResolution().x - versionBox.x - 10.f, - 5.f - ), + glm::vec2(fontResolution().x - versionBox.x - 10.f, 5.f), _versionString, glm::vec4(0.5f, 0.5f, 0.5f, 1.f) ); diff --git a/src/rendering/screenspacerenderable.cpp b/src/rendering/screenspacerenderable.cpp index 3969ea00cc..2b0650e919 100644 --- a/src/rendering/screenspacerenderable.cpp +++ b/src/rendering/screenspacerenderable.cpp @@ -387,7 +387,7 @@ ScreenSpaceRenderable::ScreenSpaceRenderable(const ghoul::Dictionary& dictionary addProperty(_delete); } -ScreenSpaceRenderable::~ScreenSpaceRenderable() {} // NOLINT +ScreenSpaceRenderable::~ScreenSpaceRenderable() {} bool ScreenSpaceRenderable::initialize() { return true; diff --git a/src/rendering/transferfunction.cpp b/src/rendering/transferfunction.cpp index 891c58c0a1..5f9f628448 100644 --- a/src/rendering/transferfunction.cpp +++ b/src/rendering/transferfunction.cpp @@ -50,7 +50,7 @@ TransferFunction::TransferFunction(const std::string& filepath, setCallback(std::move(tfChangedCallback)); } -TransferFunction::~TransferFunction() {} // NOLINT +TransferFunction::~TransferFunction() {} void TransferFunction::setPath(const std::string& filepath) { if (_file) { diff --git a/src/scene/lightsource.cpp b/src/scene/lightsource.cpp index 15fd41a0af..2920cfd62c 100644 --- a/src/scene/lightsource.cpp +++ b/src/scene/lightsource.cpp @@ -87,13 +87,10 @@ LightSource::LightSource() } LightSource::LightSource(const ghoul::Dictionary& dictionary) - : properties::PropertyOwner({ "LightSource" }) - , _enabled(EnabledInfo, true) + : LightSource() { const Parameters p = codegen::bake(dictionary); - _enabled = p.enabled.value_or(_enabled); - addProperty(_enabled); } bool LightSource::initialize() { diff --git a/src/scene/profile.cpp b/src/scene/profile.cpp index 5b6c5bcf5d..c09c9ecfb6 100644 --- a/src/scene/profile.cpp +++ b/src/scene/profile.cpp @@ -589,7 +589,7 @@ void Profile::saveCurrentSettingsToProfile(const properties::PropertyOwner& root Property p; p.setType = Property::SetType::SetPropertyValueSingle; p.name = prop->fullyQualifiedIdentifier(); - p.value = prop->getStringValue(); + p.value = prop->stringValue(); properties.push_back(std::move(p)); } diff --git a/src/scene/scene.cpp b/src/scene/scene.cpp index 6e4390e277..3ebe8edf34 100644 --- a/src/scene/scene.cpp +++ b/src/scene/scene.cpp @@ -98,10 +98,13 @@ Scene::InvalidSceneError::InvalidSceneError(std::string msg, std::string comp) Scene::Scene(std::unique_ptr initializer) : properties::PropertyOwner({"Scene", "Scene"}) + , _camera(std::make_unique()) , _initializer(std::move(initializer)) { _rootDummy.setIdentifier(SceneGraphNode::RootNodeIdentifier); _rootDummy.setScene(this); + + _camera->setParent(&_rootDummy); } Scene::~Scene() { @@ -117,10 +120,6 @@ ghoul::mm_unique_ptr Scene::detachNode(SceneGraphNode& node) { return _rootDummy.detachChild(node); } -void Scene::setCamera(std::unique_ptr camera) { - _camera = std::move(camera); -} - Camera* Scene::camera() const { return _camera.get(); } @@ -128,7 +127,7 @@ Camera* Scene::camera() const { void Scene::registerNode(SceneGraphNode* node) { if (_nodesByIdentifier.count(node->identifier())) { throw Scene::InvalidSceneError( - "Node with identifier " + node->identifier() + " already exits" + "Node with identifier " + node->identifier() + " already exists" ); } @@ -251,75 +250,6 @@ bool Scene::isInitializing() const { return _initializer->isInitializing(); } -/* -void Scene::initialize() { - bool useMultipleThreads = true; - if (OsEng.configurationManager().hasKey( - ConfigurationManager::KeyUseMultithreadedInitialization - )) - { - useMultipleThreads = OsEng.configurationManager().value( - ConfigurationManager::KeyUseMultithreadedInitialization - ); - } - - auto initFunction = [](SceneGraphNode* node){ - try { - OsEng.loadingScreen().updateItem( - node->name(), - LoadingScreen::ItemStatus::Initializing - ); - node->initialize(); - OsEng.loadingScreen().tickItem(); - OsEng.loadingScreen().updateItem( - node->name(), - LoadingScreen::ItemStatus::Finished - ); - } - catch (const ghoul::RuntimeError& e) { - LERROR(node->name() << " not initialized"); - LERRORC(std::string(_loggerCat) + "(" + e.component + ")", e.what()); - OsEng.loadingScreen().updateItem( - node->name(), - LoadingScreen::ItemStatus::Failed - ); - } - - }; - - if (useMultipleThreads) { - unsigned int nThreads = std::thread::hardware_concurrency(); - - ghoul::ThreadPool pool(nThreads == 0 ? 2 : nThreads - 1); - - OsEng.loadingScreen().postMessage("Initializing scene"); - - for (SceneGraphNode* node : _topologicallySortedNodes) { - pool.queue(initFunction, node); - } - - pool.stop(); - } - else { - for (SceneGraphNode* node : _topologicallySortedNodes) { - initFunction(node); - } - } -} - -void Scene::initializeGL() { - for (SceneGraphNode* node : _topologicallySortedNodes) { - try { - node->initializeGL(); - } - catch (const ghoul::RuntimeError& e) { - LERROR(node->name() << " not initialized"); - LERRORC(std::string(_loggerCat) + "(" + e.component + ")", e.what()); - } - } -} -*/ - void Scene::update(const UpdateData& data) { ZoneScoped @@ -609,9 +539,7 @@ void Scene::updateInterpolations() { std::remove_if( _propertyInterpolationInfos.begin(), _propertyInterpolationInfos.end(), - [](const PropertyInterpolationInfo& i) { - return i.isExpired; - } + [](const PropertyInterpolationInfo& i) { return i.isExpired; } ), _propertyInterpolationInfos.end() ); @@ -652,7 +580,7 @@ void Scene::setPropertiesFromProfile(const Profile& p) { groupName, ghoul::EasingFunction::Linear ); - //Clear lua state stack + // Clear lua state stack lua_settop(L, 0); } } @@ -688,7 +616,7 @@ ProfilePropertyLua Scene::propertyProcessValue(ghoul::lua::LuaState& L, switch (pType) { case PropertyValueType::Boolean: - result = (value == "true") ? true : false; + result = (value == "true"); break; case PropertyValueType::Float: result = std::stof(value); diff --git a/src/scene/scenegraphnode.cpp b/src/scene/scenegraphnode.cpp index f45004afcd..4737edf136 100644 --- a/src/scene/scenegraphnode.cpp +++ b/src/scene/scenegraphnode.cpp @@ -552,7 +552,7 @@ SceneGraphNode::SceneGraphNode() addProperty(_showDebugSphere); } -SceneGraphNode::~SceneGraphNode() {} // NOLINT +SceneGraphNode::~SceneGraphNode() {} void SceneGraphNode::initialize() { ZoneScoped @@ -694,10 +694,7 @@ void SceneGraphNode::update(const UpdateData& data) { newUpdateData.modelTransform.translation ); glm::dmat4 rotation = glm::dmat4(newUpdateData.modelTransform.rotation); - glm::dmat4 scaling = glm::scale( - glm::dmat4(1.0), - newUpdateData.modelTransform.scale - ); + glm::dmat4 scaling = glm::scale(glm::dmat4(1.0), newUpdateData.modelTransform.scale); _modelTransformCached = translation * rotation * scaling; @@ -883,11 +880,7 @@ void SceneGraphNode::removeDependency(SceneGraphNode& dependency) { dependency._dependentNodes.end() ); _dependencies.erase( - std::remove( - _dependencies.begin(), - _dependencies.end(), - &dependency - ), + std::remove(_dependencies.begin(), _dependencies.end(), &dependency), _dependencies.end() ); diff --git a/src/scripting/scriptengine.cpp b/src/scripting/scriptengine.cpp index 33a4f46258..917d42ac63 100644 --- a/src/scripting/scriptengine.cpp +++ b/src/scripting/scriptengine.cpp @@ -253,10 +253,7 @@ bool ScriptEngine::hasLibrary(const std::string& name) { bool ScriptEngine::runScript(const std::string& script, ScriptCallback callback) { ZoneScoped - if (script.empty()) { - LWARNING("Script was empty"); - return false; - } + ghoul_assert(!script.empty(), "Script must not be empty"); if (_logScripts) { // Write command to log before it's executed @@ -448,12 +445,10 @@ void ScriptEngine::addLibraryFunctions(lua_State* state, LuaLibrary& library, library.documentations.push_back(std::move(func)); } catch (const documentation::SpecificationError& e) { - for (const documentation::TestResult::Offense& o : e.result.offenses) - { + for (const documentation::TestResult::Offense& o : e.result.offenses) { LERRORC(o.offender, ghoul::to_string(o.reason)); } - for (const documentation::TestResult::Warning& w : e.result.warnings) - { + for (const documentation::TestResult::Warning& w : e.result.warnings) { LWARNINGC(w.offender, ghoul::to_string(w.reason)); } } @@ -463,18 +458,6 @@ void ScriptEngine::addLibraryFunctions(lua_State* state, LuaLibrary& library, } } -void ScriptEngine::remapPrintFunction() { - //ghoul::lua::logStack(_state); - // lua_getglobal(_state, _luaGlobalNamespace.c_str()); - //ghoul::lua::logStack(_state); - // lua_pushstring(_state, _printFunctionName.c_str()); - //ghoul::lua::logStack(_state); - // lua_pushcfunction(_state, _printFunctionReplacement); - //ghoul::lua::logStack(_state); - // lua_settable(_state, _setTableOffset); - //ghoul::lua::logStack(_state); -} - bool ScriptEngine::registerLuaLibrary(lua_State* state, LuaLibrary& library) { ZoneScoped @@ -548,7 +531,7 @@ std::string ScriptEngine::generateJson() const { return json.str(); } -bool ScriptEngine::writeLog(const std::string& script) { +void ScriptEngine::writeLog(const std::string& script) { ZoneScoped // Check that logging is enabled and initialize if necessary @@ -571,12 +554,12 @@ bool ScriptEngine::writeLog(const std::string& script) { std::filesystem::path(_logFilename) )); - return false; + return; } } else { _logScripts = false; - return false; + return; } } @@ -584,13 +567,10 @@ bool ScriptEngine::writeLog(const std::string& script) { std::ofstream file(_logFilename, std::ofstream::app); if (!file.good()) { LERROR(fmt::format("Could not open file '{}' for logging scripts", _logFilename)); - return false; + return; } - file << script << std::endl; - file.close(); - - return true; + file << script << '\n'; } void ScriptEngine::preSync(bool isMaster) { @@ -682,9 +662,10 @@ void ScriptEngine::queueScript(std::string script, { ZoneScoped - if (!script.empty()) { - _incomingScripts.push({ std::move(script), remoteScripting, callback }); + if (script.empty()) { + return; } + _incomingScripts.push({ std::move(script), remoteScripting, std::move(callback) }); } diff --git a/src/util/factorymanager.cpp b/src/util/factorymanager.cpp index 25ecea356f..4fa1b09841 100644 --- a/src/util/factorymanager.cpp +++ b/src/util/factorymanager.cpp @@ -24,6 +24,15 @@ #include +#include +#include +#include +#include +#include +#include +#include +#include +#include #include namespace openspace { @@ -51,6 +60,15 @@ void FactoryManager::initialize() { ghoul_assert(!_manager, "Factory Manager must not have been initialized"); _manager = new FactoryManager; + _manager->addFactory("Renderable"); + _manager->addFactory("Translation"); + _manager->addFactory("Rotation"); + _manager->addFactory("Scale"); + _manager->addFactory("TimeFrame"); + _manager->addFactory("LightSource"); + _manager->addFactory("Task"); + _manager->addFactory("ResourceSynchronization"); + _manager->addFactory("DashboardItem"); } void FactoryManager::deinitialize() { diff --git a/src/util/httprequest.cpp b/src/util/httprequest.cpp index a32599f80c..72f2b0d462 100644 --- a/src/util/httprequest.cpp +++ b/src/util/httprequest.cpp @@ -58,7 +58,7 @@ bool HttpRequest::perform(std::chrono::milliseconds timeout) { } curl_easy_setopt(curl, CURLOPT_URL, _url.data()); - curl_easy_setopt(curl, CURLOPT_USERAGENT, "OpenSpace"); // NOLINT + curl_easy_setopt(curl, CURLOPT_USERAGENT, "OpenSpace"); curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1L); // The leading + in all of the lambda expressions are to cause an implicit conversion diff --git a/src/util/json_helper.cpp b/src/util/json_helper.cpp index eebcaecd16..d7c75609a6 100644 --- a/src/util/json_helper.cpp +++ b/src/util/json_helper.cpp @@ -22,6 +22,8 @@ * OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * ****************************************************************************************/ +#include + namespace openspace { std::string escapedJson(const std::string& text) { @@ -29,21 +31,27 @@ std::string escapedJson(const std::string& text) { jsonString.reserve(text.size()); for (const char& c : text) { switch (c) { + case '\b': + jsonString += "\\b"; + break; case '\t': jsonString += "\\t"; // Replace tab with \t. break; + case '\n': + jsonString += "\\\\n"; // Replace newline with \n. + break; + case '\f': + jsonString += "\\f"; + break; + case '\r': + jsonString += "\\r"; // Replace carriage return with \r. + break; case '"': jsonString += "\\\""; // Replace " with \". break; case '\\': jsonString += "\\\\"; // Replace \ with \\. break; - case '\n': - jsonString += "\\\\n"; // Replace newline with \n. - break; - case '\r': - jsonString += "\\r"; // Replace carriage return with \r. - break; default: jsonString += c; } diff --git a/src/util/planegeometry.cpp b/src/util/planegeometry.cpp index 10edcb77ae..448e6b5595 100644 --- a/src/util/planegeometry.cpp +++ b/src/util/planegeometry.cpp @@ -98,7 +98,7 @@ void PlaneGeometry::updateGeometry() { GL_FLOAT, GL_FALSE, sizeof(VertexData), - reinterpret_cast(offsetof(VertexData, s)) // NOLINT + reinterpret_cast(offsetof(VertexData, s)) ); } diff --git a/src/util/sphere.cpp b/src/util/sphere.cpp index c1c1fc01ce..8c26253c5b 100644 --- a/src/util/sphere.cpp +++ b/src/util/sphere.cpp @@ -177,7 +177,7 @@ bool Sphere::initialize() { GL_FLOAT, GL_FALSE, sizeof(Vertex), - reinterpret_cast(offsetof(Vertex, tex)) // NOLINT + reinterpret_cast(offsetof(Vertex, tex)) ); glEnableVertexAttribArray(2); @@ -187,7 +187,7 @@ bool Sphere::initialize() { GL_FLOAT, GL_FALSE, sizeof(Vertex), - reinterpret_cast(offsetof(Vertex, normal)) // NOLINT + reinterpret_cast(offsetof(Vertex, normal)) ); glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, _iBufferID); diff --git a/src/util/spicemanager.cpp b/src/util/spicemanager.cpp index f28f6933c2..6fb8d302d5 100644 --- a/src/util/spicemanager.cpp +++ b/src/util/spicemanager.cpp @@ -151,9 +151,9 @@ SpiceManager::TerminatorType SpiceManager::terminatorTypeFromString( SpiceManager::SpiceManager() { // Set the SPICE library to not exit the program if an error occurs - erract_c("SET", 0, const_cast("REPORT")); // NOLINT + erract_c("SET", 0, const_cast("REPORT")); // But we do not want SPICE to print the errors, we will fetch them ourselves - errprt_c("SET", 0, const_cast("NONE")); // NOLINT + errprt_c("SET", 0, const_cast("NONE")); } SpiceManager::~SpiceManager() { @@ -162,8 +162,8 @@ SpiceManager::~SpiceManager() { } // Set values back to default - erract_c("SET", 0, const_cast("DEFAULT")); // NOLINT - errprt_c("SET", 0, const_cast("DEFAULT")); // NOLINT + erract_c("SET", 0, const_cast("DEFAULT")); + errprt_c("SET", 0, const_cast("DEFAULT")); } void SpiceManager::initialize() { @@ -1043,7 +1043,7 @@ void SpiceManager::findCkCoverage(const std::string& path) { } for (SpiceInt i = 0; i < card_c(&ids); ++i) { - const SpiceInt frame = SPICE_CELL_ELEM_I(&ids, i); // NOLINT + const SpiceInt frame = SPICE_CELL_ELEM_I(&ids, i); #if defined __clang__ #pragma clang diagnostic pop @@ -1102,7 +1102,7 @@ void SpiceManager::findSpkCoverage(const std::string& path) { } for (SpiceInt i = 0; i < card_c(&ids); ++i) { - const SpiceInt obj = SPICE_CELL_ELEM_I(&ids, i); // NOLINT + const SpiceInt obj = SPICE_CELL_ELEM_I(&ids, i); #if defined __clang__ #pragma clang diagnostic pop diff --git a/src/util/syncbuffer.cpp b/src/util/syncbuffer.cpp index 122cf59003..011dc56bbb 100644 --- a/src/util/syncbuffer.cpp +++ b/src/util/syncbuffer.cpp @@ -34,7 +34,7 @@ SyncBuffer::SyncBuffer(size_t n) _dataStream.resize(_n); } -SyncBuffer::~SyncBuffer() {} // NOLINT +SyncBuffer::~SyncBuffer() {} void SyncBuffer::encode(const std::string& s) { ZoneScoped diff --git a/src/util/timemanager.cpp b/src/util/timemanager.cpp index 45d6ff2846..1b748b57b9 100644 --- a/src/util/timemanager.cpp +++ b/src/util/timemanager.cpp @@ -576,7 +576,7 @@ const Timeline& TimeManager::timeline() const { return _timeline; } -std::vector TimeManager::getSyncables() { +std::vector TimeManager::syncables() { return { &_currentTime, &_integrateFromTime }; } diff --git a/src/util/transformationmanager.cpp b/src/util/transformationmanager.cpp index 01d66005db..f0f47b5477 100644 --- a/src/util/transformationmanager.cpp +++ b/src/util/transformationmanager.cpp @@ -60,7 +60,7 @@ TransformationManager::TransformationManager() { }; } -TransformationManager::~TransformationManager() { // NOLINT +TransformationManager::~TransformationManager() { #ifdef OPENSPACE_MODULE_KAMELEON_ENABLED _kameleon = nullptr; #endif diff --git a/tests/property/test_property_listproperties.cpp b/tests/property/test_property_listproperties.cpp index ca5b1d5d7d..e1f9241fb8 100644 --- a/tests/property/test_property_listproperties.cpp +++ b/tests/property/test_property_listproperties.cpp @@ -60,8 +60,7 @@ TEST_CASE("StringListProperty: Get String Value", "[stringlistproperty]") { const std::vector list{ "a", "b", "c" }; p.setValue(list); - std::string res; - p.getStringValue(res); + std::string res = p.stringValue(); CHECK(res == "[\"a\",\"b\",\"c\"]"); } @@ -160,8 +159,7 @@ TEST_CASE("IntListProperty: Get String Value", "[intlistproperty]") { const std::vector list{ 1, 2, 3 }; p.setValue(list); - std::string res; - p.getStringValue(res); + std::string res = p.stringValue(); CHECK(res == "[1,2,3]"); } @@ -271,8 +269,7 @@ TEST_CASE("DoubleListProperty: Get String Value", "[doublelistproperty]") { const std::vector list{ 1.0, 2.0, 3.0 }; p.setValue(list); - std::string res; - p.getStringValue(res); + std::string res = p.stringValue(); CHECK(res == "[1.0,2.0,3.0]"); } diff --git a/tests/property/test_property_selectionproperty.cpp b/tests/property/test_property_selectionproperty.cpp index 4c41cba55c..f6c634a233 100644 --- a/tests/property/test_property_selectionproperty.cpp +++ b/tests/property/test_property_selectionproperty.cpp @@ -121,14 +121,12 @@ TEST_CASE("SelectionProperty: Get String Value", "[selectionproperty]") { const std::set list{ "a", "b" }; p.setValue(list); - std::string res; - p.getStringValue(res); - + std::string res = p.stringValue(); CHECK(res == "[\"a\",\"b\"]"); p.setValue({}); - p.getStringValue(res); - CHECK(res == "[]"); + std::string res2 = p.stringValue(); + CHECK(res2 == "[]"); } TEST_CASE("SelectionProperty: Set Lua Value", "[selectionproperty]") { From f7aa3f72b8cd3e353c6352c6b452b9363e3727a6 Mon Sep 17 00:00:00 2001 From: Emma Broman Date: Sun, 30 Oct 2022 13:47:53 +0100 Subject: [PATCH 39/81] Update GUI hash (session recording info tooltip) --- data/assets/util/webgui.asset | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/assets/util/webgui.asset b/data/assets/util/webgui.asset index e2640585b3..4cc907857b 100644 --- a/data/assets/util/webgui.asset +++ b/data/assets/util/webgui.asset @@ -3,7 +3,7 @@ asset.require("./static_server") local guiCustomization = asset.require("customization/gui") -- Select which commit hashes to use for the frontend and backend -local frontendHash = "fedebf63786c4aaa25123e782d1468ac5a695ac1" +local frontendHash = "8954b75f4b60a926d5fd7da93159cda409f54129" local dataProvider = "data.openspaceproject.com/files/webgui" local frontend = asset.syncedResource({ From 3f6778ca1feef46c5935b933540bdfb76c710b29 Mon Sep 17 00:00:00 2001 From: Emma Broman Date: Sun, 30 Oct 2022 13:54:39 +0100 Subject: [PATCH 40/81] Avoid autoselecting first row in choose in choose scripts dialog (closes #2282) --- apps/OpenSpace/ext/launcher/src/profile/scriptlogdialog.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/apps/OpenSpace/ext/launcher/src/profile/scriptlogdialog.cpp b/apps/OpenSpace/ext/launcher/src/profile/scriptlogdialog.cpp index 7908b704af..b1b5c4db3c 100644 --- a/apps/OpenSpace/ext/launcher/src/profile/scriptlogdialog.cpp +++ b/apps/OpenSpace/ext/launcher/src/profile/scriptlogdialog.cpp @@ -133,7 +133,6 @@ void ScriptlogDialog::updateScriptList() { _scriptlogList->addItem(QString::fromStdString(script)); } } - _scriptlogList->setCurrentRow(index != -1 ? index : 0); } void ScriptlogDialog::saveChosenScripts() { From 81634ed9960180268537e67cda8926951ef85372 Mon Sep 17 00:00:00 2001 From: Emma Broman Date: Tue, 1 Nov 2022 11:32:27 +0100 Subject: [PATCH 41/81] Provide GDAL error message when failing to load dataset for layer --- modules/globebrowsing/src/rawtiledatareader.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/modules/globebrowsing/src/rawtiledatareader.cpp b/modules/globebrowsing/src/rawtiledatareader.cpp index 2c7e1f8114..f40934ded8 100644 --- a/modules/globebrowsing/src/rawtiledatareader.cpp +++ b/modules/globebrowsing/src/rawtiledatareader.cpp @@ -523,7 +523,10 @@ void RawTileDataReader::initialize() { ZoneScopedN("GDALOpen") _dataset = static_cast(GDALOpen(content.c_str(), GA_ReadOnly)); if (!_dataset) { - throw ghoul::RuntimeError("Failed to load dataset: " + _datasetFilePath); + throw ghoul::RuntimeError(fmt::format( + "Failed to load dataset: {}. GDAL Error: {}", + _datasetFilePath, CPLGetLastErrorMsg() + )); } } From 9619711d6fe1ab86740ed8b1d94c3118d871aa0d Mon Sep 17 00:00:00 2001 From: Malin E Date: Tue, 1 Nov 2022 16:26:05 +0100 Subject: [PATCH 42/81] Remove luastatemachine example asset, closes #2193 --- data/assets/examples/luastatemachine.asset | 47 ---------------------- 1 file changed, 47 deletions(-) delete mode 100644 data/assets/examples/luastatemachine.asset diff --git a/data/assets/examples/luastatemachine.asset b/data/assets/examples/luastatemachine.asset deleted file mode 100644 index 022a16557e..0000000000 --- a/data/assets/examples/luastatemachine.asset +++ /dev/null @@ -1,47 +0,0 @@ -local stateMachineHelper = asset.require("util/lua_state_machine_helper") - -local states = { - { - Title = "Highlight EarthTrail", - Play = function () - openspace.setPropertyValue("Scene.EarthTrail.Renderable.Appearance.LineWidth", 10, 1) - end, - Rewind = function () - openspace.setPropertyValue("Scene.EarthTrail.Renderable.Appearance.LineWidth", 2, 1) - end - }, - { - Title = "Highlight MarsTrail", - Play = function () - openspace.setPropertyValue("Scene.EarthTrail.Renderable.Appearance.LineWidth", 2, 1) - openspace.setPropertyValue("Scene.MarsTrail.Renderable.Appearance.LineWidth", 10, 1) - end, - Rewind = function () - openspace.setPropertyValue("Scene.MarsTrail.Renderable.Appearance.LineWidth", 2, 1) - openspace.setPropertyValue("Scene.EarthTrail.Renderable.Appearance.LineWidth", 10, 1) - end - } -} - -local stateMachine - -function next() - stateMachine.goToNextState() -end - -function previous() - stateMachine.goToPreviousState() -end - -asset.onInitialize(function() - stateMachine = stateMachineHelper.createStateMachine(states) - openspace.bindKey("RIGHT", "next()") - openspace.bindKey("LEFT", "previous()") -end) - - -asset.onDeinitialize(function() - stateMachine = nil - openspace.clearKey("RIGHT") - openspace.clearKey("LEFT") -end) From ed83169c298d375b946a2d33a075266e2b147253 Mon Sep 17 00:00:00 2001 From: Emma Broman Date: Tue, 1 Nov 2022 18:02:42 +0100 Subject: [PATCH 43/81] Update GUI to fix broken color picker (#2293) --- data/assets/util/webgui.asset | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/assets/util/webgui.asset b/data/assets/util/webgui.asset index 4cc907857b..90dbf44ba6 100644 --- a/data/assets/util/webgui.asset +++ b/data/assets/util/webgui.asset @@ -3,7 +3,7 @@ asset.require("./static_server") local guiCustomization = asset.require("customization/gui") -- Select which commit hashes to use for the frontend and backend -local frontendHash = "8954b75f4b60a926d5fd7da93159cda409f54129" +local frontendHash = "082a855e6d29359f492ebbc82b625eee56e42e52" local dataProvider = "data.openspaceproject.com/files/webgui" local frontend = asset.syncedResource({ From fb539b953e51ed0dfcca7b872f5a26e5f7b3416d Mon Sep 17 00:00:00 2001 From: Ylva Selling Date: Tue, 1 Nov 2022 14:36:19 -0400 Subject: [PATCH 44/81] Create another mode for target dragging to work in dome --- .../skybrowser/include/renderableskytarget.h | 4 ++ .../skybrowser/include/targetbrowserpair.h | 1 + modules/skybrowser/skybrowsermodule.cpp | 1 + .../skybrowser/src/renderableskytarget.cpp | 48 +++++++++++++++---- modules/skybrowser/src/targetbrowserpair.cpp | 17 ++++--- 5 files changed, 54 insertions(+), 17 deletions(-) diff --git a/modules/skybrowser/include/renderableskytarget.h b/modules/skybrowser/include/renderableskytarget.h index 8279f17606..1e4961144e 100644 --- a/modules/skybrowser/include/renderableskytarget.h +++ b/modules/skybrowser/include/renderableskytarget.h @@ -57,6 +57,7 @@ public: static documentation::Documentation Documentation(); + void applyRoll(); glm::dvec3 rightVector(); glm::dvec3 upVector(); private: @@ -65,12 +66,15 @@ private: properties::FloatProperty _showRectangleThreshold; properties::FloatProperty _lineWidth; properties::DoubleProperty _verticalFov; + properties::BoolProperty _applyRoll; + bool _isInitialized = false; double _borderRadius = 0.0; glm::ivec3 _borderColor = glm::ivec3(230); float _ratio = 1.f; glm::dvec3 _rightVector; glm::dvec3 _upVector; + glm::dvec3 _worldPosition; }; } // namespace openspace diff --git a/modules/skybrowser/include/targetbrowserpair.h b/modules/skybrowser/include/targetbrowserpair.h index f07a2da2f0..cecc046544 100644 --- a/modules/skybrowser/include/targetbrowserpair.h +++ b/modules/skybrowser/include/targetbrowserpair.h @@ -75,6 +75,7 @@ public: void setBrowserRatio(float ratio); void setVerticalFovWithScroll(float scroll); void setImageCollectionIsLoaded(bool isLoaded); + void applyRoll(); double verticalFov() const; glm::ivec3 borderColor() const; diff --git a/modules/skybrowser/skybrowsermodule.cpp b/modules/skybrowser/skybrowsermodule.cpp index 1cd2df8a47..7307a1d41e 100644 --- a/modules/skybrowser/skybrowsermodule.cpp +++ b/modules/skybrowser/skybrowsermodule.cpp @@ -111,6 +111,7 @@ namespace { "The url of the image collection which is loaded into AAS WorldWide Telescope" }; + struct [[codegen::Dictionary(SkyBrowserModule)]] Parameters { // [[codegen::verbatim(EnabledInfo.description)]] std::optional enabled; diff --git a/modules/skybrowser/src/renderableskytarget.cpp b/modules/skybrowser/src/renderableskytarget.cpp index 1bb88121b5..d9df0120d2 100644 --- a/modules/skybrowser/src/renderableskytarget.cpp +++ b/modules/skybrowser/src/renderableskytarget.cpp @@ -74,6 +74,13 @@ namespace { "The vertical field of view of the target." }; + constexpr openspace::properties::Property::PropertyInfo ApplyRollInfo = { + "ApplyRoll", + "Apply Roll", + "Always rotate the target to have it's up direction aligned with the up direction " + "of the camera" + }; + struct [[codegen::Dictionary(RenderableSkyTarget)]] Parameters { // [[codegen::verbatim(crossHairSizeInfo.description)]] std::optional crossHairSize; @@ -86,6 +93,9 @@ namespace { // [[codegen::verbatim(VerticalFovInfo.description)]] std::optional verticalFov; + + // [[codegen::verbatim(ApplyRollInfo.description)]] + std::optional applyRoll; }; #include "renderableskytarget_codegen.cpp" @@ -104,6 +114,7 @@ RenderableSkyTarget::RenderableSkyTarget(const ghoul::Dictionary& dictionary) , _lineWidth(LineWidthInfo, 13.f, 1.f, 100.f) , _verticalFov(VerticalFovInfo, 10.0, 0.00000000001, 70.0) , _borderColor(220, 220, 220) + , _applyRoll(ApplyRollInfo, true) { // Handle target dimension property const Parameters p = codegen::bake(dictionary); @@ -120,6 +131,8 @@ RenderableSkyTarget::RenderableSkyTarget(const ghoul::Dictionary& dictionary) _verticalFov= p.verticalFov.value_or(_verticalFov); _verticalFov.setReadOnly(true); addProperty(_verticalFov); + + addProperty(_applyRoll); } void RenderableSkyTarget::bindTexture() {} @@ -161,6 +174,16 @@ glm::dvec3 RenderableSkyTarget::upVector() { return scaling * _upVector; } +void RenderableSkyTarget::applyRoll() { + Camera* camera = global::navigationHandler->camera(); + glm::dvec3 normal = glm::normalize(camera->positionVec3() - _worldPosition); + + _rightVector = glm::normalize( + glm::cross(camera->lookUpVectorWorldSpace(), normal) + ); + _upVector = glm::cross(normal, _rightVector); +} + void RenderableSkyTarget::render(const RenderData& data, RendererTasks&) { ZoneScoped const bool showRectangle = _verticalFov > _showRectangleThreshold; @@ -169,7 +192,6 @@ void RenderableSkyTarget::render(const RenderData& data, RendererTasks&) { _shader->activate(); _shader->setUniform("opacity", opacity()); - _shader->setUniform("crossHairSize", _crossHairSize); _shader->setUniform("showRectangle", showRectangle); _shader->setUniform("lineWidth", _lineWidth * 0.0001f); @@ -178,18 +200,28 @@ void RenderableSkyTarget::render(const RenderData& data, RendererTasks&) { _shader->setUniform("fov", static_cast(_verticalFov)); _shader->setUniform("borderRadius", static_cast(_borderRadius)); - glm::dvec3 objectPositionWorld = glm::dvec3( + _worldPosition = glm::dvec3( glm::translate( glm::dmat4(1.0), data.modelTransform.translation) * glm::dvec4(0.0, 0.0, 0.0, 1.0) ); - glm::dvec3 normal = glm::normalize(data.camera.positionVec3() - objectPositionWorld); - _rightVector = glm::normalize( - glm::cross(data.camera.lookUpVectorWorldSpace(), normal) - ); - _upVector = glm::cross(normal, _rightVector); - + glm::dvec3 normal = glm::normalize(data.camera.positionVec3() - _worldPosition); + // There are two modes - 1) target rolls to have its up vector parallel to the + // cameras up vector or 2) it is decoupled from the camera, in which case it needs to + // be initialized once + if (!_isInitialized || _applyRoll) { + applyRoll(); + _isInitialized = true; + } + else { + // Use last frames vector for right and don't apply any roll + _upVector = glm::cross(normal, _rightVector); + _rightVector = glm::normalize( + glm::cross(_upVector, normal) + ); + } + glm::dmat4 cameraOrientedRotation = glm::dmat4(1.0); cameraOrientedRotation[0] = glm::dvec4(_rightVector, 0.0); cameraOrientedRotation[1] = glm::dvec4(_upVector, 0.0); diff --git a/modules/skybrowser/src/targetbrowserpair.cpp b/modules/skybrowser/src/targetbrowserpair.cpp index fc9ca529e1..b78ab15d12 100644 --- a/modules/skybrowser/src/targetbrowserpair.cpp +++ b/modules/skybrowser/src/targetbrowserpair.cpp @@ -86,10 +86,10 @@ void TargetBrowserPair::fineTuneTarget(const glm::vec2& translation) { glm::dvec3 right = _targetRenderable->rightVector() * percentage.x; glm::dvec3 up = _targetRenderable->upVector() * percentage.y; - glm::dvec3 newCartesian = _startTargetPosition - (right - up); + glm::dvec3 newPosition = _startTargetPosition - (right - up); aimTargetGalactic( _targetNode->identifier(), - newCartesian + newPosition ); } @@ -271,6 +271,10 @@ void TargetBrowserPair::setImageCollectionIsLoaded(bool isLoaded) { _browser->setImageCollectionIsLoaded(isLoaded); } +void TargetBrowserPair::applyRoll() { + _targetRenderable->applyRoll(); +} + void TargetBrowserPair::incrementallyAnimateToCoordinate() { // Animate the target before the field of view starts to animate if (_targetAnimation.isAnimating()) { @@ -339,13 +343,8 @@ double TargetBrowserPair::targetRoll() const { _targetNode->worldPosition() - global::navigationHandler->camera()->positionVec3() ); - glm::dvec3 right = glm::normalize( - glm::cross( - global::navigationHandler->camera()->lookUpVectorWorldSpace(), - normal - ) - ); - glm::dvec3 up = glm::normalize(glm::cross(normal, right)); + glm::dvec3 right = _targetRenderable->rightVector(); + glm::dvec3 up = glm::normalize(glm::cross(right, normal)); return skybrowser::targetRoll(up, normal); } From 715022a2785903395fd591e3de57e985b73f6974 Mon Sep 17 00:00:00 2001 From: Malin E Date: Fri, 4 Nov 2022 13:57:43 +0100 Subject: [PATCH 45/81] Add property to dissable zoom and roll interaction for touch --- modules/touch/include/touchinteraction.h | 2 ++ modules/touch/src/touchinteraction.cpp | 46 +++++++++++++++++++++--- 2 files changed, 44 insertions(+), 4 deletions(-) diff --git a/modules/touch/include/touchinteraction.h b/modules/touch/include/touchinteraction.h index da4820ecc1..fafdb64a77 100644 --- a/modules/touch/include/touchinteraction.h +++ b/modules/touch/include/touchinteraction.h @@ -154,6 +154,8 @@ private: properties::StringProperty _origin; properties::BoolProperty _unitTest; properties::BoolProperty _touchActive; + properties::BoolProperty _disableZoom; + properties::BoolProperty _disableRoll; properties::BoolProperty _reset; properties::IntProperty _maxTapTime; properties::IntProperty _deceleratesPerSecond; diff --git a/modules/touch/src/touchinteraction.cpp b/modules/touch/src/touchinteraction.cpp index 3df84cc20d..e5d0f3ba2c 100644 --- a/modules/touch/src/touchinteraction.cpp +++ b/modules/touch/src/touchinteraction.cpp @@ -79,6 +79,18 @@ namespace { "" // @TODO Missing documentation }; + constexpr openspace::properties::Property::PropertyInfo DisableZoomInfo = { + "DisableZoom", + "Disable zoom navigation", + "" // @TODO Missing documentation + }; + + constexpr openspace::properties::Property::PropertyInfo DisableRollInfo = { + "DisableRoll", + "Disable roll navigation", + "" // @TODO Missing documentation + }; + constexpr openspace::properties::Property::PropertyInfo EventsInfo = { "TouchEvents", "True if we have a touch event", @@ -253,6 +265,8 @@ TouchInteraction::TouchInteraction() , _origin(OriginInfo) , _unitTest(UnitTestInfo, false) , _touchActive(EventsInfo, false) + , _disableZoom(DisableZoomInfo, false) + , _disableRoll(DisableRollInfo, false) , _reset(SetDefaultInfo, false) , _maxTapTime(MaxTapTimeInfo, 300, 10, 1000) , _deceleratesPerSecond(DecelatesPerSecondInfo, 240, 60, 300) @@ -305,6 +319,8 @@ TouchInteraction::TouchInteraction() // projDiffLength/diffLength. { addProperty(_touchActive); + addProperty(_disableZoom); + addProperty(_disableRoll); addProperty(_unitTest); addProperty(_reset); addProperty(_maxTapTime); @@ -441,11 +457,15 @@ void TouchInteraction::directControl(const std::vector& list) int nDof = _solver.nDof(); if (_lmSuccess && !_unitTest) { - // if good values were found set new camera state + // if good values were found set new camera state _vel.orbit = glm::dvec2(par.at(0), par.at(1)); if (nDof > 2) { - _vel.zoom = par.at(2); - _vel.roll = par.at(3); + if (!_disableZoom) { + _vel.zoom = par.at(2); + } + if (!_disableRoll) { + _vel.roll = par.at(3); + } if (_panEnabled && nDof > 4) { _vel.roll = 0.0; _vel.pan = glm::dvec2(par.at(4), par.at(5)); @@ -793,6 +813,10 @@ void TouchInteraction::computeVelocities(const std::vector& li break; } case PINCH: { + if (_disableZoom) { + break; + } + // add zooming velocity - dependant on distance difference between contact // points this/first frame using namespace glm; @@ -820,6 +844,10 @@ void TouchInteraction::computeVelocities(const std::vector& li break; } case ROLL: { + if (_disableRoll) { + break; + } + // add global roll rotation velocity double rollFactor = std::accumulate( list.begin(), @@ -857,6 +885,10 @@ void TouchInteraction::computeVelocities(const std::vector& li break; } case PAN: { + if (!_panEnabled) { + break; + } + // add local rotation velocity _vel.pan += glm::dvec2(inputHolder.speedX() * _sensitivity.pan.x, inputHolder.speedY() * _sensitivity.pan.y); @@ -890,6 +922,10 @@ void TouchInteraction::computeVelocities(const std::vector& li break; } case ZOOM_OUT: { + if (_disableZoom) { + break; + } + // zooms out from current if triple tap occurred _vel.zoom = computeTapZoomDistance(-1.0); _constTimeDecayCoeff.zoom = computeConstTimeDecayCoefficient(_vel.zoom); @@ -986,7 +1022,7 @@ void TouchInteraction::step(double dt, bool directTouch) { } { // Orbit (global rotation) - const dvec3 eulerAngles(_vel.orbit.y*dt, _vel.orbit.x*dt, 0); + const dvec3 eulerAngles(_vel.orbit.y * dt, _vel.orbit.x * dt, 0); const dquat rotationDiffCamSpace = dquat(eulerAngles); const dquat rotationDiffWorldSpace = globalCamRot * rotationDiffCamSpace * @@ -1187,6 +1223,8 @@ void TouchInteraction::resetAfterInput() { // Reset all property values to default void TouchInteraction::resetToDefault() { _unitTest.set(false); + _disableZoom.set(false); + _disableRoll.set(false); _reset.set(false); _maxTapTime.set(300); _deceleratesPerSecond.set(240); From fd27b63f4beebc36655005f512e479245c968451 Mon Sep 17 00:00:00 2001 From: Malin E Date: Fri, 4 Nov 2022 14:03:26 +0100 Subject: [PATCH 46/81] Disable touch interaction while in a Camrea path or Session recording --- modules/touch/src/touchinteraction.cpp | 31 ++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/modules/touch/src/touchinteraction.cpp b/modules/touch/src/touchinteraction.cpp index e5d0f3ba2c..4607618909 100644 --- a/modules/touch/src/touchinteraction.cpp +++ b/modules/touch/src/touchinteraction.cpp @@ -34,6 +34,7 @@ #include #include #include +#include #include #include #include @@ -373,6 +374,14 @@ void TouchInteraction::updateStateFromInput(const std::vector& #ifdef TOUCH_DEBUG_PROPERTIES _debugProperties.nFingers = list.size(); #endif + + OpenSpaceEngine::Mode mode = global::openSpaceEngine->currentMode(); + if (mode == OpenSpaceEngine::Mode::CameraPath || + mode == OpenSpaceEngine::Mode::SessionRecordingPlayback) + { + return; + } + if (_tap) { // check for doubletap using namespace std::chrono; @@ -445,6 +454,14 @@ void TouchInteraction::directControl(const std::vector& list) _vel.zoom = 0.0; _vel.roll = 0.0; _vel.pan = glm::dvec2(0.0); + + OpenSpaceEngine::Mode mode = global::openSpaceEngine->currentMode(); + if (mode == OpenSpaceEngine::Mode::CameraPath || + mode == OpenSpaceEngine::Mode::SessionRecordingPlayback) + { + return; + } + #ifdef TOUCH_DEBUG_PROPERTIES LINFO("DirectControl"); #endif @@ -969,6 +986,13 @@ double TouchInteraction::computeTapZoomDistance(double zoomGain) { // Main update call, calculates the new orientation and position for the camera depending // on _vel and dt. Called every frame void TouchInteraction::step(double dt, bool directTouch) { + OpenSpaceEngine::Mode mode = global::openSpaceEngine->currentMode(); + if (mode == OpenSpaceEngine::Mode::CameraPath || + mode == OpenSpaceEngine::Mode::SessionRecordingPlayback) + { + return; + } + using namespace glm; const SceneGraphNode* anchor = @@ -1184,6 +1208,13 @@ void TouchInteraction::decelerate(double dt) { //Ensure the number of times to apply the decay coefficient is valid times = std::min(times, 1); + OpenSpaceEngine::Mode mode = global::openSpaceEngine->currentMode(); + if (mode == OpenSpaceEngine::Mode::CameraPath || + mode == OpenSpaceEngine::Mode::SessionRecordingPlayback) + { + return; + } + _vel.orbit *= computeDecayCoeffFromFrametime(_constTimeDecayCoeff.orbit, times); _vel.roll *= computeDecayCoeffFromFrametime(_constTimeDecayCoeff.roll, times); _vel.pan *= computeDecayCoeffFromFrametime(_constTimeDecayCoeff.pan, times); From 8579a1278597eb723c352b703d75bf89aed5ed34 Mon Sep 17 00:00:00 2001 From: Alexander Bock Date: Mon, 7 Nov 2022 13:46:31 +0100 Subject: [PATCH 47/81] Don't crash when trying to add assets with invalid path (closes #2299) --- src/scene/assetmanager.cpp | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/scene/assetmanager.cpp b/src/scene/assetmanager.cpp index ddac86157b..ef2e2b8452 100644 --- a/src/scene/assetmanager.cpp +++ b/src/scene/assetmanager.cpp @@ -190,7 +190,14 @@ void AssetManager::update() { ZoneScopedN("Adding queued assets") std::filesystem::path path = generateAssetPath(_assetRootDirectory, asset); - Asset* a = retrieveAsset(path, ""); + Asset* a = nullptr; + try { + a = retrieveAsset(path, ""); + } + catch (const ghoul::RuntimeError& e) { + LERRORC(e.component, e.message); + continue; + } const auto it = std::find(_rootAssets.cbegin(), _rootAssets.cend(), a); if (it != _rootAssets.cend()) { From 5cedb263361182ef9a3fe2f677ee5c40732c3d3a Mon Sep 17 00:00:00 2001 From: Alexander Bock Date: Mon, 7 Nov 2022 13:46:45 +0100 Subject: [PATCH 48/81] Build fix for CMake 3.24.3 --- modules/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/CMakeLists.txt b/modules/CMakeLists.txt index a5b8c09ed1..72609668f1 100644 --- a/modules/CMakeLists.txt +++ b/modules/CMakeLists.txt @@ -361,7 +361,7 @@ foreach (path ${module_paths}) # The module path should include the 'modules' directory, which is removed for the # include path to make all of the includes look the same list(APPEND MODULE_PATHS " \"${path}/modules\",\n") - target_include_directories(openspace-module-collection PUBLIC ${path}) + target_include_directories(openspace-module-collection INTERFACE ${path}) endforeach () if (NOT "${MODULE_HEADERS}" STREQUAL "") From 55a57b0236cfd5939b1fe1b6383a874cdec4e1d9 Mon Sep 17 00:00:00 2001 From: Emma Broman Date: Sun, 30 Oct 2022 15:16:04 +0100 Subject: [PATCH 49/81] Add info tooltips to profile dropdown --- .../ext/launcher/src/launcherwindow.cpp | 64 +++++++++++++------ 1 file changed, 44 insertions(+), 20 deletions(-) diff --git a/apps/OpenSpace/ext/launcher/src/launcherwindow.cpp b/apps/OpenSpace/ext/launcher/src/launcherwindow.cpp index 8209cec583..1c4bbc2296 100644 --- a/apps/OpenSpace/ext/launcher/src/launcherwindow.cpp +++ b/apps/OpenSpace/ext/launcher/src/launcherwindow.cpp @@ -81,6 +81,19 @@ namespace { } // geometry std::optional loadProfileFromFile(QWidget* parent, std::string filename) { + // Verify that the file actually exists + if (!std::filesystem::exists(filename)) { + QMessageBox::critical( + parent, + "Exception", + QString::fromStdString(fmt::format( + "Could not open profile file '{}'", filename + )) + ); + + return std::nullopt; + } + std::ifstream inFile; try { inFile.open(filename, std::ifstream::in); @@ -407,11 +420,24 @@ void LauncherWindow::populateProfilesList(std::string preset) { ++_userAssetCount; } std::sort(profiles.begin(), profiles.end()); - for (const fs::directory_entry& p : profiles) { + for (const fs::directory_entry& profile : profiles) { + std::filesystem::path path = profile.path(); _profileBox->addItem( - QString::fromStdString(p.path().stem().string()), - QString::fromStdString(p.path().string()) + QString::fromStdString(path.stem().string()), + QString::fromStdString(path.string()) ); + + // Add toooltip + std::optional p = loadProfileFromFile(this, path.string()); + int idx = _profileBox->count() - 1; + if (p.has_value() && (*p).meta.has_value()) { + const std::optional& d = (*p).meta.value().description; + if (d.has_value()) { + // Tooltip has to be 'rich text' to linebreak properly + QString tooltip = QString::fromStdString(fmt::format("

{}

", *d)); + _profileBox->setItemData(idx, tooltip, Qt::ToolTipRole); + } + } } _profileBox->addItem(QString::fromStdString("--- OpenSpace Profiles ---")); @@ -431,11 +457,23 @@ void LauncherWindow::populateProfilesList(std::string preset) { // Add sorted items to list for (const fs::directory_entry& profile : profiles) { - std::string abc = profile.path().string(); + std::filesystem::path path = profile.path(); _profileBox->addItem( - QString::fromStdString(profile.path().stem().string()), - QString::fromStdString(profile.path().string()) + QString::fromStdString(path.stem().string()), + QString::fromStdString(path.string()) ); + + // Add toooltip + std::optional p = loadProfileFromFile(this, path.string()); + int idx = _profileBox->count() - 1; + if (p.has_value() && (*p).meta.has_value()) { + const std::optional& d = (*p).meta.value().description; + if (d.has_value()) { + // Tooltip has to be 'rich text' to linebreak properly + QString tooltip = QString::fromStdString(fmt::format("

{}

", *d)); + _profileBox->setItemData(idx, tooltip, Qt::ToolTipRole); + } + } } // Try to find the requested profile and set it as the current one @@ -568,21 +606,7 @@ void LauncherWindow::openProfileEditor(const std::string& profile, bool isUserPr } else { // Otherwise, we want to load that profile - std::string fullProfilePath = saveProfilePath + profile + ".profile"; - - // Verify that the file actually exists - if (!std::filesystem::exists(fullProfilePath)) { - QMessageBox::critical( - this, - "Exception", - QString::fromStdString(fmt::format( - "Could not open profile file '{}'", fullProfilePath - )) - ); - - return; - } p = loadProfileFromFile(this, fullProfilePath); if (!p.has_value()) { return; From 6d379a537ed592877236114782e223bc3a4b7a2a Mon Sep 17 00:00:00 2001 From: Emma Broman Date: Thu, 3 Nov 2022 14:42:09 +0100 Subject: [PATCH 50/81] Simplify rich text string in profile tooltip --- apps/OpenSpace/ext/launcher/src/launcherwindow.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/OpenSpace/ext/launcher/src/launcherwindow.cpp b/apps/OpenSpace/ext/launcher/src/launcherwindow.cpp index 1c4bbc2296..e30340f275 100644 --- a/apps/OpenSpace/ext/launcher/src/launcherwindow.cpp +++ b/apps/OpenSpace/ext/launcher/src/launcherwindow.cpp @@ -434,7 +434,7 @@ void LauncherWindow::populateProfilesList(std::string preset) { const std::optional& d = (*p).meta.value().description; if (d.has_value()) { // Tooltip has to be 'rich text' to linebreak properly - QString tooltip = QString::fromStdString(fmt::format("

{}

", *d)); + QString tooltip = QString::fromStdString(fmt::format("

{}

", *d)); _profileBox->setItemData(idx, tooltip, Qt::ToolTipRole); } } @@ -470,7 +470,7 @@ void LauncherWindow::populateProfilesList(std::string preset) { const std::optional& d = (*p).meta.value().description; if (d.has_value()) { // Tooltip has to be 'rich text' to linebreak properly - QString tooltip = QString::fromStdString(fmt::format("

{}

", *d)); + QString tooltip = QString::fromStdString(fmt::format("

{}

", *d)); _profileBox->setItemData(idx, tooltip, Qt::ToolTipRole); } } From 12bb47c71e2cd8a3ce4b8c1697604ed1f2dffe3a Mon Sep 17 00:00:00 2001 From: Alexander Bock Date: Mon, 7 Nov 2022 15:45:54 +0100 Subject: [PATCH 51/81] Recalculate chunk bounding boxes when the settings of a heightlayer change (closes #2096) * Correctly calculate Offset when negative numbers are involved * Adds tile index layer for the Moon * Remove empty spaces --- .../moon/layers/overlays/tile_indices.asset | 29 +++++++++++++++++ .../shaders/advanced_rings_fs.glsl | 4 +-- .../shaders/advanced_rings_vs.glsl | 2 +- .../globebrowsing/shaders/interpolate_fs.glsl | 2 +- .../shaders/localrenderer_vs.glsl | 4 +-- .../globebrowsing/shaders/renderer_fs.glsl | 2 +- modules/globebrowsing/shaders/rings_fs.glsl | 2 +- .../globebrowsing/shaders/rings_geom_fs.glsl | 4 +-- modules/globebrowsing/shaders/rings_vs.glsl | 2 +- .../shaders/texturetilemapping.glsl | 31 ++++++++++--------- modules/globebrowsing/shaders/tile.glsl | 2 +- modules/globebrowsing/shaders/tileheight.glsl | 2 +- modules/globebrowsing/src/layer.cpp | 8 +++++ .../globebrowsing/src/layerrendersettings.cpp | 8 +++++ .../globebrowsing/src/layerrendersettings.h | 2 ++ modules/globebrowsing/src/renderableglobe.cpp | 3 -- 16 files changed, 76 insertions(+), 31 deletions(-) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/layers/overlays/tile_indices.asset diff --git a/data/assets/scene/solarsystem/planets/earth/moon/layers/overlays/tile_indices.asset b/data/assets/scene/solarsystem/planets/earth/moon/layers/overlays/tile_indices.asset new file mode 100644 index 0000000000..326a169176 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/layers/overlays/tile_indices.asset @@ -0,0 +1,29 @@ +local globeIdentifier = asset.require("../../moon").Moon.Identifier + +local layer = { + Identifier = "Tile_Indices", + Name = "Tile Indices", + Enabled = asset.enabled, + Type = "TileIndexTileLayer" +} + +asset.onInitialize(function() + openspace.globebrowsing.addLayer(globeIdentifier, "Overlays", layer) +end) + +asset.onDeinitialize(function() + openspace.globebrowsing.deleteLayer(globeIdentifier, "Overlays", layer) +end) + +asset.export("layer", layer) + + + +asset.meta = { + Name = "Moon Tile Indices", + Version = "1.0", + Description = "Tile index layer for Moon globe", + Author = "OpenSpace Team", + URL = "http://openspaceproject.com", + License = "MIT license" +} diff --git a/modules/globebrowsing/shaders/advanced_rings_fs.glsl b/modules/globebrowsing/shaders/advanced_rings_fs.glsl index 2958c4b681..ea732f55fa 100644 --- a/modules/globebrowsing/shaders/advanced_rings_fs.glsl +++ b/modules/globebrowsing/shaders/advanced_rings_fs.glsl @@ -91,7 +91,7 @@ Fragment getFragment() { normalizedShadowCoords.z = normalizeFloat(zFightingPercentage * normalizedShadowCoords.w); normalizedShadowCoords.xy = normalizedShadowCoords.xy / normalizedShadowCoords.w; normalizedShadowCoords.w = 1.0; - + float sum = 0; #for i in 0..#{nShadowSamples} sum += textureProjOffset(shadowMapTexture, normalizedShadowCoords, ivec2(-NSSamples + #{i}, -NSSamples + #{i})); @@ -116,7 +116,7 @@ Fragment getFragment() { // Reduce the color of the fragment by the user factor // if we are facing away from the Sun if (dot(sunPosition, normal) < 0.0) { - diffuse.xyz = + diffuse.xyz = vec3(1.0, 0.97075, 0.952) * texture(ringTextureUnlit, texCoord).xyz * nightFactor; } diff --git a/modules/globebrowsing/shaders/advanced_rings_vs.glsl b/modules/globebrowsing/shaders/advanced_rings_vs.glsl index 98a205289d..958b9ef2ca 100644 --- a/modules/globebrowsing/shaders/advanced_rings_vs.glsl +++ b/modules/globebrowsing/shaders/advanced_rings_vs.glsl @@ -46,7 +46,7 @@ void main() { dvec4 positionClipSpace = modelViewProjectionMatrix * dvec4(in_position, 0.0, 1.0); vec4 positionClipSpaceZNorm = z_normalization(vec4(positionClipSpace)); - + shadowCoords = vec4(shadowMatrix * dvec4(in_position, 0.0, 1.0)); vs_screenSpaceDepth = positionClipSpaceZNorm.w; gl_Position = positionClipSpaceZNorm; diff --git a/modules/globebrowsing/shaders/interpolate_fs.glsl b/modules/globebrowsing/shaders/interpolate_fs.glsl index 6ce6118903..ec2af69bdc 100644 --- a/modules/globebrowsing/shaders/interpolate_fs.glsl +++ b/modules/globebrowsing/shaders/interpolate_fs.glsl @@ -38,7 +38,7 @@ Fragment getFragment() { vec4 mixedTexture = mix(texel0, texel1, blendFactor); - Fragment frag; + Fragment frag; if (mixedTexture.r > 0.999) { frag.color = texture(colormapTexture, mixedTexture.r - 0.01); } diff --git a/modules/globebrowsing/shaders/localrenderer_vs.glsl b/modules/globebrowsing/shaders/localrenderer_vs.glsl index faf4c50d3c..0809d84d7f 100644 --- a/modules/globebrowsing/shaders/localrenderer_vs.glsl +++ b/modules/globebrowsing/shaders/localrenderer_vs.glsl @@ -90,7 +90,7 @@ vec3 getLevelWeights(float distToVertexOnEllipsoid) { void main() { // Position in cameraspace vec3 p = bilinearInterpolation(in_uv); - + // Calculate desired level based on distance to the vertex on the ellipsoid // Before any heightmapping is done float distToVertexOnEllipsoid = length(p + patchNormalCameraSpace * chunkMinHeight); @@ -100,7 +100,7 @@ void main() { // Get the height value and apply skirts float height = getTileHeightScaled(in_uv, levelWeights) - getTileVertexSkirtLength() * 100.0; - + // Translate the point along normal p += patchNormalCameraSpace * height; diff --git a/modules/globebrowsing/shaders/renderer_fs.glsl b/modules/globebrowsing/shaders/renderer_fs.glsl index 63a81341f5..083bd5dbc5 100644 --- a/modules/globebrowsing/shaders/renderer_fs.glsl +++ b/modules/globebrowsing/shaders/renderer_fs.glsl @@ -126,7 +126,7 @@ vec4 calcShadow(const ShadowRenderingStruct shadowInfoArray[NSEclipseShadows], } else if (length_d < r_p_pi) {// penumbra #if USE_ECLIPSE_HARD_SHADOWS - return vec4(0.5, 0.5, 0.5, 1.0); + return vec4(0.5, 0.5, 0.5, 1.0); #else return vec4(vec3(length_d / r_p_pi), 1.0); #endif diff --git a/modules/globebrowsing/shaders/rings_fs.glsl b/modules/globebrowsing/shaders/rings_fs.glsl index 901f51811a..23a90a5eb6 100644 --- a/modules/globebrowsing/shaders/rings_fs.glsl +++ b/modules/globebrowsing/shaders/rings_fs.glsl @@ -80,7 +80,7 @@ Fragment getFragment() { normalizedShadowCoords.z = normalizeFloat(zFightingPercentage * normalizedShadowCoords.w); normalizedShadowCoords.xy = normalizedShadowCoords.xy / normalizedShadowCoords.w; normalizedShadowCoords.w = 1.0; - + float sum = 0; #for i in 0..#{nShadowSamples} sum += textureProjOffset(shadowMapTexture, normalizedShadowCoords, ivec2(-NSSamples + #{i}, -NSSamples + #{i})); diff --git a/modules/globebrowsing/shaders/rings_geom_fs.glsl b/modules/globebrowsing/shaders/rings_geom_fs.glsl index 20866b4480..e29e24c843 100644 --- a/modules/globebrowsing/shaders/rings_geom_fs.glsl +++ b/modules/globebrowsing/shaders/rings_geom_fs.glsl @@ -54,7 +54,7 @@ Fragment getFragment() { } float diffuse = length(texture(ringTexture, texCoord).rgb); - + // The normal for the one plane depends on whether we are dealing // with a front facing or back facing fragment //vec3 normal; @@ -70,6 +70,6 @@ Fragment getFragment() { Fragment frag; frag.color = vec4(vec3(vs_screenSpaceDepth), 1.0); frag.depth = (diffuse < 0.5) ? 1E30 : vs_screenSpaceDepth; - + return frag; } diff --git a/modules/globebrowsing/shaders/rings_vs.glsl b/modules/globebrowsing/shaders/rings_vs.glsl index 98a205289d..958b9ef2ca 100644 --- a/modules/globebrowsing/shaders/rings_vs.glsl +++ b/modules/globebrowsing/shaders/rings_vs.glsl @@ -46,7 +46,7 @@ void main() { dvec4 positionClipSpace = modelViewProjectionMatrix * dvec4(in_position, 0.0, 1.0); vec4 positionClipSpaceZNorm = z_normalization(vec4(positionClipSpace)); - + shadowCoords = vec4(shadowMatrix * dvec4(in_position, 0.0, 1.0)); vs_screenSpaceDepth = positionClipSpaceZNorm.w; gl_Position = positionClipSpaceZNorm; diff --git a/modules/globebrowsing/shaders/texturetilemapping.glsl b/modules/globebrowsing/shaders/texturetilemapping.glsl index c591d38dcb..7d36e067c2 100644 --- a/modules/globebrowsing/shaders/texturetilemapping.glsl +++ b/modules/globebrowsing/shaders/texturetilemapping.glsl @@ -73,38 +73,39 @@ float orenNayarDiffuse(vec3 lightDirection, vec3 viewDirection, vec3 surfaceNorm { // calculate intermediary values float NdotL = dot(surfaceNormal, lightDirection); - float NdotV = dot(surfaceNormal, viewDirection); + float NdotV = dot(surfaceNormal, viewDirection); float angleVN = acos(NdotV); float angleLN = acos(NdotL); - + float alpha = max(angleVN, angleLN); float beta = min(angleVN, angleLN); float gamma = dot( viewDirection - surfaceNormal * dot(viewDirection, surfaceNormal), lightDirection - surfaceNormal * dot(lightDirection, surfaceNormal) ); - + float roughnessSquared = roughness * roughness; - + // calculate A and B float A = 1.0 - 0.5 * (roughnessSquared / (roughnessSquared + 0.57)); float B = 0.45 * (roughnessSquared / (roughnessSquared + 0.09)); float C = sin(alpha) * tan(beta); - + // put it all together return max(0.0, NdotL) * (A + B * max(0.0, gamma) * C); } float performLayerSettings(float value, LayerSettings settings) { - float v = pow(abs(value), settings.gamma) * settings.multiplier + settings.offset; - return sign(value) * v * settings.opacity; + float v = sign(value) * pow(abs(value), settings.gamma) * + settings.multiplier + settings.offset; + return v * settings.opacity; } -vec4 performLayerSettings(vec4 currentValue, LayerSettings settings) { - vec3 newValue = sign(currentValue.rgb) * pow(abs(currentValue.rgb), vec3(settings.gamma)) * - settings.multiplier + settings.offset; - return vec4(newValue, currentValue.a * settings.opacity); +vec4 performLayerSettings(vec4 value, LayerSettings settings) { + vec3 v = sign(value.rgb) * pow(abs(value.rgb), vec3(settings.gamma)) * + settings.multiplier + settings.offset; + return vec4(v, value.a * settings.opacity); } vec2 tileUVToTextureSamplePosition(ChunkTile chunkTile, vec2 tileUV, PixelPadding padding) @@ -194,7 +195,7 @@ vec4 blend#{layerGroup}#{i}(vec4 currentColor, vec4 newColor, float blendFactor) #elif (#{#{layerGroup}#{i}BlendMode} == BlendModeColor) // Convert color to grayscale float gray = (newColor.r + newColor.g + newColor.b) / 3.0; - + vec3 hsvCurrent = rgb2hsv(currentColor.rgb); // Use gray from new color as value in hsv vec3 hsvNew = vec3(hsvCurrent.x, hsvCurrent.y, gray); @@ -248,7 +249,7 @@ float calculateUntransformedHeight(vec2 uv, vec3 levelWeights, #if !HEIGHTMAP_BLENDING_ENABLED levelWeights = DefaultLevelWeights; #endif // HEIGHTMAP_BLENDING_ENABLED - + #for i in 0..#{lastLayerIndexHeightLayers} { vec4 colorSample = getSampleHeightLayers#{i}(uv, levelWeights, HeightLayers); @@ -354,7 +355,7 @@ vec4 calculateNight(vec4 currentColor, vec2 uv, vec3 levelWeights, vec3 n = normalize(ellipsoidNormalCameraSpace); vec3 l = lightDirectionCameraSpace; float cosineFactor = clamp(dot(l, normalize(n + 0.20 * l)) * 3 , 0, 1); - + #for i in 0..#{lastLayerIndexNightLayers} { vec4 colorSample = getSampleNightLayers#{i}(uv, levelWeights, NightLayers); @@ -420,7 +421,7 @@ vec4 calculateOverlay(vec4 currentColor, vec2 uv, vec3 levelWeights, return color; } -vec4 calculateWater(vec4 currentColor, vec2 uv, vec3 levelWeights, +vec4 calculateWater(vec4 currentColor, vec2 uv, vec3 levelWeights, Layer WaterMasks[NUMLAYERS_WATERMASK], vec3 ellipsoidNormalCameraSpace, vec3 lightDirectionCameraSpace, vec3 positionCameraSpace, out float reflectance) diff --git a/modules/globebrowsing/shaders/tile.glsl b/modules/globebrowsing/shaders/tile.glsl index 7d140905b3..eb8e4b35d4 100644 --- a/modules/globebrowsing/shaders/tile.glsl +++ b/modules/globebrowsing/shaders/tile.glsl @@ -70,7 +70,7 @@ struct Layer { LayerSettings settings; LayerAdjustment adjustment; PixelPadding padding; - + // Other layer type properties stuff vec3 color; }; diff --git a/modules/globebrowsing/shaders/tileheight.glsl b/modules/globebrowsing/shaders/tileheight.glsl index 3df2ea0ec4..731c786ff0 100644 --- a/modules/globebrowsing/shaders/tileheight.glsl +++ b/modules/globebrowsing/shaders/tileheight.glsl @@ -79,7 +79,7 @@ float getTileHeight(vec2 uv, vec3 levelWeights) { float getTileHeightScaled(vec2 uv, vec3 levelWeights) { float height = getTileHeight(uv, levelWeights); - + #if USE_HEIGHTMAP height *= heightScale; #endif // USE_HEIGHTMAP diff --git a/modules/globebrowsing/src/layer.cpp b/modules/globebrowsing/src/layer.cpp index baee723ec4..f21ca9f39f 100644 --- a/modules/globebrowsing/src/layer.cpp +++ b/modules/globebrowsing/src/layer.cpp @@ -296,6 +296,14 @@ Layer::Layer(layers::Group::ID id, const ghoul::Dictionary& layerDict, LayerGrou } }); + _renderSettings.onChange([&]() { + // Only if we are a height layer will anyone care about these settings changing as + // that will change the overall bounding box of the layer and thus require culling + if (_parent.isHeightLayer() && _onChangeCallback) { + _onChangeCallback(this); + } + }); + _typeOption.onChange([&]() { switch (type()) { // Intentional fall through. Same for all tile layers diff --git a/modules/globebrowsing/src/layerrendersettings.cpp b/modules/globebrowsing/src/layerrendersettings.cpp index 1147900c9c..f634b9b328 100644 --- a/modules/globebrowsing/src/layerrendersettings.cpp +++ b/modules/globebrowsing/src/layerrendersettings.cpp @@ -85,6 +85,14 @@ LayerRenderSettings::LayerRenderSettings() }); } +void LayerRenderSettings::onChange(std::function callback) { + opacity.onChange(callback); + gamma.onChange(callback); + multiplier.onChange(callback); + multiplier.onChange(callback); + offset.onChange(callback); +} + float LayerRenderSettings::performLayerSettings(float v) const { return ((glm::sign(v) * glm::pow(glm::abs(v), gamma) * multiplier) + offset) * opacity; diff --git a/modules/globebrowsing/src/layerrendersettings.h b/modules/globebrowsing/src/layerrendersettings.h index 642f05069c..1a235a406b 100644 --- a/modules/globebrowsing/src/layerrendersettings.h +++ b/modules/globebrowsing/src/layerrendersettings.h @@ -41,6 +41,8 @@ struct LayerRenderSettings : public properties::PropertyOwner { properties::FloatProperty offset; properties::TriggerProperty setDefault; + void onChange(std::function callback); + /// This function matches the function with the same name in the /// shader code float performLayerSettings(float value) const; diff --git a/modules/globebrowsing/src/renderableglobe.cpp b/modules/globebrowsing/src/renderableglobe.cpp index 2144d8739c..f7647a7d5e 100644 --- a/modules/globebrowsing/src/renderableglobe.cpp +++ b/modules/globebrowsing/src/renderableglobe.cpp @@ -1858,9 +1858,6 @@ float RenderableGlobe::getHeight(const glm::dvec3& position) const { const int chunkLevel = node.tileIndex.level; - //TileIndex::TileIndex(const Geodetic2& point, int level_) - // : level(level_) - //{ const int numIndicesAtLevel = 1 << chunkLevel; const double u = 0.5 + geodeticPosition.lon / glm::two_pi(); const double v = 0.25 - geodeticPosition.lat / glm::two_pi(); From 1d954cf22012991e7b135fdac3793f1b0ed63087 Mon Sep 17 00:00:00 2001 From: Emma Broman Date: Mon, 7 Nov 2022 16:02:38 +0100 Subject: [PATCH 52/81] Add checks for preventing precision issues when checking for collisions --- src/navigation/pathcurves/avoidcollisioncurve.cpp | 15 +++++++++++++-- src/util/collisionhelper.cpp | 2 ++ 2 files changed, 15 insertions(+), 2 deletions(-) diff --git a/src/navigation/pathcurves/avoidcollisioncurve.cpp b/src/navigation/pathcurves/avoidcollisioncurve.cpp index 9cb1195110..ec546e7e33 100644 --- a/src/navigation/pathcurves/avoidcollisioncurve.cpp +++ b/src/navigation/pathcurves/avoidcollisioncurve.cpp @@ -33,6 +33,7 @@ #include #include #include +#include #include #include #include @@ -152,8 +153,11 @@ void AvoidCollisionCurve::removeCollisions(int step) { glm::dvec3 p1 = glm::inverse(modelTransform) * glm::dvec4(lineStart, 1.0); glm::dvec3 p2 = glm::inverse(modelTransform) * glm::dvec4(lineEnd, 1.0); - // Sphere to check for collision - double radius = node->boundingSphere(); + // Sphere to check for collision. Make sure it does not have radius zero. + const double minValidBoundingSphere = + global::navigationHandler->pathNavigator().minValidBoundingSphere(); + + double radius = std::max(node->boundingSphere(), minValidBoundingSphere); glm::dvec3 center = glm::dvec3(0.0, 0.0, 0.0); // Add a buffer to avoid passing too close to the node. @@ -208,6 +212,13 @@ void AvoidCollisionCurve::removeCollisions(int step) { glm::dvec3 extraKnot = collisionPoint - avoidCollisionDistance * glm::normalize(orthogonal); + // Don't add invalid positions (indicating precision issues) + if (glm::any(glm::isnan(extraKnot))) { + throw InsufficientPrecisionError( + "Insufficient precision for avoid collision computation" + ); + } + _points.insert(_points.begin() + i + 2, extraKnot); step++; diff --git a/src/util/collisionhelper.cpp b/src/util/collisionhelper.cpp index 10b1f83de2..4ba8748024 100644 --- a/src/util/collisionhelper.cpp +++ b/src/util/collisionhelper.cpp @@ -24,6 +24,8 @@ #include +#include + namespace openspace::collision { // Source: http://paulbourke.net/geometry/circlesphere/raysphere.c From 5175418699825aebddf42421b63c28a2750ab669 Mon Sep 17 00:00:00 2001 From: Emma Broman Date: Mon, 7 Nov 2022 17:33:46 +0100 Subject: [PATCH 53/81] Prevent rotation from breaking due to precision errors during lookat computation --- src/navigation/path.cpp | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/src/navigation/path.cpp b/src/navigation/path.cpp index 48032b2d44..5db9ac5983 100644 --- a/src/navigation/path.cpp +++ b/src/navigation/path.cpp @@ -513,6 +513,7 @@ Waypoint computeWaypointFromNodeInfo(const NodeInfo& info, const Waypoint& start return Waypoint(); } + glm::dvec3 stepDir; glm::dvec3 targetPos; if (info.position.has_value()) { // The position in instruction is given in the targetNode's local coordinates. @@ -529,7 +530,6 @@ Waypoint computeWaypointFromNodeInfo(const NodeInfo& info, const Waypoint& start const double height = info.height.value_or(defaultHeight); const double distanceFromNodeCenter = radius + height; - glm::dvec3 stepDir; if (type == Path::Type::Linear) { // If linear path, compute position along line form start to end point glm::dvec3 endNodePos = targetNode->worldPosition(); @@ -551,7 +551,18 @@ Waypoint computeWaypointFromNodeInfo(const NodeInfo& info, const Waypoint& start } // Compute rotation so the camera is looking at the targetted node - const glm::dvec3 lookAtPos = targetNode->worldPosition(); + glm::dvec3 lookAtPos = targetNode->worldPosition(); + + // Check if we can distinguish between targetpos and lookAt pos. Otherwise, move it further away + const glm::dvec3 diff = targetPos - lookAtPos; + double distSquared = glm::dot(diff, diff); + if (std::isnan(distSquared) || distSquared < LengthEpsilon) { + double startToEndDist = glm::length( + startPoint.position() - targetNode->worldPosition() + ); + lookAtPos = targetPos - stepDir * 0.1 * startToEndDist; + } + const glm::dquat targetRot = ghoul::lookAtQuaternion(targetPos, lookAtPos, up); return Waypoint(targetPos, targetRot, info.identifier); From 24e9c9252ebd376cc0a855967d0fc49899a3aab4 Mon Sep 17 00:00:00 2001 From: Emma Broman Date: Mon, 7 Nov 2022 17:33:58 +0100 Subject: [PATCH 54/81] Add a todo comment for rotation --- src/navigation/path.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/navigation/path.cpp b/src/navigation/path.cpp index 5db9ac5983..8337679ee6 100644 --- a/src/navigation/path.cpp +++ b/src/navigation/path.cpp @@ -192,6 +192,9 @@ bool Path::hasReachedEnd() const { return true; } + // @TODO (emmbr, 2022-11-07) Handle linear paths separately, as they might + // abort prematurely due to the "isPositionFinished" condition + bool isPositionFinished = (_traveledDistance / pathLength()) >= 1.0; constexpr double RotationEpsilon = 0.0001; From 392accbf8a154addde071ed7373db0b1457f7132 Mon Sep 17 00:00:00 2001 From: Alexander Bock Date: Mon, 7 Nov 2022 18:30:22 +0100 Subject: [PATCH 55/81] Adjust the height offsets in the mars profile to make Perseverance and Insight not land inside Mars anymore (closes #2049) --- data/profiles/mars.profile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/data/profiles/mars.profile b/data/profiles/mars.profile index b63767b8bd..152a19ca03 100644 --- a/data/profiles/mars.profile +++ b/data/profiles/mars.profile @@ -6,7 +6,7 @@ "identifier": "profile.setup.insight", "is_local": false, "name": "Setup scene for insight EDL", - "script": "openspace.setPropertyValueSingle('Scene.Mars.Renderable.Layers.HeightLayers.Mola_Utah.Settings.Offset', -469.300000);openspace.setPropertyValueSingle('Scene.Mars.Renderable.Layers.HeightLayers.HiRISE-LS-DEM.Settings.Offset', -470.800006);openspace.setPropertyValueSingle('Scene.Mars.Renderable.Layers.HeightLayers.HiRISE-LS-DEM.Enabled', true);openspace.setPropertyValueSingle('Scene.Mars.Renderable.Layers.ColorLayers.HiRISE-LS.Enabled', true);openspace.time.setPause(true);openspace.time.setTime('2018 NOV 26 19:39:01.68');openspace.navigation.setNavigationState({Anchor = 'Insight',Pitch = 0.567457E-4,Position = { 1.240506E1,-1.369270E1,-2.423553E0 },ReferenceFrame = 'Root',Up = { 0.441211E0,0.247019E0,0.862737E0 },Yaw = -0.446853E-4});" + "script": "openspace.setPropertyValueSingle('Scene.Mars.Renderable.Layers.HeightLayers.Mola_Utah.Settings.Offset', -469.300000);openspace.setPropertyValueSingle('Scene.Mars.Renderable.Layers.HeightLayers.HiRISE-LS-DEM.Settings.Offset', -470.850006);openspace.setPropertyValueSingle('Scene.Mars.Renderable.Layers.HeightLayers.MDEM200M.Settings.Offset', -470.000000);openspace.setPropertyValueSingle('Scene.Mars.Renderable.Layers.HeightLayers.HiRISE-LS-DEM.Enabled', true);openspace.setPropertyValueSingle('Scene.Mars.Renderable.Layers.ColorLayers.HiRISE-LS.Enabled', true);openspace.time.setPause(true);openspace.time.setTime('2018 NOV 26 19:39:01.68');openspace.navigation.setNavigationState({Anchor = 'Insight',Pitch = 0.567457E-4,Position = { 1.240506E1,-1.369270E1,-2.423553E0 },ReferenceFrame = 'Root',Up = { 0.441211E0,0.247019E0,0.862737E0 },Yaw = -0.446853E-4});" }, { "documentation": "Disable Mars layer settings used for insight EDL", @@ -22,7 +22,7 @@ "identifier": "profile.setup.perseverance", "is_local": false, "name": "Setup and Goto Perseverance", - "script": "openspace.setPropertyValueSingle('Scene.Mars.Renderable.Layers.HeightLayers.Mola_Utah.Settings.Offset', -1674.0);openspace.setPropertyValueSingle('Scene.Mars.Renderable.Layers.HeightLayers.HiRISE-LS-DEM.Settings.Offset', -1674.0);openspace.time.setPause(true);openspace.time.setTime('2021 FEB 18 20:32:16');openspace.setPropertyValueSingle('Scene.Mars.Renderable.Layers.HeightLayers.HiRISE-LS-DEM.Enabled', true);openspace.setPropertyValueSingle('Scene.Mars.Renderable.Layers.ColorLayers.HiRISE-LS.Enabled', true);openspace.navigation.setNavigationState({Anchor = 'Perseverance',Pitch = 0.567457E-4,Position = { 1.240506E1,-1.369270E1,-2.423553E0 },ReferenceFrame = 'Root',Up = { 0.441211E0,0.247019E0,0.862737E0 },Yaw = -0.446853E-4});" + "script": "openspace.setPropertyValueSingle('Scene.Mars.Renderable.Layers.HeightLayers.Mola_Utah.Settings.Offset', -1686.0);openspace.setPropertyValueSingle('Scene.Mars.Renderable.Layers.HeightLayers.HiRISE-LS-DEM.Settings.Offset', -1686.0);openspace.setPropertyValueSingle('Scene.Mars.Renderable.Layers.HeightLayers.MDEM200M.Settings.Offset', -1686);openspace.time.setPause(true);openspace.time.setTime('2021 FEB 18 20:32:16');openspace.setPropertyValueSingle('Scene.Mars.Renderable.Layers.HeightLayers.HiRISE-LS-DEM.Enabled', true);openspace.setPropertyValueSingle('Scene.Mars.Renderable.Layers.ColorLayers.HiRISE-LS.Enabled', true);openspace.navigation.setNavigationState({Anchor = 'Perseverance',Pitch = 0.567457E-4,Position = { 1.240506E1,-1.369270E1,-2.423553E0 },ReferenceFrame = 'Root',Up = { 0.441211E0,0.247019E0,0.862737E0 },Yaw = -0.446853E-4});" } ], "assets": [ @@ -93,4 +93,4 @@ "major": 1, "minor": 1 } -} \ No newline at end of file +} From bab3c78cf23d50e80c67ec5cfc65e1fc8894ad76 Mon Sep 17 00:00:00 2001 From: Ylva Selling Date: Mon, 7 Nov 2022 12:53:30 -0500 Subject: [PATCH 56/81] Add target node id to skybrowser topic --- modules/skybrowser/src/targetbrowserpair.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/skybrowser/src/targetbrowserpair.cpp b/modules/skybrowser/src/targetbrowserpair.cpp index b78ab15d12..c90e605277 100644 --- a/modules/skybrowser/src/targetbrowserpair.cpp +++ b/modules/skybrowser/src/targetbrowserpair.cpp @@ -164,6 +164,7 @@ ghoul::Dictionary TargetBrowserPair::dataAsDictionary() const { ghoul::Dictionary res; res.setValue("id", browserId()); + res.setValue("targetId", targetNodeId()); res.setValue("name", browserGuiName()); res.setValue("fov", static_cast(verticalFov())); res.setValue("ra", spherical.x); From 0be950f4bae7bcf102c6e36aff4e3d1b9da1a400 Mon Sep 17 00:00:00 2001 From: Ylva Selling Date: Mon, 7 Nov 2022 12:58:52 -0500 Subject: [PATCH 57/81] Update GUI hash --- data/assets/util/webgui.asset | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/assets/util/webgui.asset b/data/assets/util/webgui.asset index 90dbf44ba6..e7db3d7203 100644 --- a/data/assets/util/webgui.asset +++ b/data/assets/util/webgui.asset @@ -3,7 +3,7 @@ asset.require("./static_server") local guiCustomization = asset.require("customization/gui") -- Select which commit hashes to use for the frontend and backend -local frontendHash = "082a855e6d29359f492ebbc82b625eee56e42e52" +local frontendHash = "b98a6cb556e5e28538fa0221e71123d313046661" local dataProvider = "data.openspaceproject.com/files/webgui" local frontend = asset.syncedResource({ From 2dc6ecb1ae886393dff434fc7314ca992e9519a4 Mon Sep 17 00:00:00 2001 From: Ylva Selling Date: Mon, 7 Nov 2022 13:00:24 -0500 Subject: [PATCH 58/81] Mark functions as const as adressed in PR comment --- modules/skybrowser/src/renderableskytarget.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/skybrowser/src/renderableskytarget.cpp b/modules/skybrowser/src/renderableskytarget.cpp index d9df0120d2..c22c1e56ae 100644 --- a/modules/skybrowser/src/renderableskytarget.cpp +++ b/modules/skybrowser/src/renderableskytarget.cpp @@ -164,12 +164,12 @@ glm::ivec3 RenderableSkyTarget::borderColor() const { return _borderColor; } -glm::dvec3 RenderableSkyTarget::rightVector() { +glm::dvec3 RenderableSkyTarget::rightVector() const { double scaling = (_verticalFov / 70)* static_cast(_size.value()); return scaling * _rightVector; } -glm::dvec3 RenderableSkyTarget::upVector() { +glm::dvec3 RenderableSkyTarget::upVector() const { double scaling = (_verticalFov / 70) * static_cast(_size.value()); return scaling * _upVector; } From e565b9cb2ffd2c57575d82c41cde56665c7aae61 Mon Sep 17 00:00:00 2001 From: Emma Broman Date: Mon, 7 Nov 2022 21:39:12 +0100 Subject: [PATCH 59/81] Prematurely end linear path interpolation if there is not enough precision --- src/navigation/path.cpp | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/src/navigation/path.cpp b/src/navigation/path.cpp index 8337679ee6..19563e35f7 100644 --- a/src/navigation/path.cpp +++ b/src/navigation/path.cpp @@ -217,6 +217,7 @@ void Path::resetPlaybackVariables() { CameraPose Path::linearInterpolatedPose(double distance, double displacement) { ghoul_assert(_type == Type::Linear, "Path type must be linear"); const double relativeDistance = distance / pathLength(); + const glm::dvec3 prevPosToEnd = _prevPose.position - _end.position(); const double remainingDistance = glm::length(prevPosToEnd); CameraPose pose; @@ -230,9 +231,27 @@ CameraPose Path::linearInterpolatedPose(double distance, double displacement) { // Just move along line from the current position to the target const glm::dvec3 lineDir = glm::normalize(prevPosToEnd); pose.position = _prevPose.position - displacement * lineDir; + + double newRemainingDistance = glm::length(pose.position - _end.position()); + double diff = remainingDistance - newRemainingDistance; + // Avoid remaining distances close to zero, or even negative + if (relativeDistance > 0.5 && diff < LengthEpsilon) { + // The positions are too large, so we are not making progress because of + // insufficient precision + LWARNING("Quit camera path prematurely due to insufficient precision"); + _shouldQuit = true; + return _prevPose; + } } pose.rotation = linearPathRotation(relativeDistance); + + if (glm::any(glm::isnan(pose.rotation)) || glm::any(glm::isnan(pose.position))) { + // This should not happen, but guard for it anyways + _shouldQuit = true; + return _prevPose; + } + return pose; } From 7b85209dfc4c91261e381acef2e7d7e8b770dd3d Mon Sep 17 00:00:00 2001 From: Ylva Selling Date: Mon, 7 Nov 2022 16:06:34 -0500 Subject: [PATCH 60/81] Mark functions in header file as const as well --- modules/skybrowser/include/renderableskytarget.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/skybrowser/include/renderableskytarget.h b/modules/skybrowser/include/renderableskytarget.h index 1e4961144e..5c43a68ea7 100644 --- a/modules/skybrowser/include/renderableskytarget.h +++ b/modules/skybrowser/include/renderableskytarget.h @@ -58,8 +58,8 @@ public: static documentation::Documentation Documentation(); void applyRoll(); - glm::dvec3 rightVector(); - glm::dvec3 upVector(); + glm::dvec3 rightVector() const; + glm::dvec3 upVector() const; private: // Properties properties::FloatProperty _crossHairSize; From 2838a9db574a3bd41461b083e5458dccd94d1189 Mon Sep 17 00:00:00 2001 From: Emma Broman Date: Thu, 10 Nov 2022 09:28:08 +0100 Subject: [PATCH 61/81] Fix precision problems when removeing roll from rotation Sometimes led to stuttering --- src/navigation/pathnavigator.cpp | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/src/navigation/pathnavigator.cpp b/src/navigation/pathnavigator.cpp index eac2e4631b..3457a847db 100644 --- a/src/navigation/pathnavigator.cpp +++ b/src/navigation/pathnavigator.cpp @@ -537,18 +537,25 @@ SceneGraphNode* PathNavigator::findNodeNearTarget(const SceneGraphNode* node) { } void PathNavigator::removeRollRotation(CameraPose& pose, double deltaTime) { - const glm::dvec3 anchorPos = anchor()->worldPosition(); + // The actual position for the camera does not really matter. Use the origin, + // to avoid precision problems when we have large values for the position + const glm::dvec3 cameraPos = glm::dvec3(0.0); const glm::dvec3 cameraDir = glm::normalize( pose.rotation * Camera::ViewDirectionCameraSpace ); - const double anchorToPosDistance = glm::distance(anchorPos, pose.position); - const double notTooCloseDistance = deltaTime * anchorToPosDistance; - glm::dvec3 lookAtPos = pose.position + notTooCloseDistance * cameraDir; + + // The actual distance does not really matter either. Just have to far + // enough away from the camera + constexpr double NotTooCloseDistance = 10000.0; + + glm::dvec3 lookAtPos = cameraPos + NotTooCloseDistance * cameraDir; + glm::dquat rollFreeRotation = ghoul::lookAtQuaternion( - pose.position, + cameraPos, lookAtPos, camera()->lookUpVectorWorldSpace() ); + pose.rotation = rollFreeRotation; } From b59f5b51d4710c04891157bf72e00850910a5c93 Mon Sep 17 00:00:00 2001 From: Emma Broman Date: Thu, 10 Nov 2022 09:28:27 +0100 Subject: [PATCH 62/81] Clarify info message when using linear path due to precision issues --- src/navigation/path.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/navigation/path.cpp b/src/navigation/path.cpp index 19563e35f7..46a32982e7 100644 --- a/src/navigation/path.cpp +++ b/src/navigation/path.cpp @@ -724,7 +724,7 @@ Path createPathFromDictionary(const ghoul::Dictionary& dictionary, LINFO( "Switching to a linear path, to avoid problems with precision due to " - "immense path length" + "immense path length or precision problems" ); return createPathFromDictionary(dictionary, Path::Type::Linear); From 94d36bd43ed0cf96282cf9f01148041304f9a2f3 Mon Sep 17 00:00:00 2001 From: Emma Broman Date: Thu, 10 Nov 2022 10:47:30 +0100 Subject: [PATCH 63/81] Update GUI hash (actions panel updates, and skybrowser performance...? ) --- data/assets/util/webgui.asset | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/assets/util/webgui.asset b/data/assets/util/webgui.asset index e7db3d7203..12626bcaa8 100644 --- a/data/assets/util/webgui.asset +++ b/data/assets/util/webgui.asset @@ -3,7 +3,7 @@ asset.require("./static_server") local guiCustomization = asset.require("customization/gui") -- Select which commit hashes to use for the frontend and backend -local frontendHash = "b98a6cb556e5e28538fa0221e71123d313046661" +local frontendHash = "c87b94d6b44f44f049cf33c3b85cdcf38a8c3c9b" local dataProvider = "data.openspaceproject.com/files/webgui" local frontend = asset.syncedResource({ From 0cbb9ec56222d31e26876784627e323fed374c1e Mon Sep 17 00:00:00 2001 From: Micah Acinapura Date: Fri, 11 Nov 2022 14:21:58 -0500 Subject: [PATCH 64/81] fixes for vesta and orionnebula_model spheres --- data/assets/scene/milkyway/objects/orionnebula/nebula.asset | 2 ++ data/assets/scene/solarsystem/missions/dawn/vesta.asset | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/data/assets/scene/milkyway/objects/orionnebula/nebula.asset b/data/assets/scene/milkyway/objects/orionnebula/nebula.asset index 293d4dca4a..7f30e23fbf 100644 --- a/data/assets/scene/milkyway/objects/orionnebula/nebula.asset +++ b/data/assets/scene/milkyway/objects/orionnebula/nebula.asset @@ -53,10 +53,12 @@ local OrionNebulaModel = { Scale = 0.67500000 } }, + InteractionSphere = 0.8, Renderable = { Type = "RenderableModel", GeometryFile = sync .. "orion_nebula.obj", Opacity = 1.0, + BoundingSphereRadius = 35999998699110400/2, DisableFaceCulling = false, SpecularIntensity = 0.0, AmbientIntensity = 0.0, diff --git a/data/assets/scene/solarsystem/missions/dawn/vesta.asset b/data/assets/scene/solarsystem/missions/dawn/vesta.asset index 4c7cf140a2..5e0722f697 100644 --- a/data/assets/scene/solarsystem/missions/dawn/vesta.asset +++ b/data/assets/scene/solarsystem/missions/dawn/vesta.asset @@ -51,7 +51,7 @@ local Vesta = { Renderable = { Type = "RenderableModelProjection", GeometryFile = models .. "VestaComet_5000.obj", - BoundingSphereRadius = 10.0, + BoundingSphereRadius = 262000, Projection = { Sequence = images, SequenceType = "image-sequence", From 175f348933661c6db354b3adc0cf1b41ebc08675 Mon Sep 17 00:00:00 2001 From: Micah Acinapura Date: Mon, 14 Nov 2022 04:27:22 -0500 Subject: [PATCH 65/81] Update to treks assets for shorter filenames (#2311) * Update to treks assets for shorter filenames * Update asset spaces for treks assets --- .../nasa-treks/Apollo_15_Metric_Cam_DEM.asset | 64 ++ .../ColorHillshade.vrt | 53 + .../ColorHillshade.wms} | 0 .../Colorized_Confidence.vrt | 53 + .../Colorized_Confidence.wms} | 0 .../Apollo_15_Metric_Cam_DEM/Grayscale.vrt | 29 + .../Grayscale.wms} | 0 .../Apollo_15_Metric_Cam_DEM/Hillshade.vrt | 29 + .../Hillshade.wms} | 0 ...lo15_MetricCam_ClrShade_Global_1024ppd.vrt | 53 - ...llo_15_Metric_Cam_DEM_ColorHillshade.asset | 28 - ...llo15_MetricCam_ClrConf_Global_1024ppd.vrt | 53 - ..._Metric_Cam_DEM_Colorized_Confidence.asset | 28 - ...Apollo15_MetricCam_Gray_Global_1024ppd.vrt | 29 - .../Apollo_15_Metric_Cam_DEM_Grayscale.asset | 28 - ...pollo15_MetricCam_Shade_Global_1024ppd.vrt | 29 - .../Apollo_15_Metric_Cam_DEM_Hillshade.asset | 28 - ...ollo15_MetricCam_Mosaic_Global_4096ppd.vrt | 29 - .../Apollo_15_Metric_Cam_Image_Mosaic.asset | 28 - .../nasa-treks/Apollo_15_Pan_Cam_DEM.asset | 54 + .../Aristarchus_Plateau_1.vrt | 53 + .../Aristarchus_Plateau_1.wms} | 0 .../Aristarchus_Plateau_2.vrt | 53 + .../Aristarchus_Plateau_2.wms} | 0 .../Tsiolkovskiy_Crater.vrt | 53 + .../Tsiolkovskiy_Crater.wms} | 0 .../Apollo15_PanCam_ClrShade_25N311E_5mp.vrt | 53 - ...Aristarchus_Plateau_1_ColorHillshade.asset | 28 - .../Apollo15_PanCam_ClrConf_25N311E_5mp.vrt | 53 - .../Apollo15_PanCam_ClrConf_25N311E_5mp.wms | 24 - ...rchus_Plateau_1_Colorized_Confidence.asset | 28 - .../Apollo15_PanCam_Slope_25N311E_5mp.vrt | 53 - .../Apollo15_PanCam_Slope_25N311E_5mp.wms | 24 - ...ristarchus_Plateau_1_Colorized_Slope.asset | 28 - .../Apollo15_PanCam_Gray_25N311E_5mp.vrt | 29 - .../Apollo15_PanCam_Gray_25N311E_5mp.wms | 24 - ..._DEM_Aristarchus_Plateau_1_Grayscale.asset | 28 - .../Apollo15_PanCam_Shade_25N311E_5mp.vrt | 29 - .../Apollo15_PanCam_Shade_25N311E_5mp.wms | 24 - ..._DEM_Aristarchus_Plateau_1_Hillshade.asset | 28 - .../Apollo15_PanCam_ClrShade_28N307E_3mp.vrt | 53 - ...Aristarchus_Plateau_2_ColorHillshade.asset | 28 - .../Apollo15_PanCam_ClrConf_28N307E_3mp.vrt | 53 - .../Apollo15_PanCam_ClrConf_28N307E_3mp.wms | 24 - ...rchus_Plateau_2_Colorized_Confidence.asset | 28 - .../Apollo15_PanCam_Slope_28N307E_3mp.vrt | 53 - .../Apollo15_PanCam_Slope_28N307E_3mp.wms | 24 - ...ristarchus_Plateau_2_Colorized_Slope.asset | 28 - .../Apollo15_PanCam_Gray_28N307E_3mp.vrt | 29 - .../Apollo15_PanCam_Gray_28N307E_3mp.wms | 24 - ..._DEM_Aristarchus_Plateau_2_Grayscale.asset | 28 - .../Apollo15_PanCam_Shade_28N307E_3mp.vrt | 29 - .../Apollo15_PanCam_Shade_28N307E_3mp.wms | 24 - ..._DEM_Aristarchus_Plateau_2_Hillshade.asset | 28 - .../Apollo15_PanCam_ClrShade_19S129E_5mp.vrt | 53 - ...M_Tsiolkovskiy_Crater_ColorHillshade.asset | 28 - .../Apollo15_PanCam_ClrConf_19S129E_5mp.vrt | 53 - .../Apollo15_PanCam_ClrConf_19S129E_5mp.wms | 24 - ...lkovskiy_Crater_Colorized_Confidence.asset | 28 - .../Apollo15_PanCam_Slope_19S129E_5mp.vrt | 53 - .../Apollo15_PanCam_Slope_19S129E_5mp.wms | 24 - ..._Tsiolkovskiy_Crater_Colorized_Slope.asset | 28 - .../Apollo15_PanCam_Gray_19S129E_5mp.vrt | 29 - .../Apollo15_PanCam_Gray_19S129E_5mp.wms | 24 - ...am_DEM_Tsiolkovskiy_Crater_Grayscale.asset | 28 - .../Apollo15_PanCam_Shade_19S129E_5mp.vrt | 29 - .../Apollo15_PanCam_Shade_19S129E_5mp.wms | 24 - ...am_DEM_Tsiolkovskiy_Crater_Hillshade.asset | 28 - .../Apollo_15_Pan_Cam_Image_Mosaic.asset | 54 + .../Aristarchus_Plateau_1.vrt | 29 + .../Aristarchus_Plateau_1.wms} | 0 .../Aristarchus_Plateau_2.vrt | 29 + .../Aristarchus_Plateau_2.wms} | 0 .../Tsiolkovskiy_Crater.vrt | 29 + .../Tsiolkovskiy_Crater.wms} | 0 .../Apollo15_PanCam_Mosaic_25N311E_150cmp.vrt | 29 - ...m_Image_Mosaic_Aristarchus_Plateau_1.asset | 28 - .../Apollo15_PanCam_Mosaic_28N307E_1mp.vrt | 29 - ...m_Image_Mosaic_Aristarchus_Plateau_2.asset | 28 - .../Apollo15_PanCam_Mosaic_19S129E_2mp.vrt | 29 - ...Cam_Image_Mosaic_Tsiolkovskiy_Crater.asset | 28 - .../nasa-treks/Apollo_16_Metric_Cam_DEM.asset | 54 + .../Colorized_Confidence.vrt | 53 + .../Colorized_Confidence.wms} | 0 .../Apollo_16_Metric_Cam_DEM/Grayscale.vrt | 29 + .../Grayscale.wms} | 0 .../Apollo_16_Metric_Cam_DEM/Hillshade.vrt | 53 + .../Hillshade.wms} | 0 ...llo16_MetricCam_ClrConf_Global_1024ppd.vrt | 53 - ..._Metric_Cam_DEM_Colorized_Confidence.asset | 28 - ...Apollo16_MetricCam_Gray_Global_1024ppd.vrt | 29 - .../Apollo_16_Metric_Cam_DEM_Grayscale.asset | 28 - ...pollo16_MetricCam_Shade_Global_1024ppd.vrt | 53 - .../Apollo_16_Metric_Cam_DEM_Hillshade.asset | 28 - .../nasa-treks/Apollo_17_Metric_Cam_DEM.asset | 44 + .../ColorHillshade.vrt | 53 + .../ColorHillshade.wms} | 0 .../Apollo_17_Metric_Cam_DEM/Grayscale.vrt | 29 + .../Grayscale.wms} | 0 ...lo17_MetricCam_ClrShade_Global_1024ppd.vrt | 53 - ...llo_17_Metric_Cam_DEM_ColorHillshade.asset | 28 - ...Apollo17_MetricCam_Gray_Global_1024ppd.vrt | 29 - .../Apollo_17_Metric_Cam_DEM_Grayscale.asset | 28 - ...ollo17_MetricCam_Mosaic_Global_3033ppd.vrt | 29 - .../Apollo_17_Metric_Cam_Image_Mosaic.asset | 28 - .../nasa-treks/Apollo_Zone_Metric_Cam.asset | 34 + .../Apollo_Zone_Metric_Cam/Hillshade.vrt | 29 + .../Hillshade.wms} | 0 .../Apollo_Zone_Metric_Cam_DEM.asset | 34 + .../ColorHillshade.vrt | 53 + .../ColorHillshade.wms | 24 + ...lloZone_MetricCam_Shade_Global_1024ppd.vrt | 29 - .../Apollo_Zone_Metric_Cam_Hillshade.asset | 28 - ...loZone_MetricCam_Mosaic_Global_3033ppd.vrt | 29 - .../Apollo_Zone_Metric_Cam_Image_Mosaic.asset | 28 - .../Clem_UVVIS_FeO_Clr_Global_152ppd.vrt | 53 - .../Clementine_UVVIS_FeO_Weight_Percent.asset | 28 - ...VIS_OpticalMaturity_Gray_Global_152ppd.vrt | 29 - .../Clementine_UVVIS_Optical_Maturity.asset | 28 - .../Clem_UVVIS_TiO2_Clr_Global_152ppd.vrt | 53 - ...Clementine_UVVIS_TiO2_Weight_Percent.asset | 28 - .../Clementine_UVVIS_Warped_Color_Ratio.asset | 34 - ...entine_UVVIS_Warp_ClrRatio_Global_200m.vrt | 53 - .../earth/moon/nasa-treks/Global.asset | 220 ++++ .../Apollo_15_Metric_Cam_Image_Mosaic.vrt | 29 + .../Apollo_15_Metric_Cam_Image_Mosaic.wms} | 0 .../Apollo_17_Metric_Cam_Image_Mosaic.vrt | 29 + .../Apollo_17_Metric_Cam_Image_Mosaic.wms} | 0 .../Apollo_Zone_Metric_Cam_Image_Mosaic.vrt | 29 + .../Apollo_Zone_Metric_Cam_Image_Mosaic.wms} | 0 .../Clementine_UVVIS_FeO_Weight_Percent.vrt | 53 + .../Clementine_UVVIS_FeO_Weight_Percent.wms} | 0 .../Clementine_UVVIS_Optical_Maturity.vrt | 29 + .../Clementine_UVVIS_Optical_Maturity.wms} | 0 .../Clementine_UVVIS_TiO2_Weight_Percent.vrt | 53 + .../Clementine_UVVIS_TiO2_Weight_Percent.wms} | 0 .../Clementine_UVVIS_Warped_Color_Ratio.vrt | 53 + .../Clementine_UVVIS_Warped_Color_Ratio.wms} | 0 .../Global/Kaguya_TC_Ortho_Mosaic.vrt | 29 + .../Kaguya_TC_Ortho_Mosaic.wms} | 0 ...nently_Shadowed_Regions_Northpole_240m.vrt | 29 + ...ently_Shadowed_Regions_Northpole_240m.wms} | 0 ...nently_Shadowed_Regions_Southpole_240m.vrt | 29 + ...ently_Shadowed_Regions_Southpole_240m.wms} | 0 .../nasa-treks/Global/LP_NS_H_Abundance.vrt | 53 + .../LP_NS_H_Abundance.wms} | 0 ...aic_of_Mare_Unit_in_Schrodinger_Crater.vrt | 29 + ...ic_of_Mare_Unit_in_Schrodinger_Crater.wms} | 0 ...Mosaic_of_Massif_in_Schrodinger_Crater.vrt | 29 + ...osaic_of_Massif_in_Schrodinger_Crater.wms} | 0 .../Global/LRO_Diviner_CF_Mosaic.vrt | 53 + .../LRO_Diviner_CF_Mosaic.wms} | 0 ...A_and_Kaguya_TC_Color_Hillshade_512ppd.vrt | 53 + ..._and_Kaguya_TC_Color_Hillshade_512ppd.wms} | 0 ...RO_LOLA_and_Kaguya_TC_Hillshade_512ppd.vrt | 29 + ...O_LOLA_and_Kaguya_TC_Hillshade_512ppd.wms} | 0 .../Global/LRO_LROC_WAC_Image_Mosaic.vrt | 29 + .../LRO_LROC_WAC_Image_Mosaic.wms} | 0 .../LRO_Mini-RF_First_Stokes_Parameter.vrt | 29 + .../LRO_Mini-RF_First_Stokes_Parameter.wms} | 0 .../nasa-treks/Global/LRO_WAC_Mosaic_v2.vrt | 29 + .../LRO_WAC_Mosaic_v2.wms} | 0 .../Kaguya_LGM2011_Freeair_Gravity.asset | 44 + .../Colorized.vrt | 53 + .../Colorized.wms} | 0 .../Greyscale.vrt | 29 + .../Greyscale.wms} | 0 ...rGravity_Colorized_Global_mgal3m_20ppd.vrt | 53 - ...ya_LGM2011_Freeair_Gravity_Colorized.asset | 28 - ...reeairGravity_Gray_Global_mgal3m_20ppd.vrt | 29 - ...ya_LGM2011_Freeair_Gravity_Greyscale.asset | 28 - .../Kaguya_LGM2011_Surface_Gravity.asset | 44 + .../Colorized.vrt | 53 + .../Colorized.wms} | 0 .../Greyscale.vrt | 29 + .../Greyscale.wms} | 0 ...eGravity_Colorized_Global_mgal3m_20ppd.vrt | 53 - ...ya_LGM2011_Surface_Gravity_Colorized.asset | 28 - ...urfaceGravity_Gray_Global_mgal3m_20ppd.vrt | 29 - ...ya_LGM2011_Surface_Gravity_Greyscale.asset | 28 - .../Kaguya_TC_Ortho_Mosaic.asset | 28 - .../Kaguya_TCortho_Mosaic_Global_4096ppd.vrt | 29 - ...ntly_Shadowed_Regions_Northpole_240m.asset | 28 - ...LRO_LOLA_Illumination_NPole65N_240m_EQ.vrt | 29 - ...ntly_Shadowed_Regions_Southpole_240m.asset | 28 - ...LRO_LOLA_Illumination_SPole65S_240m_EQ.vrt | 29 - .../nasa-treks/LOLA_Roughness_16ppd.asset | 34 + .../LOLA_Roughness_16ppd/Colorized.vrt | 53 + .../Colorized.wms} | 0 .../LOLA_Roughness_16ppd_Colorized.asset | 28 - .../LRO_LOLA_ClrRoughness_Global_16ppd.vrt | 53 - .../moon/nasa-treks/LOLA_Slope_16ppd.asset | 34 + .../nasa-treks/LOLA_Slope_16ppd/Colorized.vrt | 53 + .../Colorized.wms} | 0 .../LOLA_Slope_16ppd_Colorized.asset | 28 - .../LRO_LOLA_ClrSlope_Global_16ppd.vrt | 53 - .../LOLA_Slope_Northpole_120m.asset | 34 + .../LOLA_Slope_Northpole_120m/Colorized.vrt | 53 + .../Colorized.wms} | 0 .../LOLA_Slope_Northpole_120m_Colorized.asset | 28 - .../LRO_LOLA_ClrSlope_NPole75N_120m_EQ.vrt | 53 - .../LOLA_Slope_Southpole_120m.asset | 34 + .../LOLA_Slope_Southpole_120m/Colorized.vrt | 53 + .../Colorized.wms} | 0 .../LOLA_Slope_Southpole_120m_Colorized.asset | 28 - .../LRO_LOLA_ClrSlope_SPole75S_120m_EQ.vrt | 53 - .../LOLA_and_TC_Stereo_DEM_Merge_512ppd.asset | 34 + .../Shade.vrt | 29 + .../Shade.wms} | 0 ...and_TC_Stereo_DEM_Merge_512ppd_Shade.asset | 28 - .../LRO_LrocKaguya_Shade_60N60S_512ppd.vrt | 29 - .../LP_NS_H_Abundance/LP_NS_H_Abundance.asset | 28 - .../LP_NS_H_Clr_Global_2ppd.vrt | 53 - ...c_of_Mare_Unit_in_Schrodinger_Crater.asset | 28 - .../SchrodingerCraterMareUnit_50cmV1.0.eq.vrt | 29 - ...saic_of_Massif_in_Schrodinger_Crater.asset | 28 - .../SchrodingerCraterMassif_50cmV1.0.eq.vrt | 29 - ..._of_Region_Inside_Schrodinger_Crater.asset | 34 + .../50cmpx.vrt | 29 + .../50cmpx.wms} | 0 ...ion_Inside_Schrodinger_Crater_50cmpx.asset | 28 - .../SchrodingerMareNorth.eq.vrt | 29 - ...trolled_Mosaic_of_Schrodinger_Crater.asset | 34 + .../10mpx.vrt | 29 + .../10mpx.wms} | 0 ...d_Mosaic_of_Schrodinger_Crater_10mpx.asset | 28 - .../allSchrodinger_10mV1.0.eq.vrt | 29 - .../nasa-treks/LRO_Diviner_CF_Mosaic.asset | 34 + .../LRO_Diviner_CF_Mosaic/Filled.vrt | 53 + .../Filled.wms} | 0 .../LRO_Diviner_CF_Mosaic.asset | 28 - .../LRO_Diviner_CF_NoFill_Global_8ppd.vrt | 53 - .../LRO_Diviner_CF_Mosaic_128ppd.asset | 34 + .../Colorized.vrt | 53 + .../Colorized.wms} | 0 .../LRO_DIVINER_ClrCF_Global_128ppd.vrt | 53 - ...O_Diviner_CF_Mosaic_128ppd_Colorized.asset | 28 - .../LRO_Diviner_CF_Filled_Global_8ppd.vrt | 53 - .../LRO_Diviner_CF_Mosaic_Filled.asset | 28 - .../LRO_Diviner_Surface_Temp_Avg.asset | 34 + .../LRO_Diviner_Surface_Temp_Avg/Color.vrt | 53 + .../Color.wms} | 0 .../LRO_Diviner_ST_Avg_Clr_Global_32ppd.vrt | 53 - .../LRO_Diviner_Surface_Temp_Avg_Color.asset | 28 - .../LRO_Diviner_Surface_Temp_Normal_Avg.asset | 34 + .../Color.vrt | 53 + .../Color.wms} | 0 .../LRO_Diviner_STN_Avg_Clr_Global_32ppd.vrt | 53 - ...iviner_Surface_Temp_Normal_Avg_Color.asset | 28 - ...er_Surface_Temperature_Mosaic_128ppd.asset | 34 + .../Colorized.vrt | 53 + .../Colorized.wms} | 0 ...R_ClrRockFreeSurfaceTemp_Global_128ppd.vrt | 53 - ..._Temperature_Mosaic_128ppd_Colorized.asset | 28 - .../earth/moon/nasa-treks/LRO_LOLA_DEM.asset | 94 ++ .../LRO_LOLA_DEM/ColorHillshade.vrt | 53 + .../ColorHillshade.wms} | 0 .../LRO_LOLA_DEM/ColorHillshade_v6.vrt | 53 + .../ColorHillshade_v6.wms} | 0 .../moon/nasa-treks/LRO_LOLA_DEM/Coverage.vrt | 53 + .../Coverage.wms} | 0 .../nasa-treks/LRO_LOLA_DEM/Hillshade.vrt | 29 + .../Hillshade.wms} | 0 .../moon/nasa-treks/LRO_LOLA_DEM/N_Pole.vrt | 53 + .../N_Pole.wms} | 0 .../nasa-treks/LRO_LOLA_DEM/No_Data_Mask.vrt | 53 + .../No_Data_Mask.wms} | 0 .../moon/nasa-treks/LRO_LOLA_DEM/S_Pole.vrt | 53 + .../S_Pole.wms} | 0 .../LRO_LOLA_ClrShade_Global_128ppd_v04.vrt | 53 - .../LRO_LOLA_DEM_ColorHillshade.asset | 28 - .../LRO_LOLA_ClrShade_Global_256ppd_v06.vrt | 53 - .../LRO_LOLA_DEM_ColorHillshade_v6.asset | 28 - .../LRO_LOLA_Coverage_Global_128ppd_v04.vrt | 53 - .../LRO_LOLA_DEM_Coverage.asset | 28 - .../LRO_LOLA_DEM_Hillshade.asset | 28 - .../LRO_LOLA_Shade_Global_128ppd_v04.vrt | 29 - .../LRO_LOLA_Shade_Global_128ppd_v04.wms | 24 - .../LRO_LOLA_Shade_Global_256ppd_v06.vrt | 29 - .../LRO_LOLA_ClrShade_NPole75_30mp_v04_EQ.vrt | 53 - .../LRO_LOLA_ClrShade_NPole75_30mp_v04_EQ.wms | 24 - ...OLA_DEM_N_Pole_75_deg_ColorHillshade.asset | 28 - ...LRO_LOLA_DEM_N_Pole_75_deg_Hillshade.asset | 28 - .../LRO_LOLA_Shade_NPole75_30mp_v04_EQ.vrt | 29 - .../LRO_LOLA_Shade_NPole75_30mp_v04_EQ.wms | 24 - .../LRO_LOLA_ClrShade_NPole875_5mp_v04_EQ.vrt | 53 - ...A_DEM_N_Pole_87.5_deg_ColorHillshade.asset | 28 - ...O_LOLA_DEM_N_Pole_87.5_deg_Hillshade.asset | 28 - .../LRO_LOLA_Shade_NPole875_5mp_v04_EQ.vrt | 29 - .../LRO_LOLA_Shade_NPole875_5mp_v04_EQ.wms | 24 - .../LRO_LOLA_DEM_No_Data_Mask.asset | 28 - .../LRO_LOLA_NoDataMask_Global_128ppd_v04.vrt | 53 - .../LRO_LOLA_ClrShade_SPole75_30mp_v04_EQ.vrt | 53 - .../LRO_LOLA_ClrShade_SPole75_30mp_v04_EQ.wms | 24 - ...OLA_DEM_S_Pole_75_deg_ColorHillshade.asset | 28 - ...LRO_LOLA_DEM_S_Pole_75_deg_Hillshade.asset | 28 - .../LRO_LOLA_Shade_SPole75_30mp_v04_EQ.vrt | 29 - .../LRO_LOLA_Shade_SPole75_30mp_v04_EQ.wms | 24 - .../LRO_LOLA_ClrShade_SPole875_5mp_v04_EQ.vrt | 53 - ...A_DEM_S_Pole_87.5_deg_ColorHillshade.asset | 28 - ...O_LOLA_DEM_S_Pole_87.5_deg_Hillshade.asset | 28 - .../LRO_LOLA_Shade_SPole875_5mp_v04_EQ.vrt | 29 - .../LRO_LOLA_Shade_SPole875_5mp_v04_EQ.wms | 24 - ..._LOLAKaguya_ClrHillshade_60N60S_512ppd.vrt | 53 - ...and_Kaguya_TC_Color_Hillshade_512ppd.asset | 28 - ...LRO_LOLAKaguya_Hillshade_60N60S_512ppd.vrt | 29 - ..._LOLA_and_Kaguya_TC_Hillshade_512ppd.asset | 28 - .../LRO_LROC_Crater_Abundance.asset | 254 +++++ .../Aitken_Crater.vrt | 53 + .../Aitken_Crater.wms} | 0 .../Alphonsus_Crater.vrt | 53 + .../Alphonsus_Crater.wms} | 0 .../Anaxagoras_Crater.vrt | 53 + .../Anaxagoras_Crater.wms} | 0 .../LRO_LROC_Crater_Abundance/Apollo_15.vrt | 53 + .../Apollo_15.wms} | 0 .../LRO_LROC_Crater_Abundance/Apollo_16.vrt | 53 + .../Apollo_16.wms} | 0 .../Apollo_Basin.vrt | 53 + .../Apollo_Basin.wms} | 0 .../Aristarchus_1.vrt | 53 + .../Aristarchus_1.wms} | 0 .../Aristarchus_2.vrt | 53 + .../Aristarchus_2.wms} | 0 .../Balmer_Basin.vrt | 53 + .../Balmer_Basin.wms} | 0 .../Bullialdus_Crater.vrt | 53 + .../Bullialdus_Crater.wms} | 0 .../Gruithuisen_Domes.vrt | 53 + .../Gruithuisen_Domes.wms} | 0 .../LRO_LROC_Crater_Abundance/Hertzsprung.vrt | 53 + .../Hertzsprung.wms} | 0 .../Hortensius_Domes.vrt | 53 + .../Hortensius_Domes.wms} | 0 .../LRO_LROC_Crater_Abundance/King_Crater.vrt | 53 + .../King_Crater.wms} | 0 .../Lichtenberg_Crater.vrt | 53 + .../Lichtenberg_Crater.wms} | 0 .../Mare_Crisium.vrt | 53 + .../Mare_Crisium.wms} | 0 .../Montes_Pyrenaeus.vrt | 53 + .../Montes_Pyrenaeus.wms} | 0 .../LRO_LROC_Crater_Abundance/Orientale_1.vrt | 53 + .../Orientale_1.wms} | 0 .../Plato_Ejecta.vrt | 53 + .../Plato_Ejecta.wms} | 0 .../South_Pole-Aitken_Basin_Interior.vrt | 53 + .../South_Pole-Aitken_Basin_Interior.wms} | 0 .../Stratton_Dewar_High_Fe_Anomaly.vrt | 53 + .../Stratton_Dewar_High_Fe_Anomaly.wms} | 0 .../Sulpicius_Gallus.vrt | 53 + .../Sulpicius_Gallus.wms} | 0 .../Tycho_Crater.vrt | 53 + .../Tycho_Crater.wms} | 0 ..._LROC_Crater_Abundance_Aitken_Crater.asset | 28 - .../LRO_NAC_CratAbnd_17S173E_150cmp.vrt | 53 - ...OC_Crater_Abundance_Alphonsus_Crater.asset | 28 - .../LRO_NAC_CratAbnd_13S358E_2mp.vrt | 53 - ...C_Crater_Abundance_Anaxagoras_Crater.asset | 28 - .../LRO_NAC_CratAbnd_73N350E_150cmp.vrt | 53 - .../LRO_LROC_Crater_Abundance_Apollo_15.asset | 28 - .../LRO_NAC_CratAbnd_26N004E_150cmp.vrt | 53 - .../LRO_LROC_Crater_Abundance_Apollo_16.asset | 28 - .../LRO_NAC_CratAbnd_09S015E_150cmp.vrt | 53 - ...O_LROC_Crater_Abundance_Apollo_Basin.asset | 28 - .../LRO_NAC_CratAbnd_37S206E_150cmp.vrt | 53 - ..._LROC_Crater_Abundance_Aristarchus_1.asset | 28 - .../LRO_NAC_CratAbnd_25N311E_2mp.vrt | 53 - ..._LROC_Crater_Abundance_Aristarchus_2.asset | 28 - .../LRO_NAC_CratAbnd_28N307E_150cmp.vrt | 53 - ...O_LROC_Crater_Abundance_Balmer_Basin.asset | 28 - .../LRO_NAC_CratAbnd_19S070E_150cmp.vrt | 53 - ...C_Crater_Abundance_Bullialdus_Crater.asset | 28 - .../LRO_NAC_CratAbnd_20S337E_400cmp.vrt | 53 - ...C_Crater_Abundance_Gruithuisen_Domes.asset | 28 - .../LRO_NAC_CratAbnd_36N320E_2mp.vrt | 53 - .../LRO_LROC_Crater_Abundance_Hazard.asset | 254 +++++ .../Aitken_Crater.vrt | 53 + .../Aitken_Crater.wms} | 0 .../Alphonsus_Crater.vrt | 53 + .../Alphonsus_Crater.wms} | 0 .../Anaxagoras_Crater.vrt | 53 + .../Anaxagoras_Crater.wms} | 0 .../Apollo_15.vrt | 53 + .../Apollo_15.wms} | 0 .../Apollo_16.vrt | 53 + .../Apollo_16.wms} | 0 .../Apollo_Basin.vrt | 53 + .../Apollo_Basin.wms} | 0 .../Aristarchus_1.vrt | 53 + .../Aristarchus_1.wms} | 0 .../Aristarchus_2.vrt | 53 + .../Aristarchus_2.wms} | 0 .../Balmer_Basin.vrt | 53 + .../Balmer_Basin.wms} | 0 .../Bullialdus_Crater.vrt | 53 + .../Bullialdus_Crater.wms} | 0 .../Gruithuisen_Domes.vrt | 53 + .../Gruithuisen_Domes.wms} | 0 .../Hertzsprung.vrt | 53 + .../Hertzsprung.wms} | 0 .../Hortensius_Domes.vrt | 53 + .../Hortensius_Domes.wms} | 0 .../King_Crater.vrt | 53 + .../King_Crater.wms} | 0 .../Lichtenberg_Crater.vrt | 53 + .../Lichtenberg_Crater.wms} | 0 .../Mare_Crisium.vrt | 53 + .../Mare_Crisium.wms} | 0 .../Montes_Pyrenaeus.vrt | 53 + .../Montes_Pyrenaeus.wms} | 0 .../Orientale_1.vrt | 53 + .../Orientale_1.wms} | 0 .../Plato_Ejecta.vrt | 53 + .../Plato_Ejecta.wms} | 0 .../South_Pole-Aitken_Basin_Interior.vrt | 53 + .../South_Pole-Aitken_Basin_Interior.wms} | 0 .../Stratton_Dewar_High_Fe_Anomaly.vrt | 53 + .../Stratton_Dewar_High_Fe_Anomaly.wms} | 0 .../Sulpicius_Gallus.vrt | 53 + .../Sulpicius_Gallus.wms} | 0 .../Tycho_Crater.vrt | 53 + .../Tycho_Crater.wms} | 0 ...rater_Abundance_Hazard_Aitken_Crater.asset | 28 - .../LRO_NAC_CratAbndHaz_17S173E_150cmp.vrt | 53 - ...er_Abundance_Hazard_Alphonsus_Crater.asset | 28 - .../LRO_NAC_CratAbndHaz_13S358E_2mp.vrt | 53 - ...r_Abundance_Hazard_Anaxagoras_Crater.asset | 28 - .../LRO_NAC_CratAbndHaz_73N350E_150cmp.vrt | 53 - ...OC_Crater_Abundance_Hazard_Apollo_15.asset | 28 - .../LRO_NAC_CratAbndHaz_26N004E_150cmp.vrt | 53 - ...OC_Crater_Abundance_Hazard_Apollo_16.asset | 28 - .../LRO_NAC_CratAbndHaz_09S015E_150cmp.vrt | 53 - ...Crater_Abundance_Hazard_Apollo_Basin.asset | 28 - .../LRO_NAC_CratAbndHaz_37S206E_150cmp.vrt | 53 - ...rater_Abundance_Hazard_Aristarchus_1.asset | 28 - .../LRO_NAC_CratAbndHaz_25N311E_2mp.vrt | 53 - ...rater_Abundance_Hazard_Aristarchus_2.asset | 28 - .../LRO_NAC_CratAbndHaz_28N307E_150cmp.vrt | 53 - ...Crater_Abundance_Hazard_Balmer_Basin.asset | 28 - .../LRO_NAC_CratAbndHaz_19S070E_150cmp.vrt | 53 - ...r_Abundance_Hazard_Bullialdus_Crater.asset | 28 - .../LRO_NAC_CratAbndHaz_20S337E_400cmp.vrt | 53 - ...r_Abundance_Hazard_Gruithuisen_Domes.asset | 28 - .../LRO_NAC_CratAbndHaz_36N320E_2mp.vrt | 53 - ..._Crater_Abundance_Hazard_Hertzsprung.asset | 28 - .../LRO_NAC_CratAbndHaz_00N234E_150cmp.vrt | 53 - ...er_Abundance_Hazard_Hortensius_Domes.asset | 28 - .../LRO_NAC_CratAbndHaz_08N332E_2mp.vrt | 53 - ..._Crater_Abundance_Hazard_King_Crater.asset | 28 - .../LRO_NAC_CratAbndHaz_06N120E_200cmp.vrt | 53 - ..._Abundance_Hazard_Lichtenberg_Crater.asset | 28 - .../LRO_NAC_CratAbndHaz_32N292E_2mp.vrt | 53 - ...Crater_Abundance_Hazard_Mare_Crisium.asset | 28 - .../LRO_NAC_CratAbndHaz_10N058E_150cmp.vrt | 53 - ...er_Abundance_Hazard_Montes_Pyrenaeus.asset | 28 - .../LRO_NAC_CratAbndHaz_16S041E_150cmp.vrt | 53 - ..._Crater_Abundance_Hazard_Orientale_1.asset | 28 - .../LRO_NAC_CratAbndHaz_26S265E_200cmp.vrt | 53 - ...Crater_Abundance_Hazard_Plato_Ejecta.asset | 28 - .../LRO_NAC_CratAbndHaz_53N354E_150cmp.vrt | 53 - ...ard_South_Pole-Aitken_Basin_Interior.asset | 28 - .../LRO_NAC_CratAbndHaz_60S200E_150cmp.vrt | 53 - ...ard_Stratton_(Dewar)_High_Fe_Anomaly.asset | 28 - .../LRO_NAC_CratAbndHaz_02S167E_150cmp.vrt | 53 - ...er_Abundance_Hazard_Sulpicius_Gallus.asset | 28 - .../LRO_NAC_CratAbndHaz_20N010E_2mp.vrt | 53 - ...Crater_Abundance_Hazard_Tycho_Crater.asset | 28 - .../LRO_NAC_CratAbndHaz_43S349E_150cmp.vrt | 53 - ...RO_LROC_Crater_Abundance_Hertzsprung.asset | 28 - .../LRO_NAC_CratAbnd_00N234E_150cmp.vrt | 53 - ...OC_Crater_Abundance_Hortensius_Domes.asset | 28 - .../LRO_NAC_CratAbnd_08N332E_2mp.vrt | 53 - ...RO_LROC_Crater_Abundance_King_Crater.asset | 28 - .../LRO_NAC_CratAbnd_06N120E_200cmp.vrt | 53 - ..._Crater_Abundance_Lichtenberg_Crater.asset | 28 - .../LRO_NAC_CratAbnd_32N292E_2mp.vrt | 53 - ...O_LROC_Crater_Abundance_Mare_Crisium.asset | 28 - .../LRO_NAC_CratAbnd_10N058E_150cmp.vrt | 53 - ...OC_Crater_Abundance_Montes_Pyrenaeus.asset | 28 - .../LRO_NAC_CratAbnd_16S041E_150cmp.vrt | 53 - ...RO_LROC_Crater_Abundance_Orientale_1.asset | 28 - .../LRO_NAC_CratAbnd_26S265E_200cmp.vrt | 53 - ...O_LROC_Crater_Abundance_Plato_Ejecta.asset | 28 - .../LRO_NAC_CratAbnd_53N354E_150cmp.vrt | 53 - ...nce_South_Pole-Aitken_Basin_Interior.asset | 28 - .../LRO_NAC_CratAbnd_60S200E_150cmp.vrt | 53 - ...nce_Stratton_(Dewar)_High_Fe_Anomaly.asset | 28 - .../LRO_NAC_CratAbnd_02S167E_150cmp.vrt | 53 - ...OC_Crater_Abundance_Sulpicius_Gallus.asset | 28 - .../LRO_NAC_CratAbnd_20N010E_2mp.vrt | 53 - ...O_LROC_Crater_Abundance_Tycho_Crater.asset | 28 - .../LRO_NAC_CratAbnd_43S349E_150cmp.vrt | 53 - .../nasa-treks/LRO_LROC_Crater_Density.asset | 254 +++++ .../LRO_LROC_Crater_Density/Aitken_Crater.vrt | 53 + .../Aitken_Crater.wms} | 0 .../Alphonsus_Crater.vrt | 53 + .../Alphonsus_Crater.wms} | 0 .../Anaxagoras_Crater.vrt | 53 + .../Anaxagoras_Crater.wms} | 0 .../LRO_LROC_Crater_Density/Apollo_15.vrt | 53 + .../Apollo_15.wms} | 0 .../LRO_LROC_Crater_Density/Apollo_16.vrt | 53 + .../Apollo_16.wms} | 0 .../LRO_LROC_Crater_Density/Apollo_Basin.vrt | 53 + .../Apollo_Basin.wms} | 0 .../LRO_LROC_Crater_Density/Aristarchus_1.vrt | 53 + .../Aristarchus_1.wms} | 0 .../LRO_LROC_Crater_Density/Aristarchus_2.vrt | 53 + .../Aristarchus_2.wms} | 0 .../LRO_LROC_Crater_Density/Balmer_Basin.vrt | 53 + .../Balmer_Basin.wms} | 0 .../Bullialdus_Crater.vrt | 53 + .../Bullialdus_Crater.wms} | 0 .../Gruithuisen_Domes.vrt | 53 + .../Gruithuisen_Domes.wms} | 0 .../LRO_LROC_Crater_Density/Hertzsprung.vrt | 53 + .../Hertzsprung.wms} | 0 .../Hortensius_Domes.vrt | 53 + .../Hortensius_Domes.wms} | 0 .../LRO_LROC_Crater_Density/King_Crater.vrt | 53 + .../King_Crater.wms} | 0 .../Lichtenberg_Crater.vrt | 53 + .../Lichtenberg_Crater.wms} | 0 .../LRO_LROC_Crater_Density/Mare_Crisium.vrt | 53 + .../Mare_Crisium.wms} | 0 .../Montes_Pyrenaeus.vrt | 53 + .../Montes_Pyrenaeus.wms} | 0 .../LRO_LROC_Crater_Density/Orientale_1.vrt | 53 + .../Orientale_1.wms} | 0 .../LRO_LROC_Crater_Density/Plato_Ejecta.vrt | 53 + .../Plato_Ejecta.wms} | 0 .../South_Pole-Aitken_Basin_Interior.vrt | 53 + .../South_Pole-Aitken_Basin_Interior.wms} | 0 .../Stratton_Dewar_High_Fe_Anomaly.vrt | 53 + .../Stratton_Dewar_High_Fe_Anomaly.wms} | 0 .../Sulpicius_Gallus.vrt | 53 + .../Sulpicius_Gallus.wms} | 0 .../LRO_LROC_Crater_Density/Tycho_Crater.vrt | 53 + .../Tycho_Crater.wms} | 0 ...RO_LROC_Crater_Density_Aitken_Crater.asset | 28 - .../LRO_NAC_CratDen_17S173E_150cmp.vrt | 53 - ...LROC_Crater_Density_Alphonsus_Crater.asset | 28 - .../LRO_NAC_CratDen_13S358E_2mp.vrt | 53 - ...ROC_Crater_Density_Anaxagoras_Crater.asset | 28 - .../LRO_NAC_CratDen_73N350E_150cmp.vrt | 53 - .../LRO_LROC_Crater_Density_Apollo_15.asset | 28 - .../LRO_NAC_CratDen_26N004E_150cmp.vrt | 53 - .../LRO_LROC_Crater_Density_Apollo_16.asset | 28 - .../LRO_NAC_CratDen_09S015E_150cmp.vrt | 53 - ...LRO_LROC_Crater_Density_Apollo_Basin.asset | 28 - .../LRO_NAC_CratDen_37S206E_150cmp.vrt | 53 - ...RO_LROC_Crater_Density_Aristarchus_1.asset | 28 - .../LRO_NAC_CratDen_25N311E_2mp.vrt | 53 - ...RO_LROC_Crater_Density_Aristarchus_2.asset | 28 - .../LRO_NAC_CratDen_28N307E_150cmp.vrt | 53 - ...LRO_LROC_Crater_Density_Balmer_Basin.asset | 28 - .../LRO_NAC_CratDen_19S070E_150cmp.vrt | 53 - ...ROC_Crater_Density_Bullialdus_Crater.asset | 28 - .../LRO_NAC_CratDen_20S337E_400cmp.vrt | 53 - ...ROC_Crater_Density_Gruithuisen_Domes.asset | 28 - .../LRO_NAC_CratDen_36N320E_2mp.vrt | 53 - .../LRO_LROC_Crater_Density_Hazard.asset | 254 +++++ .../Aitken_Crater.vrt | 53 + .../Aitken_Crater.wms} | 0 .../Alphonsus_Crater.vrt | 53 + .../Alphonsus_Crater.wms} | 0 .../Anaxagoras_Crater.vrt | 53 + .../Anaxagoras_Crater.wms} | 0 .../Apollo_15.vrt | 53 + .../Apollo_15.wms} | 0 .../Apollo_16.vrt | 53 + .../Apollo_16.wms} | 0 .../Apollo_Basin.vrt | 53 + .../Apollo_Basin.wms} | 0 .../Aristarchus_1.vrt | 53 + .../Aristarchus_1.wms} | 0 .../Aristarchus_2.vrt | 53 + .../Aristarchus_2.wms} | 0 .../Balmer_Basin.vrt | 53 + .../Balmer_Basin.wms} | 0 .../Bullialdus_Crater.vrt | 53 + .../Bullialdus_Crater.wms} | 0 .../Gruithuisen_Domes.vrt | 53 + .../Gruithuisen_Domes.wms} | 0 .../Hertzsprung.vrt | 53 + .../Hertzsprung.wms} | 0 .../Hortensius_Domes.vrt | 53 + .../Hortensius_Domes.wms} | 0 .../King_Crater.vrt | 53 + .../King_Crater.wms} | 0 .../Lichtenberg_Crater.vrt | 53 + .../Lichtenberg_Crater.wms} | 0 .../Mare_Crisium.vrt | 53 + .../Mare_Crisium.wms} | 0 .../Montes_Pyrenaeus.vrt | 53 + .../Montes_Pyrenaeus.wms} | 0 .../Orientale_1.vrt | 53 + .../Orientale_1.wms} | 0 .../Plato_Ejecta.vrt | 53 + .../Plato_Ejecta.wms} | 0 .../South_Pole-Aitken_Basin_Interior.vrt | 53 + .../South_Pole-Aitken_Basin_Interior.wms} | 0 .../Stratton_Dewar_High_Fe_Anomaly.vrt | 53 + .../Stratton_Dewar_High_Fe_Anomaly.wms} | 0 .../Sulpicius_Gallus.vrt | 53 + .../Sulpicius_Gallus.wms} | 0 .../Tycho_Crater.vrt | 53 + .../Tycho_Crater.wms} | 0 ..._Crater_Density_Hazard_Aitken_Crater.asset | 28 - .../LRO_NAC_CratDenHaz_17S173E_150cmp.vrt | 53 - ...ater_Density_Hazard_Alphonsus_Crater.asset | 28 - .../LRO_NAC_CratDenHaz_13S358E_2mp.vrt | 53 - ...ter_Density_Hazard_Anaxagoras_Crater.asset | 28 - .../LRO_NAC_CratDenHaz_73N350E_150cmp.vrt | 53 - ...LROC_Crater_Density_Hazard_Apollo_15.asset | 28 - .../LRO_NAC_CratDenHaz_26N004E_150cmp.vrt | 53 - ...LROC_Crater_Density_Hazard_Apollo_16.asset | 28 - .../LRO_NAC_CratDenHaz_09S015E_150cmp.vrt | 53 - ...C_Crater_Density_Hazard_Apollo_Basin.asset | 28 - .../LRO_NAC_CratDenHaz_37S206E_150cmp.vrt | 53 - ..._Crater_Density_Hazard_Aristarchus_1.asset | 28 - .../LRO_NAC_CratDenHaz_25N311E_2mp.vrt | 53 - ..._Crater_Density_Hazard_Aristarchus_2.asset | 28 - .../LRO_NAC_CratDenHaz_28N307E_150cmp.vrt | 53 - ...C_Crater_Density_Hazard_Balmer_Basin.asset | 28 - .../LRO_NAC_CratDenHaz_19S070E_150cmp.vrt | 53 - ...ter_Density_Hazard_Bullialdus_Crater.asset | 28 - .../LRO_NAC_CratDenHaz_20S337E_400cmp.vrt | 53 - ...ter_Density_Hazard_Gruithuisen_Domes.asset | 28 - .../LRO_NAC_CratDenHaz_36N320E_2mp.vrt | 53 - ...OC_Crater_Density_Hazard_Hertzsprung.asset | 28 - .../LRO_NAC_CratDenHaz_00N234E_150cmp.vrt | 53 - ...ater_Density_Hazard_Hortensius_Domes.asset | 28 - .../LRO_NAC_CratDenHaz_08N332E_2mp.vrt | 53 - ...OC_Crater_Density_Hazard_King_Crater.asset | 28 - .../LRO_NAC_CratDenHaz_06N120E_200cmp.vrt | 53 - ...er_Density_Hazard_Lichtenberg_Crater.asset | 28 - .../LRO_NAC_CratDenHaz_32N292E_2mp.vrt | 53 - ...C_Crater_Density_Hazard_Mare_Crisium.asset | 28 - .../LRO_NAC_CratDenHaz_10N058E_150cmp.vrt | 53 - ...ater_Density_Hazard_Montes_Pyrenaeus.asset | 28 - .../LRO_NAC_CratDenHaz_16S041E_150cmp.vrt | 53 - ...OC_Crater_Density_Hazard_Orientale_1.asset | 28 - .../LRO_NAC_CratDenHaz_26S265E_200cmp.vrt | 53 - ...C_Crater_Density_Hazard_Plato_Ejecta.asset | 28 - .../LRO_NAC_CratDenHaz_53N354E_150cmp.vrt | 53 - ...ard_South_Pole-Aitken_Basin_Interior.asset | 28 - .../LRO_NAC_CratDenHaz_60S200E_150cmp.vrt | 53 - ...ard_Stratton_(Dewar)_High_Fe_Anomaly.asset | 28 - .../LRO_NAC_CratDenHaz_02S167E_150cmp.vrt | 53 - ...ater_Density_Hazard_Sulpicius_Gallus.asset | 28 - .../LRO_NAC_CratDenHaz_20N010E_2mp.vrt | 53 - ...C_Crater_Density_Hazard_Tycho_Crater.asset | 28 - .../LRO_NAC_CratDenHaz_43S349E_150cmp.vrt | 53 - .../LRO_LROC_Crater_Density_Hertzsprung.asset | 28 - .../LRO_NAC_CratDen_00N234E_150cmp.vrt | 53 - ...LROC_Crater_Density_Hortensius_Domes.asset | 28 - .../LRO_NAC_CratDen_08N332E_2mp.vrt | 53 - .../LRO_LROC_Crater_Density_King_Crater.asset | 28 - .../LRO_NAC_CratDen_06N120E_200cmp.vrt | 53 - ...OC_Crater_Density_Lichtenberg_Crater.asset | 28 - .../LRO_NAC_CratDen_32N292E_2mp.vrt | 53 - ...LRO_LROC_Crater_Density_Mare_Crisium.asset | 28 - .../LRO_NAC_CratDen_10N058E_150cmp.vrt | 53 - ...LROC_Crater_Density_Montes_Pyrenaeus.asset | 28 - .../LRO_NAC_CratDen_16S041E_150cmp.vrt | 53 - .../LRO_LROC_Crater_Density_Orientale_1.asset | 28 - .../LRO_NAC_CratDen_26S265E_200cmp.vrt | 53 - ...LRO_LROC_Crater_Density_Plato_Ejecta.asset | 28 - .../LRO_NAC_CratDen_53N354E_150cmp.vrt | 53 - ...ity_South_Pole-Aitken_Basin_Interior.asset | 28 - .../LRO_NAC_CratDen_60S200E_150cmp.vrt | 53 - ...ity_Stratton_(Dewar)_High_Fe_Anomaly.asset | 28 - .../LRO_NAC_CratDen_02S167E_150cmp.vrt | 53 - ...LROC_Crater_Density_Sulpicius_Gallus.asset | 28 - .../LRO_NAC_CratDen_20N010E_2mp.vrt | 53 - ...LRO_LROC_Crater_Density_Tycho_Crater.asset | 28 - .../LRO_NAC_CratDen_43S349E_150cmp.vrt | 53 - .../earth/moon/nasa-treks/LRO_LROC_DEM.asset | 454 ++++++++ .../nasa-treks/LRO_LROC_DEM/Aitken_Crater.vrt | 53 + .../Aitken_Crater.wms} | 0 .../nasa-treks/LRO_LROC_DEM/Alphonsus.vrt | 53 + .../Alphonsus.wms} | 0 .../LRO_LROC_DEM/Alphonsus_Crater.vrt | 53 + .../Alphonsus_Crater.wms} | 0 .../LRO_LROC_DEM/Anaxagoras_Crater.vrt | 53 + .../Anaxagoras_Crater.wms} | 0 .../nasa-treks/LRO_LROC_DEM/Apollo_15.vrt | 53 + .../Apollo_15.wms} | 0 .../nasa-treks/LRO_LROC_DEM/Apollo_16.vrt | 53 + .../Apollo_16.wms} | 0 .../nasa-treks/LRO_LROC_DEM/Apollo_Basin.vrt | 53 + .../Apollo_Basin.wms} | 0 .../nasa-treks/LRO_LROC_DEM/Aristarchus_1.vrt | 53 + .../Aristarchus_1.wms} | 0 .../nasa-treks/LRO_LROC_DEM/Aristarchus_2.vrt | 53 + .../Aristarchus_2.wms} | 0 .../nasa-treks/LRO_LROC_DEM/Balmer_Basin.vrt | 53 + .../Balmer_Basin.wms} | 0 .../LRO_LROC_DEM/Bullialdus_Crater.vrt | 53 + .../Bullialdus_Crater.wms} | 0 .../Compton_Belkovich_Th_Anomaly.vrt | 53 + .../Compton_Belkovich_Th_Anomaly.wms} | 0 .../nasa-treks/LRO_LROC_DEM/Dante_Crater.vrt | 53 + .../Dante_Crater.wms} | 0 .../LRO_LROC_DEM/Flamsteed_Crater.vrt | 53 + .../Flamsteed_Crater.wms} | 0 .../Fresh_Crater_East_of_Lents.vrt | 53 + .../Fresh_Crater_East_of_Lents.wms} | 0 .../LRO_LROC_DEM/Gruithuisen_Domes.vrt | 53 + .../Gruithuisen_Domes.wms} | 0 .../nasa-treks/LRO_LROC_DEM/Hertzsprung.vrt | 53 + .../Hertzsprung.wms} | 0 .../LRO_LROC_DEM/Hortensius_Domes.vrt | 53 + .../Hortensius_Domes.wms} | 0 .../LRO_LROC_DEM/Humboldtianum_Basin.vrt | 53 + .../Humboldtianum_Basin.wms} | 0 .../nasa-treks/LRO_LROC_DEM/Ina_D-Caldera.vrt | 53 + .../Ina_D-Caldera.wms} | 0 .../nasa-treks/LRO_LROC_DEM/King_Crater.vrt | 53 + .../King_Crater.wms} | 0 .../LRO_LROC_DEM/Lichtenberg_Crater.vrt | 53 + .../Lichtenberg_Crater.wms} | 0 .../nasa-treks/LRO_LROC_DEM/Mare_Crisium.vrt | 53 + .../Mare_Crisium.wms} | 0 .../nasa-treks/LRO_LROC_DEM/Mare_Ingenii.vrt | 53 + .../Mare_Ingenii.wms} | 0 .../LRO_LROC_DEM/Mare_Moscoviense.vrt | 53 + .../Mare_Moscoviense.wms} | 0 .../nasa-treks/LRO_LROC_DEM/Mare_Smythii.vrt | 53 + .../Mare_Smythii.wms} | 0 .../LRO_LROC_DEM/Mare_Tranquillitatis.vrt | 53 + .../Mare_Tranquillitatis.wms} | 0 .../nasa-treks/LRO_LROC_DEM/Marius_Hills.vrt | 53 + .../Marius_Hills.wms} | 0 .../LRO_LROC_DEM/Montes_Pyrenaeus.vrt | 53 + .../Montes_Pyrenaeus.wms} | 0 .../LRO_LROC_DEM/Murchison_Crater.vrt | 53 + .../Murchison_Crater.wms} | 0 .../nasa-treks/LRO_LROC_DEM/Orientale_1.vrt | 53 + .../Orientale_1.wms} | 0 .../nasa-treks/LRO_LROC_DEM/Plato_Ejecta.vrt | 53 + .../Plato_Ejecta.wms} | 0 .../nasa-treks/LRO_LROC_DEM/Reiner_Gamma.vrt | 53 + .../Reiner_Gamma.wms} | 0 .../LRO_LROC_DEM/Riccioli_Crater.vrt | 53 + .../Riccioli_Crater.wms} | 0 .../nasa-treks/LRO_LROC_DEM/Rima_Bode.vrt | 53 + .../Rima_Bode.wms} | 0 .../nasa-treks/LRO_LROC_DEM/Rimae_Prinz.vrt | 53 + .../Rimae_Prinz.wms} | 0 .../South_Pole-Aitken_Basin_Interior.vrt | 53 + .../South_Pole-Aitken_Basin_Interior.wms} | 0 .../LRO_LROC_DEM/South_Pole-Aitken_Rim.vrt | 53 + .../South_Pole-Aitken_Rim.wms} | 0 .../LRO_LROC_DEM/Stratton_Dewar.vrt | 53 + .../Stratton_Dewar.wms} | 0 .../Stratton_Dewar_High_Fe_Anomaly.vrt | 53 + .../Stratton_Dewar_High_Fe_Anomaly.wms} | 0 .../LRO_LROC_DEM/Sulpicius_Gallus.vrt | 53 + .../Sulpicius_Gallus.wms} | 0 .../LRO_LROC_DEM/Tsiolkovskiy_Crater.vrt | 53 + .../Tsiolkovskiy_Crater.wms} | 0 .../nasa-treks/LRO_LROC_DEM/Tycho_Crater.vrt | 53 + .../Tycho_Crater.wms} | 0 ...EM_Aitken_Crater_15m_Color_Roughness.asset | 28 - ...RO_NAC_ClrRoughness_15m_17S173E_150cmp.vrt | 53 - ...en_Crater_15m_Color_Roughness_Hazard.asset | 28 - ...NAC_ClrRoughnessHaz_15m_17S173E_150cmp.vrt | 53 - ...NAC_ClrRoughnessHaz_15m_17S173E_150cmp.wms | 24 - ...OC_DEM_Aitken_Crater_15m_Color_Slope.asset | 28 - .../LRO_NAC_ClrSlope_15m_17S173E_150cmp.vrt | 53 - .../LRO_NAC_ClrSlope_15m_17S173E_150cmp.wms | 24 - ...Aitken_Crater_15m_Color_Slope_Hazard.asset | 28 - ...LRO_NAC_ClrSlopeHaz_15m_17S173E_150cmp.vrt | 53 - ...LRO_NAC_ClrSlopeHaz_15m_17S173E_150cmp.wms | 24 - ...DEM_Aitken_Crater_3m_Color_Roughness.asset | 28 - ...LRO_NAC_ClrRoughness_3m_17S173E_150cmp.vrt | 53 - ...LRO_NAC_ClrRoughness_3m_17S173E_150cmp.wms | 24 - ...ken_Crater_3m_Color_Roughness_Hazard.asset | 28 - ..._NAC_ClrRoughnessHaz_3m_17S173E_150cmp.vrt | 53 - ..._NAC_ClrRoughnessHaz_3m_17S173E_150cmp.wms | 24 - ...ROC_DEM_Aitken_Crater_3m_Color_Slope.asset | 28 - .../LRO_NAC_ClrSlope_3m_17S173E_150cmp.vrt | 53 - .../LRO_NAC_ClrSlope_3m_17S173E_150cmp.wms | 24 - ..._Aitken_Crater_3m_Color_Slope_Hazard.asset | 28 - .../LRO_NAC_ClrSlopeHaz_3m_17S173E_150cmp.vrt | 53 - .../LRO_NAC_ClrSlopeHaz_3m_17S173E_150cmp.wms | 24 - ...ROC_DEM_Aitken_Crater_ColorHillshade.asset | 28 - .../LRO_NAC_ClrShade_17S173E_150cmp.vrt | 53 - .../LRO_NAC_ClrShade_17S173E_150cmp.wms | 24 - ...M_Aitken_Crater_Colorized_Confidence.asset | 28 - .../LRO_NAC_ClrConf_17S173E_150cmp.vrt | 53 - .../LRO_NAC_ClrConf_17S173E_150cmp.wms | 24 - ...OC_DEM_Aitken_Crater_Colorized_Slope.asset | 28 - .../LRO_NAC_Slope_17S173E_150cmp.vrt | 53 - .../LRO_NAC_Slope_17S173E_150cmp.wms | 24 - ...LRO_LROC_DEM_Aitken_Crater_Grayscale.asset | 28 - .../LRO_NAC_Gray_17S173E_150cmp.vrt | 29 - .../LRO_NAC_Gray_17S173E_150cmp.wms | 24 - ...LRO_LROC_DEM_Aitken_Crater_Hillshade.asset | 28 - .../LRO_NAC_Shade_17S173E_150cmp.vrt | 29 - .../LRO_NAC_Shade_17S173E_150cmp.wms | 24 - ...RO_LROC_DEM_Alphonsus_ColorHillshade.asset | 28 - .../LRO_NAC_ClrShade_13S358E_200cmp.vrt | 53 - ...C_DEM_Alphonsus_Colorized_Confidence.asset | 28 - .../LRO_NAC_ClrConf_13S358E_200cmp.vrt | 53 - .../LRO_NAC_ClrConf_13S358E_200cmp.wms | 24 - ...O_LROC_DEM_Alphonsus_Colorized_Slope.asset | 28 - .../LRO_NAC_Slope_13S358E_200cmp.vrt | 53 - .../LRO_NAC_Slope_13S358E_200cmp.wms | 24 - ...Alphonsus_Crater_15m_Color_Roughness.asset | 28 - .../LRO_NAC_ClrRoughness_15m_13S358E_2mp.vrt | 53 - ...us_Crater_15m_Color_Roughness_Hazard.asset | 28 - ...RO_NAC_ClrRoughnessHaz_15m_13S358E_2mp.vrt | 53 - ...RO_NAC_ClrRoughnessHaz_15m_13S358E_2mp.wms | 24 - ...DEM_Alphonsus_Crater_15m_Color_Slope.asset | 28 - .../LRO_NAC_ClrSlope_15m_13S358E_2mp.vrt | 53 - .../LRO_NAC_ClrSlope_15m_13S358E_2mp.wms | 24 - ...honsus_Crater_15m_Color_Slope_Hazard.asset | 28 - .../LRO_NAC_ClrSlopeHaz_15m_13S358E_2mp.vrt | 53 - .../LRO_NAC_ClrSlopeHaz_15m_13S358E_2mp.wms | 24 - ..._Alphonsus_Crater_4m_Color_Roughness.asset | 28 - .../LRO_NAC_ClrRoughness_4m_13S258E_2mp.vrt | 53 - .../LRO_NAC_ClrRoughness_4m_13S258E_2mp.wms | 24 - ...sus_Crater_4m_Color_Roughness_Hazard.asset | 28 - ...LRO_NAC_ClrRoughnessHaz_4m_13S258E_2mp.vrt | 53 - ...LRO_NAC_ClrRoughnessHaz_4m_13S258E_2mp.wms | 24 - ..._DEM_Alphonsus_Crater_4m_Color_Slope.asset | 28 - .../LRO_NAC_ClrSlope_4m_13S358E_2mp.vrt | 53 - .../LRO_NAC_ClrSlope_4m_13S358E_2mp.wms | 24 - ...phonsus_Crater_4m_Color_Slope_Hazard.asset | 28 - .../LRO_NAC_ClrSlopeHaz_4m_13S358E_2mp.vrt | 53 - .../LRO_NAC_ClrSlopeHaz_4m_13S358E_2mp.wms | 24 - .../LRO_LROC_DEM_Alphonsus_Grayscale.asset | 28 - .../LRO_NAC_Gray_13S358E_200cmp.vrt | 29 - .../LRO_NAC_Gray_13S358E_200cmp.wms | 24 - .../LRO_LROC_DEM_Alphonsus_Hillshade.asset | 28 - .../LRO_NAC_Shade_13S358E_200cmp.vrt | 29 - .../LRO_NAC_Shade_13S358E_200cmp.wms | 24 - ...naxagoras_Crater_15m_Color_Roughness.asset | 28 - ...RO_NAC_ClrRoughness_15m_73N350E_150cmp.vrt | 53 - ...as_Crater_15m_Color_Roughness_Hazard.asset | 28 - ...NAC_ClrRoughnessHaz_15m_73N350E_150cmp.vrt | 53 - ...NAC_ClrRoughnessHaz_15m_73N350E_150cmp.wms | 24 - ...EM_Anaxagoras_Crater_15m_Color_Slope.asset | 28 - .../LRO_NAC_ClrSlope_15m_73N350E_150cmp.vrt | 53 - .../LRO_NAC_ClrSlope_15m_73N350E_150cmp.wms | 24 - ...agoras_Crater_15m_Color_Slope_Hazard.asset | 28 - ...LRO_NAC_ClrSlopeHaz_15m_73N350E_150cmp.vrt | 53 - ...LRO_NAC_ClrSlopeHaz_15m_73N350E_150cmp.wms | 24 - ...Anaxagoras_Crater_3m_Color_Roughness.asset | 28 - ...LRO_NAC_ClrRoughness_3m_73N350E_150cmp.vrt | 53 - ...LRO_NAC_ClrRoughness_3m_73N350E_150cmp.wms | 24 - ...ras_Crater_3m_Color_Roughness_Hazard.asset | 28 - ..._NAC_ClrRoughnessHaz_3m_73N350E_150cmp.vrt | 53 - ..._NAC_ClrRoughnessHaz_3m_73N350E_150cmp.wms | 24 - ...DEM_Anaxagoras_Crater_3m_Color_Slope.asset | 28 - .../LRO_NAC_ClrSlope_3m_73N350E_150cmp.vrt | 53 - .../LRO_NAC_ClrSlope_3m_73N350E_150cmp.wms | 24 - ...xagoras_Crater_3m_Color_Slope_Hazard.asset | 28 - .../LRO_NAC_ClrSlopeHaz_3m_73N350E_150cmp.vrt | 53 - .../LRO_NAC_ClrSlopeHaz_3m_73N350E_150cmp.wms | 24 - ...DEM_Anaxagoras_Crater_ColorHillshade.asset | 28 - .../LRO_NAC_ClrShade_73N350E_150cmp.vrt | 53 - .../LRO_NAC_ClrShade_73N350E_150cmp.wms | 24 - ...axagoras_Crater_Colorized_Confidence.asset | 28 - .../LRO_NAC_ClrConf_73N350E_150cmp.vrt | 53 - .../LRO_NAC_ClrConf_73N350E_150cmp.wms | 24 - ...EM_Anaxagoras_Crater_Colorized_Slope.asset | 28 - .../LRO_NAC_Slope_73N350E_150cmp.vrt | 53 - .../LRO_NAC_Slope_73N350E_150cmp.wms | 24 - ...LROC_DEM_Anaxagoras_Crater_Grayscale.asset | 28 - .../LRO_NAC_Gray_73N350E_150cmp.vrt | 29 - .../LRO_NAC_Gray_73N350E_150cmp.wms | 24 - ...LROC_DEM_Anaxagoras_Crater_Hillshade.asset | 28 - .../LRO_NAC_Shade_73N350E_150cmp.vrt | 29 - .../LRO_NAC_Shade_73N350E_150cmp.wms | 24 - ...OC_DEM_Apollo_15_15m_Color_Roughness.asset | 28 - ...RO_NAC_ClrRoughness_15m_26N004E_150cmp.vrt | 53 - ...Apollo_15_15m_Color_Roughness_Hazard.asset | 28 - ...NAC_ClrRoughnessHaz_15m_26N004E_150cmp.vrt | 53 - ...NAC_ClrRoughnessHaz_15m_26N004E_150cmp.wms | 24 - ...O_LROC_DEM_Apollo_15_15m_Color_Slope.asset | 28 - .../LRO_NAC_ClrSlope_15m_26N004E_150cmp.vrt | 53 - .../LRO_NAC_ClrSlope_15m_26N004E_150cmp.wms | 24 - ...DEM_Apollo_15_15m_Color_Slope_Hazard.asset | 28 - ...LRO_NAC_ClrSlopeHaz_15m_26N004E_150cmp.vrt | 53 - ...LRO_NAC_ClrSlopeHaz_15m_26N004E_150cmp.wms | 24 - ...ROC_DEM_Apollo_15_3m_Color_Roughness.asset | 28 - ...LRO_NAC_ClrRoughness_3m_26N004E_150cmp.vrt | 53 - ...LRO_NAC_ClrRoughness_3m_26N004E_150cmp.wms | 24 - ..._Apollo_15_3m_Color_Roughness_Hazard.asset | 28 - ..._NAC_ClrRoughnessHaz_3m_26N004E_150cmp.vrt | 53 - ..._NAC_ClrRoughnessHaz_3m_26N004E_150cmp.wms | 24 - ...RO_LROC_DEM_Apollo_15_3m_Color_Slope.asset | 28 - .../LRO_NAC_ClrSlope_3m_26N004E_150cmp.vrt | 53 - .../LRO_NAC_ClrSlope_3m_26N004E_150cmp.wms | 24 - ..._DEM_Apollo_15_3m_Color_Slope_Hazard.asset | 28 - .../LRO_NAC_ClrSlopeHaz_3m_26N004E_150cmp.vrt | 53 - .../LRO_NAC_ClrSlopeHaz_3m_26N004E_150cmp.wms | 24 - ...RO_LROC_DEM_Apollo_15_ColorHillshade.asset | 28 - .../LRO_NAC_ClrShade_26N004E_150cmp.vrt | 53 - .../LRO_NAC_ClrShade_26N004E_150cmp.wms | 24 - ...C_DEM_Apollo_15_ColorHillshade_Slope.asset | 28 - .../LRO_NAC_Slope_26N004E_150cmp.vrt | 53 - .../LRO_NAC_Slope_26N004E_150cmp.wms | 24 - ...C_DEM_Apollo_15_Colorized_Confidence.asset | 28 - .../LRO_NAC_ClrConf_26N004E_150cmp.vrt | 53 - .../LRO_NAC_ClrConf_26N004E_150cmp.wms | 24 - .../LRO_LROC_DEM_Apollo_15_Grayscale.asset | 28 - .../LRO_NAC_Gray_26N004E_150cmp.vrt | 29 - .../LRO_NAC_Gray_26N004E_150cmp.wms | 24 - .../LRO_LROC_DEM_Apollo_15_Hillshade.asset | 28 - .../LRO_NAC_Shade_26N004E_150cmp.vrt | 29 - .../LRO_NAC_Shade_26N004E_150cmp.wms | 24 - ...OC_DEM_Apollo_16_15m_Color_Roughness.asset | 28 - ...RO_NAC_ClrRoughness_15m_09S015E_150cmp.vrt | 53 - ...Apollo_16_15m_Color_Roughness_Hazard.asset | 28 - ...NAC_ClrRoughnessHaz_15m_09S015E_150cmp.vrt | 53 - ...NAC_ClrRoughnessHaz_15m_09S015E_150cmp.wms | 24 - ...O_LROC_DEM_Apollo_16_15m_Color_Slope.asset | 28 - .../LRO_NAC_ClrSlope_15m_09S015E_150cmp.vrt | 53 - .../LRO_NAC_ClrSlope_15m_09S015E_150cmp.wms | 24 - ...DEM_Apollo_16_15m_Color_Slope_Hazard.asset | 28 - ...LRO_NAC_ClrSlopeHaz_15m_09S015E_150cmp.vrt | 53 - ...LRO_NAC_ClrSlopeHaz_15m_09S015E_150cmp.wms | 24 - ...ROC_DEM_Apollo_16_3m_Color_Roughness.asset | 28 - ...LRO_NAC_ClrRoughness_3m_09S015E_150cmp.vrt | 53 - ...LRO_NAC_ClrRoughness_3m_09S015E_150cmp.wms | 24 - ..._Apollo_16_3m_Color_Roughness_Hazard.asset | 28 - ..._NAC_ClrRoughnessHaz_3m_09S015E_150cmp.vrt | 53 - ..._NAC_ClrRoughnessHaz_3m_09S015E_150cmp.wms | 24 - ...RO_LROC_DEM_Apollo_16_3m_Color_Slope.asset | 28 - .../LRO_NAC_ClrSlope_3m_09S015E_150cmp.vrt | 53 - .../LRO_NAC_ClrSlope_3m_09S015E_150cmp.wms | 24 - ..._DEM_Apollo_16_3m_Color_Slope_Hazard.asset | 28 - .../LRO_NAC_ClrSlopeHaz_3m_09S015E_150cmp.vrt | 53 - .../LRO_NAC_ClrSlopeHaz_3m_09S015E_150cmp.wms | 24 - ...RO_LROC_DEM_Apollo_16_ColorHillshade.asset | 28 - .../LRO_NAC_ClrShade_09S015E_150cmp.vrt | 53 - .../LRO_NAC_ClrShade_09S015E_150cmp.wms | 24 - ...C_DEM_Apollo_16_ColorHillshade_Slope.asset | 28 - .../LRO_NAC_Slope_09S015E_150cmp.vrt | 53 - .../LRO_NAC_Slope_09S015E_150cmp.wms | 24 - ...C_DEM_Apollo_16_Colorized_Confidence.asset | 28 - .../LRO_NAC_ClrConf_09S015E_150cmp.vrt | 53 - .../LRO_NAC_ClrConf_09S015E_150cmp.wms | 24 - .../LRO_LROC_DEM_Apollo_16_Grayscale.asset | 28 - .../LRO_NAC_Gray_09S015E_150cmp.vrt | 29 - .../LRO_NAC_Gray_09S015E_150cmp.wms | 24 - .../LRO_LROC_DEM_Apollo_16_Hillshade.asset | 28 - .../LRO_NAC_Shade_09S015E_150cmp.vrt | 29 - .../LRO_NAC_Shade_09S015E_150cmp.wms | 24 - ...DEM_Apollo_Basin_15m_Color_Roughness.asset | 28 - ...RO_NAC_ClrRoughness_15m_37S206E_150cmp.vrt | 53 - ...llo_Basin_15m_Color_Roughness_Hazard.asset | 28 - ...NAC_ClrRoughnessHaz_15m_37S206E_150cmp.vrt | 53 - ...NAC_ClrRoughnessHaz_15m_37S206E_150cmp.wms | 24 - ...ROC_DEM_Apollo_Basin_15m_Color_Slope.asset | 28 - .../LRO_NAC_ClrSlope_15m_37S206E_150cmp.vrt | 53 - .../LRO_NAC_ClrSlope_15m_37S206E_150cmp.wms | 24 - ..._Apollo_Basin_15m_Color_Slope_Hazard.asset | 28 - ...LRO_NAC_ClrSlopeHaz_15m_37S206E_150cmp.vrt | 53 - ...LRO_NAC_ClrSlopeHaz_15m_37S206E_150cmp.wms | 24 - ..._DEM_Apollo_Basin_3m_Color_Roughness.asset | 28 - ...LRO_NAC_ClrRoughness_3m_37S206E_150cmp.vrt | 53 - ...LRO_NAC_ClrRoughness_3m_37S206E_150cmp.wms | 24 - ...ollo_Basin_3m_Color_Roughness_Hazard.asset | 28 - ..._NAC_ClrRoughnessHaz_3m_37S206E_150cmp.vrt | 53 - ..._NAC_ClrRoughnessHaz_3m_37S206E_150cmp.wms | 24 - ...LROC_DEM_Apollo_Basin_3m_Color_Slope.asset | 28 - .../LRO_NAC_ClrSlope_3m_37S206E_150cmp.vrt | 53 - .../LRO_NAC_ClrSlope_3m_37S206E_150cmp.wms | 24 - ...M_Apollo_Basin_3m_Color_Slope_Hazard.asset | 28 - .../LRO_NAC_ClrSlopeHaz_3m_37S206E_150cmp.vrt | 53 - .../LRO_NAC_ClrSlopeHaz_3m_37S206E_150cmp.wms | 24 - ...LROC_DEM_Apollo_Basin_ColorHillshade.asset | 28 - .../LRO_NAC_ClrShade_37S206E_150cmp.vrt | 53 - .../LRO_NAC_ClrShade_37S206E_150cmp.wms | 24 - ...EM_Apollo_Basin_Colorized_Confidence.asset | 28 - .../LRO_NAC_ClrConf_37S206E_150cmp.vrt | 53 - .../LRO_NAC_ClrConf_37S206E_150cmp.wms | 24 - ...ROC_DEM_Apollo_Basin_Colorized_Slope.asset | 28 - .../LRO_NAC_Slope_37S206E_150cmp.vrt | 53 - .../LRO_NAC_Slope_37S206E_150cmp.wms | 24 - .../LRO_LROC_DEM_Apollo_Basin_Grayscale.asset | 28 - .../LRO_NAC_Gray_37S206E_150cmp.vrt | 29 - .../LRO_NAC_Gray_37S206E_150cmp.wms | 24 - .../LRO_LROC_DEM_Apollo_Basin_Hillshade.asset | 28 - .../LRO_NAC_Shade_37S206E_150cmp.vrt | 29 - .../LRO_NAC_Shade_37S206E_150cmp.wms | 24 - ...EM_Aristarchus_1_15m_Color_Roughness.asset | 28 - .../LRO_NAC_ClrRoughness_15m_25N311E_2mp.vrt | 53 - ...tarchus_1_15m_Color_Roughness_Hazard.asset | 28 - ...RO_NAC_ClrRoughnessHaz_15m_25N311E_2mp.vrt | 53 - ...RO_NAC_ClrRoughnessHaz_15m_25N311E_2mp.wms | 24 - ...OC_DEM_Aristarchus_1_15m_Color_Slope.asset | 28 - .../LRO_NAC_ClrSlope_15m_25N311E_2mp.vrt | 53 - .../LRO_NAC_ClrSlope_15m_25N311E_2mp.wms | 24 - ...Aristarchus_1_15m_Color_Slope_Hazard.asset | 28 - .../LRO_NAC_ClrSlopeHaz_15m_25N311E_2mp.vrt | 53 - .../LRO_NAC_ClrSlopeHaz_15m_25N311E_2mp.wms | 24 - ...DEM_Aristarchus_1_4m_Color_Roughness.asset | 28 - .../LRO_NAC_ClrRoughness_4m_25N311E_2mp.vrt | 53 - .../LRO_NAC_ClrRoughness_4m_25N311E_2mp.wms | 24 - ...starchus_1_4m_Color_Roughness_Hazard.asset | 28 - ...LRO_NAC_ClrRoughnessHaz_4m_25N311E_2mp.vrt | 53 - ...LRO_NAC_ClrRoughnessHaz_4m_25N311E_2mp.wms | 24 - ...ROC_DEM_Aristarchus_1_4m_Color_Slope.asset | 28 - .../LRO_NAC_ClrSlope_4m_25N311E_2mp.vrt | 53 - .../LRO_NAC_ClrSlope_4m_25N311E_2mp.wms | 24 - ..._Aristarchus_1_4m_Color_Slope_Hazard.asset | 28 - .../LRO_NAC_ClrSlopeHaz_4m_25N311E_2mp.vrt | 53 - .../LRO_NAC_ClrSlopeHaz_4m_25N311E_2mp.wms | 24 - ...ROC_DEM_Aristarchus_1_ColorHillshade.asset | 28 - .../LRO_NAC_ClrShade_25N311E_2mp.vrt | 53 - .../LRO_NAC_ClrShade_25N311E_2mp.wms | 24 - ...M_Aristarchus_1_ColorHillshade_Slope.asset | 28 - .../LRO_NAC_Slope_25N311E_2mp.vrt | 53 - .../LRO_NAC_Slope_25N311E_2mp.wms | 24 - ...M_Aristarchus_1_Colorized_Confidence.asset | 28 - .../LRO_NAC_ClrConf_25N311E_2mp.vrt | 53 - .../LRO_NAC_ClrConf_25N311E_2mp.wms | 24 - ...LRO_LROC_DEM_Aristarchus_1_Grayscale.asset | 28 - .../LRO_NAC_Gray_25N311E_2mp.vrt | 29 - .../LRO_NAC_Gray_25N311E_2mp.wms | 24 - ...LRO_LROC_DEM_Aristarchus_1_Hillshade.asset | 28 - .../LRO_NAC_Shade_25N311E_2mp.vrt | 29 - .../LRO_NAC_Shade_25N311E_2mp.wms | 24 - ...EM_Aristarchus_2_15m_Color_Roughness.asset | 28 - ...RO_NAC_ClrRoughness_15m_28N307E_150cmp.vrt | 53 - ...tarchus_2_15m_Color_Roughness_Hazard.asset | 28 - ...NAC_ClrRoughnessHaz_15m_28N307E_150cmp.vrt | 53 - ...NAC_ClrRoughnessHaz_15m_28N307E_150cmp.wms | 24 - ...OC_DEM_Aristarchus_2_15m_Color_Slope.asset | 28 - .../LRO_NAC_ClrSlope_15m_28N307E_150cmp.vrt | 53 - .../LRO_NAC_ClrSlope_15m_28N307E_150cmp.wms | 24 - ...Aristarchus_2_15m_Color_Slope_Hazard.asset | 28 - ...LRO_NAC_ClrSlopeHaz_15m_28N307E_150cmp.vrt | 53 - ...LRO_NAC_ClrSlopeHaz_15m_28N307E_150cmp.wms | 24 - ...DEM_Aristarchus_2_3m_Color_Roughness.asset | 28 - ...LRO_NAC_ClrRoughness_3m_28N307E_150cmp.vrt | 53 - ...LRO_NAC_ClrRoughness_3m_28N307E_150cmp.wms | 24 - ...starchus_2_3m_Color_Roughness_Hazard.asset | 28 - ..._NAC_ClrRoughnessHaz_3m_28N307E_150cmp.vrt | 53 - ..._NAC_ClrRoughnessHaz_3m_28N307E_150cmp.wms | 24 - ...ROC_DEM_Aristarchus_2_3m_Color_Slope.asset | 28 - .../LRO_NAC_ClrSlope_3m_28N307E_150cmp.vrt | 53 - .../LRO_NAC_ClrSlope_3m_28N307E_150cmp.wms | 24 - ..._Aristarchus_2_3m_Color_Slope_Hazard.asset | 28 - .../LRO_NAC_ClrSlopeHaz_3m_28N307E_150cmp.vrt | 53 - .../LRO_NAC_ClrSlopeHaz_3m_28N307E_150cmp.wms | 24 - ...ROC_DEM_Aristarchus_2_ColorHillshade.asset | 28 - .../LRO_NAC_ClrShade_28N307E_150cmp.vrt | 53 - .../LRO_NAC_ClrShade_28N307E_150cmp.wms | 24 - ...M_Aristarchus_2_Colorized_Confidence.asset | 28 - .../LRO_NAC_ClrConf_28N307E_150cmp.vrt | 53 - .../LRO_NAC_ClrConf_28N307E_150cmp.wms | 24 - ...OC_DEM_Aristarchus_2_Colorized_Slope.asset | 28 - .../LRO_NAC_Slope_28N307E_150cmp.vrt | 53 - .../LRO_NAC_Slope_28N307E_150cmp.wms | 24 - ...LRO_LROC_DEM_Aristarchus_2_Grayscale.asset | 28 - .../LRO_NAC_Gray_28N307E_150cmp.vrt | 29 - .../LRO_NAC_Gray_28N307E_150cmp.wms | 24 - ...LRO_LROC_DEM_Aristarchus_2_Hillshade.asset | 28 - .../LRO_NAC_Shade_28N307E_150cmp.vrt | 29 - .../LRO_NAC_Shade_28N307E_150cmp.wms | 24 - ...DEM_Balmer_Basin_15m_Color_Roughness.asset | 28 - ...RO_NAC_ClrRoughness_15m_19S070E_150cmp.vrt | 53 - ...mer_Basin_15m_Color_Roughness_Hazard.asset | 28 - ...NAC_ClrRoughnessHaz_15m_19S070E_150cmp.vrt | 53 - ...NAC_ClrRoughnessHaz_15m_19S070E_150cmp.wms | 24 - ...ROC_DEM_Balmer_Basin_15m_Color_Slope.asset | 28 - .../LRO_NAC_ClrSlope_15m_19S070E_150cmp.vrt | 53 - .../LRO_NAC_ClrSlope_15m_19S070E_150cmp.wms | 24 - ..._Balmer_Basin_15m_Color_Slope_Hazard.asset | 28 - ...LRO_NAC_ClrSlopeHaz_15m_19S070E_150cmp.vrt | 53 - ...LRO_NAC_ClrSlopeHaz_15m_19S070E_150cmp.wms | 24 - ..._DEM_Balmer_Basin_3m_Color_Roughness.asset | 28 - ...LRO_NAC_ClrRoughness_3m_19S070E_150cmp.vrt | 53 - ...LRO_NAC_ClrRoughness_3m_19S070E_150cmp.wms | 24 - ...lmer_Basin_3m_Color_Roughness_Hazard.asset | 28 - ..._NAC_ClrRoughnessHaz_3m_19S070E_150cmp.vrt | 53 - ..._NAC_ClrRoughnessHaz_3m_19S070E_150cmp.wms | 24 - ...LROC_DEM_Balmer_Basin_3m_Color_Slope.asset | 28 - .../LRO_NAC_ClrSlope_3m_19S070E_150cmp.vrt | 53 - .../LRO_NAC_ClrSlope_3m_19S070E_150cmp.wms | 24 - ...M_Balmer_Basin_3m_Color_Slope_Hazard.asset | 28 - .../LRO_NAC_ClrSlopeHaz_3m_19S070E_150cmp.vrt | 53 - .../LRO_NAC_ClrSlopeHaz_3m_19S070E_150cmp.wms | 24 - ...LROC_DEM_Balmer_Basin_ColorHillshade.asset | 28 - .../LRO_NAC_ClrShade_19S070E_150cmp.vrt | 53 - .../LRO_NAC_ClrShade_19S070E_150cmp.wms | 24 - ...EM_Balmer_Basin_Colorized_Confidence.asset | 28 - .../LRO_NAC_ClrConf_19S070E_150cmp.vrt | 53 - .../LRO_NAC_ClrConf_19S070E_150cmp.wms | 24 - ...ROC_DEM_Balmer_Basin_Colorized_Slope.asset | 28 - .../LRO_NAC_Slope_19S070E_150cmp.vrt | 53 - .../LRO_NAC_Slope_19S070E_150cmp.wms | 24 - .../LRO_LROC_DEM_Balmer_Basin_Grayscale.asset | 28 - .../LRO_NAC_Gray_19S070E_150cmp.vrt | 29 - .../LRO_NAC_Gray_19S070E_150cmp.wms | 24 - .../LRO_LROC_DEM_Balmer_Basin_Hillshade.asset | 28 - .../LRO_NAC_Shade_19S070E_150cmp.vrt | 29 - .../LRO_NAC_Shade_19S070E_150cmp.wms | 24 - ...ullialdus_Crater_15m_Color_Roughness.asset | 28 - ...RO_NAC_ClrRoughness_15m_20S337E_400cmp.vrt | 53 - ...us_Crater_15m_Color_Roughness_Hazard.asset | 28 - ...NAC_ClrRoughnessHaz_15m_20S337E_400cmp.vrt | 53 - ...NAC_ClrRoughnessHaz_15m_20S337E_400cmp.wms | 24 - ...EM_Bullialdus_Crater_15m_Color_Slope.asset | 28 - .../LRO_NAC_ClrSlope_15m_20S337E_400cmp.vrt | 53 - .../LRO_NAC_ClrSlope_15m_20S337E_400cmp.wms | 24 - ...ialdus_Crater_15m_Color_Slope_Hazard.asset | 28 - ...LRO_NAC_ClrSlopeHaz_15m_20S337E_400cmp.vrt | 53 - ...LRO_NAC_ClrSlopeHaz_15m_20S337E_400cmp.wms | 24 - ...Bullialdus_Crater_8m_Color_Roughness.asset | 28 - ...LRO_NAC_ClrRoughness_8m_20S337E_400cmp.vrt | 53 - ...LRO_NAC_ClrRoughness_8m_20S337E_400cmp.wms | 24 - ...dus_Crater_8m_Color_Roughness_Hazard.asset | 28 - ..._NAC_ClrRoughnessHaz_8m_20S337E_400cmp.vrt | 53 - ..._NAC_ClrRoughnessHaz_8m_20S337E_400cmp.wms | 24 - ...DEM_Bullialdus_Crater_8m_Color_Slope.asset | 28 - .../LRO_NAC_ClrSlope_8m_20S337E_400cmp.vrt | 53 - .../LRO_NAC_ClrSlope_8m_20S337E_400cmp.wms | 24 - ...lialdus_Crater_8m_Color_Slope_Hazard.asset | 28 - .../LRO_NAC_ClrSlopeHaz_8m_20S337E_400cmp.vrt | 53 - .../LRO_NAC_ClrSlopeHaz_8m_20S337E_400cmp.wms | 24 - ...DEM_Bullialdus_Crater_ColorHillshade.asset | 28 - .../LRO_NAC_ClrShade_20S337E_400cmp.vrt | 53 - .../LRO_NAC_ClrShade_20S337E_400cmp.wms | 24 - ...llialdus_Crater_Colorized_Confidence.asset | 28 - .../LRO_NAC_ClrConf_20S337E_400cmp.vrt | 53 - .../LRO_NAC_ClrConf_20S337E_400cmp.wms | 24 - ...EM_Bullialdus_Crater_Colorized_Slope.asset | 28 - .../LRO_NAC_Slope_20S337E_400cmp.vrt | 53 - .../LRO_NAC_Slope_20S337E_400cmp.wms | 24 - ...LROC_DEM_Bullialdus_Crater_Grayscale.asset | 28 - .../LRO_NAC_Gray_20S337E_400cmp.vrt | 29 - .../LRO_NAC_Gray_20S337E_400cmp.wms | 24 - ...LROC_DEM_Bullialdus_Crater_Hillshade.asset | 28 - .../LRO_NAC_Shade_20S337E_400cmp.vrt | 29 - .../LRO_NAC_Shade_20S337E_400cmp.wms | 24 - ..._Belkovich_Th_Anomaly_ColorHillshade.asset | 28 - .../LRO_NAC_ClrShade_61N099E_150cmp.vrt | 53 - ...vich_Th_Anomaly_Colorized_Confidence.asset | 28 - .../LRO_NAC_ClrConf_61N099E_150cmp.vrt | 53 - .../LRO_NAC_ClrConf_61N099E_150cmp.wms | 24 - ...Belkovich_Th_Anomaly_Colorized_Slope.asset | 28 - .../LRO_NAC_Slope_61N099E_150cmp.vrt | 53 - .../LRO_NAC_Slope_61N099E_150cmp.wms | 24 - ...mpton_Belkovich_Th_Anomaly_Grayscale.asset | 28 - .../LRO_NAC_Gray_61N099E_150cmp.vrt | 29 - .../LRO_NAC_Gray_61N099E_150cmp.wms | 24 - ...mpton_Belkovich_Th_Anomaly_Hillshade.asset | 28 - .../LRO_NAC_Shade_61N099E_150cmp.vrt | 29 - .../LRO_NAC_Shade_61N099E_150cmp.wms | 24 - ...DEM_Dante_Crater_15m_Color_Roughness.asset | 28 - ...RO_NAC_ClrRoughness_15m_26N178E_150cmp.vrt | 53 - ...te_Crater_15m_Color_Roughness_Hazard.asset | 28 - ...NAC_ClrRoughnessHaz_15m_26N178E_150cmp.vrt | 53 - ...NAC_ClrRoughnessHaz_15m_26N178E_150cmp.wms | 24 - ...ROC_DEM_Dante_Crater_15m_Color_Slope.asset | 28 - .../LRO_NAC_ClrSlope_15m_26N178E_150cmp.vrt | 53 - .../LRO_NAC_ClrSlope_15m_26N178E_150cmp.wms | 24 - ..._Dante_Crater_15m_Color_Slope_Hazard.asset | 28 - ...LRO_NAC_ClrSlopeHaz_15m_26N178E_150cmp.vrt | 53 - ...LRO_NAC_ClrSlopeHaz_15m_26N178E_150cmp.wms | 24 - ..._DEM_Dante_Crater_3m_Color_Roughness.asset | 28 - ...LRO_NAC_ClrRoughness_3m_26N178E_150cmp.vrt | 53 - ...LRO_NAC_ClrRoughness_3m_26N178E_150cmp.wms | 24 - ...nte_Crater_3m_Color_Roughness_Hazard.asset | 28 - ..._NAC_ClrRoughnessHaz_3m_26N178E_150cmp.vrt | 53 - ..._NAC_ClrRoughnessHaz_3m_26N178E_150cmp.wms | 24 - ...LROC_DEM_Dante_Crater_3m_Color_Slope.asset | 28 - .../LRO_NAC_ClrSlope_3m_26N178E_150cmp.vrt | 53 - .../LRO_NAC_ClrSlope_3m_26N178E_150cmp.wms | 24 - ...M_Dante_Crater_3m_Color_Slope_Hazard.asset | 28 - .../LRO_NAC_ClrSlopeHaz_3m_26N178E_150cmp.vrt | 53 - .../LRO_NAC_ClrSlopeHaz_3m_26N178E_150cmp.wms | 24 - ...LROC_DEM_Dante_Crater_ColorHillshade.asset | 28 - .../LRO_NAC_ClrShade_26N178E_150cmp.vrt | 53 - .../LRO_NAC_ClrShade_26N178E_150cmp.wms | 24 - ...EM_Dante_Crater_Colorized_Confidence.asset | 28 - .../LRO_NAC_ClrConf_26N178E_150cmp.vrt | 53 - .../LRO_NAC_ClrConf_26N178E_150cmp.wms | 24 - ...ROC_DEM_Dante_Crater_Colorized_Slope.asset | 28 - .../LRO_NAC_Slope_26N178E_150cmp.vrt | 53 - .../LRO_NAC_Slope_26N178E_150cmp.wms | 24 - .../LRO_LROC_DEM_Dante_Crater_Grayscale.asset | 28 - .../LRO_NAC_Gray_26N178E_150cmp.vrt | 29 - .../LRO_NAC_Gray_26N178E_150cmp.wms | 24 - .../LRO_LROC_DEM_Dante_Crater_Hillshade.asset | 28 - .../LRO_NAC_Shade_26N178E_150cmp.vrt | 29 - .../LRO_NAC_Shade_26N178E_150cmp.wms | 24 - ..._DEM_Flamsteed_Crater_ColorHillshade.asset | 28 - .../LRO_NAC_ClrShade_02S317E_150cmp.vrt | 53 - ...lamsteed_Crater_Colorized_Confidence.asset | 28 - .../LRO_NAC_ClrConf_02S317E_150cmp.vrt | 53 - .../LRO_NAC_ClrConf_02S317E_150cmp.wms | 24 - ...DEM_Flamsteed_Crater_Colorized_Slope.asset | 28 - .../LRO_NAC_Slope_02S317E_150cmp.vrt | 53 - .../LRO_NAC_Slope_02S317E_150cmp.wms | 24 - ..._LROC_DEM_Flamsteed_Crater_Grayscale.asset | 28 - .../LRO_NAC_Gray_02S317E_150cmp.vrt | 29 - .../LRO_NAC_Gray_02S317E_150cmp.wms | 24 - ..._LROC_DEM_Flamsteed_Crater_Hillshade.asset | 28 - .../LRO_NAC_Shade_02S317E_150cmp.vrt | 29 - .../LRO_NAC_Shade_02S317E_150cmp.wms | 24 - ..._Crater_East_of_Lents_ColorHillshade.asset | 28 - .../LRO_NAC_ClrShade_03N280E_2m.vrt | 53 - ...Crater_East_of_Lents_Colorized_Slope.asset | 28 - .../LRO_NAC_Slope_03N280E_2m.vrt | 53 - .../LRO_NAC_Slope_03N280E_2m.wms | 24 - ...Fresh_Crater_East_of_Lents_Grayscale.asset | 28 - .../LRO_NAC_Gray_03N280E_2m.vrt | 29 - .../LRO_NAC_Gray_03N280E_2m.wms | 24 - ...ruithuisen_Domes_15m_Color_Roughness.asset | 28 - .../LRO_NAC_ClrRoughness_15m_36N320E_2mp.vrt | 53 - ...sen_Domes_15m_Color_Roughness_Hazard.asset | 28 - ...LRO_NAC_ClrRoughnessHaz_4m_36N320E_2mp.vrt | 53 - ...LRO_NAC_ClrRoughnessHaz_4m_36N320E_2mp.wms | 24 - ...EM_Gruithuisen_Domes_15m_Color_Slope.asset | 28 - .../LRO_NAC_ClrSlope_15m_36N320E_2mp.vrt | 53 - .../LRO_NAC_ClrSlope_15m_36N320E_2mp.wms | 24 - ...thuisen_Domes_15m_Color_Slope_Hazard.asset | 28 - .../LRO_NAC_ClrSlopeHaz_15m_36N320E_2mp.vrt | 53 - .../LRO_NAC_ClrSlopeHaz_15m_36N320E_2mp.wms | 24 - ...Gruithuisen_Domes_4m_Color_Roughness.asset | 28 - .../LRO_NAC_ClrRoughness_4m_36N320E_2mp.vrt | 53 - .../LRO_NAC_ClrRoughness_4m_36N320E_2mp.wms | 24 - ...isen_Domes_4m_Color_Roughness_Hazard.asset | 28 - ...RO_NAC_ClrRoughnessHaz_15m_36N320E_2mp.vrt | 53 - ...RO_NAC_ClrRoughnessHaz_15m_36N320E_2mp.wms | 24 - ...DEM_Gruithuisen_Domes_4m_Color_Slope.asset | 28 - .../LRO_NAC_ClrSlope_4m_36N320E_2mp.vrt | 53 - .../LRO_NAC_ClrSlope_4m_36N320E_2mp.wms | 24 - ...ithuisen_Domes_4m_Color_Slope_Hazard.asset | 28 - .../LRO_NAC_ClrSlopeHaz_4m_36N320E_2mp.vrt | 53 - .../LRO_NAC_ClrSlopeHaz_4m_36N320E_2mp.wms | 24 - ...DEM_Gruithuisen_Domes_ColorHillshade.asset | 28 - .../LRO_NAC_ClrShade_36N320E_2mp.vrt | 53 - .../LRO_NAC_ClrShade_36N320E_2mp.wms | 24 - ...uithuisen_Domes_ColorHillshade_Slope.asset | 28 - .../LRO_NAC_Slope_36N320E_2mp.vrt | 53 - .../LRO_NAC_Slope_36N320E_2mp.wms | 24 - ...uithuisen_Domes_Colorized_Confidence.asset | 28 - .../LRO_NAC_ClrConf_36N320E_2mp.vrt | 53 - .../LRO_NAC_ClrConf_36N320E_2mp.wms | 24 - ...LROC_DEM_Gruithuisen_Domes_Grayscale.asset | 28 - .../LRO_NAC_Gray_36N320E_2mp.vrt | 29 - .../LRO_NAC_Gray_36N320E_2mp.wms | 24 - ...LROC_DEM_Gruithuisen_Domes_Hillshade.asset | 28 - .../LRO_NAC_Shade_36N320E_2mp.vrt | 29 - .../LRO_NAC_Shade_36N320E_2mp.wms | 24 - ..._DEM_Hertzsprung_15m_Color_Roughness.asset | 28 - ...RO_NAC_ClrRoughness_15m_00N234E_150cmp.vrt | 53 - ...rtzsprung_15m_Color_Roughness_Hazard.asset | 28 - ...NAC_ClrRoughnessHaz_15m_00N234E_150cmp.vrt | 53 - ...NAC_ClrRoughnessHaz_15m_00N234E_150cmp.wms | 24 - ...LROC_DEM_Hertzsprung_15m_Color_Slope.asset | 28 - .../LRO_NAC_ClrSlope_15m_00N234E_150cmp.vrt | 53 - .../LRO_NAC_ClrSlope_15m_00N234E_150cmp.wms | 24 - ...M_Hertzsprung_15m_Color_Slope_Hazard.asset | 28 - ...LRO_NAC_ClrSlopeHaz_15m_00N234E_150cmp.vrt | 53 - ...LRO_NAC_ClrSlopeHaz_15m_00N234E_150cmp.wms | 24 - ...C_DEM_Hertzsprung_3m_Color_Roughness.asset | 28 - ...LRO_NAC_ClrRoughness_3m_00N234E_150cmp.vrt | 53 - ...LRO_NAC_ClrRoughness_3m_00N234E_150cmp.wms | 24 - ...ertzsprung_3m_Color_Roughness_Hazard.asset | 28 - ..._NAC_ClrRoughnessHaz_3m_00N234E_150cmp.vrt | 53 - ..._NAC_ClrRoughnessHaz_3m_00N234E_150cmp.wms | 24 - ..._LROC_DEM_Hertzsprung_3m_Color_Slope.asset | 28 - .../LRO_NAC_ClrSlope_3m_00N234E_150cmp.vrt | 53 - .../LRO_NAC_ClrSlope_3m_00N234E_150cmp.wms | 24 - ...EM_Hertzsprung_3m_Color_Slope_Hazard.asset | 28 - .../LRO_NAC_ClrSlopeHaz_3m_00N234E_150cmp.vrt | 53 - .../LRO_NAC_ClrSlopeHaz_3m_00N234E_150cmp.wms | 24 - ..._LROC_DEM_Hertzsprung_ColorHillshade.asset | 28 - .../LRO_NAC_ClrShade_00N234E_150cmp.vrt | 53 - .../LRO_NAC_ClrShade_00N234E_150cmp.wms | 24 - ...DEM_Hertzsprung_Colorized_Confidence.asset | 28 - .../LRO_NAC_ClrConf_00N234E_150cmp.vrt | 53 - .../LRO_NAC_ClrConf_00N234E_150cmp.wms | 24 - ...LROC_DEM_Hertzsprung_Colorized_Slope.asset | 28 - .../LRO_NAC_Slope_00N234E_150cmp.vrt | 53 - .../LRO_NAC_Slope_00N234E_150cmp.wms | 24 - .../LRO_LROC_DEM_Hertzsprung_Grayscale.asset | 28 - .../LRO_NAC_Gray_00N234E_150cmp.vrt | 29 - .../LRO_NAC_Gray_00N234E_150cmp.wms | 24 - .../LRO_LROC_DEM_Hertzsprung_Hillshade.asset | 28 - .../LRO_NAC_Shade_00N234E_150cmp.vrt | 29 - .../LRO_NAC_Shade_00N234E_150cmp.wms | 24 - ...Hortensius_Domes_15m_Color_Roughness.asset | 28 - .../LRO_NAC_ClrRoughness_15m_08N332E_2mp.vrt | 53 - ...ius_Domes_15m_Color_Roughness_Hazard.asset | 28 - ...RO_NAC_ClrRoughnessHaz_15m_08N332E_2mp.vrt | 53 - ...RO_NAC_ClrRoughnessHaz_15m_08N332E_2mp.wms | 24 - ...DEM_Hortensius_Domes_15m_Color_Slope.asset | 28 - .../LRO_NAC_ClrSlope_15m_08N332E_2mp.vrt | 53 - .../LRO_NAC_ClrSlope_15m_08N332E_2mp.wms | 24 - ...tensius_Domes_15m_Color_Slope_Hazard.asset | 28 - .../LRO_NAC_ClrSlopeHaz_15m_08N332E_2mp.vrt | 53 - .../LRO_NAC_ClrSlopeHaz_15m_08N332E_2mp.wms | 24 - ..._Hortensius_Domes_4m_Color_Roughness.asset | 28 - .../LRO_NAC_ClrRoughness_4m_08N332E_2mp.vrt | 53 - .../LRO_NAC_ClrRoughness_4m_08N332E_2mp.wms | 24 - ...sius_Domes_4m_Color_Roughness_Hazard.asset | 28 - ...LRO_NAC_ClrRoughnessHaz_4m_08N332E_2mp.vrt | 53 - ...LRO_NAC_ClrRoughnessHaz_4m_08N332E_2mp.wms | 24 - ..._DEM_Hortensius_Domes_4m_Color_Slope.asset | 28 - .../LRO_NAC_ClrSlope_4m_08N332E_2mp.vrt | 53 - .../LRO_NAC_ClrSlope_4m_08N332E_2mp.wms | 24 - ...rtensius_Domes_4m_Color_Slope_Hazard.asset | 28 - .../LRO_NAC_ClrSlopeHaz_4m_08N332E_2mp.vrt | 53 - .../LRO_NAC_ClrSlopeHaz_4m_08N332E_2mp.wms | 24 - ..._DEM_Hortensius_Domes_ColorHillshade.asset | 28 - .../LRO_NAC_ClrShade_08N332E_2mp.vrt | 53 - .../LRO_NAC_ClrShade_08N332E_2mp.wms | 24 - ...ortensius_Domes_ColorHillshade_Slope.asset | 28 - .../LRO_NAC_Slope_08N332E_2mp.vrt | 53 - .../LRO_NAC_Slope_08N332E_2mp.wms | 24 - ...ortensius_Domes_Colorized_Confidence.asset | 28 - .../LRO_NAC_ClrConf_08N332E_2mp.vrt | 53 - .../LRO_NAC_ClrConf_08N332E_2mp.wms | 24 - ..._LROC_DEM_Hortensius_Domes_Grayscale.asset | 28 - .../LRO_NAC_Gray_08N332E_2mp.vrt | 29 - .../LRO_NAC_Gray_08N332E_2mp.wms | 24 - ..._LROC_DEM_Hortensius_Domes_Hillshade.asset | 28 - .../LRO_NAC_Shade_08N332E_2mp.vrt | 29 - .../LRO_NAC_Shade_08N332E_2mp.wms | 24 - ...M_Humboldtianum_Basin_ColorHillshade.asset | 28 - .../LRO_NAC_ClrShade_55N077E_200cmp.vrt | 53 - ...oldtianum_Basin_Colorized_Confidence.asset | 28 - .../LRO_NAC_ClrConf_55N077E_200cmp.vrt | 53 - .../LRO_NAC_ClrConf_55N077E_200cmp.wms | 24 - ..._Humboldtianum_Basin_Colorized_Slope.asset | 28 - .../LRO_NAC_Slope_55N077E_200cmp.vrt | 53 - .../LRO_NAC_Slope_55N077E_200cmp.wms | 24 - ...OC_DEM_Humboldtianum_Basin_Grayscale.asset | 28 - .../LRO_NAC_Gray_55N077E_200cmp.vrt | 29 - .../LRO_NAC_Gray_55N077E_200cmp.wms | 24 - ...OC_DEM_Humboldtianum_Basin_Hillshade.asset | 28 - .../LRO_NAC_Shade_55N077E_200cmp.vrt | 29 - .../LRO_NAC_Shade_55N077E_200cmp.wms | 24 - ...C_DEM_Ina_(D-Caldera)_ColorHillshade.asset | 28 - .../LRO_NAC_ClrShade_19N005E_2mp.vrt | 53 - ...M_Ina_D-Caldera_ColorHillshade_Slope.asset | 28 - .../LRO_NAC_Slope_19N005E_2mp.vrt | 53 - .../LRO_NAC_Slope_19N005E_2mp.wms | 24 - ...M_Ina_D-Caldera_Colorized_Confidence.asset | 28 - .../LRO_NAC_ClrConf_19N005E_2mp.vrt | 53 - .../LRO_NAC_ClrConf_19N005E_2mp.wms | 24 - ...LRO_LROC_DEM_Ina_D-Caldera_Grayscale.asset | 28 - .../LRO_NAC_Gray_19N005E_2mp.vrt | 29 - .../LRO_NAC_Gray_19N005E_2mp.wms | 24 - ...LRO_LROC_DEM_Ina_D-Caldera_Hillshade.asset | 28 - .../LRO_NAC_Shade_19N005E_2mp.vrt | 29 - .../LRO_NAC_Shade_19N005E_2mp.wms | 24 - ..._DEM_King_Crater_15m_Color_Roughness.asset | 28 - ...RO_NAC_ClrRoughness_15m_06N120E_200cmp.vrt | 53 - ...ng_Crater_15m_Color_Roughness_Hazard.asset | 28 - ...NAC_ClrRoughnessHaz_15m_06N120E_200cmp.vrt | 53 - ...NAC_ClrRoughnessHaz_15m_06N120E_200cmp.wms | 24 - ...LROC_DEM_King_Crater_15m_Color_Slope.asset | 28 - .../LRO_NAC_ClrSlope_15m_06N120E_200cmp.vrt | 53 - .../LRO_NAC_ClrSlope_15m_06N120E_200cmp.wms | 24 - ...M_King_Crater_15m_Color_Slope_Hazard.asset | 28 - ...LRO_NAC_ClrSlopeHaz_15m_06N120E_200cmp.vrt | 53 - ...LRO_NAC_ClrSlopeHaz_15m_06N120E_200cmp.wms | 24 - ...C_DEM_King_Crater_4m_Color_Roughness.asset | 28 - ...LRO_NAC_ClrRoughness_4m_06N120E_200cmp.vrt | 53 - ...LRO_NAC_ClrRoughness_4m_06N120E_200cmp.wms | 24 - ...ing_Crater_4m_Color_Roughness_Hazard.asset | 28 - ..._NAC_ClrRoughnessHaz_4m_06N120E_200cmp.vrt | 53 - ..._NAC_ClrRoughnessHaz_4m_06N120E_200cmp.wms | 24 - ..._LROC_DEM_King_Crater_4m_Color_Slope.asset | 28 - .../LRO_NAC_ClrSlope_4m_06N120E_200cmp.vrt | 53 - .../LRO_NAC_ClrSlope_4m_06N120E_200cmp.wms | 24 - ...EM_King_Crater_4m_Color_Slope_Hazard.asset | 28 - .../LRO_NAC_ClrSlopeHaz_4m_06N120E_200cmp.vrt | 53 - .../LRO_NAC_ClrSlopeHaz_4m_06N120E_200cmp.wms | 24 - ..._LROC_DEM_King_Crater_ColorHillshade.asset | 28 - .../LRO_NAC_ClrShade_06N120E_200cmp.vrt | 53 - .../LRO_NAC_ClrShade_06N120E_200cmp.wms | 24 - ...DEM_King_Crater_Colorized_Confidence.asset | 28 - .../LRO_NAC_ClrConf_06N120E_200cmp.vrt | 53 - .../LRO_NAC_ClrConf_06N120E_200cmp.wms | 24 - ...LROC_DEM_King_Crater_Colorized_Slope.asset | 28 - .../LRO_NAC_Slope_06N120E_200cmp.vrt | 53 - .../LRO_NAC_Slope_06N120E_200cmp.wms | 24 - .../LRO_LROC_DEM_King_Crater_Grayscale.asset | 28 - .../LRO_NAC_Gray_06N120E_200cmp.vrt | 29 - .../LRO_NAC_Gray_06N120E_200cmp.wms | 24 - .../LRO_LROC_DEM_King_Crater_Hillshade.asset | 28 - .../LRO_NAC_Shade_06N120E_200cmp.vrt | 29 - .../LRO_NAC_Shade_06N120E_200cmp.wms | 24 - ...chtenberg_Crater_15m_Color_Roughness.asset | 28 - .../LRO_NAC_ClrRoughness_15m_32N292E_2mp.vrt | 53 - ...rg_Crater_15m_Color_Roughness_Hazard.asset | 28 - ...RO_NAC_ClrRoughnessHaz_15m_32N292E_2mp.vrt | 53 - ...RO_NAC_ClrRoughnessHaz_15m_32N292E_2mp.wms | 24 - ...M_Lichtenberg_Crater_15m_Color_Slope.asset | 28 - .../LRO_NAC_ClrSlope_15m_32N292E_2mp.vrt | 53 - .../LRO_NAC_ClrSlope_15m_32N292E_2mp.wms | 24 - ...enberg_Crater_15m_Color_Slope_Hazard.asset | 28 - .../LRO_NAC_ClrSlopeHaz_15m_32N292E_2mp.vrt | 53 - .../LRO_NAC_ClrSlopeHaz_15m_32N292E_2mp.wms | 24 - ...ichtenberg_Crater_4m_Color_Roughness.asset | 28 - .../LRO_NAC_ClrRoughness_4m_32N292E_2mp.vrt | 53 - .../LRO_NAC_ClrRoughness_4m_32N292E_2mp.wms | 24 - ...erg_Crater_4m_Color_Roughness_Hazard.asset | 28 - ...LRO_NAC_ClrRoughnessHaz_4m_32N292E_2mp.vrt | 53 - ...LRO_NAC_ClrRoughnessHaz_4m_32N292E_2mp.wms | 24 - ...EM_Lichtenberg_Crater_4m_Color_Slope.asset | 28 - .../LRO_NAC_ClrSlope_4m_32N292E_2mp.vrt | 53 - .../LRO_NAC_ClrSlope_4m_32N292E_2mp.wms | 24 - ...tenberg_Crater_4m_Color_Slope_Hazard.asset | 28 - .../LRO_NAC_ClrSlopeHaz_4m_32N292E_2mp.vrt | 53 - .../LRO_NAC_ClrSlopeHaz_4m_32N292E_2mp.wms | 24 - ...EM_Lichtenberg_Crater_ColorHillshade.asset | 28 - .../LRO_NAC_ClrShade_32N292E_2mp.vrt | 53 - .../LRO_NAC_ClrShade_32N292E_2mp.wms | 24 - ...htenberg_Crater_ColorHillshade_Slope.asset | 28 - .../LRO_NAC_Slope_32N292E_2mp.vrt | 53 - .../LRO_NAC_Slope_32N292E_2mp.wms | 24 - ...htenberg_Crater_Colorized_Confidence.asset | 28 - .../LRO_NAC_ClrConf_32N292E_2mp.vrt | 53 - .../LRO_NAC_ClrConf_32N292E_2mp.wms | 24 - ...ROC_DEM_Lichtenberg_Crater_Grayscale.asset | 28 - .../LRO_NAC_Gray_32N292E_2mp.vrt | 29 - .../LRO_NAC_Gray_32N292E_2mp.wms | 24 - ...ROC_DEM_Lichtenberg_Crater_Hillshade.asset | 28 - .../LRO_NAC_Shade_32N292E_2mp.vrt | 29 - .../LRO_NAC_Shade_32N292E_2mp.wms | 24 - ...DEM_Mare_Crisium_15m_Color_Roughness.asset | 28 - ...LRO_NAC_ClrRoughness_15m_10N58E_150cmp.vrt | 53 - ...e_Crisium_15m_Color_Roughness_Hazard.asset | 28 - ..._NAC_ClrRoughnessHaz_15m_10N58E_150cmp.vrt | 53 - ..._NAC_ClrRoughnessHaz_15m_10N58E_150cmp.wms | 24 - ...ROC_DEM_Mare_Crisium_15m_Color_Slope.asset | 28 - .../LRO_NAC_ClrSlope_15m_10N58E_150cmp.vrt | 53 - .../LRO_NAC_ClrSlope_15m_10N58E_150cmp.wms | 24 - ..._Mare_Crisium_15m_Color_Slope_Hazard.asset | 28 - .../LRO_NAC_ClrSlopeHaz_15m_10N58E_150cmp.vrt | 53 - .../LRO_NAC_ClrSlopeHaz_15m_10N58E_150cmp.wms | 24 - ..._DEM_Mare_Crisium_3m_Color_Roughness.asset | 28 - .../LRO_NAC_ClrRoughness_3m_10N58E_150cmp.vrt | 53 - .../LRO_NAC_ClrRoughness_3m_10N58E_150cmp.wms | 24 - ...re_Crisium_3m_Color_Roughness_Hazard.asset | 28 - ...O_NAC_ClrRoughnessHaz_3m_10N58E_150cmp.vrt | 53 - ...O_NAC_ClrRoughnessHaz_3m_10N58E_150cmp.wms | 24 - ...LROC_DEM_Mare_Crisium_3m_Color_Slope.asset | 28 - .../LRO_NAC_ClrSlope_3m_10N58E_150cmp.vrt | 53 - .../LRO_NAC_ClrSlope_3m_10N58E_150cmp.wms | 24 - ...M_Mare_Crisium_3m_Color_Slope_Hazard.asset | 28 - .../LRO_NAC_ClrSlopeHaz_3m_10N58E_150cmp.vrt | 53 - .../LRO_NAC_ClrSlopeHaz_3m_10N58E_150cmp.wms | 24 - ...LROC_DEM_Mare_Crisium_ColorHillshade.asset | 28 - .../LRO_NAC_ClrShade_10N058E_150cmp.vrt | 53 - .../LRO_NAC_ClrShade_10N058E_150cmp.wms | 24 - ...EM_Mare_Crisium_Colorized_Confidence.asset | 28 - .../LRO_NAC_ClrConf_10N058E_150cmp.vrt | 53 - .../LRO_NAC_ClrConf_10N058E_150cmp.wms | 24 - ...ROC_DEM_Mare_Crisium_Colorized_Slope.asset | 28 - .../LRO_NAC_Slope_10N058E_150cmp.vrt | 53 - .../LRO_NAC_Slope_10N058E_150cmp.wms | 24 - .../LRO_LROC_DEM_Mare_Crisium_Grayscale.asset | 28 - .../LRO_NAC_Gray_10N058E_150cmp.vrt | 29 - .../LRO_NAC_Gray_10N058E_150cmp.wms | 24 - .../LRO_LROC_DEM_Mare_Crisium_Hillshade.asset | 28 - .../LRO_NAC_Shade_10N058E_150cmp.vrt | 29 - .../LRO_NAC_Shade_10N058E_150cmp.wms | 24 - ...LROC_DEM_Mare_Ingenii_ColorHillshade.asset | 28 - .../LRO_NAC_ClrShade_36S164E_2mp.vrt | 53 - ...EM_Mare_Ingenii_ColorHillshade_Slope.asset | 28 - .../LRO_NAC_Slope_36S164E_2mp.vrt | 53 - .../LRO_NAC_Slope_36S164E_2mp.wms | 24 - ...EM_Mare_Ingenii_Colorized_Confidence.asset | 28 - .../LRO_NAC_ClrConf_36S164E_2mp.vrt | 53 - .../LRO_NAC_ClrConf_36S164E_2mp.wms | 24 - .../LRO_LROC_DEM_Mare_Ingenii_Grayscale.asset | 28 - .../LRO_NAC_Gray_36S164E_2mp.vrt | 29 - .../LRO_NAC_Gray_36S164E_2mp.wms | 24 - .../LRO_LROC_DEM_Mare_Ingenii_Hillshade.asset | 28 - .../LRO_NAC_Shade_36S164E_2mp.vrt | 29 - .../LRO_NAC_Shade_36S164E_2mp.wms | 24 - ..._DEM_Mare_Moscoviense_ColorHillshade.asset | 28 - .../LRO_NAC_ClrShade_26N150E_200cmp.vrt | 53 - ...are_Moscoviense_Colorized_Confidence.asset | 28 - .../LRO_NAC_ClrConf_26N150E_200cmp.vrt | 53 - .../LRO_NAC_ClrConf_26N150E_200cmp.wms | 24 - ...DEM_Mare_Moscoviense_Colorized_Slope.asset | 28 - .../LRO_NAC_Slope_26N150E_200cmp.vrt | 53 - .../LRO_NAC_Slope_26N150E_200cmp.wms | 24 - ..._LROC_DEM_Mare_Moscoviense_Grayscale.asset | 28 - .../LRO_NAC_Gray_26N150E_200cmp.vrt | 29 - .../LRO_NAC_Gray_26N150E_200cmp.wms | 24 - ..._LROC_DEM_Mare_Moscoviense_Hillshade.asset | 28 - .../LRO_NAC_Shade_26N150E_200cmp.vrt | 29 - .../LRO_NAC_Shade_26N150E_200cmp.wms | 24 - ...LROC_DEM_Mare_Smythii_ColorHillshade.asset | 28 - .../LRO_NAC_ClrShade_02N085E_150cmp.vrt | 53 - ...EM_Mare_Smythii_Colorized_Confidence.asset | 28 - .../LRO_NAC_ClrConf_02N085E_150cmp.vrt | 53 - .../LRO_NAC_ClrConf_02N085E_150cmp.wms | 24 - ...ROC_DEM_Mare_Smythii_Colorized_Slope.asset | 28 - .../LRO_NAC_Slope_02N085E_150cmp.vrt | 53 - .../LRO_NAC_Slope_02N085E_150cmp.wms | 24 - .../LRO_LROC_DEM_Mare_Smythii_Grayscale.asset | 28 - .../LRO_NAC_Gray_02N085E_150cmp.vrt | 29 - .../LRO_NAC_Gray_02N085E_150cmp.wms | 24 - .../LRO_LROC_DEM_Mare_Smythii_Hillshade.asset | 28 - .../LRO_NAC_Shade_02N085E_150cmp.vrt | 29 - .../LRO_NAC_Shade_02N085E_150cmp.wms | 24 - ..._Mare_Tranquillitatis_ColorHillshade.asset | 28 - .../LRO_NAC_ClrShade_07N022E_150cmp.vrt | 53 - ...Tranquillitatis_Colorized_Confidence.asset | 28 - .../LRO_NAC_ClrConf_07N022E_150cmp.vrt | 53 - .../LRO_NAC_ClrConf_07N022E_150cmp.wms | 24 - ...Mare_Tranquillitatis_Colorized_Slope.asset | 28 - .../LRO_NAC_Slope_07N022E_150cmp.vrt | 53 - .../LRO_NAC_Slope_07N022E_150cmp.wms | 24 - ...C_DEM_Mare_Tranquillitatis_Grayscale.asset | 28 - .../LRO_NAC_Gray_07N022E_150cmp.vrt | 29 - .../LRO_NAC_Gray_07N022E_150cmp.wms | 24 - ...C_DEM_Mare_Tranquillitatis_Hillshade.asset | 28 - .../LRO_NAC_Shade_07N022E_150cmp.vrt | 29 - .../LRO_NAC_Shade_07N022E_150cmp.wms | 24 - ...LROC_DEM_Marius_Hills_ColorHillshade.asset | 28 - .../LRO_NAC_ClrShade_14N304E_2mp.vrt | 53 - ...EM_Marius_Hills_ColorHillshade_Slope.asset | 28 - .../LRO_NAC_Slope_14N304E_2mp.vrt | 53 - .../LRO_NAC_Slope_14N304E_2mp.wms | 24 - ...EM_Marius_Hills_Colorized_Confidence.asset | 28 - .../LRO_NAC_ClrConf_14N304E_2mp.vrt | 53 - .../LRO_NAC_ClrConf_14N304E_2mp.wms | 24 - .../LRO_LROC_DEM_Marius_Hills_Grayscale.asset | 28 - .../LRO_NAC_Gray_14N304E_2mp.vrt | 29 - .../LRO_NAC_Gray_14N304E_2mp.wms | 24 - .../LRO_LROC_DEM_Marius_Hills_Hillshade.asset | 28 - .../LRO_NAC_Shade_14N304E_2mp.vrt | 29 - .../LRO_NAC_Shade_14N304E_2mp.wms | 24 - ...Montes_Pyrenaeus_15m_Color_Roughness.asset | 28 - ...RO_NAC_ClrRoughness_15m_16S041E_150cmp.vrt | 53 - ...Pyrenaeus_15m_Color_Roughness_Hazard.asset | 28 - ...NAC_ClrRoughnessHaz_15m_16S041E_150cmp.vrt | 53 - ...NAC_ClrRoughnessHaz_15m_16S041E_150cmp.wms | 24 - ...DEM_Montes_Pyrenaeus_15m_Color_Slope.asset | 28 - .../LRO_NAC_ClrSlope_15m_16S041E_150cmp.vrt | 53 - .../LRO_NAC_ClrSlope_15m_16S041E_150cmp.wms | 24 - ...tes_Pyrenaeus_15m_Color_Slope_Hazard.asset | 28 - ...LRO_NAC_ClrSlopeHaz_15m_16S041E_150cmp.vrt | 53 - ...LRO_NAC_ClrSlopeHaz_15m_16S041E_150cmp.wms | 24 - ..._Montes_Pyrenaeus_3m_Color_Roughness.asset | 28 - ...LRO_NAC_ClrRoughness_3m_16S041E_150cmp.vrt | 53 - ...LRO_NAC_ClrRoughness_3m_16S041E_150cmp.wms | 24 - ..._Pyrenaeus_3m_Color_Roughness_Hazard.asset | 28 - ..._NAC_ClrRoughnessHaz_3m_16S041E_150cmp.vrt | 53 - ..._NAC_ClrRoughnessHaz_3m_16S041E_150cmp.wms | 24 - ..._DEM_Montes_Pyrenaeus_3m_Color_Slope.asset | 28 - .../LRO_NAC_ClrSlope_3m_16S041E_150cmp.vrt | 53 - .../LRO_NAC_ClrSlope_3m_16S041E_150cmp.wms | 24 - ...ntes_Pyrenaeus_3m_Color_Slope_Hazard.asset | 28 - .../LRO_NAC_ClrSlopeHaz_3m_16S041E_150cmp.vrt | 53 - .../LRO_NAC_ClrSlopeHaz_3m_16S041E_150cmp.wms | 24 - ..._DEM_Montes_Pyrenaeus_ColorHillshade.asset | 28 - .../LRO_NAC_ClrShade_16S041E_150cmp.vrt | 53 - .../LRO_NAC_ClrShade_16S041E_150cmp.wms | 24 - ...ontes_Pyrenaeus_Colorized_Confidence.asset | 28 - .../LRO_NAC_ClrConf_16S041E_150cmp.vrt | 53 - .../LRO_NAC_ClrConf_16S041E_150cmp.wms | 24 - ...DEM_Montes_Pyrenaeus_Colorized_Slope.asset | 28 - .../LRO_NAC_Slope_16S041E_150cmp.vrt | 53 - .../LRO_NAC_Slope_16S041E_150cmp.wms | 24 - ..._LROC_DEM_Montes_Pyrenaeus_Grayscale.asset | 28 - .../LRO_NAC_Gray_16S041E_150cmp.vrt | 29 - .../LRO_NAC_Gray_16S041E_150cmp.wms | 24 - ..._LROC_DEM_Montes_Pyrenaeus_Hillshade.asset | 28 - .../LRO_NAC_Shade_16S041E_150cmp.vrt | 29 - .../LRO_NAC_Shade_16S041E_150cmp.wms | 24 - ..._DEM_Murchison_Crater_ColorHillshade.asset | 28 - .../LRO_NAC_ClrShade_05N000E_150cmp.vrt | 53 - ...urchison_Crater_Colorized_Confidence.asset | 28 - .../LRO_NAC_ClrConf_05N000E_150cmp.vrt | 53 - .../LRO_NAC_ClrConf_05N000E_150cmp.wms | 24 - ...DEM_Murchison_Crater_Colorized_Slope.asset | 28 - .../LRO_NAC_Slope_05N000E_150cmp.vrt | 53 - .../LRO_NAC_Slope_05N000E_150cmp.wms | 24 - ..._LROC_DEM_Murchison_Crater_Grayscale.asset | 28 - .../LRO_NAC_Gray_05N000E_150cmp.vrt | 29 - .../LRO_NAC_Gray_05N000E_150cmp.wms | 24 - ..._LROC_DEM_Murchison_Crater_Hillshade.asset | 28 - .../LRO_NAC_Shade_05N000E_150cmp.vrt | 29 - .../LRO_NAC_Shade_05N000E_150cmp.wms | 24 - ..._DEM_Orientale_1_15m_Color_Roughness.asset | 28 - ...RO_NAC_ClrRoughness_15m_26S265E_200cmp.vrt | 53 - ...ientale_1_15m_Color_Roughness_Hazard.asset | 28 - ...NAC_ClrRoughnessHaz_15m_26S265E_200cmp.vrt | 53 - ...NAC_ClrRoughnessHaz_15m_26S265E_200cmp.wms | 24 - ...LROC_DEM_Orientale_1_15m_Color_Slope.asset | 28 - .../LRO_NAC_ClrSlope_15m_26S265E_200cmp.vrt | 53 - .../LRO_NAC_ClrSlope_15m_26S265E_200cmp.wms | 24 - ...M_Orientale_1_15m_Color_Slope_Hazard.asset | 28 - ...LRO_NAC_ClrSlopeHaz_15m_26S265E_200cmp.vrt | 53 - ...LRO_NAC_ClrSlopeHaz_15m_26S265E_200cmp.wms | 24 - ...C_DEM_Orientale_1_4m_Color_Roughness.asset | 28 - ...LRO_NAC_ClrRoughness_4m_26S265E_200cmp.vrt | 53 - ...LRO_NAC_ClrRoughness_4m_26S265E_200cmp.wms | 24 - ...rientale_1_4m_Color_Roughness_Hazard.asset | 28 - ..._NAC_ClrRoughnessHaz_4m_26S265E_200cmp.vrt | 53 - ..._NAC_ClrRoughnessHaz_4m_26S265E_200cmp.wms | 24 - ..._LROC_DEM_Orientale_1_4m_Color_Slope.asset | 28 - .../LRO_NAC_ClrSlope_4m_26S265E_200cmp.vrt | 53 - .../LRO_NAC_ClrSlope_4m_26S265E_200cmp.wms | 24 - ...EM_Orientale_1_4m_Color_Slope_Hazard.asset | 28 - .../LRO_NAC_ClrSlopeHaz_4m_26S265E_200cmp.vrt | 53 - .../LRO_NAC_ClrSlopeHaz_4m_26S265E_200cmp.wms | 24 - ..._LROC_DEM_Orientale_1_ColorHillshade.asset | 28 - .../LRO_NAC_ClrShade_26S265E_200cmp.vrt | 53 - .../LRO_NAC_ClrShade_26S265E_200cmp.wms | 24 - ...DEM_Orientale_1_Colorized_Confidence.asset | 28 - .../LRO_NAC_ClrConf_26S265E_200cmp.vrt | 53 - .../LRO_NAC_ClrConf_26S265E_200cmp.wms | 24 - ...LROC_DEM_Orientale_1_Colorized_Slope.asset | 28 - .../LRO_NAC_Slope_26S265E_200cmp.vrt | 53 - .../LRO_NAC_Slope_26S265E_200cmp.wms | 24 - .../LRO_LROC_DEM_Orientale_1_Grayscale.asset | 28 - .../LRO_NAC_Gray_26S265E_200cmp.vrt | 29 - .../LRO_NAC_Gray_26S265E_200cmp.wms | 24 - .../LRO_LROC_DEM_Orientale_1_Hillshade.asset | 28 - .../LRO_NAC_Shade_26S265E_200cmp.vrt | 29 - .../LRO_NAC_Shade_26S265E_200cmp.wms | 24 - ...DEM_Plato_Ejecta_15m_Color_Roughness.asset | 28 - ...RO_NAC_ClrRoughness_15m_53N354E_150cmp.vrt | 53 - ...to_Ejecta_15m_Color_Roughness_Hazard.asset | 28 - ...NAC_ClrRoughnessHaz_15m_53N354E_150cmp.vrt | 53 - ...NAC_ClrRoughnessHaz_15m_53N354E_150cmp.wms | 24 - ...ROC_DEM_Plato_Ejecta_15m_Color_Slope.asset | 28 - .../LRO_NAC_ClrSlope_15m_53N354E_150cmp.vrt | 53 - .../LRO_NAC_ClrSlope_15m_53N354E_150cmp.wms | 24 - ..._Plato_Ejecta_15m_Color_Slope_Hazard.asset | 28 - ...LRO_NAC_ClrSlopeHaz_15m_53N354E_150cmp.vrt | 53 - ...LRO_NAC_ClrSlopeHaz_15m_53N354E_150cmp.wms | 24 - ..._DEM_Plato_Ejecta_3m_Color_Roughness.asset | 28 - ...LRO_NAC_ClrRoughness_3m_53N354E_150cmp.vrt | 53 - ...LRO_NAC_ClrRoughness_3m_53N354E_150cmp.wms | 24 - ...ato_Ejecta_3m_Color_Roughness_Hazard.asset | 28 - ..._NAC_ClrRoughnessHaz_3m_53N354E_150cmp.vrt | 53 - ..._NAC_ClrRoughnessHaz_3m_53N354E_150cmp.wms | 24 - ...LROC_DEM_Plato_Ejecta_3m_Color_Slope.asset | 28 - .../LRO_NAC_ClrSlope_3m_53N354E_150cmp.vrt | 53 - .../LRO_NAC_ClrSlope_3m_53N354E_150cmp.wms | 24 - ...M_Plato_Ejecta_3m_Color_Slope_Hazard.asset | 28 - .../LRO_NAC_ClrSlopeHaz_3m_53N354E_150cmp.vrt | 53 - .../LRO_NAC_ClrSlopeHaz_3m_53N354E_150cmp.wms | 24 - ...LROC_DEM_Plato_Ejecta_ColorHillshade.asset | 28 - .../LRO_NAC_ClrShade_53N354E_150cmp.vrt | 53 - .../LRO_NAC_ClrShade_53N354E_150cmp.wms | 24 - ...EM_Plato_Ejecta_Colorized_Confidence.asset | 28 - .../LRO_NAC_ClrConf_53N354E_150cmp.vrt | 53 - .../LRO_NAC_ClrConf_53N354E_150cmp.wms | 24 - ...ROC_DEM_Plato_Ejecta_Colorized_Slope.asset | 28 - .../LRO_NAC_Slope_53N354E_150cmp.vrt | 53 - .../LRO_NAC_Slope_53N354E_150cmp.wms | 24 - .../LRO_LROC_DEM_Plato_Ejecta_Grayscale.asset | 28 - .../LRO_NAC_Gray_53N354E_150cmp.vrt | 29 - .../LRO_NAC_Gray_53N354E_150cmp.wms | 24 - .../LRO_LROC_DEM_Plato_Ejecta_Hillshade.asset | 28 - .../LRO_NAC_Shade_53N354E_150cmp.vrt | 29 - .../LRO_NAC_Shade_53N354E_150cmp.wms | 24 - ...LROC_DEM_Reiner_Gamma_ColorHillshade.asset | 28 - .../LRO_NAC_ClrShade_07N301E_2mp.vrt | 53 - ...EM_Reiner_Gamma_ColorHillshade_Slope.asset | 28 - .../LRO_NAC_Slope_07N301E_2mp.vrt | 53 - .../LRO_NAC_Slope_07N301E_2mp.wms | 24 - ...EM_Reiner_Gamma_Colorized_Confidence.asset | 28 - .../LRO_NAC_ClrConf_07N301E_2mp.vrt | 53 - .../LRO_NAC_ClrConf_07N301E_2mp.wms | 24 - .../LRO_LROC_DEM_Reiner_Gamma_Grayscale.asset | 28 - .../LRO_NAC_Gray_07N301E_2mp.vrt | 29 - .../LRO_NAC_Gray_07N301E_2mp.wms | 24 - .../LRO_LROC_DEM_Reiner_Gamma_Hillshade.asset | 28 - .../LRO_NAC_Shade_07N301E_2mp.vrt | 29 - .../LRO_NAC_Shade_07N301E_2mp.wms | 24 - ...C_DEM_Riccioli_Crater_ColorHillshade.asset | 28 - .../LRO_NAC_ClrShade_03S286E_150cmp.vrt | 53 - ...Riccioli_Crater_Colorized_Confidence.asset | 28 - .../LRO_NAC_ClrConf_03S286E_150cmp.vrt | 53 - .../LRO_NAC_ClrConf_03S286E_150cmp.wms | 24 - ..._DEM_Riccioli_Crater_Colorized_Slope.asset | 28 - .../LRO_NAC_Slope_03S286E_150cmp.vrt | 53 - .../LRO_NAC_Slope_03S286E_150cmp.wms | 24 - ...O_LROC_DEM_Riccioli_Crater_Grayscale.asset | 28 - .../LRO_NAC_Gray_03S286E_150cmp.vrt | 29 - .../LRO_NAC_Gray_03S286E_150cmp.wms | 24 - ...O_LROC_DEM_Riccioli_Crater_Hillshade.asset | 28 - .../LRO_NAC_Shade_03S286E_150cmp.vrt | 29 - .../LRO_NAC_Shade_03S286E_150cmp.wms | 24 - ...RO_LROC_DEM_Rima_Bode_ColorHillshade.asset | 28 - .../LRO_NAC_ClrShade_13N356E_150cmp.vrt | 53 - ...C_DEM_Rima_Bode_Colorized_Confidence.asset | 28 - .../LRO_NAC_ClrConf_13N356E_150cmp.vrt | 53 - .../LRO_NAC_ClrConf_13N356E_150cmp.wms | 24 - ...O_LROC_DEM_Rima_Bode_Colorized_Slope.asset | 28 - .../LRO_NAC_Slope_13N356E_150cmp.vrt | 53 - .../LRO_NAC_Slope_13N356E_150cmp.wms | 24 - .../LRO_LROC_DEM_Rima_Bode_Grayscale.asset | 28 - .../LRO_NAC_Gray_13N356E_150cmp.vrt | 29 - .../LRO_NAC_Gray_13N356E_150cmp.wms | 24 - .../LRO_LROC_DEM_Rima_Bode_Hillshade.asset | 28 - .../LRO_NAC_Shade_13N356E_150cmp.vrt | 29 - .../LRO_NAC_Shade_13N356E_150cmp.wms | 24 - ..._LROC_DEM_Rimae_Prinz_ColorHillshade.asset | 28 - .../LRO_NAC_ClrShade_27N318E_150cmp.vrt | 53 - ...DEM_Rimae_Prinz_Colorized_Confidence.asset | 28 - .../LRO_NAC_ClrConf_27N318E_150cmp.vrt | 53 - .../LRO_NAC_ClrConf_27N318E_150cmp.wms | 24 - ...LROC_DEM_Rimae_Prinz_Colorized_Slope.asset | 28 - .../LRO_NAC_Slope_27N318E_150cmp.vrt | 53 - .../LRO_NAC_Slope_27N318E_150cmp.wms | 24 - .../LRO_LROC_DEM_Rimae_Prinz_Grayscale.asset | 28 - .../LRO_NAC_Gray_27N318E_150cmp.vrt | 29 - .../LRO_NAC_Gray_27N318E_150cmp.wms | 24 - .../LRO_LROC_DEM_Rimae_Prinz_Hillshade.asset | 28 - .../LRO_NAC_Shade_27N318E_150cmp.vrt | 29 - .../LRO_NAC_Shade_27N318E_150cmp.wms | 24 - ...n_Basin_Interior_15m_Color_Roughness.asset | 28 - ...RO_NAC_ClrRoughness_15m_60S200E_150cmp.vrt | 53 - ..._Interior_15m_Color_Roughness_Hazard.asset | 28 - ...NAC_ClrRoughnessHaz_15m_60S200E_150cmp.vrt | 53 - ...NAC_ClrRoughnessHaz_15m_60S200E_150cmp.wms | 24 - ...itken_Basin_Interior_15m_Color_Slope.asset | 28 - .../LRO_NAC_ClrSlope_15m_60S200E_150cmp.vrt | 53 - .../LRO_NAC_ClrSlope_15m_60S200E_150cmp.wms | 24 - ...asin_Interior_15m_Color_Slope_Hazard.asset | 28 - ...LRO_NAC_ClrSlopeHaz_15m_60S200E_150cmp.vrt | 53 - ...LRO_NAC_ClrSlopeHaz_15m_60S200E_150cmp.wms | 24 - ...en_Basin_Interior_3m_Color_Roughness.asset | 28 - ...LRO_NAC_ClrRoughness_3m_60S200E_150cmp.vrt | 53 - ...LRO_NAC_ClrRoughness_3m_60S200E_150cmp.wms | 24 - ...n_Interior_3m_Color_Roughness_Hazard.asset | 28 - ..._NAC_ClrRoughnessHaz_3m_60S200E_150cmp.vrt | 53 - ..._NAC_ClrRoughnessHaz_3m_60S200E_150cmp.wms | 24 - ...Aitken_Basin_Interior_3m_Color_Slope.asset | 28 - .../LRO_NAC_ClrSlope_3m_60S200E_150cmp.vrt | 53 - .../LRO_NAC_ClrSlope_3m_60S200E_150cmp.wms | 24 - ...Basin_Interior_3m_Color_Slope_Hazard.asset | 28 - .../LRO_NAC_ClrSlopeHaz_3m_60S200E_150cmp.vrt | 53 - .../LRO_NAC_ClrSlopeHaz_3m_60S200E_150cmp.wms | 24 - ...Aitken_Basin_Interior_ColorHillshade.asset | 28 - .../LRO_NAC_ClrShade_60S200E_150cmp.vrt | 53 - .../LRO_NAC_ClrShade_60S200E_150cmp.wms | 24 - ..._Basin_Interior_Colorized_Confidence.asset | 28 - .../LRO_NAC_ClrConf_60S200E_150cmp.vrt | 53 - .../LRO_NAC_ClrConf_60S200E_150cmp.wms | 24 - ...itken_Basin_Interior_Colorized_Slope.asset | 28 - .../LRO_NAC_Slope_60S200E_150cmp.vrt | 53 - .../LRO_NAC_Slope_60S200E_150cmp.wms | 24 - ...Pole-Aitken_Basin_Interior_Grayscale.asset | 28 - .../LRO_NAC_Gray_60S200E_150cmp.vrt | 29 - .../LRO_NAC_Gray_60S200E_150cmp.wms | 24 - ...Pole-Aitken_Basin_Interior_Hillshade.asset | 28 - .../LRO_NAC_Shade_60S200E_150cmp.vrt | 29 - .../LRO_NAC_Shade_60S200E_150cmp.wms | 24 - ...South_Pole-Aitken_Rim_ColorHillshade.asset | 28 - .../LRO_NAC_ClrShade_51S171E_2mp.vrt | 53 - ...Pole-Aitken_Rim_ColorHillshade_Slope.asset | 28 - .../LRO_NAC_Slope_51S171E_2mp.vrt | 53 - .../LRO_NAC_Slope_51S171E_2mp.wms | 24 - ...Pole-Aitken_Rim_Colorized_Confidence.asset | 28 - .../LRO_NAC_ClrConf_51S171E_2mp.vrt | 53 - .../LRO_NAC_ClrConf_51S171E_2mp.wms | 24 - ..._DEM_South_Pole-Aitken_Rim_Grayscale.asset | 28 - .../LRO_NAC_Gray_51S171E_2mp.vrt | 29 - .../LRO_NAC_Gray_51S171E_2mp.wms | 24 - ..._DEM_South_Pole-Aitken_Rim_Hillshade.asset | 28 - .../LRO_NAC_Shade_51S171E_2mp.vrt | 29 - .../LRO_NAC_Shade_51S171E_2mp.wms | 24 - ..._DEM_Stratton_(Dewar)_ColorHillshade.asset | 28 - .../LRO_NAC_ClrShade_02S167E_150cmp.vrt | 53 - ...tratton_(Dewar)_Colorized_Confidence.asset | 28 - .../LRO_NAC_ClrConf_02S167E_150cmp.vrt | 53 - .../LRO_NAC_ClrConf_02S167E_150cmp.wms | 24 - ...DEM_Stratton_(Dewar)_Colorized_Slope.asset | 28 - .../LRO_NAC_Slope_02S167E_150cmp.vrt | 53 - .../LRO_NAC_Slope_02S167E_150cmp.wms | 24 - ..._LROC_DEM_Stratton_(Dewar)_Grayscale.asset | 28 - .../LRO_NAC_Gray_02S167E_150cmp.vrt | 29 - .../LRO_NAC_Gray_02S167E_150cmp.wms | 24 - ..._High_Fe_Anomaly_15m_Color_Roughness.asset | 28 - ...RO_NAC_ClrRoughness_15m_02S167E_150cmp.vrt | 53 - ...e_Anomaly_15m_Color_Roughness_Hazard.asset | 28 - ...NAC_ClrRoughnessHaz_15m_02S167E_150cmp.vrt | 53 - ...NAC_ClrRoughnessHaz_15m_02S167E_150cmp.wms | 24 - ...war)_High_Fe_Anomaly_15m_Color_Slope.asset | 28 - .../LRO_NAC_ClrSlope_15m_02S167E_150cmp.vrt | 53 - .../LRO_NAC_ClrSlope_15m_02S167E_150cmp.wms | 24 - ...gh_Fe_Anomaly_15m_Color_Slope_Hazard.asset | 28 - ...LRO_NAC_ClrSlopeHaz_15m_02S167E_150cmp.vrt | 53 - ...LRO_NAC_ClrSlopeHaz_15m_02S167E_150cmp.wms | 24 - ...)_High_Fe_Anomaly_3m_Color_Roughness.asset | 28 - ...LRO_NAC_ClrRoughness_3m_02S167E_150cmp.vrt | 53 - ...LRO_NAC_ClrRoughness_3m_02S167E_150cmp.wms | 24 - ...Fe_Anomaly_3m_Color_Roughness_Hazard.asset | 28 - ..._NAC_ClrRoughnessHaz_3m_02S167E_150cmp.vrt | 53 - ..._NAC_ClrRoughnessHaz_3m_02S167E_150cmp.wms | 24 - ...ewar)_High_Fe_Anomaly_3m_Color_Slope.asset | 28 - .../LRO_NAC_ClrSlope_3m_02S167E_150cmp.vrt | 53 - .../LRO_NAC_ClrSlope_3m_02S167E_150cmp.wms | 24 - ...igh_Fe_Anomaly_3m_Color_Slope_Hazard.asset | 28 - .../LRO_NAC_ClrSlopeHaz_3m_02S167E_150cmp.vrt | 53 - .../LRO_NAC_ClrSlopeHaz_3m_02S167E_150cmp.wms | 24 - ..._LROC_DEM_Stratton_(Dewar)_Hillshade.asset | 28 - .../LRO_NAC_Shade_02S167E_150cmp.vrt | 29 - .../LRO_NAC_Shade_02S167E_150cmp.wms | 24 - ...Sulpicius_Gallus_15m_Color_Roughness.asset | 28 - .../LRO_NAC_ClrRoughness_15m_20N010E_2mp.vrt | 53 - ...us_Gallus_15m_Color_Roughness_Hazard.asset | 28 - ...RO_NAC_ClrRoughnessHaz_15m_20N010E_2mp.vrt | 53 - ...RO_NAC_ClrRoughnessHaz_15m_20N010E_2mp.wms | 24 - ...DEM_Sulpicius_Gallus_15m_Color_Slope.asset | 28 - .../LRO_NAC_ClrSlope_15m_20N010E_2mp.vrt | 53 - .../LRO_NAC_ClrSlope_15m_20N010E_2mp.wms | 24 - ...picius_Gallus_15m_Color_Slope_Hazard.asset | 28 - .../LRO_NAC_ClrSlopeHaz_15m_20N010E_2mp.vrt | 53 - .../LRO_NAC_ClrSlopeHaz_15m_20N010E_2mp.wms | 24 - ..._Sulpicius_Gallus_4m_Color_Roughness.asset | 28 - .../LRO_NAC_ClrRoughness_4m_20N010E_2mp.vrt | 53 - .../LRO_NAC_ClrRoughness_4m_20N010E_2mp.wms | 24 - ...ius_Gallus_4m_Color_Roughness_Hazard.asset | 28 - ...LRO_NAC_ClrRoughnessHaz_4m_20N010E_2mp.vrt | 53 - ...LRO_NAC_ClrRoughnessHaz_4m_20N010E_2mp.wms | 24 - ..._DEM_Sulpicius_Gallus_4m_Color_Slope.asset | 28 - .../LRO_NAC_ClrSlope_4m_20N010E_2mp.vrt | 53 - .../LRO_NAC_ClrSlope_4m_20N010E_2mp.wms | 24 - ...lpicius_Gallus_4m_Color_Slope_Hazard.asset | 28 - .../LRO_NAC_ClrSlopeHaz_4m_20N010E_2mp.vrt | 53 - .../LRO_NAC_ClrSlopeHaz_4m_20N010E_2mp.wms | 24 - ..._DEM_Sulpicius_Gallus_ColorHillshade.asset | 28 - .../LRO_NAC_ClrShade_20N010E_2mp.vrt | 53 - .../LRO_NAC_ClrShade_20N010E_2mp.wms | 24 - ...ulpicius_Gallus_ColorHillshade_Slope.asset | 28 - .../LRO_NAC_Slope_20N010E_2mp.vrt | 53 - .../LRO_NAC_Slope_20N010E_2mp.wms | 24 - ...ulpicius_Gallus_Colorized_Confidence.asset | 28 - .../LRO_NAC_ClrConf_20N010E_2mp.vrt | 53 - .../LRO_NAC_ClrConf_20N010E_2mp.wms | 24 - ..._LROC_DEM_Sulpicius_Gallus_Grayscale.asset | 28 - .../LRO_NAC_Gray_20N010E_2mp.vrt | 29 - .../LRO_NAC_Gray_20N010E_2mp.wms | 24 - ..._LROC_DEM_Sulpicius_Gallus_Hillshade.asset | 28 - .../LRO_NAC_Shade_20N010E_2mp.vrt | 29 - .../LRO_NAC_Shade_20N010E_2mp.wms | 24 - ...olkovskiy_Crater_15m_Color_Roughness.asset | 28 - ...RO_NAC_ClrRoughness_15m_19S129E_150cmp.vrt | 53 - ...iy_Crater_15m_Color_Roughness_Hazard.asset | 28 - ...NAC_ClrRoughnessHaz_15m_19S129E_150cmp.vrt | 53 - ...NAC_ClrRoughnessHaz_15m_19S129E_150cmp.wms | 24 - ..._Tsiolkovskiy_Crater_15m_Color_Slope.asset | 28 - .../LRO_NAC_ClrSlope_15m_19S129E_150cmp.vrt | 53 - .../LRO_NAC_ClrSlope_15m_19S129E_150cmp.wms | 24 - ...ovskiy_Crater_15m_Color_Slope_Hazard.asset | 28 - ...LRO_NAC_ClrSlopeHaz_15m_19S129E_150cmp.vrt | 53 - ...LRO_NAC_ClrSlopeHaz_15m_19S129E_150cmp.wms | 24 - ...iolkovskiy_Crater_3m_Color_Roughness.asset | 28 - ...LRO_NAC_ClrRoughness_3m_19S129E_150cmp.vrt | 53 - ...LRO_NAC_ClrRoughness_3m_19S129E_150cmp.wms | 24 - ...kiy_Crater_3m_Color_Roughness_Hazard.asset | 28 - ..._NAC_ClrRoughnessHaz_3m_19S129E_150cmp.vrt | 53 - ..._NAC_ClrRoughnessHaz_3m_19S129E_150cmp.wms | 24 - ...M_Tsiolkovskiy_Crater_3m_Color_Slope.asset | 28 - .../LRO_NAC_ClrSlope_3m_19S129E_150cmp.vrt | 53 - .../LRO_NAC_ClrSlope_3m_19S129E_150cmp.wms | 24 - ...kovskiy_Crater_3m_Color_Slope_Hazard.asset | 28 - .../LRO_NAC_ClrSlopeHaz_3m_19S129E_150cmp.vrt | 53 - .../LRO_NAC_ClrSlopeHaz_3m_19S129E_150cmp.wms | 24 - ...M_Tsiolkovskiy_Crater_ColorHillshade.asset | 28 - .../LRO_NAC_ClrShade_19S129E_150cmp.vrt | 53 - .../LRO_NAC_ClrShade_19S129E_150cmp.wms | 24 - ...lkovskiy_Crater_Colorized_Confidence.asset | 28 - .../LRO_NAC_ClrConf_19S129E_150cmp.vrt | 53 - .../LRO_NAC_ClrConf_19S129E_150cmp.wms | 24 - ..._Tsiolkovskiy_Crater_Colorized_Slope.asset | 28 - .../LRO_NAC_Slope_19S129E_150cmp.vrt | 53 - .../LRO_NAC_Slope_19S129E_150cmp.wms | 24 - ...OC_DEM_Tsiolkovskiy_Crater_Grayscale.asset | 28 - .../LRO_NAC_Gray_19S129E_150cmp.vrt | 29 - .../LRO_NAC_Gray_19S129E_150cmp.wms | 24 - ...OC_DEM_Tsiolkovskiy_Crater_Hillshade.asset | 28 - .../LRO_NAC_Shade_19S129E_150cmp.vrt | 29 - .../LRO_NAC_Shade_19S129E_150cmp.wms | 24 - ...DEM_Tycho_Crater_15m_Color_Roughness.asset | 28 - ...RO_NAC_ClrRoughness_15m_43S349E_150cmp.vrt | 53 - ...ho_Crater_15m_Color_Roughness_Hazard.asset | 28 - ...NAC_ClrRoughnessHaz_15m_43S349E_150cmp.vrt | 53 - ...NAC_ClrRoughnessHaz_15m_43S349E_150cmp.wms | 24 - ...ROC_DEM_Tycho_Crater_15m_Color_Slope.asset | 28 - .../LRO_NAC_ClrSlope_15m_43S349E_150cmp.vrt | 53 - .../LRO_NAC_ClrSlope_15m_43S349E_150cmp.wms | 24 - ..._Tycho_Crater_15m_Color_Slope_Hazard.asset | 28 - ...LRO_NAC_ClrSlopeHaz_15m_43S349E_150cmp.vrt | 53 - ...LRO_NAC_ClrSlopeHaz_15m_43S349E_150cmp.wms | 24 - ..._DEM_Tycho_Crater_3m_Color_Roughness.asset | 28 - ...LRO_NAC_ClrRoughness_3m_43S349E_150cmp.vrt | 53 - ...LRO_NAC_ClrRoughness_3m_43S349E_150cmp.wms | 24 - ...cho_Crater_3m_Color_Roughness_Hazard.asset | 28 - ..._NAC_ClrRoughnessHaz_3m_43S349E_150cmp.vrt | 53 - ..._NAC_ClrRoughnessHaz_3m_43S349E_150cmp.wms | 24 - ...LROC_DEM_Tycho_Crater_3m_Color_Slope.asset | 28 - .../LRO_NAC_ClrSlope_3m_43S349E_150cmp.vrt | 53 - .../LRO_NAC_ClrSlope_3m_43S349E_150cmp.wms | 24 - ...M_Tycho_Crater_3m_Color_Slope_Hazard.asset | 28 - .../LRO_NAC_ClrSlopeHaz_3m_43S349E_150cmp.vrt | 53 - .../LRO_NAC_ClrSlopeHaz_3m_43S349E_150cmp.wms | 24 - ...LROC_DEM_Tycho_Crater_ColorHillshade.asset | 28 - .../LRO_NAC_ClrShade_43S349E_150cmp.vrt | 53 - .../LRO_NAC_ClrShade_43S349E_150cmp.wms | 24 - ...EM_Tycho_Crater_Colorized_Confidence.asset | 28 - .../LRO_NAC_ClrConf_43S349E_150cmp.vrt | 53 - .../LRO_NAC_ClrConf_43S349E_150cmp.wms | 24 - ...ROC_DEM_Tycho_Crater_Colorized_Slope.asset | 28 - .../LRO_NAC_Slope_43S349E_150cmp.vrt | 53 - .../LRO_NAC_Slope_43S349E_150cmp.wms | 24 - .../LRO_LROC_DEM_Tycho_Crater_Grayscale.asset | 28 - .../LRO_NAC_Gray_43S349E_150cmp.vrt | 29 - .../LRO_NAC_Gray_43S349E_150cmp.wms | 24 - .../LRO_LROC_DEM_Tycho_Crater_Hillshade.asset | 28 - .../LRO_NAC_Shade_43S349E_150cmp.vrt | 29 - .../LRO_NAC_Shade_43S349E_150cmp.wms | 24 - .../nasa-treks/LRO_LROC_Image_Mosaic.asset | 364 ++++++ .../LRO_LROC_Image_Mosaic/Aitken_Crater.vrt | 29 + .../Aitken_Crater.wms} | 0 .../LRO_LROC_Image_Mosaic/Alphonsus.vrt | 29 + .../Alphonsus.wms} | 0 .../LRO_LROC_Image_Mosaic/Apollo_15.vrt | 29 + .../Apollo_15.wms} | 0 .../LRO_LROC_Image_Mosaic/Apollo_16.vrt | 29 + .../Apollo_16.wms} | 0 .../LRO_LROC_Image_Mosaic/Aristarchus_1.vrt | 29 + .../Aristarchus_1.wms} | 0 .../LRO_LROC_Image_Mosaic/Aristarchus_2.vrt | 29 + .../Aristarchus_2.wms} | 0 .../LRO_LROC_Image_Mosaic/Balmer_Basin.vrt | 29 + .../Balmer_Basin.wms} | 0 .../Compton_Belkovich_Th_Anomaly.vrt | 29 + .../Compton_Belkovich_Th_Anomaly.wms} | 0 .../Flamsteed_Crater.vrt | 29 + .../Flamsteed_Crater.wms} | 0 .../Gruithuisen_Domes.vrt | 29 + .../Gruithuisen_Domes.wms} | 0 .../LRO_LROC_Image_Mosaic/Hertzsprung.vrt | 29 + .../Hertzsprung.wms} | 0 .../Hortensius_Domes.vrt | 29 + .../Hortensius_Domes.wms} | 0 .../Humboldtianum_Basin.vrt | 29 + .../Humboldtianum_Basin.wms} | 0 .../LRO_LROC_Image_Mosaic/Ina_D-Caldera.vrt | 29 + .../Ina_D-Caldera.wms} | 0 .../LRO_LROC_Image_Mosaic/King_Crater.vrt | 29 + .../King_Crater.wms} | 0 .../Lichtenberg_Crater.vrt | 29 + .../Lichtenberg_Crater.wms} | 0 .../LRO_LROC_Image_Mosaic/Mare_Ingenii.vrt | 29 + .../Mare_Ingenii.wms} | 0 .../Mare_Moscoviense.vrt | 29 + .../Mare_Moscoviense.wms} | 0 .../LRO_LROC_Image_Mosaic/Mare_Smythii.vrt | 29 + .../Mare_Smythii.wms} | 0 .../Mare_Tranquillitatis.vrt | 29 + .../Mare_Tranquillitatis.wms} | 0 .../LRO_LROC_Image_Mosaic/Marius_Hills.vrt | 29 + .../Marius_Hills.wms} | 0 .../Montes_Pyrenaeus.vrt | 29 + .../Montes_Pyrenaeus.wms} | 0 .../Murchison_Crater.vrt | 29 + .../Murchison_Crater.wms} | 0 .../LRO_LROC_Image_Mosaic/Orientale_1.vrt | 29 + .../Orientale_1.wms} | 0 .../LRO_LROC_Image_Mosaic/Reiner_Gamma.vrt | 29 + .../Reiner_Gamma.wms} | 0 .../LRO_LROC_Image_Mosaic/Riccioli_Crater.vrt | 29 + .../Riccioli_Crater.wms} | 0 .../LRO_LROC_Image_Mosaic/Rima_Bode.vrt | 29 + .../Rima_Bode.wms} | 0 .../LRO_LROC_Image_Mosaic/Rimae_Prinz.vrt | 29 + .../Rimae_Prinz.wms} | 0 .../South_Pole-Aitken_Basin_Interior.vrt | 29 + .../South_Pole-Aitken_Basin_Interior.wms} | 0 .../South_Pole-Aitken_Rim.vrt | 29 + .../South_Pole-Aitken_Rim.wms} | 0 .../LRO_LROC_Image_Mosaic/Stratton_Dewar.vrt | 29 + .../Stratton_Dewar.wms} | 0 .../Sulpicius_Gallus.vrt | 29 + .../Sulpicius_Gallus.wms} | 0 .../Tsiolkovskiy_Crater.vrt | 29 + .../Tsiolkovskiy_Crater.wms} | 0 .../LRO_LROC_Image_Mosaic/Tycho_Crater.vrt | 29 + .../Tycho_Crater.wms} | 0 .../LRO_LROC_Image_Mosaic_26cm.asset | 34 + .../LRO_LROC_Image_Mosaic_26cm/Apollo_11.vrt | 29 + .../Apollo_11.wms} | 0 ...LRO_LROC_Image_Mosaic_26cm_Apollo_11.asset | 28 - ..._26cm_mosaic_byte_geo_1_2_highContrast.vrt | 29 - .../LRO_LROC_Image_Mosaic_28cm.asset | 34 + .../LRO_LROC_Image_Mosaic_28cm/Apollo_14.vrt | 29 + .../Apollo_14.wms} | 0 ...LRO_LROC_Image_Mosaic_28cm_Apollo_14.asset | 28 - ..._28cm_mosaic_byte_geo_1_2_highContrast.vrt | 29 - .../LRO_LROC_Image_Mosaic_Aitken_Crater.asset | 28 - .../LRO_NAC_Mosaic_17S173E_50cmp.vrt | 29 - .../LRO_LROC_Image_Mosaic_Alphonsus.asset | 28 - .../LRO_NAC_Mosaic_13S358E_50cmp.vrt | 29 - .../LRO_LROC_Image_Mosaic_Apollo_15.asset | 28 - .../LRO_NAC_Mosaic_26N004E_50cmp.vrt | 29 - .../LRO_LROC_Image_Mosaic_Apollo_16.asset | 28 - .../LRO_NAC_Mosaic_09S015E_50cmp.vrt | 29 - .../LRO_LROC_Image_Mosaic_Aristarchus_1.asset | 28 - .../LRO_NAC_Mosaic_25N311E_50cmp.vrt | 29 - .../LRO_LROC_Image_Mosaic_Aristarchus_2.asset | 28 - .../LRO_NAC_Mosaic_28N307E_50cmp.vrt | 29 - .../LRO_LROC_Image_Mosaic_Balmer_Basin.asset | 28 - .../LRO_NAC_Mosaic_19S070E_50cmp.vrt | 29 - ..._Mosaic_Compton_Belkovich_Th_Anomaly.asset | 28 - .../LRO_NAC_Mosaic_61N099E_50cmp.vrt | 29 - ...O_LROC_Image_Mosaic_Flamsteed_Crater.asset | 28 - .../LRO_NAC_Mosaic_02S317E_50cmp.vrt | 29 - ..._LROC_Image_Mosaic_Gruithuisen_Domes.asset | 28 - .../LRO_NAC_Mosaic_36N320E_50cmp.vrt | 29 - .../LRO_LROC_Image_Mosaic_Hertzsprung.asset | 28 - .../LRO_NAC_Mosaic_00N234E_50cmp.vrt | 29 - ...O_LROC_Image_Mosaic_Hortensius_Domes.asset | 28 - .../LRO_NAC_Mosaic_08N332E_50cmp.vrt | 29 - ...ROC_Image_Mosaic_Humboldtianum_Basin.asset | 28 - .../LRO_NAC_Mosaic_55N077E_50cmp.vrt | 29 - .../LRO_LROC_Image_Mosaic_Ina_D-Caldera.asset | 28 - .../LRO_NAC_Mosaic_19N005E_50cmp.vrt | 29 - .../LRO_LROC_Image_Mosaic_King_Crater.asset | 28 - .../LRO_NAC_Mosaic_06N120E_50cmp.vrt | 29 - ...LROC_Image_Mosaic_Lichtenberg_Crater.asset | 28 - .../LRO_NAC_Mosaic_32N292E_50cmp.vrt | 29 - .../LRO_LROC_Image_Mosaic_Mare_Ingenii.asset | 28 - .../LRO_NAC_Mosaic_36S164E_70cmp.vrt | 29 - ...O_LROC_Image_Mosaic_Mare_Moscoviense.asset | 28 - .../LRO_NAC_Mosaic_26N150E_50cmp.vrt | 29 - .../LRO_LROC_Image_Mosaic_Mare_Smythii.asset | 28 - .../LRO_NAC_Mosaic_02N085E_50cmp.vrt | 29 - ...OC_Image_Mosaic_Mare_Tranquillitatis.asset | 28 - .../LRO_NAC_Mosaic_07N022E_50cmp.vrt | 29 - .../LRO_LROC_Image_Mosaic_Marius_Hills.asset | 28 - .../LRO_NAC_Mosaic_14N304E_50cmp.vrt | 29 - ...O_LROC_Image_Mosaic_Montes_Pyrenaeus.asset | 28 - .../LRO_NAC_Mosaic_16S041E_50cmp.vrt | 29 - ...O_LROC_Image_Mosaic_Murchison_Crater.asset | 28 - .../LRO_NAC_Mosaic_05N000E_50cmp.vrt | 29 - .../LRO_LROC_Image_Mosaic_Orientale_1.asset | 28 - .../LRO_NAC_Mosaic_26S265E_50cmp.vrt | 29 - .../LRO_LROC_Image_Mosaic_Reiner_Gamma.asset | 28 - .../LRO_NAC_Mosaic_07N301E_50cmp.vrt | 29 - ...RO_LROC_Image_Mosaic_Riccioli_Crater.asset | 28 - .../LRO_NAC_Mosaic_03S286E_50cmp.vrt | 29 - .../LRO_LROC_Image_Mosaic_Rima_Bode.asset | 28 - .../LRO_NAC_Mosaic_13N356E_50cmp.vrt | 29 - .../LRO_LROC_Image_Mosaic_Rimae_Prinz.asset | 28 - .../LRO_NAC_Mosaic_27N318E_50cmp.vrt | 29 - ...aic_South_Pole-Aitken_Basin_Interior.asset | 28 - .../LRO_NAC_Mosaic_60S200E_50cmp.vrt | 29 - ...C_Image_Mosaic_South_Pole-Aitken_Rim.asset | 28 - .../LRO_NAC_Mosaic_51S171E_60cmp.vrt | 29 - ...O_LROC_Image_Mosaic_Stratton_(Dewar).asset | 28 - .../LRO_NAC_Mosaic_02S167E_50cmp.vrt | 29 - ...O_LROC_Image_Mosaic_Sulpicius_Gallus.asset | 28 - .../LRO_NAC_Mosaic_20N010E_60cmp.vrt | 29 - ...ROC_Image_Mosaic_Tsiolkovskiy_Crater.asset | 28 - .../LRO_NAC_Mosaic_19S129E_50cmp.vrt | 29 - .../LRO_LROC_Image_Mosaic_Tycho_Crater.asset | 28 - .../LRO_NAC_Mosaic_43S349E_50cmp.vrt | 29 - .../moon/nasa-treks/LRO_LROC_Mosaic.asset | 34 + .../Fresh_Crater_East_of_Lents.vrt | 29 + .../Fresh_Crater_East_of_Lents.wms} | 0 ...OC_Mosaic_Fresh_Crater_East_of_Lents.asset | 28 - .../LRO_NAC_Mosaic_03N280E_70cm.vrt | 29 - .../LRO_LROC_NAC_Image_Mosaic.asset | 44 + .../LRO_LROC_NAC_Image_Mosaic/N_Pole.vrt | 29 + .../N_Pole.wms} | 0 .../LRO_LROC_NAC_Image_Mosaic/S_Pole.vrt | 29 + .../S_Pole.wms} | 0 ...OC_NAC_Image_Mosaic_N_Pole_Avg_Merge.asset | 28 - .../LRO_NAC_AvgMosaic_NPole855_1mp_EQ.vrt | 29 - ...OC_NAC_Image_Mosaic_S_Pole_Avg_Merge.asset | 28 - .../LRO_NAC_AvgMosaic_SPole855_1mp_EQ.vrt | 29 - .../nasa-treks/LRO_LROC_Rock_Abundance.asset | 254 +++++ .../LRO_LROC_Rock_Abundance/Aitken_Crater.vrt | 53 + .../Aitken_Crater.wms} | 0 .../Alphonsus_Crater.vrt | 53 + .../Alphonsus_Crater.wms} | 0 .../Anaxagoras_Crater.vrt | 53 + .../Anaxagoras_Crater.wms} | 0 .../LRO_LROC_Rock_Abundance/Apollo_15.vrt | 53 + .../Apollo_15.wms} | 0 .../LRO_LROC_Rock_Abundance/Apollo_16.vrt | 53 + .../Apollo_16.wms} | 0 .../LRO_LROC_Rock_Abundance/Apollo_Basin.vrt | 53 + .../Apollo_Basin.wms} | 0 .../LRO_LROC_Rock_Abundance/Aristarchus_1.vrt | 53 + .../Aristarchus_1.wms} | 0 .../LRO_LROC_Rock_Abundance/Aristarchus_2.vrt | 53 + .../Aristarchus_2.wms} | 0 .../LRO_LROC_Rock_Abundance/Balmer_Basin.vrt | 53 + .../Balmer_Basin.wms} | 0 .../Bullialdus_Crater.vrt | 53 + .../Bullialdus_Crater.wms} | 0 .../Gruithuisen_Domes.vrt | 53 + .../Gruithuisen_Domes.wms} | 0 .../LRO_LROC_Rock_Abundance/Hertzsprung.vrt | 53 + .../Hertzsprung.wms} | 0 .../Hortensius_Domes.vrt | 53 + .../Hortensius_Domes.wms} | 0 .../LRO_LROC_Rock_Abundance/King_Crater.vrt | 53 + .../King_Crater.wms} | 0 .../Lichtenberg_Crater.vrt | 53 + .../Lichtenberg_Crater.wms} | 0 .../LRO_LROC_Rock_Abundance/Mare_Crisium.vrt | 53 + .../Mare_Crisium.wms} | 0 .../Montes_Pyrenaeus.vrt | 53 + .../Montes_Pyrenaeus.wms} | 0 .../LRO_LROC_Rock_Abundance/Orientale_1.vrt | 53 + .../Orientale_1.wms} | 0 .../LRO_LROC_Rock_Abundance/Plato_Ejecta.vrt | 53 + .../Plato_Ejecta.wms} | 0 .../South_Pole-Aitken_Basin_Interior.vrt | 53 + .../South_Pole-Aitken_Basin_Interior.wms} | 0 .../Stratton_Dewar_High_Fe_Anomaly.vrt | 53 + .../Stratton_Dewar_High_Fe_Anomaly.wms} | 0 .../Sulpicius_Gallus.vrt | 53 + .../Sulpicius_Gallus.wms} | 0 .../LRO_LROC_Rock_Abundance/Tycho_Crater.vrt | 53 + .../Tycho_Crater.wms} | 0 ...RO_LROC_Rock_Abundance_Aitken_Crater.asset | 28 - .../LRO_NAC_RockAbnd_17S173E_150cmp.vrt | 53 - ...LROC_Rock_Abundance_Alphonsus_Crater.asset | 28 - .../LRO_NAC_RockAbnd_13S358E_2mp.vrt | 53 - ...ROC_Rock_Abundance_Anaxagoras_Crater.asset | 28 - .../LRO_NAC_RockAbnd_73N350E_150cmp.vrt | 53 - .../LRO_LROC_Rock_Abundance_Apollo_15.asset | 28 - .../LRO_NAC_RockAbnd_26N004E_150cmp.vrt | 53 - .../LRO_LROC_Rock_Abundance_Apollo_16.asset | 28 - .../LRO_NAC_RockAbnd_09S015E_150cmp.vrt | 53 - ...LRO_LROC_Rock_Abundance_Apollo_Basin.asset | 28 - .../LRO_NAC_RockAbnd_37S206E_150cmp.vrt | 53 - ...RO_LROC_Rock_Abundance_Aristarchus_1.asset | 28 - .../LRO_NAC_RockAbnd_25N311E_2mp.vrt | 53 - ...RO_LROC_Rock_Abundance_Aristarchus_2.asset | 28 - .../LRO_NAC_RockAbnd_28N307E_150cmp.vrt | 53 - ...LRO_LROC_Rock_Abundance_Balmer_Basin.asset | 28 - .../LRO_NAC_RockAbnd_19S070E_150cmp.vrt | 53 - ...ROC_Rock_Abundance_Bullialdus_Crater.asset | 28 - .../LRO_NAC_RockAbnd_20S337E_400cmp.vrt | 53 - ...ROC_Rock_Abundance_Gruithuisen_Domes.asset | 28 - .../LRO_NAC_RockAbnd_36N320E_2mp.vrt | 53 - .../LRO_LROC_Rock_Abundance_Hazard.asset | 254 +++++ .../Aitken_Crater.vrt | 53 + .../Aitken_Crater.wms} | 0 .../Alphonsus_Crater.vrt | 53 + .../Alphonsus_Crater.wms} | 0 .../Anaxagoras_Crater.vrt | 53 + .../Anaxagoras_Crater.wms} | 0 .../Apollo_15.vrt | 53 + .../Apollo_15.wms} | 0 .../Apollo_16.vrt | 53 + .../Apollo_16.wms} | 0 .../Apollo_Basin.vrt | 53 + .../Apollo_Basin.wms} | 0 .../Aristarchus_1.vrt | 53 + .../Aristarchus_1.wms} | 0 .../Aristarchus_2.vrt | 53 + .../Aristarchus_2.wms} | 0 .../Balmer_Basin.vrt | 53 + .../Balmer_Basin.wms} | 0 .../Bullialdus_Crater.vrt | 53 + .../Bullialdus_Crater.wms} | 0 .../Gruithuisen_Domes.vrt | 53 + .../Gruithuisen_Domes.wms} | 0 .../Hertzsprung.vrt | 53 + .../Hertzsprung.wms} | 0 .../Hortensius_Domes.vrt | 53 + .../Hortensius_Domes.wms} | 0 .../King_Crater.vrt | 53 + .../King_Crater.wms} | 0 .../Lichtenberg_Crater.vrt | 53 + .../Lichtenberg_Crater.wms} | 0 .../Mare_Crisium.vrt | 53 + .../Mare_Crisium.wms} | 0 .../Montes_Pyrenaeus.vrt | 53 + .../Montes_Pyrenaeus.wms} | 0 .../Orientale_1.vrt | 53 + .../Orientale_1.wms} | 0 .../Plato_Ejecta.vrt | 53 + .../Plato_Ejecta.wms} | 0 .../South_Pole-Aitken_Basin_Interior.vrt | 53 + .../South_Pole-Aitken_Basin_Interior.wms} | 0 .../Stratton_Dewar_High_Fe_Anomaly.vrt | 53 + .../Stratton_Dewar_High_Fe_Anomaly.wms} | 0 .../Sulpicius_Gallus.vrt | 53 + .../Sulpicius_Gallus.wms} | 0 .../Tycho_Crater.vrt | 53 + .../Tycho_Crater.wms} | 0 ..._Rock_Abundance_Hazard_Aitken_Crater.asset | 28 - .../LRO_NAC_RockAbndHaz_17S173E_150cmp.vrt | 53 - ...ck_Abundance_Hazard_Alphonsus_Crater.asset | 28 - .../LRO_NAC_RockAbndHaz_13S358E_2mp.vrt | 53 - ...k_Abundance_Hazard_Anaxagoras_Crater.asset | 28 - .../LRO_NAC_RockAbndHaz_73N350E_150cmp.vrt | 53 - ...LROC_Rock_Abundance_Hazard_Apollo_15.asset | 28 - .../LRO_NAC_RockAbndHaz_26N004E_150cmp.vrt | 53 - ...LROC_Rock_Abundance_Hazard_Apollo_16.asset | 28 - .../LRO_NAC_RockAbndHaz_09S015E_150cmp.vrt | 53 - ...C_Rock_Abundance_Hazard_Apollo_Basin.asset | 28 - .../LRO_NAC_RockAbndHaz_37S206E_150cmp.vrt | 53 - ..._Rock_Abundance_Hazard_Aristarchus_1.asset | 28 - .../LRO_NAC_RockAbndHaz_25N311E_2mp.vrt | 53 - ..._Rock_Abundance_Hazard_Aristarchus_2.asset | 28 - .../LRO_NAC_RockAbndHaz_28N307E_150cmp.vrt | 53 - ...C_Rock_Abundance_Hazard_Balmer_Basin.asset | 28 - .../LRO_NAC_RockAbndHaz_19S070E_150cmp.vrt | 53 - ...k_Abundance_Hazard_Bullialdus_Crater.asset | 28 - .../LRO_NAC_RockAbndHaz_20S337E_400cmp.vrt | 53 - ...k_Abundance_Hazard_Gruithuisen_Domes.asset | 28 - .../LRO_NAC_RockAbndHaz_36N320E_2mp.vrt | 53 - ...OC_Rock_Abundance_Hazard_Hertzsprung.asset | 28 - .../LRO_NAC_RockAbndHaz_00N234E_150cmp.vrt | 53 - ...ck_Abundance_Hazard_Hortensius_Domes.asset | 28 - .../LRO_NAC_RockAbndHaz_08N332E_2mp.vrt | 53 - ...OC_Rock_Abundance_Hazard_King_Crater.asset | 28 - .../LRO_NAC_RockAbndHaz_06N120E_200cmp.vrt | 53 - ..._Abundance_Hazard_Lichtenberg_Crater.asset | 28 - .../LRO_NAC_RockAbndHaz_32N292E_2mp.vrt | 53 - ...C_Rock_Abundance_Hazard_Mare_Crisium.asset | 28 - .../LRO_NAC_RockAbndHaz_10N058E_150cmp.vrt | 53 - ...ck_Abundance_Hazard_Montes_Pyrenaeus.asset | 28 - .../LRO_NAC_RockAbndHaz_16S041E_150cmp.vrt | 53 - ...OC_Rock_Abundance_Hazard_Orientale_1.asset | 28 - .../LRO_NAC_RockAbndHaz_26S265E_200cmp.vrt | 53 - ...C_Rock_Abundance_Hazard_Plato_Ejecta.asset | 28 - .../LRO_NAC_RockAbndHaz_53N354E_150cmp.vrt | 53 - ...ard_South_Pole-Aitken_Basin_Interior.asset | 28 - .../LRO_NAC_RockAbndHaz_60S200E_150cmp.vrt | 53 - ...ard_Stratton_(Dewar)_High_Fe_Anomaly.asset | 28 - .../LRO_NAC_RockAbndHaz_02S167E_150cmp.vrt | 53 - ...ck_Abundance_Hazard_Sulpicius_Gallus.asset | 28 - .../LRO_NAC_RockAbndHaz_20N010E_2mp.vrt | 53 - ...C_Rock_Abundance_Hazard_Tycho_Crater.asset | 28 - .../LRO_NAC_RockAbndHaz_43S349E_150cmp.vrt | 53 - .../LRO_LROC_Rock_Abundance_Hertzsprung.asset | 28 - .../LRO_NAC_RockAbnd_00N234E_150cmp.vrt | 53 - ...LROC_Rock_Abundance_Hortensius_Domes.asset | 28 - .../LRO_NAC_RockAbnd_08N332E_2mp.vrt | 53 - .../LRO_LROC_Rock_Abundance_King_Crater.asset | 28 - .../LRO_NAC_RockAbnd_06N120E_200cmp.vrt | 53 - ...OC_Rock_Abundance_Lichtenberg_Crater.asset | 28 - .../LRO_NAC_RockAbnd_32N292E_2mp.vrt | 53 - ...LRO_LROC_Rock_Abundance_Mare_Crisium.asset | 28 - .../LRO_NAC_RockAbnd_10N058E_150cmp.vrt | 53 - ...LROC_Rock_Abundance_Montes_Pyrenaeus.asset | 28 - .../LRO_NAC_RockAbnd_16S041E_150cmp.vrt | 53 - .../LRO_LROC_Rock_Abundance_Orientale_1.asset | 28 - .../LRO_NAC_RockAbnd_26S265E_200cmp.vrt | 53 - ...LRO_LROC_Rock_Abundance_Plato_Ejecta.asset | 28 - .../LRO_NAC_RockAbnd_53N354E_150cmp.vrt | 53 - ...nce_South_Pole-Aitken_Basin_Interior.asset | 28 - .../LRO_NAC_RockAbnd_60S200E_150cmp.vrt | 53 - ...nce_Stratton_(Dewar)_High_Fe_Anomaly.asset | 28 - .../LRO_NAC_RockAbnd_02S167E_150cmp.vrt | 53 - ...LROC_Rock_Abundance_Sulpicius_Gallus.asset | 28 - .../LRO_NAC_RockAbnd_20N010E_2mp.vrt | 53 - ...LRO_LROC_Rock_Abundance_Tycho_Crater.asset | 28 - .../LRO_NAC_RockAbnd_43S349E_150cmp.vrt | 53 - .../nasa-treks/LRO_LROC_Rock_Density.asset | 264 +++++ .../LRO_LROC_Rock_Density/Aitken_Crater.vrt | 53 + .../Aitken_Crater.wms} | 0 .../Alphonsus_Crater.vrt | 53 + .../Alphonsus_Crater.wms} | 0 .../Anaxagoras_Crater.vrt | 53 + .../Anaxagoras_Crater.wms} | 0 .../LRO_LROC_Rock_Density/Apollo_15.vrt | 53 + .../Apollo_15.wms} | 0 .../LRO_LROC_Rock_Density/Apollo_16.vrt | 53 + .../Apollo_16.wms} | 0 .../LRO_LROC_Rock_Density/Apollo_Basin.vrt | 53 + .../Apollo_Basin.wms} | 0 .../LRO_LROC_Rock_Density/Aristarchus_1.vrt | 53 + .../Aristarchus_1.wms} | 0 .../LRO_LROC_Rock_Density/Aristarchus_2.vrt | 53 + .../Aristarchus_2.wms} | 0 .../LRO_LROC_Rock_Density/Balmer_Basin.vrt | 53 + .../Balmer_Basin.wms} | 0 .../Bullialdus_Crater.vrt | 53 + .../Bullialdus_Crater.wms} | 0 .../Gruithuisen_Domes.vrt | 53 + .../Gruithuisen_Domes.wms} | 0 .../Hazard_Aitken_Crater.vrt | 53 + .../Hazard_Aitken_Crater.wms} | 0 .../LRO_LROC_Rock_Density/Hertzsprung.vrt | 53 + .../Hertzsprung.wms} | 0 .../Hortensius_Domes.vrt | 53 + .../Hortensius_Domes.wms} | 0 .../LRO_LROC_Rock_Density/King_Crater.vrt | 53 + .../King_Crater.wms} | 0 .../Lichtenberg_Crater.vrt | 53 + .../Lichtenberg_Crater.wms} | 0 .../LRO_LROC_Rock_Density/Mare_Crisium.vrt | 53 + .../Mare_Crisium.wms} | 0 .../Montes_Pyrenaeus.vrt | 53 + .../Montes_Pyrenaeus.wms} | 0 .../LRO_LROC_Rock_Density/Orientale_1.vrt | 53 + .../Orientale_1.wms} | 0 .../LRO_LROC_Rock_Density/Plato_Ejecta.vrt | 53 + .../Plato_Ejecta.wms} | 0 .../South_Pole-Aitken_Basin_Interior.vrt | 53 + .../South_Pole-Aitken_Basin_Interior.wms} | 0 .../Stratton_Dewar_High_Fe_Anomaly.vrt | 53 + .../Stratton_Dewar_High_Fe_Anomaly.wms} | 0 .../Sulpicius_Gallus.vrt | 53 + .../Sulpicius_Gallus.wms} | 0 .../LRO_LROC_Rock_Density/Tycho_Crater.vrt | 53 + .../Tycho_Crater.wms} | 0 .../LRO_LROC_Rock_Density_Aitken_Crater.asset | 28 - .../LRO_NAC_RockDen_17S173E_150cmp.vrt | 53 - ...O_LROC_Rock_Density_Alphonsus_Crater.asset | 28 - .../LRO_NAC_RockDen_13S358E_2mp.vrt | 53 - ..._LROC_Rock_Density_Anaxagoras_Crater.asset | 28 - .../LRO_NAC_RockDen_73N350E_150cmp.vrt | 53 - .../LRO_LROC_Rock_Density_Apollo_15.asset | 28 - .../LRO_NAC_RockDen_26N004E_150cmp.vrt | 53 - .../LRO_LROC_Rock_Density_Apollo_16.asset | 28 - .../LRO_NAC_RockDen_09S015E_150cmp.vrt | 53 - .../LRO_LROC_Rock_Density_Apollo_Basin.asset | 28 - .../LRO_NAC_RockDen_37S206E_150cmp.vrt | 53 - .../LRO_LROC_Rock_Density_Aristarchus_1.asset | 28 - .../LRO_NAC_RockDen_25N311E_2mp.vrt | 53 - .../LRO_LROC_Rock_Density_Aristarchus_2.asset | 28 - .../LRO_NAC_RockDen_28N307E_150cmp.vrt | 53 - .../LRO_LROC_Rock_Density_Balmer_Basin.asset | 28 - .../LRO_NAC_RockDen_19S070E_150cmp.vrt | 53 - ..._LROC_Rock_Density_Bullialdus_Crater.asset | 28 - .../LRO_NAC_RockDen_20S337E_400cmp.vrt | 53 - ..._LROC_Rock_Density_Gruithuisen_Domes.asset | 28 - .../LRO_NAC_RockDen_36N320E_2mp.vrt | 53 - .../LRO_LROC_Rock_Density_Hazard.asset | 244 ++++ .../Alphonsus_Crater.vrt | 53 + .../Alphonsus_Crater.wms} | 0 .../Anaxagoras_Crater.vrt | 53 + .../Anaxagoras_Crater.wms} | 0 .../Apollo_15.vrt | 53 + .../Apollo_15.wms} | 0 .../Apollo_16.vrt | 53 + .../Apollo_16.wms} | 0 .../Apollo_Basin.vrt | 53 + .../Apollo_Basin.wms} | 0 .../Aristarchus_1.vrt | 53 + .../Aristarchus_1.wms} | 0 .../Aristarchus_2.vrt | 53 + .../Aristarchus_2.wms} | 0 .../Balmer_Basin.vrt | 53 + .../Balmer_Basin.wms} | 0 .../Bullialdus_Crater.vrt | 53 + .../Bullialdus_Crater.wms} | 0 .../Gruithuisen_Domes.vrt | 53 + .../Gruithuisen_Domes.wms} | 0 .../Hertzsprung.vrt | 53 + .../Hertzsprung.wms} | 0 .../Hortensius_Domes.vrt | 53 + .../Hortensius_Domes.wms} | 0 .../King_Crater.vrt | 53 + .../King_Crater.wms} | 0 .../Lichtenberg_Crater.vrt | 53 + .../Lichtenberg_Crater.wms} | 0 .../Mare_Crisium.vrt | 53 + .../Mare_Crisium.wms} | 0 .../Montes_Pyrenaeus.vrt | 53 + .../Montes_Pyrenaeus.wms} | 0 .../Orientale_1.vrt | 53 + .../Orientale_1.wms} | 0 .../Plato_Ejecta.vrt | 53 + .../Plato_Ejecta.wms} | 0 .../South_Pole-Aitken_Basin_Interior.vrt | 53 + .../South_Pole-Aitken_Basin_Interior.wms} | 0 .../Stratton_Dewar_High_Fe_Anomaly.vrt | 53 + .../Stratton_Dewar_High_Fe_Anomaly.wms} | 0 .../Sulpicius_Gallus.vrt | 53 + .../Sulpicius_Gallus.wms} | 0 .../Tycho_Crater.vrt | 53 + .../Tycho_Crater.wms} | 0 ...OC_Rock_Density_Hazard_Aitken_Crater.asset | 28 - .../LRO_NAC_RockDenHaz_17S173E_150cmp.vrt | 53 - ...Rock_Density_Hazard_Alphonsus_Crater.asset | 28 - .../LRO_NAC_RockDenHaz_13S358E_2mp.vrt | 53 - ...ock_Density_Hazard_Anaxagoras_Crater.asset | 28 - .../LRO_NAC_RockDenHaz_73N350E_150cmp.vrt | 53 - ...O_LROC_Rock_Density_Hazard_Apollo_15.asset | 28 - .../LRO_NAC_RockDenHaz_26N004E_150cmp.vrt | 53 - ...O_LROC_Rock_Density_Hazard_Apollo_16.asset | 28 - .../LRO_NAC_RockDenHaz_09S015E_150cmp.vrt | 53 - ...ROC_Rock_Density_Hazard_Apollo_Basin.asset | 28 - .../LRO_NAC_RockDenHaz_37S206E_150cmp.vrt | 53 - ...OC_Rock_Density_Hazard_Aristarchus_1.asset | 28 - .../LRO_NAC_RockDenHaz_25N311E_2mp.vrt | 53 - ...OC_Rock_Density_Hazard_Aristarchus_2.asset | 28 - .../LRO_NAC_RockDenHaz_28N307E_150cmp.vrt | 53 - ...ROC_Rock_Density_Hazard_Balmer_Basin.asset | 28 - .../LRO_NAC_RockDenHaz_19S070E_150cmp.vrt | 53 - ...ock_Density_Hazard_Bullialdus_Crater.asset | 28 - .../LRO_NAC_RockDenHaz_20S337E_400cmp.vrt | 53 - ...ock_Density_Hazard_Gruithuisen_Domes.asset | 28 - .../LRO_NAC_RockDenHaz_36N320E_2mp.vrt | 53 - ...LROC_Rock_Density_Hazard_Hertzsprung.asset | 28 - .../LRO_NAC_RockDenHaz_00N234E_150cmp.vrt | 53 - ...Rock_Density_Hazard_Hortensius_Domes.asset | 28 - .../LRO_NAC_RockDenHaz_08N332E_2mp.vrt | 53 - ...LROC_Rock_Density_Hazard_King_Crater.asset | 28 - .../LRO_NAC_RockDenHaz_06N120E_200cmp.vrt | 53 - ...ck_Density_Hazard_Lichtenberg_Crater.asset | 28 - .../LRO_NAC_RockDenHaz_32N292E_2mp.vrt | 53 - ...ROC_Rock_Density_Hazard_Mare_Crisium.asset | 28 - .../LRO_NAC_RockDenHaz_10N058E_150cmp.vrt | 53 - ...Rock_Density_Hazard_Montes_Pyrenaeus.asset | 28 - .../LRO_NAC_RockDenHaz_16S041E_150cmp.vrt | 53 - ...LROC_Rock_Density_Hazard_Orientale_1.asset | 28 - .../LRO_NAC_RockDenHaz_26S265E_200cmp.vrt | 53 - ...ROC_Rock_Density_Hazard_Plato_Ejecta.asset | 28 - .../LRO_NAC_RockDenHaz_53N354E_150cmp.vrt | 53 - ...ard_South_Pole-Aitken_Basin_Interior.asset | 28 - .../LRO_NAC_RockDenHaz_60S200E_150cmp.vrt | 53 - ...ard_Stratton_(Dewar)_High_Fe_Anomaly.asset | 28 - .../LRO_NAC_RockDenHaz_02S167E_150cmp.vrt | 53 - ...Rock_Density_Hazard_Sulpicius_Gallus.asset | 28 - .../LRO_NAC_RockDenHaz_20N010E_2mp.vrt | 53 - ...ROC_Rock_Density_Hazard_Tycho_Crater.asset | 28 - .../LRO_NAC_RockDenHaz_43S349E_150cmp.vrt | 53 - .../LRO_LROC_Rock_Density_Hertzsprung.asset | 28 - .../LRO_NAC_RockDen_00N234E_150cmp.vrt | 53 - ...O_LROC_Rock_Density_Hortensius_Domes.asset | 28 - .../LRO_NAC_RockDen_08N332E_2mp.vrt | 53 - .../LRO_LROC_Rock_Density_King_Crater.asset | 28 - .../LRO_NAC_RockDen_06N120E_200cmp.vrt | 53 - ...LROC_Rock_Density_Lichtenberg_Crater.asset | 28 - .../LRO_NAC_RockDen_32N292E_2mp.vrt | 53 - .../LRO_LROC_Rock_Density_Mare_Crisium.asset | 28 - .../LRO_NAC_RockDen_10N058E_150cmp.vrt | 53 - ...O_LROC_Rock_Density_Montes_Pyrenaeus.asset | 28 - .../LRO_NAC_RockDen_16S041E_150cmp.vrt | 53 - .../LRO_LROC_Rock_Density_Orientale_1.asset | 28 - .../LRO_NAC_RockDen_26S265E_200cmp.vrt | 53 - .../LRO_LROC_Rock_Density_Plato_Ejecta.asset | 28 - .../LRO_NAC_RockDen_53N354E_150cmp.vrt | 53 - ...ity_South_Pole-Aitken_Basin_Interior.asset | 28 - .../LRO_NAC_RockDen_60S200E_150cmp.vrt | 53 - ...ity_Stratton_(Dewar)_High_Fe_Anomaly.asset | 28 - .../LRO_NAC_RockDen_02S167E_150cmp.vrt | 53 - ...O_LROC_Rock_Density_Sulpicius_Gallus.asset | 28 - .../LRO_NAC_RockDen_20N010E_2mp.vrt | 53 - .../LRO_LROC_Rock_Density_Tycho_Crater.asset | 28 - .../LRO_NAC_RockDen_43S349E_150cmp.vrt | 53 - .../LRO_LROC_WAC_Image_Mosaic.asset | 28 - .../LRO_WAC_Mosaic_Global_303ppd.vrt | 29 - .../moon/nasa-treks/LRO_Laser_Altimeter.asset | 34 + .../LRO_Laser_Altimeter/Albedo_Global.vrt | 29 + .../Albedo_Global.wms} | 0 .../LRO_Laser_Altimeter_Albedo_Global.asset | 28 - .../ldam_10.vrt | 29 - ..._Mini-RF_Circular_Polarization_Ratio.asset | 34 + .../Grayscale.vrt | 29 + .../Grayscale.wms} | 0 ...ircular_Polarization_Ratio_Grayscale.asset | 28 - .../LRO_MiniRF_CPR_Gray_Global_128ppd.vrt | 29 - .../LRO_Mini-RF_First_Stokes_Parameter.asset | 28 - .../LRO_MiniRF_S1_Gray_Global_128ppd.vrt | 29 - .../nasa-treks/LRO_NAC_ColorHillshade.asset | 34 + .../LRO_NAC_ColorHillshade/Lacus_Mortis.vrt | 53 + .../Lacus_Mortis.wms} | 0 .../20191118-demmos-eqc-colorhillshade.vrt | 53 - .../LRO_NAC_ColorHillshade_Lacus_Mortis.asset | 28 - .../moon/nasa-treks/LRO_NAC_Mosaic.asset | 34 + .../LRO_NAC_Mosaic/Lacus_Mortis.vrt | 29 + .../Lacus_Mortis.wms} | 0 .../nasa-treks/LRO_NAC_Mosaic_0.5mpp.asset | 34 + .../LRO_NAC_Mosaic_0.5mpp/Von_Karman.vrt | 29 + .../LRO_NAC_Mosaic_0.5mpp/Von_Karman.wms | 24 + .../moon/nasa-treks/LRO_NAC_Mosaic_1mpp.asset | 34 + .../LRO_NAC_Mosaic_1mpp/Von_Karman.vrt | 29 + .../LRO_NAC_Mosaic_1mpp/Von_Karman.wms | 24 + ...5_lacusmortis_orthomos_filled_8bit_lzw.vrt | 29 - ...Mosaic_Lacus_Mortis_Extended_Version.asset | 28 - .../nasa-treks/LRO_NAC_PSR_Mosaic_20mpp.asset | 44 + .../LRO_NAC_PSR_Mosaic_20mpp/N_Pole.vrt | 29 + .../LRO_NAC_PSR_Mosaic_20mpp/N_Pole.wms | 24 + .../LRO_NAC_PSR_Mosaic_20mpp/S_Pole.vrt | 29 + .../LRO_NAC_PSR_Mosaic_20mpp/S_Pole.wms | 24 + .../LRO_NAC_and_CE-2_CCD_Mosaic_1mpp.asset | 34 + .../Von_Karman.vrt | 29 + .../Von_Karman.wms | 24 + .../nasa-treks/LRO_Narrow_Angle_Camera.asset | 302 +++++ .../Apollo_11_Landing_Site.vrt | 29 + .../Apollo_11_Landing_Site.wms} | 0 .../Apollo_12_Landing_Site.vrt | 29 + .../Apollo_12_Landing_Site.wms} | 0 .../Apollo_14_Landing_Site.vrt | 29 + .../Apollo_14_Landing_Site.wms} | 0 .../Apollo_15_Landing_Site.vrt | 29 + .../Apollo_15_Landing_Site.wms} | 0 .../Apollo_16_Landing_Site.vrt | 29 + .../Apollo_16_Landing_Site.wms} | 0 .../ColorHillShade_Apollo_17.vrt | 53 + .../ColorHillShade_Apollo_17.wms} | 0 .../HillShade_Apollo_17.vrt | 29 + .../HillShade_Apollo_17.wms} | 0 .../Mosaic_Apollo_11.vrt | 29 + .../Mosaic_Apollo_11.wms} | 0 .../Mosaic_Apollo_12.vrt | 29 + .../Mosaic_Apollo_12.wms} | 0 .../Mosaic_Apollo_14.vrt | 29 + .../Mosaic_Apollo_14.wms} | 0 .../Mosaic_Apollo_15.vrt | 29 + .../Mosaic_Apollo_15.wms} | 0 .../Mosaic_Apollo_16.vrt | 29 + .../Mosaic_Apollo_16.wms} | 0 .../Mosaic_Apollo_17.vrt | 29 + .../Mosaic_Apollo_17.wms} | 0 .../Mosaic_Apollo_17_Landing_Site.vrt | 29 + .../Mosaic_Apollo_17_Landing_Site.wms} | 0 .../Mosaic_Ingenii.vrt | 29 + .../Mosaic_Ingenii.wms} | 0 .../LRO_Narrow_Angle_Camera/Mosaic_Marius.vrt | 29 + .../Mosaic_Marius.wms} | 0 .../Mosaic_Schrodinger.vrt | 29 + .../Mosaic_Schrodinger.wms} | 0 .../Mosaic_Schrodinger_Extra.vrt | 29 + .../Mosaic_Schrodinger_Extra.wms} | 0 .../Mosaic_Schrodinger_Landing_Site.vrt | 29 + .../Mosaic_Schrodinger_Landing_Site.wms} | 0 .../Mosaic_Schrodinger_NorthEast.vrt | 29 + .../Mosaic_Schrodinger_NorthEast.wms} | 0 .../Mosaic_Schrodinger_SouthCenter.vrt | 29 + .../Mosaic_Schrodinger_SouthCenter.wms} | 0 .../Mosaic_Schrodinger_SouthEast.vrt | 29 + .../Mosaic_Schrodinger_SouthEast.wms} | 0 .../Mosaic_Small_Tranquilltatis_1.vrt | 29 + .../Mosaic_Small_Tranquilltatis_1.wms} | 0 .../Mosaic_Small_Tranquilltatis_2.vrt | 29 + .../Mosaic_Small_Tranquilltatis_2.wms} | 0 .../Slope_Apollo_17.vrt | 53 + .../Slope_Apollo_17.wms} | 0 .../LRO_NAC_Apollo11_Mosaic_p.vrt | 29 - ..._Angle_Camera_Apollo_11_Landing_Site.asset | 33 - .../LRO_NAC_Apollo12_Mosaic_p.vrt | 29 - ..._Angle_Camera_Apollo_12_Landing_Site.asset | 33 - .../LRO_NAC_Apollo14_Mosaic_p.vrt | 29 - ..._Angle_Camera_Apollo_14_Landing_Site.asset | 32 - .../LRO_NAC_Apollo15_Mosaic_p.vrt | 29 - ..._Angle_Camera_Apollo_15_Landing_Site.asset | 33 - .../LRO_NAC_Apollo16_Mosaic_p.vrt | 29 - ..._Angle_Camera_Apollo_16_Landing_Site.asset | 33 - ...ngle_Camera_ColorHillShade_Apollo_17.asset | 28 - .../NAC_DTM_APOLLO17_CLRSHADE.vrt | 53 - ...row_Angle_Camera_HillShade_Apollo_17.asset | 28 - .../NAC_DTM_APOLLO17_SHADE.vrt | 29 - .../A11_60x60km.eq.vrt | 29 - ...Narrow_Angle_Camera_Mosaic_Apollo_11.asset | 28 - .../A12_60x60km.0_3.eq.vrt | 29 - ...Narrow_Angle_Camera_Mosaic_Apollo_12.asset | 28 - .../A14_60x60km.0_3.eq.vrt | 29 - ...Narrow_Angle_Camera_Mosaic_Apollo_14.asset | 28 - .../A15_60x60km.0_2.eq.vrt | 29 - ...Narrow_Angle_Camera_Mosaic_Apollo_15.asset | 28 - .../A16_60x60km.eq.vrt | 29 - ...Narrow_Angle_Camera_Mosaic_Apollo_16.asset | 28 - .../A17_60x60km.eq.vrt | 29 - ...Narrow_Angle_Camera_Mosaic_Apollo_17.asset | 28 - .../NAC_DTM_APOLLO17_MOSAIC_120CM.vrt | 29 - .../NAC_DTM_APOLLO17_MOSAIC_120CM.wms | 24 - ...Camera_Mosaic_Apollo_17_Landing_Site.asset | 32 - .../M129086118.nd.gcs.vrt | 29 - ...O_Narrow_Angle_Camera_Mosaic_Ingenii.asset | 28 - .../ingenii_skylight.vrt | 29 - ...RO_Narrow_Angle_Camera_Mosaic_Marius.asset | 28 - .../marius_skylight.vrt | 29 - .../LRO_NAC_Schrodinger.vrt | 29 - ...rrow_Angle_Camera_Mosaic_Schrodinger.asset | 28 - ...ngle_Camera_Mosaic_Schrodinger_Extra.asset | 28 - .../schrodinger.extraswaths.eq.vrt | 29 - .../LRO_NAC_SchrodingerLandingSite2.vrt | 29 - ...mera_Mosaic_Schrodinger_Landing_Site.asset | 28 - ..._Camera_Mosaic_Schrodinger_NorthEast.asset | 28 - .../schrodinger.ne.equirect.vrt | 29 - ...amera_Mosaic_Schrodinger_SouthCenter.asset | 28 - .../schrodinger.sc.equirect.vrt | 29 - ..._Camera_Mosaic_Schrodinger_SouthEast.asset | 28 - .../schrodinger.se.equirect.vrt | 29 - ...Camera_Mosaic_Small_Tranquilltatis_1.asset | 28 - .../small_tranq_skylight_1.vrt | 29 - ...Camera_Mosaic_Small_Tranquilltatis_2.asset | 28 - .../small_tranq_skylight_2.vrt | 29 - ..._Narrow_Angle_Camera_Slope_Apollo_17.asset | 28 - .../NAC_DTM_APOLLO17_SLOPE.vrt | 53 - .../moon/nasa-treks/LRO_WAC-GLD100_DEM.asset | 34 + .../LRO_WAC-GLD100_DEM/Grayscale.vrt | 29 + .../Grayscale.wms} | 0 .../LRO_WAC-GLD100_DEM_Grayscale.asset | 28 - .../LRO_WAC-GLD100_Gray_79S79N_256ppd.vrt | 29 - .../moon/nasa-treks/LRO_WAC_GLD100_DEM.asset | 44 + .../LRO_WAC_GLD100_DEM/ColorHillShade.vrt | 53 + .../ColorHillShade.wms} | 0 .../LRO_WAC_GLD100_DEM/Hillshade.vrt | 29 + .../Hillshade.wms} | 0 .../LRO_WAC-GLD100_ClrShade_79S79N_256ppd.vrt | 53 - .../LRO_WAC_GLD100_DEM_ColorHillShade.asset | 28 - .../LRO_WAC-GLD100_Shade_79S79N_256ppd.vrt | 29 - .../LRO_WAC_GLD100_DEM_Hillshade.asset | 28 - .../LRO_WAC_Mosaic_Global_303ppd_v02.vrt | 29 - .../LRO_WAC_Mosaic_v2/LRO_WAC_Mosaic_v2.asset | 28 - ..._Kaguya_Multi_Instruments_1895.21mpp.asset | 74 ++ .../3He_Dig_Here.vrt | 53 + .../3He_Dig_Here.wms} | 0 .../3He_Likely.vrt | 53 + .../3He_Likely.wms} | 0 .../3He_More_Likely.vrt | 53 + .../3He_More_Likely.wms} | 0 .../3He_Most_Likely.vrt | 53 + .../3He_Most_Likely.wms} | 0 .../3He_Very_Likely.vrt | 53 + .../3He_Very_Likely.wms} | 0 .../3He_Dig_Here_Layer.vrt | 53 - ..._Instruments_1895.21mpp_3He_Dig_Here.asset | 28 - .../3He_Likely_Layer.vrt | 53 - ...ti_Instruments_1895.21mpp_3He_Likely.asset | 28 - .../3He_More_Likely_Layer.vrt | 53 - ...struments_1895.21mpp_3He_More_Likely.asset | 28 - .../3He_Most_Likely_Layer.vrt | 53 - ...struments_1895.21mpp_3He_Most_Likely.asset | 28 - .../3He_Very_Likely_Layer.vrt | 53 - ...struments_1895.21mpp_3He_Very_Likely.asset | 28 - .../moon/nasa-treks/all_treks_layers.asset | 741 ------------ .../mars/layers/nasa-treks/MEX_HRSC.asset | 44 + .../Martian_Path_Eastern_Section_DEM.vrt | 53 + .../Martian_Path_Eastern_Section_DEM.wms} | 0 .../MEX_HRSC/Martian_Path_MC11_Quad_DEM.vrt | 53 + .../Martian_Path_MC11_Quad_DEM.wms} | 0 ...RSC_Martian_Path_Eastern_Section_DEM.asset | 28 - .../hrsc_dem_martian_east.vrt | 53 - .../MC11E11_HRDTMAR_DA5.vrt | 53 - .../MEX_HRSC_Martian_Path_MC11_Quad_DEM.asset | 28 - .../layers/nasa-treks/MGS_MOC_Atlas.asset | 36 + .../MGS_MOC_Atlas/Global_Color_Mosaic.vrt | 53 + .../Global_Color_Mosaic.wms} | 0 .../MGS_MOC_Atlas_Global_Color_Mosaic.asset | 30 - .../msss_atlas_simp_clon.vrt | 53 - .../mars/layers/nasa-treks/MGS_MOLA.asset | 60 + .../MGS_MOLA/Global_Color_Hillshade.vrt | 53 + .../Global_Color_Hillshade.wms} | 0 .../layers/nasa-treks/MGS_MOLA/Global_DEM.vrt | 53 + .../Global_DEM.wms} | 0 .../MGS_MOLA/Global_Surface_Roughness.vrt | 53 + .../Global_Surface_Roughness.wms} | 0 .../MGS_MOLA_Global_Color_Hillshade.asset | 30 - ...rs_MGS_MOLA_ClrShade_merge_global_463m.vrt | 53 - .../MGS_MOLA_Global_DEM.asset | 32 - ...28_mola64_merge_90Nto90S_SimpleC_clon0.vrt | 53 - .../MGS_MOLA_Global_Surface_Roughness.asset | 28 - .../mola_roughness.vrt | 53 - .../MGS_MOLA_and_Mars_Express_HRSC.asset | 56 + .../Color_Hillshade_Blend.vrt | 53 + .../Color_Hillshade_Blend.wms} | 0 .../Hillshade_Blend.vrt | 53 + .../Hillshade_Blend.wms} | 0 ...s_Express_HRSC_Color_Hillshade_Blend.asset | 34 - ...00ppx_HRSC_ClrShade_clon0dd_200mpp_lzw.vrt | 53 - ...nd_Mars_Express_HRSC_Hillshade_Blend.asset | 34 - ...nd200ppx_HRSC_Shade_clon0dd_200mpp_lzw.vrt | 53 - .../mars/layers/nasa-treks/MGS_TES.asset | 84 ++ .../layers/nasa-treks/MGS_TES/Global_Dust.vrt | 53 + .../TES_Dust.wms => MGS_TES/Global_Dust.wms} | 0 .../nasa-treks/MGS_TES/Global_Dust_Index.vrt | 53 + .../Global_Dust_Index.wms} | 0 .../Global_High-Ca_Pyroxene_Abundance.vrt | 53 + .../Global_High-Ca_Pyroxene_Abundance.wms} | 0 .../MGS_TES/Global_Plagioclase_Abundance.vrt | 53 + .../Global_Plagioclase_Abundance.wms} | 0 .../Global_Sheet_SilicatesHigh-Si_Glass.vrt | 53 + .../Global_Sheet_SilicatesHigh-Si_Glass.wms} | 0 .../MGS_TES/Global_Thermal_Inertia.vrt | 53 + .../Global_Thermal_Inertia.wms} | 0 .../MGS_TES_Global_Dust.asset | 28 - .../MGS_TES_Global_Dust/TES_Dust.vrt | 53 - .../MGS_TES_Global_Dust_Index.asset | 28 - .../tes_ruffdust.vrt | 53 - ...ES_Global_High-Ca_Pyroxene_Abundance.asset | 28 - .../TES_Clinopyroxene.vrt | 53 - ...MGS_TES_Global_Plagioclase_Abundance.asset | 28 - .../TES_Plagioclase.vrt | 53 - ..._Global_Sheet_SilicatesHigh-Si_Glass.asset | 28 - .../TES_Glass_Clay.vrt | 53 - .../MGS_TES_Global_Thermal_Inertia.asset | 28 - .../TES_Thermal_Inertia.vrt | 53 - .../layers/nasa-treks/MO_THEMIS-IR_Day.asset | 34 + .../MO_THEMIS-IR_Day/Global_Mosaic.vrt | 53 + .../Global_Mosaic.wms} | 0 .../MO_THEMIS-IR_Day_Global_Mosaic.asset | 28 - ...ayIR_ControlledMosaics_100m_v2_oct2018.vrt | 53 - .../nasa-treks/MO_THEMIS-IR_Night.asset | 34 + .../MO_THEMIS-IR_Night/Global_Mosaic.vrt | 53 + .../Global_Mosaic.wms} | 0 .../MO_THEMIS-IR_Night_Global_Mosaic.asset | 28 - ...htIR_ControlledMosaics_100m_v2_oct2018.vrt | 53 - .../mars/layers/nasa-treks/MRO_CTX.asset | 611 ++++++++++ .../nasa-treks/MRO_CTX/22n048w_Mosaic.vrt | 53 + .../22n048w_Mosaic.wms} | 0 .../MRO_CTX/Acheron_Fossae_Mosaic.vrt | 53 + .../Acheron_Fossae_Mosaic.wms} | 0 .../MRO_CTX/Acidalia_Plantia_Mosaic.vrt | 53 + .../Acidalia_Plantia_Mosaic.wms} | 0 .../MRO_CTX/Arabia_Terra_Mosaic.vrt | 53 + .../Arabia_Terra_Mosaic.wms} | 0 .../nasa-treks/MRO_CTX/Aram_Chaos_Mosaic.vrt | 53 + .../Aram_Chaos_Mosaic.wms} | 0 .../nasa-treks/MRO_CTX/Arcadia_Mosaic.vrt | 53 + .../Arcadia_Mosaic.wms} | 0 .../MRO_CTX/Arcadia_Planitia_Mosaic.vrt | 53 + .../Arcadia_Planitia_Mosaic.wms} | 0 .../nasa-treks/MRO_CTX/Ausonia_Mosaic.vrt | 53 + .../Ausonia_Mosaic.wms} | 0 .../nasa-treks/MRO_CTX/Cerberus_Mosaic.vrt | 53 + .../Cerberus_Mosaic.wms} | 0 .../nasa-treks/MRO_CTX/Columbia_Hills_DEM.vrt | 53 + .../Columbia_Hills_DEM.wms} | 0 .../MRO_CTX/Columbus_Crater_Mosaic.vrt | 53 + .../Columbus_Crater_Mosaic.wms} | 0 .../MRO_CTX/Copernicus_Crater_Mosaic.vrt | 53 + .../Copernicus_Crater_Mosaic.wms} | 0 .../MRO_CTX/Coprates_EMelas_Chasm_Mosaic.vrt | 53 + .../Coprates_EMelas_Chasm_Mosaic.wms} | 0 .../MRO_CTX/Curiosity_Roving_Site_Mosaic.vrt | 53 + .../Curiosity_Roving_Site_Mosaic.wms} | 0 .../MRO_CTX/Deuteronilus_Mensae_Mosaic.vrt | 53 + .../Deuteronilus_Mensae_Mosaic.wms} | 0 .../nasa-treks/MRO_CTX/East_Melas_DEM.vrt | 53 + .../East_Melas_DEM.wms} | 0 .../MRO_CTX/East_Melas_Hillshade.vrt | 53 + .../East_Melas_Hillshade.wms} | 0 .../Eastern_Valles_Marineris_Mosaic.vrt | 53 + .../Eastern_Valles_Marineris_Mosaic.wms} | 0 .../Equatorial_Valles_Marineries_Mosaic.vrt | 53 + .../Equatorial_Valles_Marineries_Mosaic.wms} | 0 .../MRO_CTX/Erebus_Montes_Mosaic.vrt | 53 + .../Erebus_Montes_Mosaic.wms} | 0 .../nasa-treks/MRO_CTX/Gale_Crater_Mosaic.vrt | 53 + .../Gale_Crater_Mosaic.wms} | 0 .../MRO_CTX/Gusev_Crater_Mosaic.vrt | 53 + .../Gusev_Crater_Mosaic.wms} | 0 .../nasa-treks/MRO_CTX/Hadriacus_Mosaic.vrt | 53 + .../Hadriacus_Mosaic.wms} | 0 .../nasa-treks/MRO_CTX/Hale_Crater_Mosaic.vrt | 53 + .../Hale_Crater_Mosaic.wms} | 0 .../MRO_CTX/Hebrus_Valles_Mosaic.vrt | 53 + .../Hebrus_Valles_Mosaic.wms} | 0 .../MRO_CTX/Hellas_Eastern_Rim_Mosaic.vrt | 53 + .../Hellas_Eastern_Rim_Mosaic.wms} | 0 .../MRO_CTX/Hellas_Mesopotamia_Mosaic.vrt | 53 + .../Hellas_Mesopotamia_Mosaic.wms} | 0 .../MRO_CTX/Huygens_Crater_Mosaic.vrt | 53 + .../Huygens_Crater_Mosaic.wms} | 0 .../MRO_CTX/Hypanis_Delta_Mosaic.vrt | 53 + .../Hypanis_Delta_Mosaic.wms} | 0 .../MRO_CTX/Ismenius_Cavus_Mosaic.vrt | 53 + .../Ismenius_Cavus_Mosaic.wms} | 0 .../nasa-treks/MRO_CTX/Jezero_Mosaic.vrt | 53 + .../Jezero_Mosaic.wms} | 0 .../MRO_CTX/Kasei_Valles_Mosaic.vrt | 53 + .../Kasei_Valles_Mosaic.wms} | 0 .../MRO_CTX/Mawrth_Vallis_Mosaic.vrt | 53 + .../Mawrth_Vallis_Mosaic.wms} | 0 .../MRO_CTX/McLaughlin_Crater_Mosaic.vrt | 53 + .../McLaughlin_Crater_Mosaic.wms} | 0 ...idiani_Planum_-_Sinus_Meridiani_Mosaic.vrt | 53 + ...diani_Planum_-_Sinus_Meridiani_Mosaic.wms} | 0 .../Mosaic_Global_Uncontrolled_Caltech.vrt | 53 + .../Mosaic_Global_Uncontrolled_Caltech.wms} | 0 .../nasa-treks/MRO_CTX/Mosaic_InSight.vrt | 53 + .../Mosaic_InSight.wms} | 0 .../MRO_CTX/Mosaic_Olympus_Mons.vrt | 53 + .../Mosaic_Olympus_Mons.wms} | 0 .../MRO_CTX/Newton_Crater_Mosaic.vrt | 53 + .../Newton_Crater_Mosaic.wms} | 0 .../MRO_CTX/Noctis_Landing_Mosaic.vrt | 53 + .../Noctis_Landing_Mosaic.wms} | 0 .../MRO_CTX/Protonilus_Mensae_Mosaic.vrt | 53 + .../Protonilus_Mensae_Mosaic.wms} | 0 .../Southern_Nectaris_Fossae_Mosaic.vrt | 53 + .../Southern_Nectaris_Fossae_Mosaic.wms} | 0 .../MRO_CTX/Victoria_Crater_DEM.vrt | 53 + .../Victoria_Crater_DEM.wms} | 0 .../MRO_CTX/Viking_1_Landing_Site_Mosaic.vrt | 53 + .../Viking_1_Landing_Site_Mosaic.wms} | 0 .../MRO_CTX/Viking_2_Landing_Site_Mosaic.vrt | 53 + .../Viking_2_Landing_Site_Mosaic.wms} | 0 .../MRO_CTX/West_Candor_Chasma_Mosaic.vrt | 53 + .../West_Candor_Chasma_Mosaic.wms} | 0 .../nasa-treks/MRO_CTX/West_Candor_DEM.vrt | 53 + .../West_Candor_DEM.wms} | 0 .../MRO_CTX/Western_Noachis_Terra_Mosaic.vrt | 53 + .../Western_Noachis_Terra_Mosaic.wms} | 0 .../MRO_CTX/Zephyria_Planum_Mosaic.vrt | 53 + .../Zephyria_Planum_Mosaic.wms} | 0 .../MRO_CTX_22n048w_Mosaic.asset | 30 - .../b21_017819_2025_xn_22n048w.vrt | 53 - .../Acheron_Fossae_CTX_BlockAdj_dd.vrt | 53 - .../MRO_CTX_Acheron_Fossae_Mosaic.asset | 30 - .../Acidalia_Plantia_CTX_BlockAdj_dd.vrt | 53 - .../MRO_CTX_Acidalia_Plantia_Mosaic.asset | 30 - .../Arabia_Terra_CTX_BlockAdj_dd.vrt | 53 - .../MRO_CTX_Arabia_Terra_Mosaic.asset | 30 - .../Aram_Chaos_CTX_BlockAdj_dd.vrt | 53 - .../MRO_CTX_Aram_Chaos_Mosaic.asset | 30 - .../Arcadia_CTX_BlockAdj_dd.vrt | 53 - .../MRO_CTX_Arcadia_Mosaic.asset | 30 - .../Arcadia_Planitia_CTX_BlockAdj_dd.vrt | 53 - .../MRO_CTX_Arcadia_Planitia_Mosaic.asset | 30 - .../Ausonia_CTX_BlockAdj_dd.vrt | 53 - .../MRO_CTX_Ausonia_Mosaic.asset | 30 - .../Cerberus_CTX_BlockAdj_dd.vrt | 53 - .../MRO_CTX_Cerberus_Mosaic.asset | 30 - .../DEM_1m_ColumbiaHills_fixed.vrt | 53 - .../MRO_CTX_Columbia_Hills_DEM.asset | 30 - .../Columbus_Crater_CTX_BlockAdj_dd.vrt | 53 - .../MRO_CTX_Columbus_Crater_Mosaic.asset | 30 - .../Copernicus_Crater_CTX_BlockAdj_dd.vrt | 53 - .../MRO_CTX_Copernicus_Crater_Mosaic.asset | 30 - .../Coprates_EMelas_Chasm_CTX_BlockAdj_dd.vrt | 53 - ...MRO_CTX_Coprates_EMelas_Chasm_Mosaic.asset | 30 - ...MRO_CTX_Curiosity_Roving_Site_Mosaic.asset | 30 - .../curiosity_ctx_mosaic.vrt | 53 - .../Deuteronilus1_2_CTX_BlockAdj_dd.vrt | 53 - .../MRO_CTX_Deuteronilus_Mensae_Mosaic.asset | 30 - .../CTX_DEM_East_Melas.vrt | 53 - .../MRO_CTX_East_Melas_DEM.asset | 28 - .../CTX_Shade_East_Melas.vrt | 53 - .../MRO_CTX_East_Melas_Hillshade.asset | 28 - ..._CTX_Eastern_Valles_Marineris_Mosaic.asset | 30 - .../NE_Marineris_Crater_CTX_BlockAdj_dd.vrt | 53 - ..._Equatorial_Valles_Marineries_Mosaic.asset | 30 - .../SE_Marineris_CTX_BlockAdj_dd.vrt | 53 - .../Erebus_Montes_CTX_BlockAdj_dd.vrt | 53 - .../MRO_CTX_Erebus_Montes_Mosaic.asset | 30 - .../Gale_CTX_BlockAdj_dd.vrt | 53 - .../MRO_CTX_Gale_Crater_Mosaic.asset | 30 - .../Gusev_CTX_BlockAdj_dd.vrt | 53 - .../MRO_CTX_Gusev_Crater_Mosaic.asset | 30 - .../Hadriacus_CTX_BlockAdj_dd.vrt | 53 - .../MRO_CTX_Hadriacus_Mosaic.asset | 30 - .../Hale_Crater_CTX_BlockAdj_dd.vrt | 53 - .../MRO_CTX_Hale_Crater_Mosaic.asset | 30 - .../Hebrus_CTX_BlockAdj_dd.vrt | 53 - .../MRO_CTX_Hebrus_Valles_Mosaic.asset | 30 - .../Hellas_Hellas2_CTX_BlockAdj_dd.vrt | 53 - .../MRO_CTX_Hellas_Eastern_Rim_Mosaic.asset | 30 - .../Hellas3_CTX_BlockAdj_dd.vrt | 53 - .../MRO_CTX_Hellas_Mesopotamia_Mosaic.asset | 30 - .../Huygens_CTX_BlockAdj_dd.vrt | 53 - .../MRO_CTX_Huygens_Crater_Mosaic.asset | 30 - .../Hypanis_Delta_CTX_BlockAdj_dd.vrt | 53 - .../MRO_CTX_Hypanis_Delta_Mosaic.asset | 30 - .../Ismenius_Cavus_CTX_BlockAdj_dd.vrt | 53 - .../MRO_CTX_Ismenius_Cavus_Mosaic.asset | 30 - .../Jezero_CTX_BlockAdj_dd.vrt | 53 - .../MRO_CTX_Jezero_Mosaic_Preliminary.asset | 30 - .../Kasei_Valles_CTX_BlockAdj_dd.vrt | 53 - .../MRO_CTX_Kasei_Valles_Mosaic.asset | 30 - .../MRO_CTX_Mawrth_Vallis_Mosaic.asset | 30 - .../Mawrth_Valles_CTX_BlockAdj_dd.vrt | 53 - .../MRO_CTX_McLaughlin_Crater_Mosaic.asset | 30 - .../McLaughlin_Crater_CTX_BlockAdj_dd.vrt | 53 - ...iani_Planum_-_Sinus_Meridiani_Mosaic.asset | 30 - ...eridiani_Sinus_Planium_CTX_BlockAdj_dd.vrt | 53 - .../CTX_beta01_uncontrolled_5m_Caltech.vrt | 53 - ...Mosaic_Global_Uncontrolled_(Caltech).asset | 33 - .../InSightCTXMosaic_112917.vrt | 53 - .../MRO_CTX_Mosaic_InSight.asset | 28 - .../MRO_CTX_Mosaic_Olympus_Mons.asset | 32 - .../olympus_mons.eq.vrt | 53 - .../MRO_CTX_Newton_Crater_Mosaic.asset | 30 - .../Newton_Crater_CTX_BlockAdj_dd.vrt | 53 - .../MRO_CTX_Noctis_Landing_Mosaic.asset | 30 - .../Noactis_Landing_CTX_BlockAdj_dd.vrt | 53 - .../MRO_CTX_Protonilus_Mensae_Mosaic.asset | 30 - .../Protonilus_CTX_BlockAdj_dd.vrt | 53 - ..._CTX_Southern_Nectaris_Fossae_Mosaic.asset | 30 - .../S_Nectaris_Fossae_CTX_BlockAdj_dd.vrt | 53 - .../DEM_1m_VictoriaCrater.vrt | 53 - .../MRO_CTX_Victoria_Crater_DEM.asset | 30 - ...MRO_CTX_Viking_1_Landing_Site_Mosaic.asset | 30 - .../Viking_CTX_BlockAdj_dd.vrt | 53 - ...MRO_CTX_Viking_2_Landing_Site_Mosaic.asset | 30 - .../b16_015887_2280_xn_48n225w.vrt | 53 - .../MRO_CTX_West_Candor_Chasma_Mosaic.asset | 30 - .../West_Candor_Chasma_longlat.vrt | 53 - .../MRO_CTX_West_Candor_DEM.asset | 30 - .../West_Candor_Chasma_DEM_longlat.vrt | 53 - ...MRO_CTX_Western_Noachis_Terra_Mosaic.asset | 30 - .../Noachis_CTX_BlockAdj_dd.vrt | 53 - .../MRO_CTX_Zephyria_Planum_Mosaic.asset | 30 - .../Zephyria_CTX_BlockAdj_dd.vrt | 53 - .../mars/layers/nasa-treks/MRO_HiRISE.asset | 298 +++++ .../001918_1735_001984_1735_DEM.vrt | 53 + .../001918_1735_001984_1735_DEM.wms} | 0 .../042014_1760_042647_1760_DEM.vrt | 53 + .../042014_1760_042647_1760_DEM.wms} | 0 .../042753_1930_042252_1930_DEM.vrt | 53 + .../042753_1930_042252_1930_DEM.wms} | 0 .../nasa-treks/MRO_HiRISE/1183_0000_DEM.vrt | 53 + .../1183_0000_DEM.wms} | 0 .../MRO_HiRISE/Columbia_Hills_Mosaic.vrt | 53 + .../Columbia_Hills_Mosaic.wms} | 0 .../Curiosity_Roving_Site_Mosaic.vrt | 53 + .../Curiosity_Roving_Site_Mosaic.wms} | 0 .../nasa-treks/MRO_HiRISE/Gale_Crater_DEM.vrt | 53 + .../Gale_Crater_DEM.wms} | 0 .../Marth_Crater_West_Rim_Mosaic.vrt | 53 + .../Marth_Crater_West_Rim_Mosaic.wms} | 0 .../Martian_Ares_3_Landing_Site_Mosaic.vrt | 53 + .../Martian_Ares_3_Landing_Site_Mosaic.wms} | 0 .../Martian_Ares_4_Landing_Site_Mosaic.vrt | 53 + .../Martian_Ares_4_Landing_Site_Mosaic.wms} | 0 .../MRO_HiRISE/Mosaic_Columbia_Hills.vrt | 53 + .../Mosaic_Columbia_Hills.wms} | 0 .../Mosaic_Insight_Landing_Site.vrt | 53 + .../Mosaic_Insight_Landing_Site.wms} | 0 .../Mosaic_Jezero_NE_Syrtis_Midway.vrt | 53 + .../Mosaic_Jezero_NE_Syrtis_Midway.wms} | 0 .../MRO_HiRISE/Mosaic_Opportunity.vrt | 53 + .../Mosaic_Opportunity.wms} | 0 .../Opportunity_Roving_Site_Mosaic.vrt | 53 + .../Opportunity_Roving_Site_Mosaic.wms} | 0 .../Phoenix_Landing_Site_Mosaic.vrt | 53 + .../Phoenix_Landing_Site_Mosaic.wms} | 0 .../Sojourner_Roving_Site_Mosaic.vrt | 53 + .../Sojourner_Roving_Site_Mosaic.wms} | 0 .../Southwest_Candor_Chasma_Mosaic.vrt | 53 + .../Southwest_Candor_Chasma_Mosaic.wms} | 0 .../MRO_HiRISE/Spirit_Roving_Site_Mosaic.vrt | 53 + .../Spirit_Roving_Site_Mosaic.wms} | 0 .../Viking_1_Landing_Site_Mosaic.vrt | 53 + .../Viking_1_Landing_Site_Mosaic.wms} | 0 .../Viking_2_Landing_Site_Mosaic.vrt | 53 + .../Viking_2_Landing_Site_Mosaic.wms} | 0 ...EC_001918_1735_001984_1735_U01_longlat.vrt | 53 - ...O_HiRISE_001918_1735_001984_1735_DEM.asset | 30 - .../DTEED_042014_1760_042647_1760_A01.vrt | 53 - ...O_HiRISE_042014_1760_042647_1760_DEM.asset | 30 - .../DTEED_042753_1930_042252_1930_A01.vrt | 53 - ...O_HiRISE_042753_1930_042252_1930_DEM.asset | 30 - .../MRO_HiRISE_1183_0000_DEM.asset | 30 - .../h1183_0000_da4.vrt | 53 - .../HiRISE_ColumbiaHills.vrt | 53 - .../MRO_HiRISE_Columbia_Hills_Mosaic.asset | 30 - ..._HiRISE_Curiosity_Roving_Site_Mosaic.asset | 30 - .../curiosity_hirise_mosaic.vrt | 53 - .../Gale_DEM_SMG_1m.vrt | 53 - .../MRO_HiRISE_Gale_Crater_DEM.asset | 30 - .../ESP_042252_1930_RED_B_01_ORTHO.vrt | 53 - ..._HiRISE_Marth_Crater_West_Rim_Mosaic.asset | 30 - .../ESP_040776_2115_RED_A_01_ORTHO.vrt | 53 - ...E_Martian_Ares_3_Landing_Site_Mosaic.asset | 30 - .../ESP_042647_1760_RED_B_01_ORTHO.vrt | 53 - ...E_Martian_Ares_4_Landing_Site_Mosaic.asset | 30 - ...ic_HiRISE_CTX_HRSC_GCS_MARS_07-10-2018.vrt | 53 - .../MRO_HiRISE_Mosaic_Columbia_Hills.asset | 44 - .../ESP_058005_1845_RED_spline_rect.vrt | 53 - ...O_HiRISE_Mosaic_Insight_Landing_Site.asset | 28 - ...iRISE_Mosaic_Jezero_NE_Syrtis_Midway.asset | 44 - ...ic_HiRISE_CTX_HRSC_GCS_MARS_07-10-2018.vrt | 53 - .../HiRISE_Opportunity.vrt | 53 - .../MRO_HiRISE_Mosaic_Opportunity.asset | 28 - ...iRISE_Opportunity_Roving_Site_Mosaic.asset | 30 - .../opportunity_hirise_mosaic.vrt | 53 - ...O_HiRISE_Phoenix_Landing_Site_Mosaic.asset | 30 - .../phoenix_hirise_mosaic.vrt | 53 - ..._HiRISE_Sojourner_Roving_Site_Mosaic.asset | 30 - .../sojourner_hirise_mosaic.vrt | 53 - ...iRISE_Southwest_Candor_Chasma_Mosaic.asset | 28 - ...PSP_001918_1735_RED_A_01_ORTHO_longlat.vrt | 53 - ...MRO_HiRISE_Spirit_Roving_Site_Mosaic.asset | 30 - .../spirit_hirise_mosaic.vrt | 53 - ..._HiRISE_Viking_1_Landing_Site_Mosaic.asset | 30 - .../PSP_001521_2025_RED.vrt | 53 - ..._HiRISE_Viking_2_Landing_Site_Mosaic.asset | 30 - .../PSP_001501_2280_RED.vrt | 53 - .../planets/mars/layers/nasa-treks/MSL.asset | 34 + .../layers/nasa-treks/MSL/Pahrump_Hills.vrt | 53 + .../Pahrump_Hills.wms} | 0 .../MSL_Pahrump_Hills/MSL_Pahrump_Hills.asset | 28 - .../mars_pahrump_patch_8k_256m.vrt | 53 - .../layers/nasa-treks/Mars_Express_HRSC.asset | 94 ++ ...tian_Path_Eastern_Section_Color_Mosaic.vrt | 53 + ...ian_Path_Eastern_Section_Color_Mosaic.wms} | 0 .../Martian_Path_MC11_Quad_Color_Mosaic.vrt | 53 + .../Martian_Path_MC11_Quad_Color_Mosaic.wms} | 0 .../Martian_Path_MC11_Quad_Mosaic.vrt | 53 + .../Martian_Path_MC11_Quad_Mosaic.wms} | 0 .../Mawrth_Vallis_Color_Mosaic.vrt | 53 + .../Mawrth_Vallis_Color_Mosaic.wms} | 0 .../Mawrth_Vallis_Mosaic.vrt | 53 + .../Mawrth_Vallis_Mosaic.wms} | 0 .../Viking_1_Landing_Site_Mosaic.vrt | 53 + .../Viking_1_Landing_Site_Mosaic.wms} | 0 .../Viking_2_Landing_Site_Mosaic.vrt | 53 + .../Viking_2_Landing_Site_Mosaic.wms} | 0 .../HRSC_Martian_east.vrt | 53 - ...an_Path_Eastern_Section_Color_Mosaic.asset | 28 - .../MC11E_HRMOSCO_COL.vrt | 53 - ..._Martian_Path_MC11_Quad_Color_Mosaic.asset | 28 - .../MC11E_HRMOSND_ND5.vrt | 53 - ...s_HRSC_Martian_Path_MC11_Quad_Mosaic.asset | 28 - ...ress_HRSC_Mawrth_Vallis_Color_Mosaic.asset | 28 - .../hrsc_mawrth_vallis_color.vrt | 53 - ...rs_Express_HRSC_Mawrth_Vallis_Mosaic.asset | 28 - .../hrsc_mawrth_vallis.vrt | 53 - ...ss_HRSC_Viking_1_Landing_Site_Mosaic.asset | 28 - .../h2942_0000_nd3.vrt | 53 - ...ss_HRSC_Viking_2_Landing_Site_Mosaic.asset | 28 - .../h1394_0000_nd3.vrt | 53 - .../Mars_Reconnaissance_Orbiter_CTX.asset | 1015 +++++++++++++++++ .../Color_Slope_Apollinaris_12S182E.vrt | 53 + .../Color_Slope_Apollinaris_12S182E.wms} | 0 .../Color_Slope_Apollinaris_13S182E.vrt | 53 + .../Color_Slope_Apollinaris_13S182E.wms} | 0 .../Color_Slope_Apollinaris_14S184E.vrt | 53 + .../Color_Slope_Apollinaris_14S184E.wms} | 0 .../Color_Slope_Coprates_10S291E.vrt | 53 + .../Color_Slope_Coprates_10S291E.wms} | 0 .../Color_Slope_Coprates_11S293E.vrt | 53 + .../Color_Slope_Coprates_11S293E.wms} | 0 .../Color_Slope_Coprates_13S293E.vrt | 53 + .../Color_Slope_Coprates_13S293E.wms} | 0 .../Color_Slope_Deuteronius_37N024E.vrt | 53 + .../Color_Slope_Deuteronius_37N024E.wms} | 0 .../Color_Slope_Deuteronius_38N024E.vrt | 53 + .../Color_Slope_Deuteronius_38N024E.wms} | 0 .../Color_Slope_Deuteronius_39N024E.vrt | 53 + .../Color_Slope_Deuteronius_39N024E.wms} | 0 .../Color_Slope_Deuteronius_40N024E.vrt | 53 + .../Color_Slope_Deuteronius_40N024E.wms} | 0 .../Color_Slope_East_Melas_11S289E.vrt | 53 + .../Color_Slope_East_Melas_11S289E.wms} | 0 .../Color_Slope_East_Melas_11S291E.vrt | 53 + .../Color_Slope_East_Melas_11S291E.wms} | 0 .../Color_Slope_East_Melas_12S289E_D01.vrt | 53 + .../Color_Slope_East_Melas_12S289E_D01.wms} | 0 .../Color_Slope_East_Melas_12S289E_F18.vrt | 53 + .../Color_Slope_East_Melas_12S289E_F18.wms} | 0 .../Color_Slope_East_Melas_12S290E.vrt | 53 + .../Color_Slope_East_Melas_12S290E.wms} | 0 .../Color_Slope_East_Melas_12S291E_F14.vrt | 53 + .../Color_Slope_East_Melas_12S291E_F14.wms} | 0 .../Color_Slope_East_Melas_12S291E_F21.vrt | 53 + .../Color_Slope_East_Melas_12S291E_F21.wms} | 0 .../Color_Slope_East_Melas_12S291E_J01.vrt | 53 + .../Color_Slope_East_Melas_12S291E_J01.wms} | 0 .../Color_Slope_East_Melas_13S289E.vrt | 53 + .../Color_Slope_East_Melas_13S289E.wms} | 0 .../Color_Slope_East_Melas_16S291E_D22.vrt | 53 + .../Color_Slope_East_Melas_16S291E_D22.wms} | 0 .../HillShade_Apollinaris_12S182E.vrt | 53 + .../HillShade_Apollinaris_12S182E.wms} | 0 .../HillShade_Apollinaris_13S182E.vrt | 53 + .../HillShade_Apollinaris_13S182E.wms} | 0 .../HillShade_Apollinaris_14S184E.vrt | 53 + .../HillShade_Apollinaris_14S184E.wms} | 0 .../HillShade_Coprates_10S291E.vrt | 53 + .../HillShade_Coprates_10S291E.wms} | 0 .../HillShade_Coprates_11S293E.vrt | 53 + .../HillShade_Coprates_11S293E.wms} | 0 .../HillShade_Coprates_13S293E.vrt | 53 + .../HillShade_Coprates_13S293E.wms} | 0 .../HillShade_Deuteronius_37N024E.vrt | 53 + .../HillShade_Deuteronius_37N024E.wms} | 0 .../HillShade_Deuteronius_38N024E.vrt | 53 + .../HillShade_Deuteronius_38N024E.wms} | 0 .../HillShade_Deuteronius_39N024E.vrt | 53 + .../HillShade_Deuteronius_39N024E.wms} | 0 .../HillShade_Deuteronius_40N024E.vrt | 53 + .../HillShade_Deuteronius_40N024E.wms} | 0 .../HillShade_East_Melas_11S289E.vrt | 53 + .../HillShade_East_Melas_11S289E.wms} | 0 .../HillShade_East_Melas_11S291E.vrt | 53 + .../HillShade_East_Melas_11S291E.wms} | 0 .../HillShade_East_Melas_12S289E_D01.vrt | 53 + .../HillShade_East_Melas_12S289E_D01.wms} | 0 .../HillShade_East_Melas_12S289E_F18.vrt | 53 + .../HillShade_East_Melas_12S289E_F18.wms} | 0 .../HillShade_East_Melas_12S290E.vrt | 53 + .../HillShade_East_Melas_12S290E.wms} | 0 .../HillShade_East_Melas_12S291E_F14.vrt | 53 + .../HillShade_East_Melas_12S291E_F14.wms} | 0 .../HillShade_East_Melas_12S291E_F21.vrt | 53 + .../HillShade_East_Melas_12S291E_F21.wms} | 0 .../HillShade_East_Melas_12S291E_J01.vrt | 53 + .../HillShade_East_Melas_12S291E_J01.wms} | 0 .../HillShade_East_Melas_13S289E_D10.vrt | 53 + .../HillShade_East_Melas_13S289E_D10.wms} | 0 .../HillShade_East_Melas_16S291E_D22.vrt | 53 + .../HillShade_East_Melas_16S291E_D22.wms} | 0 .../Hilllshade_Deuteronilus.vrt | 53 + .../Hilllshade_Deuteronilus.wms} | 0 .../Mosaic_Apollinaris_12S182E.vrt | 53 + .../Mosaic_Apollinaris_12S182E.wms} | 0 .../Mosaic_Apollinaris_13S182E.vrt | 53 + .../Mosaic_Apollinaris_13S182E.wms} | 0 .../Mosaic_Apollinaris_14S184E.vrt | 53 + .../Mosaic_Apollinaris_14S184E.wms} | 0 .../Mosaic_Coprates_10S291E.vrt | 53 + .../Mosaic_Coprates_10S291E.wms} | 0 .../Mosaic_Coprates_11S293E.vrt | 53 + .../Mosaic_Coprates_11S293E.wms} | 0 .../Mosaic_Coprates_13S293E.vrt | 53 + .../Mosaic_Coprates_13S293E.wms} | 0 .../Mosaic_Deuteronius_38N024E.vrt | 53 + .../Mosaic_Deuteronius_38N024E.wms} | 0 .../Mosaic_Deuteronius_39N024E.vrt | 53 + .../Mosaic_Deuteronius_39N024E.wms} | 0 .../Mosaic_Deuteronius_40N024E.vrt | 53 + .../Mosaic_Deuteronius_40N024E.wms} | 0 .../Mosaic_East_Melas_11S289E.vrt | 53 + .../Mosaic_East_Melas_11S289E.wms} | 0 .../Mosaic_East_Melas_11S291E.vrt | 53 + .../Mosaic_East_Melas_11S291E.wms} | 0 .../Mosaic_East_Melas_12S289E_D01.vrt | 53 + .../Mosaic_East_Melas_12S289E_D01.wms} | 0 .../Mosaic_East_Melas_12S289E_F18.vrt | 53 + .../Mosaic_East_Melas_12S289E_F18.wms} | 0 .../Mosaic_East_Melas_12S290E.vrt | 53 + .../Mosaic_East_Melas_12S290E.wms} | 0 .../Mosaic_East_Melas_12S291E_F14.vrt | 53 + .../Mosaic_East_Melas_12S291E_F14.wms} | 0 .../Mosaic_East_Melas_12S291E_F21.vrt | 53 + .../Mosaic_East_Melas_12S291E_F21.wms} | 0 .../Mosaic_East_Melas_12S291E_J01.vrt | 53 + .../Mosaic_East_Melas_12S291E_J01.wms} | 0 .../Mosaic_East_Melas_13S289E_D10.vrt | 53 + .../Mosaic_East_Melas_13S289E_D10.wms} | 0 .../Mosaic_East_Melas_16S291E.vrt | 53 + .../Mosaic_East_Melas_16S291E.wms} | 0 .../Slope_Apollinaris_12S182E.vrt | 53 + .../Slope_Apollinaris_12S182E.wms} | 0 .../Slope_Apollinaris_13S182E.vrt | 53 + .../Slope_Apollinaris_13S182E.wms} | 0 .../Slope_Apollinaris_14S184E.vrt | 53 + .../Slope_Apollinaris_14S184E.wms} | 0 ...E_24mp_P22_009609_1674_B02_010453_1675.vrt | 53 - ..._CTX_Color_Slope_Apollinaris_12S182E.asset | 35 - ...E_24mp_G15_024127_1673_G16_024483_1673.vrt | 53 - ..._CTX_Color_Slope_Apollinaris_13S182E.asset | 35 - ...E_24mp_B01_009886_1658_P21_009385_1658.vrt | 53 - ..._CTX_Color_Slope_Apollinaris_14S184E.asset | 35 - ...E_24mp_P22_009684_1699_B02_010396_1699.vrt | 53 - ...ter_CTX_Color_Slope_Coprates_10S291E.asset | 35 - ...E_24mp_B09_013231_1696_B11_013732_1690.vrt | 53 - ...ter_CTX_Color_Slope_Coprates_11S293E.asset | 35 - ...E_24mp_G07_020879_1669_G09_021657_1665.vrt | 53 - ...ter_CTX_Color_Slope_Coprates_13S293E.asset | 35 - ...E_24mp_G05_020203_2178_G22_026994_2170.vrt | 53 - ..._CTX_Color_Slope_Deuteronius_37N024E.asset | 35 - ...E_24mp_B17_016168_2181_G16_024594_2181.vrt | 53 - ..._CTX_Color_Slope_Deuteronius_38N024E.asset | 35 - ...E_24mp_D15_032875_2196_D15_033165_2196.vrt | 53 - ..._CTX_Color_Slope_Deuteronius_39N024E.asset | 35 - ...E_24mp_B18_016656_2206_B18_016801_2206.vrt | 53 - ..._CTX_Color_Slope_Deuteronius_40N024E.asset | 35 - ...E_24mp_F23_044971_1685_F21_043995_1685.vrt | 53 - ...r_CTX_Color_Slope_East_Melas_11S289E.asset | 35 - ...E_24mp_B19_017187_1685_B19_016976_1685.vrt | 53 - ...r_CTX_Color_Slope_East_Melas_11S291E.asset | 35 - ...E_24mp_D01_027446_1678_D01_027723_1677.vrt | 53 - ...X_Color_Slope_East_Melas_12S289E_D01.asset | 35 - ...E_24mp_F18_042927_1681_J02_045749_1694.vrt | 53 - ...X_Color_Slope_East_Melas_12S289E_F18.asset | 35 - ...E_24mp_D18_034250_1676_D21_035450_1674.vrt | 53 - ...r_CTX_Color_Slope_East_Melas_12S290E.asset | 35 - ...E_24mp_F14_041292_1682_F16_041938_1682.vrt | 53 - ...X_Color_Slope_East_Melas_12S291E_F14.asset | 35 - ...E_24mp_F21_043850_1684_F21_043916_1685.vrt | 53 - ...X_Color_Slope_East_Melas_12S291E_F21.asset | 35 - ...E_24mp_J01_045116_1677_J03_046039_1676.vrt | 53 - ...X_Color_Slope_East_Melas_12S291E_J01.asset | 35 - ...E_24mp_D10_031125_1673_D12_031903_1669.vrt | 53 - ...r_CTX_Color_Slope_East_Melas_13S289E.asset | 35 - ...E_24mp_D22_035951_1644_F01_036307_1644.vrt | 53 - ...X_Color_Slope_East_Melas_16S291E_D22.asset | 35 - ...E_24mp_P22_009609_1674_B02_010453_1675.vrt | 53 - ...er_CTX_HillShade_Apollinaris_12S182E.asset | 33 - ...E_24mp_G15_024127_1673_G16_024483_1673.vrt | 53 - ...er_CTX_HillShade_Apollinaris_13S182E.asset | 33 - ...E_24mp_B01_009886_1658_P21_009385_1658.vrt | 53 - ...er_CTX_HillShade_Apollinaris_14S184E.asset | 33 - ...E_24mp_P22_009684_1699_B02_010396_1699.vrt | 53 - ...biter_CTX_HillShade_Coprates_10S291E.asset | 33 - ...E_24mp_B09_013231_1696_B11_013732_1690.vrt | 53 - ...biter_CTX_HillShade_Coprates_11S293E.asset | 33 - ...E_24mp_G07_020879_1669_G09_021657_1665.vrt | 53 - ...biter_CTX_HillShade_Coprates_13S293E.asset | 33 - ...E_24mp_G05_020203_2178_G22_026994_2170.vrt | 53 - ...er_CTX_HillShade_Deuteronius_37N024E.asset | 33 - ...E_24mp_B17_016168_2181_G16_024594_2181.vrt | 53 - ...er_CTX_HillShade_Deuteronius_38N024E.asset | 33 - ...E_24mp_D15_032875_2196_D15_033165_2196.vrt | 53 - ...er_CTX_HillShade_Deuteronius_39N024E.asset | 33 - ...E_24mp_B18_016656_2206_B18_016801_2206.vrt | 53 - ...er_CTX_HillShade_Deuteronius_40N024E.asset | 33 - ...E_24mp_F23_044971_1685_F21_043995_1685.vrt | 53 - ...ter_CTX_HillShade_East_Melas_11S289E.asset | 33 - ...E_24mp_B19_017187_1685_B19_016976_1685.vrt | 53 - ...ter_CTX_HillShade_East_Melas_11S291E.asset | 33 - ...E_24mp_D01_027446_1678_D01_027723_1677.vrt | 53 - ...CTX_HillShade_East_Melas_12S289E_D01.asset | 33 - ...E_24mp_F18_042927_1681_J02_045749_1694.vrt | 53 - ...CTX_HillShade_East_Melas_12S289E_F18.asset | 33 - ...E_24mp_D18_034250_1676_D21_035450_1674.vrt | 53 - ...ter_CTX_HillShade_East_Melas_12S290E.asset | 33 - ...E_24mp_F14_041292_1682_F16_041938_1682.vrt | 53 - ...CTX_HillShade_East_Melas_12S291E_F14.asset | 33 - ...E_24mp_F21_043850_1684_F21_043916_1685.vrt | 53 - ...CTX_HillShade_East_Melas_12S291E_F21.asset | 33 - ...E_24mp_J01_045116_1677_J03_046039_1676.vrt | 53 - ...CTX_HillShade_East_Melas_12S291E_J01.asset | 33 - ...E_24mp_D10_031125_1673_D12_031903_1669.vrt | 53 - ...CTX_HillShade_East_Melas_13S289E_D10.asset | 33 - ...E_24mp_D22_035951_1644_F01_036307_1644.vrt | 53 - ...CTX_HillShade_East_Melas_16S291E_D22.asset | 33 - .../Deuteronilus_CTX_Shade_v0_20171112.vrt | 53 - ..._Orbiter_CTX_Hilllshade_Deuteronilus.asset | 33 - ...CTX_Ortho_12S182E_24mp_P22_009609_1674.vrt | 53 - ...biter_CTX_Mosaic_Apollinaris_12S182E.asset | 33 - ...CTX_Ortho_13S182E_24mp_G15_024127_1673.vrt | 53 - ...biter_CTX_Mosaic_Apollinaris_13S182E.asset | 33 - ...CTX_Ortho_14S184E_24mp_B01_009886_1658.vrt | 53 - ...biter_CTX_Mosaic_Apollinaris_14S184E.asset | 33 - ...CTX_Ortho_10S291E_24mp_P22_009684_1699.vrt | 53 - ..._Orbiter_CTX_Mosaic_Coprates_10S291E.asset | 33 - ...CTX_Ortho_11S293E_24mp_B09_013231_1696.vrt | 53 - ..._Orbiter_CTX_Mosaic_Coprates_11S293E.asset | 33 - ...CTX_Ortho_13S293E_24mp_G07_020879_1669.vrt | 53 - ..._Orbiter_CTX_Mosaic_Coprates_13S293E.asset | 33 - .../CTX_Ortho_38N024E_6mp_B17_016168_2181.vrt | 53 - ...biter_CTX_Mosaic_Deuteronius_38N024E.asset | 33 - .../CTX_Ortho_39N024E_6mp_D15_032875_2196.vrt | 53 - ...biter_CTX_Mosaic_Deuteronius_39N024E.asset | 33 - .../CTX_Ortho_40N022E_6mp_B18_016656_2206.vrt | 53 - ...biter_CTX_Mosaic_Deuteronius_40N024E.asset | 33 - .../CTX_Ortho_11S289E_6mp_F23_044971_1685.vrt | 53 - ...rbiter_CTX_Mosaic_East_Melas_11S289E.asset | 33 - .../CTX_Ortho_11S291E_6mp_B19_017187_1685.vrt | 53 - ...rbiter_CTX_Mosaic_East_Melas_11S291E.asset | 33 - .../CTX_Ortho_12S289E_6mp_D01_027446_1678.vrt | 53 - ...er_CTX_Mosaic_East_Melas_12S289E_D01.asset | 33 - .../CTX_Ortho_12S289E_6mp_F18_042927_1681.vrt | 53 - ...er_CTX_Mosaic_East_Melas_12S289E_F18.asset | 33 - .../CTX_Ortho_12S290E_6mp_D18_034250_1676.vrt | 53 - ...rbiter_CTX_Mosaic_East_Melas_12S290E.asset | 33 - ...041292_1682_map_ba_align_6_fill500-DRG.vrt | 53 - ...er_CTX_Mosaic_East_Melas_12S291E_F14.asset | 33 - .../CTX_Ortho_12S291E_6mp_F21_043850_1684.vrt | 53 - ...er_CTX_Mosaic_East_Melas_12S291E_F21.asset | 33 - .../CTX_Ortho_12S291E_6mp_J01_045116_1677.vrt | 53 - ...er_CTX_Mosaic_East_Melas_12S291E_J01.asset | 33 - .../CTX_Ortho_13S289E_6mp_D10_031125_1673.vrt | 53 - ...er_CTX_Mosaic_East_Melas_13S289E_D10.asset | 33 - .../CTX_Ortho_16S291E_6mp_D22_035951_1644.vrt | 53 - ...rbiter_CTX_Mosaic_East_Melas_16S291E.asset | 33 - ...E_24mp_P22_009609_1674_B02_010453_1675.vrt | 53 - ...rbiter_CTX_Slope_Apollinaris_12S182E.asset | 35 - ...E_24mp_G15_024127_1673_G16_024483_1673.vrt | 53 - ...rbiter_CTX_Slope_Apollinaris_13S182E.asset | 35 - ...E_24mp_B01_009886_1658_P21_009385_1658.vrt | 53 - ...rbiter_CTX_Slope_Apollinaris_14S184E.asset | 35 - .../layers/nasa-treks/all_treks_layers.asset | 157 --- .../mercury/layers/nasa-treks/MSGR_MDIS.asset | 54 + .../MSGR_MDIS/ColorHillshade_Global.vrt | 53 + .../ColorHillshade_Global.wms} | 0 .../nasa-treks/MSGR_MDIS/Hillshade_Global.vrt | 53 + .../Hillshade_Global.wms} | 0 .../MSGR_MDIS/Slope_Colorized_Global.vrt | 53 + .../Slope_Colorized_Global.wms} | 0 .../MSGR_MDIS_ColorHillshade_Global.asset | 28 - ...senger_USGS_DEM_665m_v2_HillshadeColor.vrt | 53 - .../MSGR_MDIS_Hillshade_Global.asset | 28 - ...y_Messenger_USGS_DEM_665m_v2_Hillshade.vrt | 53 - .../layers/nasa-treks/MSGR_MDIS_Mosaic.asset | 124 ++ .../Aksakov_Crater_Peak_Ring.vrt | 53 + .../Aksakov_Crater_Peak_Ring.wms} | 0 .../Crater_near_Dali_Crater.vrt | 53 + .../Crater_near_Dali_Crater.wms} | 0 .../Crater_near_Geddes_Crater.vrt | 53 + .../Crater_near_Geddes_Crater.wms} | 0 .../MSGR_MDIS_Mosaic/Degas_Crater.vrt | 53 + .../Degas_Crater.wms} | 0 .../MSGR_MDIS_Mosaic/Kertesz_Crater.vrt | 53 + .../Kertesz_Crater.wms} | 0 .../North-West_of_Degas_Crater.vrt | 53 + .../North-West_of_Degas_Crater.wms} | 0 .../MSGR_MDIS_Mosaic/Praxiteles_Peak_Ring.vrt | 53 + .../Praxiteles_Peak_Ring.wms} | 0 .../MSGR_MDIS_Mosaic/Raditladi_Crater.vrt | 53 + .../Raditladi_Crater.wms} | 0 .../MSGR_MDIS_Mosaic/Sander_Crater.vrt | 53 + .../Sander_Crater.wms} | 0 .../Sholem_Aleichem_Crater_Wall.vrt | 53 + .../Sholem_Aleichem_Crater_Wall.wms} | 0 ...SGR_Aksakov_Crater_Peak_Ring_Ortho_29m.vrt | 53 - ...MDIS_Mosaic_Aksakov_Crater_Peak_Ring.asset | 28 - ..._MDIS_Mosaic_Crater_near_Dali_Crater.asset | 28 - .../MSGR_near_Dali_Crater_Ortho_20m.vrt | 53 - ...DIS_Mosaic_Crater_near_Geddes_Crater.asset | 28 - .../MSGR_near_Geddes_Crater_Ortho_33m.vrt | 53 - .../MSGR_Degas_Crater_Ortho_30m.vrt | 53 - .../MSGR_MDIS_Mosaic_Degas_Crater.asset | 28 - .../MSGR_Kertesz_Crater_Ortho_30m.vrt | 53 - .../MSGR_MDIS_Mosaic_Kertesz_Crater.asset | 28 - ...IS_Mosaic_North-West_of_Degas_Crater.asset | 28 - .../MSGR_nw_Degas_Crater_Ortho_26m.vrt | 53 - ...SGR_MDIS_Mosaic_Praxiteles_Peak_Ring.asset | 28 - .../MSGR_Praxiteles_Peak_Ring_Ortho_20m.vrt | 53 - .../MSGR_MDIS_Mosaic_Raditladi_Crater.asset | 28 - .../MSGR_Raditladi_Crater_Ortho_40m.vrt | 53 - .../MSGR_MDIS_Mosaic_Sander_Crater.asset | 28 - .../MSGR_Sander_Crater_Ortho_22m.vrt | 53 - ...S_Mosaic_Sholem_Aleichem_Crater_Wall.asset | 28 - ...R_Sholem_Aleichem_Crater_Wall_Ortho_8m.vrt | 53 - .../layers/nasa-treks/MSGR_MDIS_Slope.asset | 124 ++ .../Aksakov_Crater_Peak_Ring.vrt | 53 + .../Aksakov_Crater_Peak_Ring.wms} | 0 .../Crater_near_Dali_Crater.vrt | 53 + .../Crater_near_Dali_Crater.wms} | 0 .../Crater_near_Geddes_Crater.vrt | 53 + .../Crater_near_Geddes_Crater.wms} | 0 .../MSGR_MDIS_Slope/Degas_Crater.vrt | 53 + .../Degas_Crater.wms} | 0 .../MSGR_MDIS_Slope/Kertesz_Crater.vrt | 53 + .../Kertesz_Crater.wms} | 0 .../North-West_of_Degas_Crater.vrt | 53 + .../North-West_of_Degas_Crater.wms} | 0 .../MSGR_MDIS_Slope/Praxiteles_Peak_Ring.vrt | 53 + .../Praxiteles_Peak_Ring.wms} | 0 .../MSGR_MDIS_Slope/Raditladi_Crater.vrt | 53 + .../Raditladi_Crater.wms} | 0 .../MSGR_MDIS_Slope/Sander_Crater.vrt | 53 + .../Sander_Crater.wms} | 0 .../Sholem_Aleichem_Crater_Wall.vrt | 53 + .../Sholem_Aleichem_Crater_Wall.wms} | 0 ...GR_Aksakov_Crater_Peak_Ring_Slope_100m.vrt | 53 - ..._MDIS_Slope_Aksakov_Crater_Peak_Ring.asset | 28 - .../MSGR_MDIS_Slope_Colorized_Global.asset | 28 - ..._Messenger_USGS_DEM_665m_v2_SlopeColor.vrt | 53 - ...R_MDIS_Slope_Crater_near_Dali_Crater.asset | 28 - .../MSGR_near_Dali_Crater_Slope_60m.vrt | 53 - ...MDIS_Slope_Crater_near_Geddes_Crater.asset | 28 - .../MSGR_near_Geddes_Crater_Slope_100m.vrt | 53 - .../MSGR_Degas_Crater_Slope_90m.vrt | 53 - .../MSGR_MDIS_Slope_Degas_Crater.asset | 28 - .../MSGR_Kertesz_Crater_Slope_100m.vrt | 53 - .../MSGR_MDIS_Slope_Kertesz_Crater.asset | 28 - ...DIS_Slope_North-West_of_Degas_Crater.asset | 28 - .../MSGR_nw_Degas_Crater_Slope_80m.vrt | 53 - ...MSGR_MDIS_Slope_Praxiteles_Peak_Ring.asset | 28 - .../MSGR_Praxiteles_Peak_Ring_Slope_60m.vrt | 53 - .../MSGR_MDIS_Slope_Raditladi_Crater.asset | 28 - .../MSGR_Raditladi_Crater_Slope_120m.vrt | 53 - .../MSGR_MDIS_Slope_Sander_Crater.asset | 28 - .../MSGR_Sander_Crater_Slope_80m.vrt | 53 - ...IS_Slope_Sholem_Aleichem_Crater_Wall.asset | 28 - ..._Sholem_Aleichem_Crater_Wall_Slope_25m.vrt | 53 - .../layers/nasa-treks/all_treks_layers.asset | 23 - 3381 files changed, 34341 insertions(+), 80674 deletions(-) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Metric_Cam_DEM.asset create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Metric_Cam_DEM/ColorHillshade.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{Apollo_15_Metric_Cam_DEM_ColorHillshade/Apollo15_MetricCam_ClrShade_Global_1024ppd.wms => Apollo_15_Metric_Cam_DEM/ColorHillshade.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Metric_Cam_DEM/Colorized_Confidence.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{Apollo_15_Metric_Cam_DEM_Colorized_Confidence/Apollo15_MetricCam_ClrConf_Global_1024ppd.wms => Apollo_15_Metric_Cam_DEM/Colorized_Confidence.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Metric_Cam_DEM/Grayscale.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{Apollo_15_Metric_Cam_DEM_Grayscale/Apollo15_MetricCam_Gray_Global_1024ppd.wms => Apollo_15_Metric_Cam_DEM/Grayscale.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Metric_Cam_DEM/Hillshade.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{Apollo_15_Metric_Cam_DEM_Hillshade/Apollo15_MetricCam_Shade_Global_1024ppd.wms => Apollo_15_Metric_Cam_DEM/Hillshade.wms} (100%) delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Metric_Cam_DEM_ColorHillshade/Apollo15_MetricCam_ClrShade_Global_1024ppd.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Metric_Cam_DEM_ColorHillshade/Apollo_15_Metric_Cam_DEM_ColorHillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Metric_Cam_DEM_Colorized_Confidence/Apollo15_MetricCam_ClrConf_Global_1024ppd.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Metric_Cam_DEM_Colorized_Confidence/Apollo_15_Metric_Cam_DEM_Colorized_Confidence.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Metric_Cam_DEM_Grayscale/Apollo15_MetricCam_Gray_Global_1024ppd.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Metric_Cam_DEM_Grayscale/Apollo_15_Metric_Cam_DEM_Grayscale.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Metric_Cam_DEM_Hillshade/Apollo15_MetricCam_Shade_Global_1024ppd.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Metric_Cam_DEM_Hillshade/Apollo_15_Metric_Cam_DEM_Hillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Metric_Cam_Image_Mosaic/Apollo15_MetricCam_Mosaic_Global_4096ppd.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Metric_Cam_Image_Mosaic/Apollo_15_Metric_Cam_Image_Mosaic.asset create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM.asset create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM/Aristarchus_Plateau_1.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_1_ColorHillshade/Apollo15_PanCam_ClrShade_25N311E_5mp.wms => Apollo_15_Pan_Cam_DEM/Aristarchus_Plateau_1.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM/Aristarchus_Plateau_2.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_2_ColorHillshade/Apollo15_PanCam_ClrShade_28N307E_3mp.wms => Apollo_15_Pan_Cam_DEM/Aristarchus_Plateau_2.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM/Tsiolkovskiy_Crater.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{Apollo_15_Pan_Cam_DEM_Tsiolkovskiy_Crater_ColorHillshade/Apollo15_PanCam_ClrShade_19S129E_5mp.wms => Apollo_15_Pan_Cam_DEM/Tsiolkovskiy_Crater.wms} (100%) delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_1_ColorHillshade/Apollo15_PanCam_ClrShade_25N311E_5mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_1_ColorHillshade/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_1_ColorHillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_1_Colorized_Confidence/Apollo15_PanCam_ClrConf_25N311E_5mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_1_Colorized_Confidence/Apollo15_PanCam_ClrConf_25N311E_5mp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_1_Colorized_Confidence/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_1_Colorized_Confidence.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_1_Colorized_Slope/Apollo15_PanCam_Slope_25N311E_5mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_1_Colorized_Slope/Apollo15_PanCam_Slope_25N311E_5mp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_1_Colorized_Slope/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_1_Colorized_Slope.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_1_Grayscale/Apollo15_PanCam_Gray_25N311E_5mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_1_Grayscale/Apollo15_PanCam_Gray_25N311E_5mp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_1_Grayscale/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_1_Grayscale.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_1_Hillshade/Apollo15_PanCam_Shade_25N311E_5mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_1_Hillshade/Apollo15_PanCam_Shade_25N311E_5mp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_1_Hillshade/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_1_Hillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_2_ColorHillshade/Apollo15_PanCam_ClrShade_28N307E_3mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_2_ColorHillshade/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_2_ColorHillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_2_Colorized_Confidence/Apollo15_PanCam_ClrConf_28N307E_3mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_2_Colorized_Confidence/Apollo15_PanCam_ClrConf_28N307E_3mp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_2_Colorized_Confidence/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_2_Colorized_Confidence.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_2_Colorized_Slope/Apollo15_PanCam_Slope_28N307E_3mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_2_Colorized_Slope/Apollo15_PanCam_Slope_28N307E_3mp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_2_Colorized_Slope/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_2_Colorized_Slope.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_2_Grayscale/Apollo15_PanCam_Gray_28N307E_3mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_2_Grayscale/Apollo15_PanCam_Gray_28N307E_3mp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_2_Grayscale/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_2_Grayscale.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_2_Hillshade/Apollo15_PanCam_Shade_28N307E_3mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_2_Hillshade/Apollo15_PanCam_Shade_28N307E_3mp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_2_Hillshade/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_2_Hillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Tsiolkovskiy_Crater_ColorHillshade/Apollo15_PanCam_ClrShade_19S129E_5mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Tsiolkovskiy_Crater_ColorHillshade/Apollo_15_Pan_Cam_DEM_Tsiolkovskiy_Crater_ColorHillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Tsiolkovskiy_Crater_Colorized_Confidence/Apollo15_PanCam_ClrConf_19S129E_5mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Tsiolkovskiy_Crater_Colorized_Confidence/Apollo15_PanCam_ClrConf_19S129E_5mp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Tsiolkovskiy_Crater_Colorized_Confidence/Apollo_15_Pan_Cam_DEM_Tsiolkovskiy_Crater_Colorized_Confidence.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Tsiolkovskiy_Crater_Colorized_Slope/Apollo15_PanCam_Slope_19S129E_5mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Tsiolkovskiy_Crater_Colorized_Slope/Apollo15_PanCam_Slope_19S129E_5mp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Tsiolkovskiy_Crater_Colorized_Slope/Apollo_15_Pan_Cam_DEM_Tsiolkovskiy_Crater_Colorized_Slope.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Tsiolkovskiy_Crater_Grayscale/Apollo15_PanCam_Gray_19S129E_5mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Tsiolkovskiy_Crater_Grayscale/Apollo15_PanCam_Gray_19S129E_5mp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Tsiolkovskiy_Crater_Grayscale/Apollo_15_Pan_Cam_DEM_Tsiolkovskiy_Crater_Grayscale.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Tsiolkovskiy_Crater_Hillshade/Apollo15_PanCam_Shade_19S129E_5mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Tsiolkovskiy_Crater_Hillshade/Apollo15_PanCam_Shade_19S129E_5mp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Tsiolkovskiy_Crater_Hillshade/Apollo_15_Pan_Cam_DEM_Tsiolkovskiy_Crater_Hillshade.asset create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_Image_Mosaic.asset create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_Image_Mosaic/Aristarchus_Plateau_1.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{Apollo_15_Pan_Cam_Image_Mosaic_Aristarchus_Plateau_1/Apollo15_PanCam_Mosaic_25N311E_150cmp.wms => Apollo_15_Pan_Cam_Image_Mosaic/Aristarchus_Plateau_1.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_Image_Mosaic/Aristarchus_Plateau_2.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{Apollo_15_Pan_Cam_Image_Mosaic_Aristarchus_Plateau_2/Apollo15_PanCam_Mosaic_28N307E_1mp.wms => Apollo_15_Pan_Cam_Image_Mosaic/Aristarchus_Plateau_2.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_Image_Mosaic/Tsiolkovskiy_Crater.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{Apollo_15_Pan_Cam_Image_Mosaic_Tsiolkovskiy_Crater/Apollo15_PanCam_Mosaic_19S129E_2mp.wms => Apollo_15_Pan_Cam_Image_Mosaic/Tsiolkovskiy_Crater.wms} (100%) delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_Image_Mosaic_Aristarchus_Plateau_1/Apollo15_PanCam_Mosaic_25N311E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_Image_Mosaic_Aristarchus_Plateau_1/Apollo_15_Pan_Cam_Image_Mosaic_Aristarchus_Plateau_1.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_Image_Mosaic_Aristarchus_Plateau_2/Apollo15_PanCam_Mosaic_28N307E_1mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_Image_Mosaic_Aristarchus_Plateau_2/Apollo_15_Pan_Cam_Image_Mosaic_Aristarchus_Plateau_2.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_Image_Mosaic_Tsiolkovskiy_Crater/Apollo15_PanCam_Mosaic_19S129E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_Image_Mosaic_Tsiolkovskiy_Crater/Apollo_15_Pan_Cam_Image_Mosaic_Tsiolkovskiy_Crater.asset create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_16_Metric_Cam_DEM.asset create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_16_Metric_Cam_DEM/Colorized_Confidence.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{Apollo_16_Metric_Cam_DEM_Colorized_Confidence/Apollo16_MetricCam_ClrConf_Global_1024ppd.wms => Apollo_16_Metric_Cam_DEM/Colorized_Confidence.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_16_Metric_Cam_DEM/Grayscale.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{Apollo_16_Metric_Cam_DEM_Grayscale/Apollo16_MetricCam_Gray_Global_1024ppd.wms => Apollo_16_Metric_Cam_DEM/Grayscale.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_16_Metric_Cam_DEM/Hillshade.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{Apollo_16_Metric_Cam_DEM_Hillshade/Apollo16_MetricCam_Shade_Global_1024ppd.wms => Apollo_16_Metric_Cam_DEM/Hillshade.wms} (100%) delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_16_Metric_Cam_DEM_Colorized_Confidence/Apollo16_MetricCam_ClrConf_Global_1024ppd.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_16_Metric_Cam_DEM_Colorized_Confidence/Apollo_16_Metric_Cam_DEM_Colorized_Confidence.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_16_Metric_Cam_DEM_Grayscale/Apollo16_MetricCam_Gray_Global_1024ppd.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_16_Metric_Cam_DEM_Grayscale/Apollo_16_Metric_Cam_DEM_Grayscale.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_16_Metric_Cam_DEM_Hillshade/Apollo16_MetricCam_Shade_Global_1024ppd.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_16_Metric_Cam_DEM_Hillshade/Apollo_16_Metric_Cam_DEM_Hillshade.asset create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_17_Metric_Cam_DEM.asset create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_17_Metric_Cam_DEM/ColorHillshade.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{Apollo_17_Metric_Cam_DEM_ColorHillshade/Apollo17_MetricCam_ClrShade_Global_1024ppd.wms => Apollo_17_Metric_Cam_DEM/ColorHillshade.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_17_Metric_Cam_DEM/Grayscale.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{Apollo_17_Metric_Cam_DEM_Grayscale/Apollo17_MetricCam_Gray_Global_1024ppd.wms => Apollo_17_Metric_Cam_DEM/Grayscale.wms} (100%) delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_17_Metric_Cam_DEM_ColorHillshade/Apollo17_MetricCam_ClrShade_Global_1024ppd.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_17_Metric_Cam_DEM_ColorHillshade/Apollo_17_Metric_Cam_DEM_ColorHillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_17_Metric_Cam_DEM_Grayscale/Apollo17_MetricCam_Gray_Global_1024ppd.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_17_Metric_Cam_DEM_Grayscale/Apollo_17_Metric_Cam_DEM_Grayscale.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_17_Metric_Cam_Image_Mosaic/Apollo17_MetricCam_Mosaic_Global_3033ppd.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_17_Metric_Cam_Image_Mosaic/Apollo_17_Metric_Cam_Image_Mosaic.asset create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_Zone_Metric_Cam.asset create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_Zone_Metric_Cam/Hillshade.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{Apollo_Zone_Metric_Cam_Hillshade/ApolloZone_MetricCam_Shade_Global_1024ppd.wms => Apollo_Zone_Metric_Cam/Hillshade.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_Zone_Metric_Cam_DEM.asset create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_Zone_Metric_Cam_DEM/ColorHillshade.vrt create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_Zone_Metric_Cam_DEM/ColorHillshade.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_Zone_Metric_Cam_Hillshade/ApolloZone_MetricCam_Shade_Global_1024ppd.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_Zone_Metric_Cam_Hillshade/Apollo_Zone_Metric_Cam_Hillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_Zone_Metric_Cam_Image_Mosaic/ApolloZone_MetricCam_Mosaic_Global_3033ppd.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_Zone_Metric_Cam_Image_Mosaic/Apollo_Zone_Metric_Cam_Image_Mosaic.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Clementine_UVVIS_FeO_Weight_Percent/Clem_UVVIS_FeO_Clr_Global_152ppd.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Clementine_UVVIS_FeO_Weight_Percent/Clementine_UVVIS_FeO_Weight_Percent.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Clementine_UVVIS_Optical_Maturity/Clem_UVVIS_OpticalMaturity_Gray_Global_152ppd.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Clementine_UVVIS_Optical_Maturity/Clementine_UVVIS_Optical_Maturity.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Clementine_UVVIS_TiO2_Weight_Percent/Clem_UVVIS_TiO2_Clr_Global_152ppd.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Clementine_UVVIS_TiO2_Weight_Percent/Clementine_UVVIS_TiO2_Weight_Percent.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Clementine_UVVIS_Warped_Color_Ratio/Clementine_UVVIS_Warped_Color_Ratio.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Clementine_UVVIS_Warped_Color_Ratio/Lunar_Clementine_UVVIS_Warp_ClrRatio_Global_200m.vrt create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global.asset create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/Apollo_15_Metric_Cam_Image_Mosaic.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{Apollo_15_Metric_Cam_Image_Mosaic/Apollo15_MetricCam_Mosaic_Global_4096ppd.wms => Global/Apollo_15_Metric_Cam_Image_Mosaic.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/Apollo_17_Metric_Cam_Image_Mosaic.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{Apollo_17_Metric_Cam_Image_Mosaic/Apollo17_MetricCam_Mosaic_Global_3033ppd.wms => Global/Apollo_17_Metric_Cam_Image_Mosaic.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/Apollo_Zone_Metric_Cam_Image_Mosaic.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{Apollo_Zone_Metric_Cam_Image_Mosaic/ApolloZone_MetricCam_Mosaic_Global_3033ppd.wms => Global/Apollo_Zone_Metric_Cam_Image_Mosaic.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/Clementine_UVVIS_FeO_Weight_Percent.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{Clementine_UVVIS_FeO_Weight_Percent/Clem_UVVIS_FeO_Clr_Global_152ppd.wms => Global/Clementine_UVVIS_FeO_Weight_Percent.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/Clementine_UVVIS_Optical_Maturity.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{Clementine_UVVIS_Optical_Maturity/Clem_UVVIS_OpticalMaturity_Gray_Global_152ppd.wms => Global/Clementine_UVVIS_Optical_Maturity.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/Clementine_UVVIS_TiO2_Weight_Percent.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{Clementine_UVVIS_TiO2_Weight_Percent/Clem_UVVIS_TiO2_Clr_Global_152ppd.wms => Global/Clementine_UVVIS_TiO2_Weight_Percent.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/Clementine_UVVIS_Warped_Color_Ratio.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{Clementine_UVVIS_Warped_Color_Ratio/Lunar_Clementine_UVVIS_Warp_ClrRatio_Global_200m.wms => Global/Clementine_UVVIS_Warped_Color_Ratio.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/Kaguya_TC_Ortho_Mosaic.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{Kaguya_TC_Ortho_Mosaic/Kaguya_TCortho_Mosaic_Global_4096ppd.wms => Global/Kaguya_TC_Ortho_Mosaic.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/LOLA_Permanently_Shadowed_Regions_Northpole_240m.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LOLA_Permanently_Shadowed_Regions_Northpole_240m/LRO_LOLA_Illumination_NPole65N_240m_EQ.wms => Global/LOLA_Permanently_Shadowed_Regions_Northpole_240m.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/LOLA_Permanently_Shadowed_Regions_Southpole_240m.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LOLA_Permanently_Shadowed_Regions_Southpole_240m/LRO_LOLA_Illumination_SPole65S_240m_EQ.wms => Global/LOLA_Permanently_Shadowed_Regions_Southpole_240m.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/LP_NS_H_Abundance.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LP_NS_H_Abundance/LP_NS_H_Clr_Global_2ppd.wms => Global/LP_NS_H_Abundance.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/LROC_NAC_Uncontrolled_Mosaic_of_Mare_Unit_in_Schrodinger_Crater.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LROC_NAC_Uncontrolled_Mosaic_of_Mare_Unit_in_Schrodinger_Crater/SchrodingerCraterMareUnit_50cmV1.0.eq.wms => Global/LROC_NAC_Uncontrolled_Mosaic_of_Mare_Unit_in_Schrodinger_Crater.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/LROC_NAC_Uncontrolled_Mosaic_of_Massif_in_Schrodinger_Crater.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LROC_NAC_Uncontrolled_Mosaic_of_Massif_in_Schrodinger_Crater/SchrodingerCraterMassif_50cmV1.0.eq.wms => Global/LROC_NAC_Uncontrolled_Mosaic_of_Massif_in_Schrodinger_Crater.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/LRO_Diviner_CF_Mosaic.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_Diviner_CF_Mosaic/LRO_Diviner_CF_NoFill_Global_8ppd.wms => Global/LRO_Diviner_CF_Mosaic.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/LRO_LOLA_and_Kaguya_TC_Color_Hillshade_512ppd.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LOLA_and_Kaguya_TC_Color_Hillshade_512ppd/LRO_LOLAKaguya_ClrHillshade_60N60S_512ppd.wms => Global/LRO_LOLA_and_Kaguya_TC_Color_Hillshade_512ppd.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/LRO_LOLA_and_Kaguya_TC_Hillshade_512ppd.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LOLA_and_Kaguya_TC_Hillshade_512ppd/LRO_LOLAKaguya_Hillshade_60N60S_512ppd.wms => Global/LRO_LOLA_and_Kaguya_TC_Hillshade_512ppd.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/LRO_LROC_WAC_Image_Mosaic.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_WAC_Image_Mosaic/LRO_WAC_Mosaic_Global_303ppd.wms => Global/LRO_LROC_WAC_Image_Mosaic.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/LRO_Mini-RF_First_Stokes_Parameter.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_Mini-RF_First_Stokes_Parameter/LRO_MiniRF_S1_Gray_Global_128ppd.wms => Global/LRO_Mini-RF_First_Stokes_Parameter.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/LRO_WAC_Mosaic_v2.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_WAC_Mosaic_v2/LRO_WAC_Mosaic_Global_303ppd_v02.wms => Global/LRO_WAC_Mosaic_v2.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Kaguya_LGM2011_Freeair_Gravity.asset create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Kaguya_LGM2011_Freeair_Gravity/Colorized.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{Kaguya_LGM2011_Freeair_Gravity_Colorized/Kaguya_LGM2011_FreeairGravity_Colorized_Global_mgal3m_20ppd.wms => Kaguya_LGM2011_Freeair_Gravity/Colorized.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Kaguya_LGM2011_Freeair_Gravity/Greyscale.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{Kaguya_LGM2011_Freeair_Gravity_Greyscale/Kaguya_LGM2011_FreeairGravity_Gray_Global_mgal3m_20ppd.wms => Kaguya_LGM2011_Freeair_Gravity/Greyscale.wms} (100%) delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Kaguya_LGM2011_Freeair_Gravity_Colorized/Kaguya_LGM2011_FreeairGravity_Colorized_Global_mgal3m_20ppd.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Kaguya_LGM2011_Freeair_Gravity_Colorized/Kaguya_LGM2011_Freeair_Gravity_Colorized.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Kaguya_LGM2011_Freeair_Gravity_Greyscale/Kaguya_LGM2011_FreeairGravity_Gray_Global_mgal3m_20ppd.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Kaguya_LGM2011_Freeair_Gravity_Greyscale/Kaguya_LGM2011_Freeair_Gravity_Greyscale.asset create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Kaguya_LGM2011_Surface_Gravity.asset create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Kaguya_LGM2011_Surface_Gravity/Colorized.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{Kaguya_LGM2011_Surface_Gravity_Colorized/Kaguya_LGM2011_SurfaceGravity_Colorized_Global_mgal3m_20ppd.wms => Kaguya_LGM2011_Surface_Gravity/Colorized.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Kaguya_LGM2011_Surface_Gravity/Greyscale.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{Kaguya_LGM2011_Surface_Gravity_Greyscale/Kaguya_LGM2011_SurfaceGravity_Gray_Global_mgal3m_20ppd.wms => Kaguya_LGM2011_Surface_Gravity/Greyscale.wms} (100%) delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Kaguya_LGM2011_Surface_Gravity_Colorized/Kaguya_LGM2011_SurfaceGravity_Colorized_Global_mgal3m_20ppd.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Kaguya_LGM2011_Surface_Gravity_Colorized/Kaguya_LGM2011_Surface_Gravity_Colorized.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Kaguya_LGM2011_Surface_Gravity_Greyscale/Kaguya_LGM2011_SurfaceGravity_Gray_Global_mgal3m_20ppd.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Kaguya_LGM2011_Surface_Gravity_Greyscale/Kaguya_LGM2011_Surface_Gravity_Greyscale.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Kaguya_TC_Ortho_Mosaic/Kaguya_TC_Ortho_Mosaic.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Kaguya_TC_Ortho_Mosaic/Kaguya_TCortho_Mosaic_Global_4096ppd.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_Permanently_Shadowed_Regions_Northpole_240m/LOLA_Permanently_Shadowed_Regions_Northpole_240m.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_Permanently_Shadowed_Regions_Northpole_240m/LRO_LOLA_Illumination_NPole65N_240m_EQ.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_Permanently_Shadowed_Regions_Southpole_240m/LOLA_Permanently_Shadowed_Regions_Southpole_240m.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_Permanently_Shadowed_Regions_Southpole_240m/LRO_LOLA_Illumination_SPole65S_240m_EQ.vrt create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_Roughness_16ppd.asset create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_Roughness_16ppd/Colorized.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LOLA_Roughness_16ppd_Colorized/LRO_LOLA_ClrRoughness_Global_16ppd.wms => LOLA_Roughness_16ppd/Colorized.wms} (100%) delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_Roughness_16ppd_Colorized/LOLA_Roughness_16ppd_Colorized.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_Roughness_16ppd_Colorized/LRO_LOLA_ClrRoughness_Global_16ppd.vrt create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_Slope_16ppd.asset create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_Slope_16ppd/Colorized.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LOLA_Slope_16ppd_Colorized/LRO_LOLA_ClrSlope_Global_16ppd.wms => LOLA_Slope_16ppd/Colorized.wms} (100%) delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_Slope_16ppd_Colorized/LOLA_Slope_16ppd_Colorized.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_Slope_16ppd_Colorized/LRO_LOLA_ClrSlope_Global_16ppd.vrt create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_Slope_Northpole_120m.asset create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_Slope_Northpole_120m/Colorized.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LOLA_Slope_Northpole_120m_Colorized/LRO_LOLA_ClrSlope_NPole75N_120m_EQ.wms => LOLA_Slope_Northpole_120m/Colorized.wms} (100%) delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_Slope_Northpole_120m_Colorized/LOLA_Slope_Northpole_120m_Colorized.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_Slope_Northpole_120m_Colorized/LRO_LOLA_ClrSlope_NPole75N_120m_EQ.vrt create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_Slope_Southpole_120m.asset create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_Slope_Southpole_120m/Colorized.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LOLA_Slope_Southpole_120m_Colorized/LRO_LOLA_ClrSlope_SPole75S_120m_EQ.wms => LOLA_Slope_Southpole_120m/Colorized.wms} (100%) delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_Slope_Southpole_120m_Colorized/LOLA_Slope_Southpole_120m_Colorized.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_Slope_Southpole_120m_Colorized/LRO_LOLA_ClrSlope_SPole75S_120m_EQ.vrt create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_and_TC_Stereo_DEM_Merge_512ppd.asset create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_and_TC_Stereo_DEM_Merge_512ppd/Shade.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LOLA_and_TC_Stereo_DEM_Merge_512ppd_Shade/LRO_LrocKaguya_Shade_60N60S_512ppd.wms => LOLA_and_TC_Stereo_DEM_Merge_512ppd/Shade.wms} (100%) delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_and_TC_Stereo_DEM_Merge_512ppd_Shade/LOLA_and_TC_Stereo_DEM_Merge_512ppd_Shade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_and_TC_Stereo_DEM_Merge_512ppd_Shade/LRO_LrocKaguya_Shade_60N60S_512ppd.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LP_NS_H_Abundance/LP_NS_H_Abundance.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LP_NS_H_Abundance/LP_NS_H_Clr_Global_2ppd.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LROC_NAC_Uncontrolled_Mosaic_of_Mare_Unit_in_Schrodinger_Crater/LROC_NAC_Uncontrolled_Mosaic_of_Mare_Unit_in_Schrodinger_Crater.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LROC_NAC_Uncontrolled_Mosaic_of_Mare_Unit_in_Schrodinger_Crater/SchrodingerCraterMareUnit_50cmV1.0.eq.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LROC_NAC_Uncontrolled_Mosaic_of_Massif_in_Schrodinger_Crater/LROC_NAC_Uncontrolled_Mosaic_of_Massif_in_Schrodinger_Crater.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LROC_NAC_Uncontrolled_Mosaic_of_Massif_in_Schrodinger_Crater/SchrodingerCraterMassif_50cmV1.0.eq.vrt create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LROC_NAC_Uncontrolled_Mosaic_of_Region_Inside_Schrodinger_Crater.asset create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LROC_NAC_Uncontrolled_Mosaic_of_Region_Inside_Schrodinger_Crater/50cmpx.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LROC_NAC_Uncontrolled_Mosaic_of_Region_Inside_Schrodinger_Crater_50cmpx/SchrodingerMareNorth.eq.wms => LROC_NAC_Uncontrolled_Mosaic_of_Region_Inside_Schrodinger_Crater/50cmpx.wms} (100%) delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LROC_NAC_Uncontrolled_Mosaic_of_Region_Inside_Schrodinger_Crater_50cmpx/LROC_NAC_Uncontrolled_Mosaic_of_Region_Inside_Schrodinger_Crater_50cmpx.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LROC_NAC_Uncontrolled_Mosaic_of_Region_Inside_Schrodinger_Crater_50cmpx/SchrodingerMareNorth.eq.vrt create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LROC_NAC_Uncontrolled_Mosaic_of_Schrodinger_Crater.asset create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LROC_NAC_Uncontrolled_Mosaic_of_Schrodinger_Crater/10mpx.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LROC_NAC_Uncontrolled_Mosaic_of_Schrodinger_Crater_10mpx/allSchrodinger_10mV1.0.eq.wms => LROC_NAC_Uncontrolled_Mosaic_of_Schrodinger_Crater/10mpx.wms} (100%) delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LROC_NAC_Uncontrolled_Mosaic_of_Schrodinger_Crater_10mpx/LROC_NAC_Uncontrolled_Mosaic_of_Schrodinger_Crater_10mpx.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LROC_NAC_Uncontrolled_Mosaic_of_Schrodinger_Crater_10mpx/allSchrodinger_10mV1.0.eq.vrt create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_CF_Mosaic.asset create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_CF_Mosaic/Filled.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_Diviner_CF_Mosaic_Filled/LRO_Diviner_CF_Filled_Global_8ppd.wms => LRO_Diviner_CF_Mosaic/Filled.wms} (100%) delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_CF_Mosaic/LRO_Diviner_CF_Mosaic.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_CF_Mosaic/LRO_Diviner_CF_NoFill_Global_8ppd.vrt create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_CF_Mosaic_128ppd.asset create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_CF_Mosaic_128ppd/Colorized.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_Diviner_CF_Mosaic_128ppd_Colorized/LRO_DIVINER_ClrCF_Global_128ppd.wms => LRO_Diviner_CF_Mosaic_128ppd/Colorized.wms} (100%) delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_CF_Mosaic_128ppd_Colorized/LRO_DIVINER_ClrCF_Global_128ppd.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_CF_Mosaic_128ppd_Colorized/LRO_Diviner_CF_Mosaic_128ppd_Colorized.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_CF_Mosaic_Filled/LRO_Diviner_CF_Filled_Global_8ppd.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_CF_Mosaic_Filled/LRO_Diviner_CF_Mosaic_Filled.asset create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_Surface_Temp_Avg.asset create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_Surface_Temp_Avg/Color.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_Diviner_Surface_Temp_Avg_Color/LRO_Diviner_ST_Avg_Clr_Global_32ppd.wms => LRO_Diviner_Surface_Temp_Avg/Color.wms} (100%) delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_Surface_Temp_Avg_Color/LRO_Diviner_ST_Avg_Clr_Global_32ppd.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_Surface_Temp_Avg_Color/LRO_Diviner_Surface_Temp_Avg_Color.asset create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_Surface_Temp_Normal_Avg.asset create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_Surface_Temp_Normal_Avg/Color.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_Diviner_Surface_Temp_Normal_Avg_Color/LRO_Diviner_STN_Avg_Clr_Global_32ppd.wms => LRO_Diviner_Surface_Temp_Normal_Avg/Color.wms} (100%) delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_Surface_Temp_Normal_Avg_Color/LRO_Diviner_STN_Avg_Clr_Global_32ppd.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_Surface_Temp_Normal_Avg_Color/LRO_Diviner_Surface_Temp_Normal_Avg_Color.asset create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_Surface_Temperature_Mosaic_128ppd.asset create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_Surface_Temperature_Mosaic_128ppd/Colorized.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_Diviner_Surface_Temperature_Mosaic_128ppd_Colorized/LRO_DIVINER_ClrRockFreeSurfaceTemp_Global_128ppd.wms => LRO_Diviner_Surface_Temperature_Mosaic_128ppd/Colorized.wms} (100%) delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_Surface_Temperature_Mosaic_128ppd_Colorized/LRO_DIVINER_ClrRockFreeSurfaceTemp_Global_128ppd.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_Surface_Temperature_Mosaic_128ppd_Colorized/LRO_Diviner_Surface_Temperature_Mosaic_128ppd_Colorized.asset create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM.asset create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM/ColorHillshade.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LOLA_DEM_ColorHillshade/LRO_LOLA_ClrShade_Global_128ppd_v04.wms => LRO_LOLA_DEM/ColorHillshade.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM/ColorHillshade_v6.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LOLA_DEM_ColorHillshade_v6/LRO_LOLA_ClrShade_Global_256ppd_v06.wms => LRO_LOLA_DEM/ColorHillshade_v6.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM/Coverage.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LOLA_DEM_Coverage/LRO_LOLA_Coverage_Global_128ppd_v04.wms => LRO_LOLA_DEM/Coverage.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM/Hillshade.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LOLA_DEM_Hillshade/LRO_LOLA_Shade_Global_256ppd_v06.wms => LRO_LOLA_DEM/Hillshade.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM/N_Pole.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LOLA_DEM_N_Pole_87.5_deg_ColorHillshade/LRO_LOLA_ClrShade_NPole875_5mp_v04_EQ.wms => LRO_LOLA_DEM/N_Pole.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM/No_Data_Mask.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LOLA_DEM_No_Data_Mask/LRO_LOLA_NoDataMask_Global_128ppd_v04.wms => LRO_LOLA_DEM/No_Data_Mask.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM/S_Pole.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LOLA_DEM_S_Pole_87.5_deg_ColorHillshade/LRO_LOLA_ClrShade_SPole875_5mp_v04_EQ.wms => LRO_LOLA_DEM/S_Pole.wms} (100%) delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_ColorHillshade/LRO_LOLA_ClrShade_Global_128ppd_v04.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_ColorHillshade/LRO_LOLA_DEM_ColorHillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_ColorHillshade_v6/LRO_LOLA_ClrShade_Global_256ppd_v06.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_ColorHillshade_v6/LRO_LOLA_DEM_ColorHillshade_v6.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_Coverage/LRO_LOLA_Coverage_Global_128ppd_v04.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_Coverage/LRO_LOLA_DEM_Coverage.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_Hillshade/LRO_LOLA_DEM_Hillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_Hillshade/LRO_LOLA_Shade_Global_128ppd_v04.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_Hillshade/LRO_LOLA_Shade_Global_128ppd_v04.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_Hillshade/LRO_LOLA_Shade_Global_256ppd_v06.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_N_Pole_75_deg_ColorHillshade/LRO_LOLA_ClrShade_NPole75_30mp_v04_EQ.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_N_Pole_75_deg_ColorHillshade/LRO_LOLA_ClrShade_NPole75_30mp_v04_EQ.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_N_Pole_75_deg_ColorHillshade/LRO_LOLA_DEM_N_Pole_75_deg_ColorHillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_N_Pole_75_deg_Hillshade/LRO_LOLA_DEM_N_Pole_75_deg_Hillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_N_Pole_75_deg_Hillshade/LRO_LOLA_Shade_NPole75_30mp_v04_EQ.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_N_Pole_75_deg_Hillshade/LRO_LOLA_Shade_NPole75_30mp_v04_EQ.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_N_Pole_87.5_deg_ColorHillshade/LRO_LOLA_ClrShade_NPole875_5mp_v04_EQ.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_N_Pole_87.5_deg_ColorHillshade/LRO_LOLA_DEM_N_Pole_87.5_deg_ColorHillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_N_Pole_87.5_deg_Hillshade/LRO_LOLA_DEM_N_Pole_87.5_deg_Hillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_N_Pole_87.5_deg_Hillshade/LRO_LOLA_Shade_NPole875_5mp_v04_EQ.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_N_Pole_87.5_deg_Hillshade/LRO_LOLA_Shade_NPole875_5mp_v04_EQ.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_No_Data_Mask/LRO_LOLA_DEM_No_Data_Mask.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_No_Data_Mask/LRO_LOLA_NoDataMask_Global_128ppd_v04.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_S_Pole_75_deg_ColorHillshade/LRO_LOLA_ClrShade_SPole75_30mp_v04_EQ.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_S_Pole_75_deg_ColorHillshade/LRO_LOLA_ClrShade_SPole75_30mp_v04_EQ.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_S_Pole_75_deg_ColorHillshade/LRO_LOLA_DEM_S_Pole_75_deg_ColorHillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_S_Pole_75_deg_Hillshade/LRO_LOLA_DEM_S_Pole_75_deg_Hillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_S_Pole_75_deg_Hillshade/LRO_LOLA_Shade_SPole75_30mp_v04_EQ.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_S_Pole_75_deg_Hillshade/LRO_LOLA_Shade_SPole75_30mp_v04_EQ.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_S_Pole_87.5_deg_ColorHillshade/LRO_LOLA_ClrShade_SPole875_5mp_v04_EQ.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_S_Pole_87.5_deg_ColorHillshade/LRO_LOLA_DEM_S_Pole_87.5_deg_ColorHillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_S_Pole_87.5_deg_Hillshade/LRO_LOLA_DEM_S_Pole_87.5_deg_Hillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_S_Pole_87.5_deg_Hillshade/LRO_LOLA_Shade_SPole875_5mp_v04_EQ.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_S_Pole_87.5_deg_Hillshade/LRO_LOLA_Shade_SPole875_5mp_v04_EQ.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_and_Kaguya_TC_Color_Hillshade_512ppd/LRO_LOLAKaguya_ClrHillshade_60N60S_512ppd.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_and_Kaguya_TC_Color_Hillshade_512ppd/LRO_LOLA_and_Kaguya_TC_Color_Hillshade_512ppd.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_and_Kaguya_TC_Hillshade_512ppd/LRO_LOLAKaguya_Hillshade_60N60S_512ppd.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_and_Kaguya_TC_Hillshade_512ppd/LRO_LOLA_and_Kaguya_TC_Hillshade_512ppd.asset create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance.asset create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Aitken_Crater.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Crater_Abundance_Aitken_Crater/LRO_NAC_CratAbnd_17S173E_150cmp.wms => LRO_LROC_Crater_Abundance/Aitken_Crater.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Alphonsus_Crater.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Crater_Abundance_Alphonsus_Crater/LRO_NAC_CratAbnd_13S358E_2mp.wms => LRO_LROC_Crater_Abundance/Alphonsus_Crater.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Anaxagoras_Crater.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Crater_Abundance_Anaxagoras_Crater/LRO_NAC_CratAbnd_73N350E_150cmp.wms => LRO_LROC_Crater_Abundance/Anaxagoras_Crater.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Apollo_15.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Crater_Abundance_Apollo_15/LRO_NAC_CratAbnd_26N004E_150cmp.wms => LRO_LROC_Crater_Abundance/Apollo_15.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Apollo_16.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Crater_Abundance_Apollo_16/LRO_NAC_CratAbnd_09S015E_150cmp.wms => LRO_LROC_Crater_Abundance/Apollo_16.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Apollo_Basin.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Crater_Abundance_Apollo_Basin/LRO_NAC_CratAbnd_37S206E_150cmp.wms => LRO_LROC_Crater_Abundance/Apollo_Basin.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Aristarchus_1.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Crater_Abundance_Aristarchus_1/LRO_NAC_CratAbnd_25N311E_2mp.wms => LRO_LROC_Crater_Abundance/Aristarchus_1.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Aristarchus_2.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Crater_Abundance_Aristarchus_2/LRO_NAC_CratAbnd_28N307E_150cmp.wms => LRO_LROC_Crater_Abundance/Aristarchus_2.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Balmer_Basin.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Crater_Abundance_Balmer_Basin/LRO_NAC_CratAbnd_19S070E_150cmp.wms => LRO_LROC_Crater_Abundance/Balmer_Basin.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Bullialdus_Crater.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Crater_Abundance_Bullialdus_Crater/LRO_NAC_CratAbnd_20S337E_400cmp.wms => LRO_LROC_Crater_Abundance/Bullialdus_Crater.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Gruithuisen_Domes.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Crater_Abundance_Gruithuisen_Domes/LRO_NAC_CratAbnd_36N320E_2mp.wms => LRO_LROC_Crater_Abundance/Gruithuisen_Domes.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Hertzsprung.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Crater_Abundance_Hertzsprung/LRO_NAC_CratAbnd_00N234E_150cmp.wms => LRO_LROC_Crater_Abundance/Hertzsprung.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Hortensius_Domes.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Crater_Abundance_Hortensius_Domes/LRO_NAC_CratAbnd_08N332E_2mp.wms => LRO_LROC_Crater_Abundance/Hortensius_Domes.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/King_Crater.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Crater_Abundance_King_Crater/LRO_NAC_CratAbnd_06N120E_200cmp.wms => LRO_LROC_Crater_Abundance/King_Crater.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Lichtenberg_Crater.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Crater_Abundance_Lichtenberg_Crater/LRO_NAC_CratAbnd_32N292E_2mp.wms => LRO_LROC_Crater_Abundance/Lichtenberg_Crater.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Mare_Crisium.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Crater_Abundance_Mare_Crisium/LRO_NAC_CratAbnd_10N058E_150cmp.wms => LRO_LROC_Crater_Abundance/Mare_Crisium.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Montes_Pyrenaeus.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Crater_Abundance_Montes_Pyrenaeus/LRO_NAC_CratAbnd_16S041E_150cmp.wms => LRO_LROC_Crater_Abundance/Montes_Pyrenaeus.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Orientale_1.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Crater_Abundance_Orientale_1/LRO_NAC_CratAbnd_26S265E_200cmp.wms => LRO_LROC_Crater_Abundance/Orientale_1.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Plato_Ejecta.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Crater_Abundance_Plato_Ejecta/LRO_NAC_CratAbnd_53N354E_150cmp.wms => LRO_LROC_Crater_Abundance/Plato_Ejecta.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/South_Pole-Aitken_Basin_Interior.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Crater_Abundance_South_Pole-Aitken_Basin_Interior/LRO_NAC_CratAbnd_60S200E_150cmp.wms => LRO_LROC_Crater_Abundance/South_Pole-Aitken_Basin_Interior.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Stratton_Dewar_High_Fe_Anomaly.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Crater_Abundance_Stratton_(Dewar)_High_Fe_Anomaly/LRO_NAC_CratAbnd_02S167E_150cmp.wms => LRO_LROC_Crater_Abundance/Stratton_Dewar_High_Fe_Anomaly.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Sulpicius_Gallus.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Crater_Abundance_Sulpicius_Gallus/LRO_NAC_CratAbnd_20N010E_2mp.wms => LRO_LROC_Crater_Abundance/Sulpicius_Gallus.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Tycho_Crater.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Crater_Abundance_Tycho_Crater/LRO_NAC_CratAbnd_43S349E_150cmp.wms => LRO_LROC_Crater_Abundance/Tycho_Crater.wms} (100%) delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Aitken_Crater/LRO_LROC_Crater_Abundance_Aitken_Crater.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Aitken_Crater/LRO_NAC_CratAbnd_17S173E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Alphonsus_Crater/LRO_LROC_Crater_Abundance_Alphonsus_Crater.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Alphonsus_Crater/LRO_NAC_CratAbnd_13S358E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Anaxagoras_Crater/LRO_LROC_Crater_Abundance_Anaxagoras_Crater.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Anaxagoras_Crater/LRO_NAC_CratAbnd_73N350E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Apollo_15/LRO_LROC_Crater_Abundance_Apollo_15.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Apollo_15/LRO_NAC_CratAbnd_26N004E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Apollo_16/LRO_LROC_Crater_Abundance_Apollo_16.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Apollo_16/LRO_NAC_CratAbnd_09S015E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Apollo_Basin/LRO_LROC_Crater_Abundance_Apollo_Basin.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Apollo_Basin/LRO_NAC_CratAbnd_37S206E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Aristarchus_1/LRO_LROC_Crater_Abundance_Aristarchus_1.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Aristarchus_1/LRO_NAC_CratAbnd_25N311E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Aristarchus_2/LRO_LROC_Crater_Abundance_Aristarchus_2.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Aristarchus_2/LRO_NAC_CratAbnd_28N307E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Balmer_Basin/LRO_LROC_Crater_Abundance_Balmer_Basin.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Balmer_Basin/LRO_NAC_CratAbnd_19S070E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Bullialdus_Crater/LRO_LROC_Crater_Abundance_Bullialdus_Crater.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Bullialdus_Crater/LRO_NAC_CratAbnd_20S337E_400cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Gruithuisen_Domes/LRO_LROC_Crater_Abundance_Gruithuisen_Domes.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Gruithuisen_Domes/LRO_NAC_CratAbnd_36N320E_2mp.vrt create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard.asset create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Aitken_Crater.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Crater_Abundance_Hazard_Aitken_Crater/LRO_NAC_CratAbndHaz_17S173E_150cmp.wms => LRO_LROC_Crater_Abundance_Hazard/Aitken_Crater.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Alphonsus_Crater.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Crater_Abundance_Hazard_Alphonsus_Crater/LRO_NAC_CratAbndHaz_13S358E_2mp.wms => LRO_LROC_Crater_Abundance_Hazard/Alphonsus_Crater.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Anaxagoras_Crater.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Crater_Abundance_Hazard_Anaxagoras_Crater/LRO_NAC_CratAbndHaz_73N350E_150cmp.wms => LRO_LROC_Crater_Abundance_Hazard/Anaxagoras_Crater.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Apollo_15.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Crater_Abundance_Hazard_Apollo_15/LRO_NAC_CratAbndHaz_26N004E_150cmp.wms => LRO_LROC_Crater_Abundance_Hazard/Apollo_15.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Apollo_16.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Crater_Abundance_Hazard_Apollo_16/LRO_NAC_CratAbndHaz_09S015E_150cmp.wms => LRO_LROC_Crater_Abundance_Hazard/Apollo_16.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Apollo_Basin.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Crater_Abundance_Hazard_Apollo_Basin/LRO_NAC_CratAbndHaz_37S206E_150cmp.wms => LRO_LROC_Crater_Abundance_Hazard/Apollo_Basin.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Aristarchus_1.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Crater_Abundance_Hazard_Aristarchus_1/LRO_NAC_CratAbndHaz_25N311E_2mp.wms => LRO_LROC_Crater_Abundance_Hazard/Aristarchus_1.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Aristarchus_2.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Crater_Abundance_Hazard_Aristarchus_2/LRO_NAC_CratAbndHaz_28N307E_150cmp.wms => LRO_LROC_Crater_Abundance_Hazard/Aristarchus_2.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Balmer_Basin.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Crater_Abundance_Hazard_Balmer_Basin/LRO_NAC_CratAbndHaz_19S070E_150cmp.wms => LRO_LROC_Crater_Abundance_Hazard/Balmer_Basin.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Bullialdus_Crater.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Crater_Abundance_Hazard_Bullialdus_Crater/LRO_NAC_CratAbndHaz_20S337E_400cmp.wms => LRO_LROC_Crater_Abundance_Hazard/Bullialdus_Crater.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Gruithuisen_Domes.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Crater_Abundance_Hazard_Gruithuisen_Domes/LRO_NAC_CratAbndHaz_36N320E_2mp.wms => LRO_LROC_Crater_Abundance_Hazard/Gruithuisen_Domes.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Hertzsprung.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Crater_Abundance_Hazard_Hertzsprung/LRO_NAC_CratAbndHaz_00N234E_150cmp.wms => LRO_LROC_Crater_Abundance_Hazard/Hertzsprung.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Hortensius_Domes.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Crater_Abundance_Hazard_Hortensius_Domes/LRO_NAC_CratAbndHaz_08N332E_2mp.wms => LRO_LROC_Crater_Abundance_Hazard/Hortensius_Domes.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/King_Crater.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Crater_Abundance_Hazard_King_Crater/LRO_NAC_CratAbndHaz_06N120E_200cmp.wms => LRO_LROC_Crater_Abundance_Hazard/King_Crater.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Lichtenberg_Crater.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Crater_Abundance_Hazard_Lichtenberg_Crater/LRO_NAC_CratAbndHaz_32N292E_2mp.wms => LRO_LROC_Crater_Abundance_Hazard/Lichtenberg_Crater.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Mare_Crisium.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Crater_Abundance_Hazard_Mare_Crisium/LRO_NAC_CratAbndHaz_10N058E_150cmp.wms => LRO_LROC_Crater_Abundance_Hazard/Mare_Crisium.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Montes_Pyrenaeus.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Crater_Abundance_Hazard_Montes_Pyrenaeus/LRO_NAC_CratAbndHaz_16S041E_150cmp.wms => LRO_LROC_Crater_Abundance_Hazard/Montes_Pyrenaeus.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Orientale_1.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Crater_Abundance_Hazard_Orientale_1/LRO_NAC_CratAbndHaz_26S265E_200cmp.wms => LRO_LROC_Crater_Abundance_Hazard/Orientale_1.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Plato_Ejecta.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Crater_Abundance_Hazard_Plato_Ejecta/LRO_NAC_CratAbndHaz_53N354E_150cmp.wms => LRO_LROC_Crater_Abundance_Hazard/Plato_Ejecta.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/South_Pole-Aitken_Basin_Interior.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Crater_Abundance_Hazard_South_Pole-Aitken_Basin_Interior/LRO_NAC_CratAbndHaz_60S200E_150cmp.wms => LRO_LROC_Crater_Abundance_Hazard/South_Pole-Aitken_Basin_Interior.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Stratton_Dewar_High_Fe_Anomaly.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Crater_Abundance_Hazard_Stratton_(Dewar)_High_Fe_Anomaly/LRO_NAC_CratAbndHaz_02S167E_150cmp.wms => LRO_LROC_Crater_Abundance_Hazard/Stratton_Dewar_High_Fe_Anomaly.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Sulpicius_Gallus.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Crater_Abundance_Hazard_Sulpicius_Gallus/LRO_NAC_CratAbndHaz_20N010E_2mp.wms => LRO_LROC_Crater_Abundance_Hazard/Sulpicius_Gallus.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Tycho_Crater.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Crater_Abundance_Hazard_Tycho_Crater/LRO_NAC_CratAbndHaz_43S349E_150cmp.wms => LRO_LROC_Crater_Abundance_Hazard/Tycho_Crater.wms} (100%) delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Aitken_Crater/LRO_LROC_Crater_Abundance_Hazard_Aitken_Crater.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Aitken_Crater/LRO_NAC_CratAbndHaz_17S173E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Alphonsus_Crater/LRO_LROC_Crater_Abundance_Hazard_Alphonsus_Crater.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Alphonsus_Crater/LRO_NAC_CratAbndHaz_13S358E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Anaxagoras_Crater/LRO_LROC_Crater_Abundance_Hazard_Anaxagoras_Crater.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Anaxagoras_Crater/LRO_NAC_CratAbndHaz_73N350E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Apollo_15/LRO_LROC_Crater_Abundance_Hazard_Apollo_15.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Apollo_15/LRO_NAC_CratAbndHaz_26N004E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Apollo_16/LRO_LROC_Crater_Abundance_Hazard_Apollo_16.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Apollo_16/LRO_NAC_CratAbndHaz_09S015E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Apollo_Basin/LRO_LROC_Crater_Abundance_Hazard_Apollo_Basin.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Apollo_Basin/LRO_NAC_CratAbndHaz_37S206E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Aristarchus_1/LRO_LROC_Crater_Abundance_Hazard_Aristarchus_1.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Aristarchus_1/LRO_NAC_CratAbndHaz_25N311E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Aristarchus_2/LRO_LROC_Crater_Abundance_Hazard_Aristarchus_2.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Aristarchus_2/LRO_NAC_CratAbndHaz_28N307E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Balmer_Basin/LRO_LROC_Crater_Abundance_Hazard_Balmer_Basin.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Balmer_Basin/LRO_NAC_CratAbndHaz_19S070E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Bullialdus_Crater/LRO_LROC_Crater_Abundance_Hazard_Bullialdus_Crater.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Bullialdus_Crater/LRO_NAC_CratAbndHaz_20S337E_400cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Gruithuisen_Domes/LRO_LROC_Crater_Abundance_Hazard_Gruithuisen_Domes.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Gruithuisen_Domes/LRO_NAC_CratAbndHaz_36N320E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Hertzsprung/LRO_LROC_Crater_Abundance_Hazard_Hertzsprung.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Hertzsprung/LRO_NAC_CratAbndHaz_00N234E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Hortensius_Domes/LRO_LROC_Crater_Abundance_Hazard_Hortensius_Domes.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Hortensius_Domes/LRO_NAC_CratAbndHaz_08N332E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_King_Crater/LRO_LROC_Crater_Abundance_Hazard_King_Crater.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_King_Crater/LRO_NAC_CratAbndHaz_06N120E_200cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Lichtenberg_Crater/LRO_LROC_Crater_Abundance_Hazard_Lichtenberg_Crater.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Lichtenberg_Crater/LRO_NAC_CratAbndHaz_32N292E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Mare_Crisium/LRO_LROC_Crater_Abundance_Hazard_Mare_Crisium.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Mare_Crisium/LRO_NAC_CratAbndHaz_10N058E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Montes_Pyrenaeus/LRO_LROC_Crater_Abundance_Hazard_Montes_Pyrenaeus.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Montes_Pyrenaeus/LRO_NAC_CratAbndHaz_16S041E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Orientale_1/LRO_LROC_Crater_Abundance_Hazard_Orientale_1.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Orientale_1/LRO_NAC_CratAbndHaz_26S265E_200cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Plato_Ejecta/LRO_LROC_Crater_Abundance_Hazard_Plato_Ejecta.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Plato_Ejecta/LRO_NAC_CratAbndHaz_53N354E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_South_Pole-Aitken_Basin_Interior/LRO_LROC_Crater_Abundance_Hazard_South_Pole-Aitken_Basin_Interior.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_South_Pole-Aitken_Basin_Interior/LRO_NAC_CratAbndHaz_60S200E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Stratton_(Dewar)_High_Fe_Anomaly/LRO_LROC_Crater_Abundance_Hazard_Stratton_(Dewar)_High_Fe_Anomaly.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Stratton_(Dewar)_High_Fe_Anomaly/LRO_NAC_CratAbndHaz_02S167E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Sulpicius_Gallus/LRO_LROC_Crater_Abundance_Hazard_Sulpicius_Gallus.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Sulpicius_Gallus/LRO_NAC_CratAbndHaz_20N010E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Tycho_Crater/LRO_LROC_Crater_Abundance_Hazard_Tycho_Crater.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Tycho_Crater/LRO_NAC_CratAbndHaz_43S349E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hertzsprung/LRO_LROC_Crater_Abundance_Hertzsprung.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hertzsprung/LRO_NAC_CratAbnd_00N234E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hortensius_Domes/LRO_LROC_Crater_Abundance_Hortensius_Domes.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hortensius_Domes/LRO_NAC_CratAbnd_08N332E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_King_Crater/LRO_LROC_Crater_Abundance_King_Crater.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_King_Crater/LRO_NAC_CratAbnd_06N120E_200cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Lichtenberg_Crater/LRO_LROC_Crater_Abundance_Lichtenberg_Crater.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Lichtenberg_Crater/LRO_NAC_CratAbnd_32N292E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Mare_Crisium/LRO_LROC_Crater_Abundance_Mare_Crisium.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Mare_Crisium/LRO_NAC_CratAbnd_10N058E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Montes_Pyrenaeus/LRO_LROC_Crater_Abundance_Montes_Pyrenaeus.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Montes_Pyrenaeus/LRO_NAC_CratAbnd_16S041E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Orientale_1/LRO_LROC_Crater_Abundance_Orientale_1.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Orientale_1/LRO_NAC_CratAbnd_26S265E_200cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Plato_Ejecta/LRO_LROC_Crater_Abundance_Plato_Ejecta.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Plato_Ejecta/LRO_NAC_CratAbnd_53N354E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_South_Pole-Aitken_Basin_Interior/LRO_LROC_Crater_Abundance_South_Pole-Aitken_Basin_Interior.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_South_Pole-Aitken_Basin_Interior/LRO_NAC_CratAbnd_60S200E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Stratton_(Dewar)_High_Fe_Anomaly/LRO_LROC_Crater_Abundance_Stratton_(Dewar)_High_Fe_Anomaly.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Stratton_(Dewar)_High_Fe_Anomaly/LRO_NAC_CratAbnd_02S167E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Sulpicius_Gallus/LRO_LROC_Crater_Abundance_Sulpicius_Gallus.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Sulpicius_Gallus/LRO_NAC_CratAbnd_20N010E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Tycho_Crater/LRO_LROC_Crater_Abundance_Tycho_Crater.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Tycho_Crater/LRO_NAC_CratAbnd_43S349E_150cmp.vrt create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density.asset create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Aitken_Crater.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Crater_Density_Aitken_Crater/LRO_NAC_CratDen_17S173E_150cmp.wms => LRO_LROC_Crater_Density/Aitken_Crater.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Alphonsus_Crater.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Crater_Density_Alphonsus_Crater/LRO_NAC_CratDen_13S358E_2mp.wms => LRO_LROC_Crater_Density/Alphonsus_Crater.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Anaxagoras_Crater.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Crater_Density_Anaxagoras_Crater/LRO_NAC_CratDen_73N350E_150cmp.wms => LRO_LROC_Crater_Density/Anaxagoras_Crater.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Apollo_15.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Crater_Density_Apollo_15/LRO_NAC_CratDen_26N004E_150cmp.wms => LRO_LROC_Crater_Density/Apollo_15.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Apollo_16.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Crater_Density_Apollo_16/LRO_NAC_CratDen_09S015E_150cmp.wms => LRO_LROC_Crater_Density/Apollo_16.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Apollo_Basin.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Crater_Density_Apollo_Basin/LRO_NAC_CratDen_37S206E_150cmp.wms => LRO_LROC_Crater_Density/Apollo_Basin.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Aristarchus_1.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Crater_Density_Aristarchus_1/LRO_NAC_CratDen_25N311E_2mp.wms => LRO_LROC_Crater_Density/Aristarchus_1.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Aristarchus_2.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Crater_Density_Aristarchus_2/LRO_NAC_CratDen_28N307E_150cmp.wms => LRO_LROC_Crater_Density/Aristarchus_2.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Balmer_Basin.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Crater_Density_Balmer_Basin/LRO_NAC_CratDen_19S070E_150cmp.wms => LRO_LROC_Crater_Density/Balmer_Basin.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Bullialdus_Crater.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Crater_Density_Bullialdus_Crater/LRO_NAC_CratDen_20S337E_400cmp.wms => LRO_LROC_Crater_Density/Bullialdus_Crater.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Gruithuisen_Domes.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Crater_Density_Gruithuisen_Domes/LRO_NAC_CratDen_36N320E_2mp.wms => LRO_LROC_Crater_Density/Gruithuisen_Domes.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Hertzsprung.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Crater_Density_Hertzsprung/LRO_NAC_CratDen_00N234E_150cmp.wms => LRO_LROC_Crater_Density/Hertzsprung.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Hortensius_Domes.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Crater_Density_Hortensius_Domes/LRO_NAC_CratDen_08N332E_2mp.wms => LRO_LROC_Crater_Density/Hortensius_Domes.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/King_Crater.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Crater_Density_King_Crater/LRO_NAC_CratDen_06N120E_200cmp.wms => LRO_LROC_Crater_Density/King_Crater.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Lichtenberg_Crater.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Crater_Density_Lichtenberg_Crater/LRO_NAC_CratDen_32N292E_2mp.wms => LRO_LROC_Crater_Density/Lichtenberg_Crater.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Mare_Crisium.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Crater_Density_Mare_Crisium/LRO_NAC_CratDen_10N058E_150cmp.wms => LRO_LROC_Crater_Density/Mare_Crisium.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Montes_Pyrenaeus.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Crater_Density_Montes_Pyrenaeus/LRO_NAC_CratDen_16S041E_150cmp.wms => LRO_LROC_Crater_Density/Montes_Pyrenaeus.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Orientale_1.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Crater_Density_Orientale_1/LRO_NAC_CratDen_26S265E_200cmp.wms => LRO_LROC_Crater_Density/Orientale_1.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Plato_Ejecta.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Crater_Density_Plato_Ejecta/LRO_NAC_CratDen_53N354E_150cmp.wms => LRO_LROC_Crater_Density/Plato_Ejecta.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/South_Pole-Aitken_Basin_Interior.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Crater_Density_South_Pole-Aitken_Basin_Interior/LRO_NAC_CratDen_60S200E_150cmp.wms => LRO_LROC_Crater_Density/South_Pole-Aitken_Basin_Interior.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Stratton_Dewar_High_Fe_Anomaly.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Crater_Density_Stratton_(Dewar)_High_Fe_Anomaly/LRO_NAC_CratDen_02S167E_150cmp.wms => LRO_LROC_Crater_Density/Stratton_Dewar_High_Fe_Anomaly.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Sulpicius_Gallus.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Crater_Density_Sulpicius_Gallus/LRO_NAC_CratDen_20N010E_2mp.wms => LRO_LROC_Crater_Density/Sulpicius_Gallus.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Tycho_Crater.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Crater_Density_Tycho_Crater/LRO_NAC_CratDen_43S349E_150cmp.wms => LRO_LROC_Crater_Density/Tycho_Crater.wms} (100%) delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Aitken_Crater/LRO_LROC_Crater_Density_Aitken_Crater.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Aitken_Crater/LRO_NAC_CratDen_17S173E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Alphonsus_Crater/LRO_LROC_Crater_Density_Alphonsus_Crater.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Alphonsus_Crater/LRO_NAC_CratDen_13S358E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Anaxagoras_Crater/LRO_LROC_Crater_Density_Anaxagoras_Crater.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Anaxagoras_Crater/LRO_NAC_CratDen_73N350E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Apollo_15/LRO_LROC_Crater_Density_Apollo_15.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Apollo_15/LRO_NAC_CratDen_26N004E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Apollo_16/LRO_LROC_Crater_Density_Apollo_16.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Apollo_16/LRO_NAC_CratDen_09S015E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Apollo_Basin/LRO_LROC_Crater_Density_Apollo_Basin.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Apollo_Basin/LRO_NAC_CratDen_37S206E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Aristarchus_1/LRO_LROC_Crater_Density_Aristarchus_1.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Aristarchus_1/LRO_NAC_CratDen_25N311E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Aristarchus_2/LRO_LROC_Crater_Density_Aristarchus_2.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Aristarchus_2/LRO_NAC_CratDen_28N307E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Balmer_Basin/LRO_LROC_Crater_Density_Balmer_Basin.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Balmer_Basin/LRO_NAC_CratDen_19S070E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Bullialdus_Crater/LRO_LROC_Crater_Density_Bullialdus_Crater.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Bullialdus_Crater/LRO_NAC_CratDen_20S337E_400cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Gruithuisen_Domes/LRO_LROC_Crater_Density_Gruithuisen_Domes.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Gruithuisen_Domes/LRO_NAC_CratDen_36N320E_2mp.vrt create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard.asset create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Aitken_Crater.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Crater_Density_Hazard_Aitken_Crater/LRO_NAC_CratDenHaz_17S173E_150cmp.wms => LRO_LROC_Crater_Density_Hazard/Aitken_Crater.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Alphonsus_Crater.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Crater_Density_Hazard_Alphonsus_Crater/LRO_NAC_CratDenHaz_13S358E_2mp.wms => LRO_LROC_Crater_Density_Hazard/Alphonsus_Crater.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Anaxagoras_Crater.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Crater_Density_Hazard_Anaxagoras_Crater/LRO_NAC_CratDenHaz_73N350E_150cmp.wms => LRO_LROC_Crater_Density_Hazard/Anaxagoras_Crater.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Apollo_15.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Crater_Density_Hazard_Apollo_15/LRO_NAC_CratDenHaz_26N004E_150cmp.wms => LRO_LROC_Crater_Density_Hazard/Apollo_15.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Apollo_16.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Crater_Density_Hazard_Apollo_16/LRO_NAC_CratDenHaz_09S015E_150cmp.wms => LRO_LROC_Crater_Density_Hazard/Apollo_16.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Apollo_Basin.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Crater_Density_Hazard_Apollo_Basin/LRO_NAC_CratDenHaz_37S206E_150cmp.wms => LRO_LROC_Crater_Density_Hazard/Apollo_Basin.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Aristarchus_1.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Crater_Density_Hazard_Aristarchus_1/LRO_NAC_CratDenHaz_25N311E_2mp.wms => LRO_LROC_Crater_Density_Hazard/Aristarchus_1.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Aristarchus_2.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Crater_Density_Hazard_Aristarchus_2/LRO_NAC_CratDenHaz_28N307E_150cmp.wms => LRO_LROC_Crater_Density_Hazard/Aristarchus_2.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Balmer_Basin.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Crater_Density_Hazard_Balmer_Basin/LRO_NAC_CratDenHaz_19S070E_150cmp.wms => LRO_LROC_Crater_Density_Hazard/Balmer_Basin.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Bullialdus_Crater.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Crater_Density_Hazard_Bullialdus_Crater/LRO_NAC_CratDenHaz_20S337E_400cmp.wms => LRO_LROC_Crater_Density_Hazard/Bullialdus_Crater.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Gruithuisen_Domes.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Crater_Density_Hazard_Gruithuisen_Domes/LRO_NAC_CratDenHaz_36N320E_2mp.wms => LRO_LROC_Crater_Density_Hazard/Gruithuisen_Domes.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Hertzsprung.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Crater_Density_Hazard_Hertzsprung/LRO_NAC_CratDenHaz_00N234E_150cmp.wms => LRO_LROC_Crater_Density_Hazard/Hertzsprung.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Hortensius_Domes.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Crater_Density_Hazard_Hortensius_Domes/LRO_NAC_CratDenHaz_08N332E_2mp.wms => LRO_LROC_Crater_Density_Hazard/Hortensius_Domes.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/King_Crater.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Crater_Density_Hazard_King_Crater/LRO_NAC_CratDenHaz_06N120E_200cmp.wms => LRO_LROC_Crater_Density_Hazard/King_Crater.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Lichtenberg_Crater.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Crater_Density_Hazard_Lichtenberg_Crater/LRO_NAC_CratDenHaz_32N292E_2mp.wms => LRO_LROC_Crater_Density_Hazard/Lichtenberg_Crater.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Mare_Crisium.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Crater_Density_Hazard_Mare_Crisium/LRO_NAC_CratDenHaz_10N058E_150cmp.wms => LRO_LROC_Crater_Density_Hazard/Mare_Crisium.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Montes_Pyrenaeus.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Crater_Density_Hazard_Montes_Pyrenaeus/LRO_NAC_CratDenHaz_16S041E_150cmp.wms => LRO_LROC_Crater_Density_Hazard/Montes_Pyrenaeus.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Orientale_1.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Crater_Density_Hazard_Orientale_1/LRO_NAC_CratDenHaz_26S265E_200cmp.wms => LRO_LROC_Crater_Density_Hazard/Orientale_1.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Plato_Ejecta.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Crater_Density_Hazard_Plato_Ejecta/LRO_NAC_CratDenHaz_53N354E_150cmp.wms => LRO_LROC_Crater_Density_Hazard/Plato_Ejecta.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/South_Pole-Aitken_Basin_Interior.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Crater_Density_Hazard_South_Pole-Aitken_Basin_Interior/LRO_NAC_CratDenHaz_60S200E_150cmp.wms => LRO_LROC_Crater_Density_Hazard/South_Pole-Aitken_Basin_Interior.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Stratton_Dewar_High_Fe_Anomaly.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Crater_Density_Hazard_Stratton_(Dewar)_High_Fe_Anomaly/LRO_NAC_CratDenHaz_02S167E_150cmp.wms => LRO_LROC_Crater_Density_Hazard/Stratton_Dewar_High_Fe_Anomaly.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Sulpicius_Gallus.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Crater_Density_Hazard_Sulpicius_Gallus/LRO_NAC_CratDenHaz_20N010E_2mp.wms => LRO_LROC_Crater_Density_Hazard/Sulpicius_Gallus.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Tycho_Crater.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Crater_Density_Hazard_Tycho_Crater/LRO_NAC_CratDenHaz_43S349E_150cmp.wms => LRO_LROC_Crater_Density_Hazard/Tycho_Crater.wms} (100%) delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Aitken_Crater/LRO_LROC_Crater_Density_Hazard_Aitken_Crater.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Aitken_Crater/LRO_NAC_CratDenHaz_17S173E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Alphonsus_Crater/LRO_LROC_Crater_Density_Hazard_Alphonsus_Crater.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Alphonsus_Crater/LRO_NAC_CratDenHaz_13S358E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Anaxagoras_Crater/LRO_LROC_Crater_Density_Hazard_Anaxagoras_Crater.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Anaxagoras_Crater/LRO_NAC_CratDenHaz_73N350E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Apollo_15/LRO_LROC_Crater_Density_Hazard_Apollo_15.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Apollo_15/LRO_NAC_CratDenHaz_26N004E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Apollo_16/LRO_LROC_Crater_Density_Hazard_Apollo_16.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Apollo_16/LRO_NAC_CratDenHaz_09S015E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Apollo_Basin/LRO_LROC_Crater_Density_Hazard_Apollo_Basin.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Apollo_Basin/LRO_NAC_CratDenHaz_37S206E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Aristarchus_1/LRO_LROC_Crater_Density_Hazard_Aristarchus_1.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Aristarchus_1/LRO_NAC_CratDenHaz_25N311E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Aristarchus_2/LRO_LROC_Crater_Density_Hazard_Aristarchus_2.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Aristarchus_2/LRO_NAC_CratDenHaz_28N307E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Balmer_Basin/LRO_LROC_Crater_Density_Hazard_Balmer_Basin.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Balmer_Basin/LRO_NAC_CratDenHaz_19S070E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Bullialdus_Crater/LRO_LROC_Crater_Density_Hazard_Bullialdus_Crater.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Bullialdus_Crater/LRO_NAC_CratDenHaz_20S337E_400cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Gruithuisen_Domes/LRO_LROC_Crater_Density_Hazard_Gruithuisen_Domes.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Gruithuisen_Domes/LRO_NAC_CratDenHaz_36N320E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Hertzsprung/LRO_LROC_Crater_Density_Hazard_Hertzsprung.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Hertzsprung/LRO_NAC_CratDenHaz_00N234E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Hortensius_Domes/LRO_LROC_Crater_Density_Hazard_Hortensius_Domes.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Hortensius_Domes/LRO_NAC_CratDenHaz_08N332E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_King_Crater/LRO_LROC_Crater_Density_Hazard_King_Crater.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_King_Crater/LRO_NAC_CratDenHaz_06N120E_200cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Lichtenberg_Crater/LRO_LROC_Crater_Density_Hazard_Lichtenberg_Crater.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Lichtenberg_Crater/LRO_NAC_CratDenHaz_32N292E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Mare_Crisium/LRO_LROC_Crater_Density_Hazard_Mare_Crisium.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Mare_Crisium/LRO_NAC_CratDenHaz_10N058E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Montes_Pyrenaeus/LRO_LROC_Crater_Density_Hazard_Montes_Pyrenaeus.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Montes_Pyrenaeus/LRO_NAC_CratDenHaz_16S041E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Orientale_1/LRO_LROC_Crater_Density_Hazard_Orientale_1.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Orientale_1/LRO_NAC_CratDenHaz_26S265E_200cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Plato_Ejecta/LRO_LROC_Crater_Density_Hazard_Plato_Ejecta.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Plato_Ejecta/LRO_NAC_CratDenHaz_53N354E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_South_Pole-Aitken_Basin_Interior/LRO_LROC_Crater_Density_Hazard_South_Pole-Aitken_Basin_Interior.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_South_Pole-Aitken_Basin_Interior/LRO_NAC_CratDenHaz_60S200E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Stratton_(Dewar)_High_Fe_Anomaly/LRO_LROC_Crater_Density_Hazard_Stratton_(Dewar)_High_Fe_Anomaly.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Stratton_(Dewar)_High_Fe_Anomaly/LRO_NAC_CratDenHaz_02S167E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Sulpicius_Gallus/LRO_LROC_Crater_Density_Hazard_Sulpicius_Gallus.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Sulpicius_Gallus/LRO_NAC_CratDenHaz_20N010E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Tycho_Crater/LRO_LROC_Crater_Density_Hazard_Tycho_Crater.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Tycho_Crater/LRO_NAC_CratDenHaz_43S349E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hertzsprung/LRO_LROC_Crater_Density_Hertzsprung.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hertzsprung/LRO_NAC_CratDen_00N234E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hortensius_Domes/LRO_LROC_Crater_Density_Hortensius_Domes.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hortensius_Domes/LRO_NAC_CratDen_08N332E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_King_Crater/LRO_LROC_Crater_Density_King_Crater.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_King_Crater/LRO_NAC_CratDen_06N120E_200cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Lichtenberg_Crater/LRO_LROC_Crater_Density_Lichtenberg_Crater.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Lichtenberg_Crater/LRO_NAC_CratDen_32N292E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Mare_Crisium/LRO_LROC_Crater_Density_Mare_Crisium.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Mare_Crisium/LRO_NAC_CratDen_10N058E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Montes_Pyrenaeus/LRO_LROC_Crater_Density_Montes_Pyrenaeus.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Montes_Pyrenaeus/LRO_NAC_CratDen_16S041E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Orientale_1/LRO_LROC_Crater_Density_Orientale_1.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Orientale_1/LRO_NAC_CratDen_26S265E_200cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Plato_Ejecta/LRO_LROC_Crater_Density_Plato_Ejecta.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Plato_Ejecta/LRO_NAC_CratDen_53N354E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_South_Pole-Aitken_Basin_Interior/LRO_LROC_Crater_Density_South_Pole-Aitken_Basin_Interior.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_South_Pole-Aitken_Basin_Interior/LRO_NAC_CratDen_60S200E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Stratton_(Dewar)_High_Fe_Anomaly/LRO_LROC_Crater_Density_Stratton_(Dewar)_High_Fe_Anomaly.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Stratton_(Dewar)_High_Fe_Anomaly/LRO_NAC_CratDen_02S167E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Sulpicius_Gallus/LRO_LROC_Crater_Density_Sulpicius_Gallus.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Sulpicius_Gallus/LRO_NAC_CratDen_20N010E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Tycho_Crater/LRO_LROC_Crater_Density_Tycho_Crater.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Tycho_Crater/LRO_NAC_CratDen_43S349E_150cmp.vrt create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM.asset create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Aitken_Crater.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_DEM_Aitken_Crater_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_17S173E_150cmp.wms => LRO_LROC_DEM/Aitken_Crater.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Alphonsus.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_DEM_Alphonsus_ColorHillshade/LRO_NAC_ClrShade_13S358E_200cmp.wms => LRO_LROC_DEM/Alphonsus.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Alphonsus_Crater.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_DEM_Alphonsus_Crater_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_13S358E_2mp.wms => LRO_LROC_DEM/Alphonsus_Crater.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Anaxagoras_Crater.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_DEM_Anaxagoras_Crater_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_73N350E_150cmp.wms => LRO_LROC_DEM/Anaxagoras_Crater.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Apollo_15.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_DEM_Apollo_15_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_26N004E_150cmp.wms => LRO_LROC_DEM/Apollo_15.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Apollo_16.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_DEM_Apollo_16_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_09S015E_150cmp.wms => LRO_LROC_DEM/Apollo_16.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Apollo_Basin.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_DEM_Apollo_Basin_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_37S206E_150cmp.wms => LRO_LROC_DEM/Apollo_Basin.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Aristarchus_1.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_DEM_Aristarchus_1_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_25N311E_2mp.wms => LRO_LROC_DEM/Aristarchus_1.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Aristarchus_2.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_DEM_Aristarchus_2_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_28N307E_150cmp.wms => LRO_LROC_DEM/Aristarchus_2.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Balmer_Basin.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_DEM_Balmer_Basin_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_19S070E_150cmp.wms => LRO_LROC_DEM/Balmer_Basin.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Bullialdus_Crater.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_DEM_Bullialdus_Crater_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_20S337E_400cmp.wms => LRO_LROC_DEM/Bullialdus_Crater.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Compton_Belkovich_Th_Anomaly.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_DEM_Compton_Belkovich_Th_Anomaly_ColorHillshade/LRO_NAC_ClrShade_61N099E_150cmp.wms => LRO_LROC_DEM/Compton_Belkovich_Th_Anomaly.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Dante_Crater.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_DEM_Dante_Crater_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_26N178E_150cmp.wms => LRO_LROC_DEM/Dante_Crater.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Flamsteed_Crater.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_DEM_Flamsteed_Crater_ColorHillshade/LRO_NAC_ClrShade_02S317E_150cmp.wms => LRO_LROC_DEM/Flamsteed_Crater.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Fresh_Crater_East_of_Lents.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_DEM_Fresh_Crater_East_of_Lents_ColorHillshade/LRO_NAC_ClrShade_03N280E_2m.wms => LRO_LROC_DEM/Fresh_Crater_East_of_Lents.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Gruithuisen_Domes.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_DEM_Gruithuisen_Domes_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_36N320E_2mp.wms => LRO_LROC_DEM/Gruithuisen_Domes.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Hertzsprung.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_DEM_Hertzsprung_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_00N234E_150cmp.wms => LRO_LROC_DEM/Hertzsprung.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Hortensius_Domes.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_DEM_Hortensius_Domes_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_08N332E_2mp.wms => LRO_LROC_DEM/Hortensius_Domes.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Humboldtianum_Basin.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_DEM_Humboldtianum_Basin_ColorHillshade/LRO_NAC_ClrShade_55N077E_200cmp.wms => LRO_LROC_DEM/Humboldtianum_Basin.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Ina_D-Caldera.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_DEM_Ina_(D-Caldera)_ColorHillshade/LRO_NAC_ClrShade_19N005E_2mp.wms => LRO_LROC_DEM/Ina_D-Caldera.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/King_Crater.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_DEM_King_Crater_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_06N120E_200cmp.wms => LRO_LROC_DEM/King_Crater.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Lichtenberg_Crater.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_DEM_Lichtenberg_Crater_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_32N292E_2mp.wms => LRO_LROC_DEM/Lichtenberg_Crater.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Mare_Crisium.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_DEM_Mare_Crisium_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_10N58E_150cmp.wms => LRO_LROC_DEM/Mare_Crisium.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Mare_Ingenii.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_DEM_Mare_Ingenii_ColorHillshade/LRO_NAC_ClrShade_36S164E_2mp.wms => LRO_LROC_DEM/Mare_Ingenii.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Mare_Moscoviense.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_DEM_Mare_Moscoviense_ColorHillshade/LRO_NAC_ClrShade_26N150E_200cmp.wms => LRO_LROC_DEM/Mare_Moscoviense.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Mare_Smythii.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_DEM_Mare_Smythii_ColorHillshade/LRO_NAC_ClrShade_02N085E_150cmp.wms => LRO_LROC_DEM/Mare_Smythii.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Mare_Tranquillitatis.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_DEM_Mare_Tranquillitatis_ColorHillshade/LRO_NAC_ClrShade_07N022E_150cmp.wms => LRO_LROC_DEM/Mare_Tranquillitatis.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Marius_Hills.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_DEM_Marius_Hills_ColorHillshade/LRO_NAC_ClrShade_14N304E_2mp.wms => LRO_LROC_DEM/Marius_Hills.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Montes_Pyrenaeus.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_DEM_Montes_Pyrenaeus_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_16S041E_150cmp.wms => LRO_LROC_DEM/Montes_Pyrenaeus.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Murchison_Crater.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_DEM_Murchison_Crater_ColorHillshade/LRO_NAC_ClrShade_05N000E_150cmp.wms => LRO_LROC_DEM/Murchison_Crater.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Orientale_1.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_DEM_Orientale_1_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_26S265E_200cmp.wms => LRO_LROC_DEM/Orientale_1.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Plato_Ejecta.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_DEM_Plato_Ejecta_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_53N354E_150cmp.wms => LRO_LROC_DEM/Plato_Ejecta.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Reiner_Gamma.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_DEM_Reiner_Gamma_ColorHillshade/LRO_NAC_ClrShade_07N301E_2mp.wms => LRO_LROC_DEM/Reiner_Gamma.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Riccioli_Crater.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_DEM_Riccioli_Crater_ColorHillshade/LRO_NAC_ClrShade_03S286E_150cmp.wms => LRO_LROC_DEM/Riccioli_Crater.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Rima_Bode.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_DEM_Rima_Bode_ColorHillshade/LRO_NAC_ClrShade_13N356E_150cmp.wms => LRO_LROC_DEM/Rima_Bode.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Rimae_Prinz.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_DEM_Rimae_Prinz_ColorHillshade/LRO_NAC_ClrShade_27N318E_150cmp.wms => LRO_LROC_DEM/Rimae_Prinz.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/South_Pole-Aitken_Basin_Interior.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_60S200E_150cmp.wms => LRO_LROC_DEM/South_Pole-Aitken_Basin_Interior.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/South_Pole-Aitken_Rim.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_DEM_South_Pole-Aitken_Rim_ColorHillshade/LRO_NAC_ClrShade_51S171E_2mp.wms => LRO_LROC_DEM/South_Pole-Aitken_Rim.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Stratton_Dewar.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_DEM_Stratton_(Dewar)_ColorHillshade/LRO_NAC_ClrShade_02S167E_150cmp.wms => LRO_LROC_DEM/Stratton_Dewar.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Stratton_Dewar_High_Fe_Anomaly.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_02S167E_150cmp.wms => LRO_LROC_DEM/Stratton_Dewar_High_Fe_Anomaly.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Sulpicius_Gallus.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_DEM_Sulpicius_Gallus_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_20N010E_2mp.wms => LRO_LROC_DEM/Sulpicius_Gallus.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Tsiolkovskiy_Crater.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_DEM_Tsiolkovskiy_Crater_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_19S129E_150cmp.wms => LRO_LROC_DEM/Tsiolkovskiy_Crater.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Tycho_Crater.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_DEM_Tycho_Crater_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_43S349E_150cmp.wms => LRO_LROC_DEM/Tycho_Crater.wms} (100%) delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_15m_Color_Roughness/LRO_LROC_DEM_Aitken_Crater_15m_Color_Roughness.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_17S173E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Aitken_Crater_15m_Color_Roughness_Hazard.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_17S173E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_17S173E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_15m_Color_Slope/LRO_LROC_DEM_Aitken_Crater_15m_Color_Slope.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_15m_Color_Slope/LRO_NAC_ClrSlope_15m_17S173E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_15m_Color_Slope/LRO_NAC_ClrSlope_15m_17S173E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_15m_Color_Slope_Hazard/LRO_LROC_DEM_Aitken_Crater_15m_Color_Slope_Hazard.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_17S173E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_17S173E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_3m_Color_Roughness/LRO_LROC_DEM_Aitken_Crater_3m_Color_Roughness.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_17S173E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_17S173E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_3m_Color_Roughness_Hazard/LRO_LROC_DEM_Aitken_Crater_3m_Color_Roughness_Hazard.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_17S173E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_17S173E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_3m_Color_Slope/LRO_LROC_DEM_Aitken_Crater_3m_Color_Slope.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_3m_Color_Slope/LRO_NAC_ClrSlope_3m_17S173E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_3m_Color_Slope/LRO_NAC_ClrSlope_3m_17S173E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_3m_Color_Slope_Hazard/LRO_LROC_DEM_Aitken_Crater_3m_Color_Slope_Hazard.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_17S173E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_17S173E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_ColorHillshade/LRO_LROC_DEM_Aitken_Crater_ColorHillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_ColorHillshade/LRO_NAC_ClrShade_17S173E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_ColorHillshade/LRO_NAC_ClrShade_17S173E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_Colorized_Confidence/LRO_LROC_DEM_Aitken_Crater_Colorized_Confidence.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_Colorized_Confidence/LRO_NAC_ClrConf_17S173E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_Colorized_Confidence/LRO_NAC_ClrConf_17S173E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_Colorized_Slope/LRO_LROC_DEM_Aitken_Crater_Colorized_Slope.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_Colorized_Slope/LRO_NAC_Slope_17S173E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_Colorized_Slope/LRO_NAC_Slope_17S173E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_Grayscale/LRO_LROC_DEM_Aitken_Crater_Grayscale.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_Grayscale/LRO_NAC_Gray_17S173E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_Grayscale/LRO_NAC_Gray_17S173E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_Hillshade/LRO_LROC_DEM_Aitken_Crater_Hillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_Hillshade/LRO_NAC_Shade_17S173E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_Hillshade/LRO_NAC_Shade_17S173E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_ColorHillshade/LRO_LROC_DEM_Alphonsus_ColorHillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_ColorHillshade/LRO_NAC_ClrShade_13S358E_200cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Colorized_Confidence/LRO_LROC_DEM_Alphonsus_Colorized_Confidence.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Colorized_Confidence/LRO_NAC_ClrConf_13S358E_200cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Colorized_Confidence/LRO_NAC_ClrConf_13S358E_200cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Colorized_Slope/LRO_LROC_DEM_Alphonsus_Colorized_Slope.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Colorized_Slope/LRO_NAC_Slope_13S358E_200cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Colorized_Slope/LRO_NAC_Slope_13S358E_200cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Crater_15m_Color_Roughness/LRO_LROC_DEM_Alphonsus_Crater_15m_Color_Roughness.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Crater_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_13S358E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Crater_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Alphonsus_Crater_15m_Color_Roughness_Hazard.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Crater_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_13S358E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Crater_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_13S358E_2mp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Crater_15m_Color_Slope/LRO_LROC_DEM_Alphonsus_Crater_15m_Color_Slope.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Crater_15m_Color_Slope/LRO_NAC_ClrSlope_15m_13S358E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Crater_15m_Color_Slope/LRO_NAC_ClrSlope_15m_13S358E_2mp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Crater_15m_Color_Slope_Hazard/LRO_LROC_DEM_Alphonsus_Crater_15m_Color_Slope_Hazard.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Crater_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_13S358E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Crater_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_13S358E_2mp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Crater_4m_Color_Roughness/LRO_LROC_DEM_Alphonsus_Crater_4m_Color_Roughness.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Crater_4m_Color_Roughness/LRO_NAC_ClrRoughness_4m_13S258E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Crater_4m_Color_Roughness/LRO_NAC_ClrRoughness_4m_13S258E_2mp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Crater_4m_Color_Roughness_Hazard/LRO_LROC_DEM_Alphonsus_Crater_4m_Color_Roughness_Hazard.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Crater_4m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_4m_13S258E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Crater_4m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_4m_13S258E_2mp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Crater_4m_Color_Slope/LRO_LROC_DEM_Alphonsus_Crater_4m_Color_Slope.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Crater_4m_Color_Slope/LRO_NAC_ClrSlope_4m_13S358E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Crater_4m_Color_Slope/LRO_NAC_ClrSlope_4m_13S358E_2mp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Crater_4m_Color_Slope_Hazard/LRO_LROC_DEM_Alphonsus_Crater_4m_Color_Slope_Hazard.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Crater_4m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_4m_13S358E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Crater_4m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_4m_13S358E_2mp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Grayscale/LRO_LROC_DEM_Alphonsus_Grayscale.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Grayscale/LRO_NAC_Gray_13S358E_200cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Grayscale/LRO_NAC_Gray_13S358E_200cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Hillshade/LRO_LROC_DEM_Alphonsus_Hillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Hillshade/LRO_NAC_Shade_13S358E_200cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Hillshade/LRO_NAC_Shade_13S358E_200cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_15m_Color_Roughness/LRO_LROC_DEM_Anaxagoras_Crater_15m_Color_Roughness.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_73N350E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Anaxagoras_Crater_15m_Color_Roughness_Hazard.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_73N350E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_73N350E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_15m_Color_Slope/LRO_LROC_DEM_Anaxagoras_Crater_15m_Color_Slope.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_15m_Color_Slope/LRO_NAC_ClrSlope_15m_73N350E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_15m_Color_Slope/LRO_NAC_ClrSlope_15m_73N350E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_15m_Color_Slope_Hazard/LRO_LROC_DEM_Anaxagoras_Crater_15m_Color_Slope_Hazard.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_73N350E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_73N350E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_3m_Color_Roughness/LRO_LROC_DEM_Anaxagoras_Crater_3m_Color_Roughness.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_73N350E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_73N350E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_3m_Color_Roughness_Hazard/LRO_LROC_DEM_Anaxagoras_Crater_3m_Color_Roughness_Hazard.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_73N350E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_73N350E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_3m_Color_Slope/LRO_LROC_DEM_Anaxagoras_Crater_3m_Color_Slope.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_3m_Color_Slope/LRO_NAC_ClrSlope_3m_73N350E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_3m_Color_Slope/LRO_NAC_ClrSlope_3m_73N350E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_3m_Color_Slope_Hazard/LRO_LROC_DEM_Anaxagoras_Crater_3m_Color_Slope_Hazard.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_73N350E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_73N350E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_ColorHillshade/LRO_LROC_DEM_Anaxagoras_Crater_ColorHillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_ColorHillshade/LRO_NAC_ClrShade_73N350E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_ColorHillshade/LRO_NAC_ClrShade_73N350E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_Colorized_Confidence/LRO_LROC_DEM_Anaxagoras_Crater_Colorized_Confidence.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_Colorized_Confidence/LRO_NAC_ClrConf_73N350E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_Colorized_Confidence/LRO_NAC_ClrConf_73N350E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_Colorized_Slope/LRO_LROC_DEM_Anaxagoras_Crater_Colorized_Slope.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_Colorized_Slope/LRO_NAC_Slope_73N350E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_Colorized_Slope/LRO_NAC_Slope_73N350E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_Grayscale/LRO_LROC_DEM_Anaxagoras_Crater_Grayscale.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_Grayscale/LRO_NAC_Gray_73N350E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_Grayscale/LRO_NAC_Gray_73N350E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_Hillshade/LRO_LROC_DEM_Anaxagoras_Crater_Hillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_Hillshade/LRO_NAC_Shade_73N350E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_Hillshade/LRO_NAC_Shade_73N350E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_15m_Color_Roughness/LRO_LROC_DEM_Apollo_15_15m_Color_Roughness.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_26N004E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Apollo_15_15m_Color_Roughness_Hazard.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_26N004E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_26N004E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_15m_Color_Slope/LRO_LROC_DEM_Apollo_15_15m_Color_Slope.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_15m_Color_Slope/LRO_NAC_ClrSlope_15m_26N004E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_15m_Color_Slope/LRO_NAC_ClrSlope_15m_26N004E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_15m_Color_Slope_Hazard/LRO_LROC_DEM_Apollo_15_15m_Color_Slope_Hazard.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_26N004E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_26N004E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_3m_Color_Roughness/LRO_LROC_DEM_Apollo_15_3m_Color_Roughness.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_26N004E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_26N004E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_3m_Color_Roughness_Hazard/LRO_LROC_DEM_Apollo_15_3m_Color_Roughness_Hazard.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_26N004E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_26N004E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_3m_Color_Slope/LRO_LROC_DEM_Apollo_15_3m_Color_Slope.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_3m_Color_Slope/LRO_NAC_ClrSlope_3m_26N004E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_3m_Color_Slope/LRO_NAC_ClrSlope_3m_26N004E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_3m_Color_Slope_Hazard/LRO_LROC_DEM_Apollo_15_3m_Color_Slope_Hazard.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_26N004E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_26N004E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_ColorHillshade/LRO_LROC_DEM_Apollo_15_ColorHillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_ColorHillshade/LRO_NAC_ClrShade_26N004E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_ColorHillshade/LRO_NAC_ClrShade_26N004E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_ColorHillshade_Slope/LRO_LROC_DEM_Apollo_15_ColorHillshade_Slope.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_ColorHillshade_Slope/LRO_NAC_Slope_26N004E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_ColorHillshade_Slope/LRO_NAC_Slope_26N004E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_Colorized_Confidence/LRO_LROC_DEM_Apollo_15_Colorized_Confidence.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_Colorized_Confidence/LRO_NAC_ClrConf_26N004E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_Colorized_Confidence/LRO_NAC_ClrConf_26N004E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_Grayscale/LRO_LROC_DEM_Apollo_15_Grayscale.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_Grayscale/LRO_NAC_Gray_26N004E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_Grayscale/LRO_NAC_Gray_26N004E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_Hillshade/LRO_LROC_DEM_Apollo_15_Hillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_Hillshade/LRO_NAC_Shade_26N004E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_Hillshade/LRO_NAC_Shade_26N004E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_15m_Color_Roughness/LRO_LROC_DEM_Apollo_16_15m_Color_Roughness.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_09S015E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Apollo_16_15m_Color_Roughness_Hazard.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_09S015E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_09S015E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_15m_Color_Slope/LRO_LROC_DEM_Apollo_16_15m_Color_Slope.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_15m_Color_Slope/LRO_NAC_ClrSlope_15m_09S015E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_15m_Color_Slope/LRO_NAC_ClrSlope_15m_09S015E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_15m_Color_Slope_Hazard/LRO_LROC_DEM_Apollo_16_15m_Color_Slope_Hazard.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_09S015E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_09S015E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_3m_Color_Roughness/LRO_LROC_DEM_Apollo_16_3m_Color_Roughness.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_09S015E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_09S015E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_3m_Color_Roughness_Hazard/LRO_LROC_DEM_Apollo_16_3m_Color_Roughness_Hazard.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_09S015E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_09S015E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_3m_Color_Slope/LRO_LROC_DEM_Apollo_16_3m_Color_Slope.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_3m_Color_Slope/LRO_NAC_ClrSlope_3m_09S015E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_3m_Color_Slope/LRO_NAC_ClrSlope_3m_09S015E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_3m_Color_Slope_Hazard/LRO_LROC_DEM_Apollo_16_3m_Color_Slope_Hazard.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_09S015E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_09S015E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_ColorHillshade/LRO_LROC_DEM_Apollo_16_ColorHillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_ColorHillshade/LRO_NAC_ClrShade_09S015E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_ColorHillshade/LRO_NAC_ClrShade_09S015E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_ColorHillshade_Slope/LRO_LROC_DEM_Apollo_16_ColorHillshade_Slope.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_ColorHillshade_Slope/LRO_NAC_Slope_09S015E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_ColorHillshade_Slope/LRO_NAC_Slope_09S015E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_Colorized_Confidence/LRO_LROC_DEM_Apollo_16_Colorized_Confidence.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_Colorized_Confidence/LRO_NAC_ClrConf_09S015E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_Colorized_Confidence/LRO_NAC_ClrConf_09S015E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_Grayscale/LRO_LROC_DEM_Apollo_16_Grayscale.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_Grayscale/LRO_NAC_Gray_09S015E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_Grayscale/LRO_NAC_Gray_09S015E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_Hillshade/LRO_LROC_DEM_Apollo_16_Hillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_Hillshade/LRO_NAC_Shade_09S015E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_Hillshade/LRO_NAC_Shade_09S015E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_15m_Color_Roughness/LRO_LROC_DEM_Apollo_Basin_15m_Color_Roughness.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_37S206E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Apollo_Basin_15m_Color_Roughness_Hazard.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_37S206E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_37S206E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_15m_Color_Slope/LRO_LROC_DEM_Apollo_Basin_15m_Color_Slope.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_15m_Color_Slope/LRO_NAC_ClrSlope_15m_37S206E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_15m_Color_Slope/LRO_NAC_ClrSlope_15m_37S206E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_15m_Color_Slope_Hazard/LRO_LROC_DEM_Apollo_Basin_15m_Color_Slope_Hazard.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_37S206E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_37S206E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_3m_Color_Roughness/LRO_LROC_DEM_Apollo_Basin_3m_Color_Roughness.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_37S206E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_37S206E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_3m_Color_Roughness_Hazard/LRO_LROC_DEM_Apollo_Basin_3m_Color_Roughness_Hazard.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_37S206E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_37S206E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_3m_Color_Slope/LRO_LROC_DEM_Apollo_Basin_3m_Color_Slope.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_3m_Color_Slope/LRO_NAC_ClrSlope_3m_37S206E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_3m_Color_Slope/LRO_NAC_ClrSlope_3m_37S206E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_3m_Color_Slope_Hazard/LRO_LROC_DEM_Apollo_Basin_3m_Color_Slope_Hazard.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_37S206E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_37S206E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_ColorHillshade/LRO_LROC_DEM_Apollo_Basin_ColorHillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_ColorHillshade/LRO_NAC_ClrShade_37S206E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_ColorHillshade/LRO_NAC_ClrShade_37S206E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_Colorized_Confidence/LRO_LROC_DEM_Apollo_Basin_Colorized_Confidence.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_Colorized_Confidence/LRO_NAC_ClrConf_37S206E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_Colorized_Confidence/LRO_NAC_ClrConf_37S206E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_Colorized_Slope/LRO_LROC_DEM_Apollo_Basin_Colorized_Slope.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_Colorized_Slope/LRO_NAC_Slope_37S206E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_Colorized_Slope/LRO_NAC_Slope_37S206E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_Grayscale/LRO_LROC_DEM_Apollo_Basin_Grayscale.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_Grayscale/LRO_NAC_Gray_37S206E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_Grayscale/LRO_NAC_Gray_37S206E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_Hillshade/LRO_LROC_DEM_Apollo_Basin_Hillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_Hillshade/LRO_NAC_Shade_37S206E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_Hillshade/LRO_NAC_Shade_37S206E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_15m_Color_Roughness/LRO_LROC_DEM_Aristarchus_1_15m_Color_Roughness.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_25N311E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Aristarchus_1_15m_Color_Roughness_Hazard.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_25N311E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_25N311E_2mp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_15m_Color_Slope/LRO_LROC_DEM_Aristarchus_1_15m_Color_Slope.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_15m_Color_Slope/LRO_NAC_ClrSlope_15m_25N311E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_15m_Color_Slope/LRO_NAC_ClrSlope_15m_25N311E_2mp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_15m_Color_Slope_Hazard/LRO_LROC_DEM_Aristarchus_1_15m_Color_Slope_Hazard.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_25N311E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_25N311E_2mp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_4m_Color_Roughness/LRO_LROC_DEM_Aristarchus_1_4m_Color_Roughness.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_4m_Color_Roughness/LRO_NAC_ClrRoughness_4m_25N311E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_4m_Color_Roughness/LRO_NAC_ClrRoughness_4m_25N311E_2mp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_4m_Color_Roughness_Hazard/LRO_LROC_DEM_Aristarchus_1_4m_Color_Roughness_Hazard.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_4m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_4m_25N311E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_4m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_4m_25N311E_2mp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_4m_Color_Slope/LRO_LROC_DEM_Aristarchus_1_4m_Color_Slope.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_4m_Color_Slope/LRO_NAC_ClrSlope_4m_25N311E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_4m_Color_Slope/LRO_NAC_ClrSlope_4m_25N311E_2mp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_4m_Color_Slope_Hazard/LRO_LROC_DEM_Aristarchus_1_4m_Color_Slope_Hazard.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_4m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_4m_25N311E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_4m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_4m_25N311E_2mp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_ColorHillshade/LRO_LROC_DEM_Aristarchus_1_ColorHillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_ColorHillshade/LRO_NAC_ClrShade_25N311E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_ColorHillshade/LRO_NAC_ClrShade_25N311E_2mp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_ColorHillshade_Slope/LRO_LROC_DEM_Aristarchus_1_ColorHillshade_Slope.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_ColorHillshade_Slope/LRO_NAC_Slope_25N311E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_ColorHillshade_Slope/LRO_NAC_Slope_25N311E_2mp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_Colorized_Confidence/LRO_LROC_DEM_Aristarchus_1_Colorized_Confidence.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_Colorized_Confidence/LRO_NAC_ClrConf_25N311E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_Colorized_Confidence/LRO_NAC_ClrConf_25N311E_2mp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_Grayscale/LRO_LROC_DEM_Aristarchus_1_Grayscale.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_Grayscale/LRO_NAC_Gray_25N311E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_Grayscale/LRO_NAC_Gray_25N311E_2mp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_Hillshade/LRO_LROC_DEM_Aristarchus_1_Hillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_Hillshade/LRO_NAC_Shade_25N311E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_Hillshade/LRO_NAC_Shade_25N311E_2mp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_15m_Color_Roughness/LRO_LROC_DEM_Aristarchus_2_15m_Color_Roughness.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_28N307E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Aristarchus_2_15m_Color_Roughness_Hazard.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_28N307E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_28N307E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_15m_Color_Slope/LRO_LROC_DEM_Aristarchus_2_15m_Color_Slope.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_15m_Color_Slope/LRO_NAC_ClrSlope_15m_28N307E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_15m_Color_Slope/LRO_NAC_ClrSlope_15m_28N307E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_15m_Color_Slope_Hazard/LRO_LROC_DEM_Aristarchus_2_15m_Color_Slope_Hazard.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_28N307E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_28N307E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_3m_Color_Roughness/LRO_LROC_DEM_Aristarchus_2_3m_Color_Roughness.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_28N307E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_28N307E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_3m_Color_Roughness_Hazard/LRO_LROC_DEM_Aristarchus_2_3m_Color_Roughness_Hazard.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_28N307E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_28N307E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_3m_Color_Slope/LRO_LROC_DEM_Aristarchus_2_3m_Color_Slope.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_3m_Color_Slope/LRO_NAC_ClrSlope_3m_28N307E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_3m_Color_Slope/LRO_NAC_ClrSlope_3m_28N307E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_3m_Color_Slope_Hazard/LRO_LROC_DEM_Aristarchus_2_3m_Color_Slope_Hazard.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_28N307E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_28N307E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_ColorHillshade/LRO_LROC_DEM_Aristarchus_2_ColorHillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_ColorHillshade/LRO_NAC_ClrShade_28N307E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_ColorHillshade/LRO_NAC_ClrShade_28N307E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_Colorized_Confidence/LRO_LROC_DEM_Aristarchus_2_Colorized_Confidence.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_Colorized_Confidence/LRO_NAC_ClrConf_28N307E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_Colorized_Confidence/LRO_NAC_ClrConf_28N307E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_Colorized_Slope/LRO_LROC_DEM_Aristarchus_2_Colorized_Slope.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_Colorized_Slope/LRO_NAC_Slope_28N307E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_Colorized_Slope/LRO_NAC_Slope_28N307E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_Grayscale/LRO_LROC_DEM_Aristarchus_2_Grayscale.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_Grayscale/LRO_NAC_Gray_28N307E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_Grayscale/LRO_NAC_Gray_28N307E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_Hillshade/LRO_LROC_DEM_Aristarchus_2_Hillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_Hillshade/LRO_NAC_Shade_28N307E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_Hillshade/LRO_NAC_Shade_28N307E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_15m_Color_Roughness/LRO_LROC_DEM_Balmer_Basin_15m_Color_Roughness.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_19S070E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Balmer_Basin_15m_Color_Roughness_Hazard.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_19S070E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_19S070E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_15m_Color_Slope/LRO_LROC_DEM_Balmer_Basin_15m_Color_Slope.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_15m_Color_Slope/LRO_NAC_ClrSlope_15m_19S070E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_15m_Color_Slope/LRO_NAC_ClrSlope_15m_19S070E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_15m_Color_Slope_Hazard/LRO_LROC_DEM_Balmer_Basin_15m_Color_Slope_Hazard.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_19S070E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_19S070E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_3m_Color_Roughness/LRO_LROC_DEM_Balmer_Basin_3m_Color_Roughness.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_19S070E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_19S070E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_3m_Color_Roughness_Hazard/LRO_LROC_DEM_Balmer_Basin_3m_Color_Roughness_Hazard.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_19S070E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_19S070E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_3m_Color_Slope/LRO_LROC_DEM_Balmer_Basin_3m_Color_Slope.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_3m_Color_Slope/LRO_NAC_ClrSlope_3m_19S070E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_3m_Color_Slope/LRO_NAC_ClrSlope_3m_19S070E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_3m_Color_Slope_Hazard/LRO_LROC_DEM_Balmer_Basin_3m_Color_Slope_Hazard.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_19S070E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_19S070E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_ColorHillshade/LRO_LROC_DEM_Balmer_Basin_ColorHillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_ColorHillshade/LRO_NAC_ClrShade_19S070E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_ColorHillshade/LRO_NAC_ClrShade_19S070E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_Colorized_Confidence/LRO_LROC_DEM_Balmer_Basin_Colorized_Confidence.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_Colorized_Confidence/LRO_NAC_ClrConf_19S070E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_Colorized_Confidence/LRO_NAC_ClrConf_19S070E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_Colorized_Slope/LRO_LROC_DEM_Balmer_Basin_Colorized_Slope.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_Colorized_Slope/LRO_NAC_Slope_19S070E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_Colorized_Slope/LRO_NAC_Slope_19S070E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_Grayscale/LRO_LROC_DEM_Balmer_Basin_Grayscale.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_Grayscale/LRO_NAC_Gray_19S070E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_Grayscale/LRO_NAC_Gray_19S070E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_Hillshade/LRO_LROC_DEM_Balmer_Basin_Hillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_Hillshade/LRO_NAC_Shade_19S070E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_Hillshade/LRO_NAC_Shade_19S070E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_15m_Color_Roughness/LRO_LROC_DEM_Bullialdus_Crater_15m_Color_Roughness.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_20S337E_400cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Bullialdus_Crater_15m_Color_Roughness_Hazard.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_20S337E_400cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_20S337E_400cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_15m_Color_Slope/LRO_LROC_DEM_Bullialdus_Crater_15m_Color_Slope.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_15m_Color_Slope/LRO_NAC_ClrSlope_15m_20S337E_400cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_15m_Color_Slope/LRO_NAC_ClrSlope_15m_20S337E_400cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_15m_Color_Slope_Hazard/LRO_LROC_DEM_Bullialdus_Crater_15m_Color_Slope_Hazard.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_20S337E_400cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_20S337E_400cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_8m_Color_Roughness/LRO_LROC_DEM_Bullialdus_Crater_8m_Color_Roughness.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_8m_Color_Roughness/LRO_NAC_ClrRoughness_8m_20S337E_400cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_8m_Color_Roughness/LRO_NAC_ClrRoughness_8m_20S337E_400cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_8m_Color_Roughness_Hazard/LRO_LROC_DEM_Bullialdus_Crater_8m_Color_Roughness_Hazard.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_8m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_8m_20S337E_400cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_8m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_8m_20S337E_400cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_8m_Color_Slope/LRO_LROC_DEM_Bullialdus_Crater_8m_Color_Slope.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_8m_Color_Slope/LRO_NAC_ClrSlope_8m_20S337E_400cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_8m_Color_Slope/LRO_NAC_ClrSlope_8m_20S337E_400cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_8m_Color_Slope_Hazard/LRO_LROC_DEM_Bullialdus_Crater_8m_Color_Slope_Hazard.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_8m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_8m_20S337E_400cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_8m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_8m_20S337E_400cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_ColorHillshade/LRO_LROC_DEM_Bullialdus_Crater_ColorHillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_ColorHillshade/LRO_NAC_ClrShade_20S337E_400cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_ColorHillshade/LRO_NAC_ClrShade_20S337E_400cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_Colorized_Confidence/LRO_LROC_DEM_Bullialdus_Crater_Colorized_Confidence.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_Colorized_Confidence/LRO_NAC_ClrConf_20S337E_400cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_Colorized_Confidence/LRO_NAC_ClrConf_20S337E_400cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_Colorized_Slope/LRO_LROC_DEM_Bullialdus_Crater_Colorized_Slope.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_Colorized_Slope/LRO_NAC_Slope_20S337E_400cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_Colorized_Slope/LRO_NAC_Slope_20S337E_400cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_Grayscale/LRO_LROC_DEM_Bullialdus_Crater_Grayscale.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_Grayscale/LRO_NAC_Gray_20S337E_400cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_Grayscale/LRO_NAC_Gray_20S337E_400cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_Hillshade/LRO_LROC_DEM_Bullialdus_Crater_Hillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_Hillshade/LRO_NAC_Shade_20S337E_400cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_Hillshade/LRO_NAC_Shade_20S337E_400cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Compton_Belkovich_Th_Anomaly_ColorHillshade/LRO_LROC_DEM_Compton_Belkovich_Th_Anomaly_ColorHillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Compton_Belkovich_Th_Anomaly_ColorHillshade/LRO_NAC_ClrShade_61N099E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Compton_Belkovich_Th_Anomaly_Colorized_Confidence/LRO_LROC_DEM_Compton_Belkovich_Th_Anomaly_Colorized_Confidence.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Compton_Belkovich_Th_Anomaly_Colorized_Confidence/LRO_NAC_ClrConf_61N099E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Compton_Belkovich_Th_Anomaly_Colorized_Confidence/LRO_NAC_ClrConf_61N099E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Compton_Belkovich_Th_Anomaly_Colorized_Slope/LRO_LROC_DEM_Compton_Belkovich_Th_Anomaly_Colorized_Slope.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Compton_Belkovich_Th_Anomaly_Colorized_Slope/LRO_NAC_Slope_61N099E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Compton_Belkovich_Th_Anomaly_Colorized_Slope/LRO_NAC_Slope_61N099E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Compton_Belkovich_Th_Anomaly_Grayscale/LRO_LROC_DEM_Compton_Belkovich_Th_Anomaly_Grayscale.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Compton_Belkovich_Th_Anomaly_Grayscale/LRO_NAC_Gray_61N099E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Compton_Belkovich_Th_Anomaly_Grayscale/LRO_NAC_Gray_61N099E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Compton_Belkovich_Th_Anomaly_Hillshade/LRO_LROC_DEM_Compton_Belkovich_Th_Anomaly_Hillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Compton_Belkovich_Th_Anomaly_Hillshade/LRO_NAC_Shade_61N099E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Compton_Belkovich_Th_Anomaly_Hillshade/LRO_NAC_Shade_61N099E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_15m_Color_Roughness/LRO_LROC_DEM_Dante_Crater_15m_Color_Roughness.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_26N178E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Dante_Crater_15m_Color_Roughness_Hazard.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_26N178E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_26N178E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_15m_Color_Slope/LRO_LROC_DEM_Dante_Crater_15m_Color_Slope.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_15m_Color_Slope/LRO_NAC_ClrSlope_15m_26N178E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_15m_Color_Slope/LRO_NAC_ClrSlope_15m_26N178E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_15m_Color_Slope_Hazard/LRO_LROC_DEM_Dante_Crater_15m_Color_Slope_Hazard.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_26N178E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_26N178E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_3m_Color_Roughness/LRO_LROC_DEM_Dante_Crater_3m_Color_Roughness.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_26N178E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_26N178E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_3m_Color_Roughness_Hazard/LRO_LROC_DEM_Dante_Crater_3m_Color_Roughness_Hazard.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_26N178E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_26N178E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_3m_Color_Slope/LRO_LROC_DEM_Dante_Crater_3m_Color_Slope.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_3m_Color_Slope/LRO_NAC_ClrSlope_3m_26N178E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_3m_Color_Slope/LRO_NAC_ClrSlope_3m_26N178E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_3m_Color_Slope_Hazard/LRO_LROC_DEM_Dante_Crater_3m_Color_Slope_Hazard.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_26N178E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_26N178E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_ColorHillshade/LRO_LROC_DEM_Dante_Crater_ColorHillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_ColorHillshade/LRO_NAC_ClrShade_26N178E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_ColorHillshade/LRO_NAC_ClrShade_26N178E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_Colorized_Confidence/LRO_LROC_DEM_Dante_Crater_Colorized_Confidence.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_Colorized_Confidence/LRO_NAC_ClrConf_26N178E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_Colorized_Confidence/LRO_NAC_ClrConf_26N178E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_Colorized_Slope/LRO_LROC_DEM_Dante_Crater_Colorized_Slope.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_Colorized_Slope/LRO_NAC_Slope_26N178E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_Colorized_Slope/LRO_NAC_Slope_26N178E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_Grayscale/LRO_LROC_DEM_Dante_Crater_Grayscale.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_Grayscale/LRO_NAC_Gray_26N178E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_Grayscale/LRO_NAC_Gray_26N178E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_Hillshade/LRO_LROC_DEM_Dante_Crater_Hillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_Hillshade/LRO_NAC_Shade_26N178E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_Hillshade/LRO_NAC_Shade_26N178E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Flamsteed_Crater_ColorHillshade/LRO_LROC_DEM_Flamsteed_Crater_ColorHillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Flamsteed_Crater_ColorHillshade/LRO_NAC_ClrShade_02S317E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Flamsteed_Crater_Colorized_Confidence/LRO_LROC_DEM_Flamsteed_Crater_Colorized_Confidence.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Flamsteed_Crater_Colorized_Confidence/LRO_NAC_ClrConf_02S317E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Flamsteed_Crater_Colorized_Confidence/LRO_NAC_ClrConf_02S317E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Flamsteed_Crater_Colorized_Slope/LRO_LROC_DEM_Flamsteed_Crater_Colorized_Slope.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Flamsteed_Crater_Colorized_Slope/LRO_NAC_Slope_02S317E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Flamsteed_Crater_Colorized_Slope/LRO_NAC_Slope_02S317E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Flamsteed_Crater_Grayscale/LRO_LROC_DEM_Flamsteed_Crater_Grayscale.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Flamsteed_Crater_Grayscale/LRO_NAC_Gray_02S317E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Flamsteed_Crater_Grayscale/LRO_NAC_Gray_02S317E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Flamsteed_Crater_Hillshade/LRO_LROC_DEM_Flamsteed_Crater_Hillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Flamsteed_Crater_Hillshade/LRO_NAC_Shade_02S317E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Flamsteed_Crater_Hillshade/LRO_NAC_Shade_02S317E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Fresh_Crater_East_of_Lents_ColorHillshade/LRO_LROC_DEM_Fresh_Crater_East_of_Lents_ColorHillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Fresh_Crater_East_of_Lents_ColorHillshade/LRO_NAC_ClrShade_03N280E_2m.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Fresh_Crater_East_of_Lents_Colorized_Slope/LRO_LROC_DEM_Fresh_Crater_East_of_Lents_Colorized_Slope.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Fresh_Crater_East_of_Lents_Colorized_Slope/LRO_NAC_Slope_03N280E_2m.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Fresh_Crater_East_of_Lents_Colorized_Slope/LRO_NAC_Slope_03N280E_2m.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Fresh_Crater_East_of_Lents_Grayscale/LRO_LROC_DEM_Fresh_Crater_East_of_Lents_Grayscale.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Fresh_Crater_East_of_Lents_Grayscale/LRO_NAC_Gray_03N280E_2m.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Fresh_Crater_East_of_Lents_Grayscale/LRO_NAC_Gray_03N280E_2m.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_15m_Color_Roughness/LRO_LROC_DEM_Gruithuisen_Domes_15m_Color_Roughness.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_36N320E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Gruithuisen_Domes_15m_Color_Roughness_Hazard.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_4m_36N320E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_4m_36N320E_2mp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_15m_Color_Slope/LRO_LROC_DEM_Gruithuisen_Domes_15m_Color_Slope.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_15m_Color_Slope/LRO_NAC_ClrSlope_15m_36N320E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_15m_Color_Slope/LRO_NAC_ClrSlope_15m_36N320E_2mp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_15m_Color_Slope_Hazard/LRO_LROC_DEM_Gruithuisen_Domes_15m_Color_Slope_Hazard.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_36N320E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_36N320E_2mp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_4m_Color_Roughness/LRO_LROC_DEM_Gruithuisen_Domes_4m_Color_Roughness.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_4m_Color_Roughness/LRO_NAC_ClrRoughness_4m_36N320E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_4m_Color_Roughness/LRO_NAC_ClrRoughness_4m_36N320E_2mp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_4m_Color_Roughness_Hazard/LRO_LROC_DEM_Gruithuisen_Domes_4m_Color_Roughness_Hazard.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_4m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_36N320E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_4m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_36N320E_2mp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_4m_Color_Slope/LRO_LROC_DEM_Gruithuisen_Domes_4m_Color_Slope.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_4m_Color_Slope/LRO_NAC_ClrSlope_4m_36N320E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_4m_Color_Slope/LRO_NAC_ClrSlope_4m_36N320E_2mp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_4m_Color_Slope_Hazard/LRO_LROC_DEM_Gruithuisen_Domes_4m_Color_Slope_Hazard.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_4m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_4m_36N320E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_4m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_4m_36N320E_2mp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_ColorHillshade/LRO_LROC_DEM_Gruithuisen_Domes_ColorHillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_ColorHillshade/LRO_NAC_ClrShade_36N320E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_ColorHillshade/LRO_NAC_ClrShade_36N320E_2mp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_ColorHillshade_Slope/LRO_LROC_DEM_Gruithuisen_Domes_ColorHillshade_Slope.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_ColorHillshade_Slope/LRO_NAC_Slope_36N320E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_ColorHillshade_Slope/LRO_NAC_Slope_36N320E_2mp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_Colorized_Confidence/LRO_LROC_DEM_Gruithuisen_Domes_Colorized_Confidence.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_Colorized_Confidence/LRO_NAC_ClrConf_36N320E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_Colorized_Confidence/LRO_NAC_ClrConf_36N320E_2mp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_Grayscale/LRO_LROC_DEM_Gruithuisen_Domes_Grayscale.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_Grayscale/LRO_NAC_Gray_36N320E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_Grayscale/LRO_NAC_Gray_36N320E_2mp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_Hillshade/LRO_LROC_DEM_Gruithuisen_Domes_Hillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_Hillshade/LRO_NAC_Shade_36N320E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_Hillshade/LRO_NAC_Shade_36N320E_2mp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_15m_Color_Roughness/LRO_LROC_DEM_Hertzsprung_15m_Color_Roughness.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_00N234E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Hertzsprung_15m_Color_Roughness_Hazard.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_00N234E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_00N234E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_15m_Color_Slope/LRO_LROC_DEM_Hertzsprung_15m_Color_Slope.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_15m_Color_Slope/LRO_NAC_ClrSlope_15m_00N234E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_15m_Color_Slope/LRO_NAC_ClrSlope_15m_00N234E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_15m_Color_Slope_Hazard/LRO_LROC_DEM_Hertzsprung_15m_Color_Slope_Hazard.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_00N234E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_00N234E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_3m_Color_Roughness/LRO_LROC_DEM_Hertzsprung_3m_Color_Roughness.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_00N234E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_00N234E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_3m_Color_Roughness_Hazard/LRO_LROC_DEM_Hertzsprung_3m_Color_Roughness_Hazard.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_00N234E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_00N234E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_3m_Color_Slope/LRO_LROC_DEM_Hertzsprung_3m_Color_Slope.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_3m_Color_Slope/LRO_NAC_ClrSlope_3m_00N234E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_3m_Color_Slope/LRO_NAC_ClrSlope_3m_00N234E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_3m_Color_Slope_Hazard/LRO_LROC_DEM_Hertzsprung_3m_Color_Slope_Hazard.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_00N234E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_00N234E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_ColorHillshade/LRO_LROC_DEM_Hertzsprung_ColorHillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_ColorHillshade/LRO_NAC_ClrShade_00N234E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_ColorHillshade/LRO_NAC_ClrShade_00N234E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_Colorized_Confidence/LRO_LROC_DEM_Hertzsprung_Colorized_Confidence.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_Colorized_Confidence/LRO_NAC_ClrConf_00N234E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_Colorized_Confidence/LRO_NAC_ClrConf_00N234E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_Colorized_Slope/LRO_LROC_DEM_Hertzsprung_Colorized_Slope.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_Colorized_Slope/LRO_NAC_Slope_00N234E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_Colorized_Slope/LRO_NAC_Slope_00N234E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_Grayscale/LRO_LROC_DEM_Hertzsprung_Grayscale.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_Grayscale/LRO_NAC_Gray_00N234E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_Grayscale/LRO_NAC_Gray_00N234E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_Hillshade/LRO_LROC_DEM_Hertzsprung_Hillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_Hillshade/LRO_NAC_Shade_00N234E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_Hillshade/LRO_NAC_Shade_00N234E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_15m_Color_Roughness/LRO_LROC_DEM_Hortensius_Domes_15m_Color_Roughness.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_08N332E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Hortensius_Domes_15m_Color_Roughness_Hazard.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_08N332E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_08N332E_2mp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_15m_Color_Slope/LRO_LROC_DEM_Hortensius_Domes_15m_Color_Slope.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_15m_Color_Slope/LRO_NAC_ClrSlope_15m_08N332E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_15m_Color_Slope/LRO_NAC_ClrSlope_15m_08N332E_2mp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_15m_Color_Slope_Hazard/LRO_LROC_DEM_Hortensius_Domes_15m_Color_Slope_Hazard.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_08N332E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_08N332E_2mp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_4m_Color_Roughness/LRO_LROC_DEM_Hortensius_Domes_4m_Color_Roughness.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_4m_Color_Roughness/LRO_NAC_ClrRoughness_4m_08N332E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_4m_Color_Roughness/LRO_NAC_ClrRoughness_4m_08N332E_2mp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_4m_Color_Roughness_Hazard/LRO_LROC_DEM_Hortensius_Domes_4m_Color_Roughness_Hazard.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_4m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_4m_08N332E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_4m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_4m_08N332E_2mp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_4m_Color_Slope/LRO_LROC_DEM_Hortensius_Domes_4m_Color_Slope.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_4m_Color_Slope/LRO_NAC_ClrSlope_4m_08N332E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_4m_Color_Slope/LRO_NAC_ClrSlope_4m_08N332E_2mp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_4m_Color_Slope_Hazard/LRO_LROC_DEM_Hortensius_Domes_4m_Color_Slope_Hazard.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_4m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_4m_08N332E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_4m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_4m_08N332E_2mp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_ColorHillshade/LRO_LROC_DEM_Hortensius_Domes_ColorHillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_ColorHillshade/LRO_NAC_ClrShade_08N332E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_ColorHillshade/LRO_NAC_ClrShade_08N332E_2mp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_ColorHillshade_Slope/LRO_LROC_DEM_Hortensius_Domes_ColorHillshade_Slope.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_ColorHillshade_Slope/LRO_NAC_Slope_08N332E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_ColorHillshade_Slope/LRO_NAC_Slope_08N332E_2mp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_Colorized_Confidence/LRO_LROC_DEM_Hortensius_Domes_Colorized_Confidence.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_Colorized_Confidence/LRO_NAC_ClrConf_08N332E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_Colorized_Confidence/LRO_NAC_ClrConf_08N332E_2mp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_Grayscale/LRO_LROC_DEM_Hortensius_Domes_Grayscale.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_Grayscale/LRO_NAC_Gray_08N332E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_Grayscale/LRO_NAC_Gray_08N332E_2mp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_Hillshade/LRO_LROC_DEM_Hortensius_Domes_Hillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_Hillshade/LRO_NAC_Shade_08N332E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_Hillshade/LRO_NAC_Shade_08N332E_2mp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Humboldtianum_Basin_ColorHillshade/LRO_LROC_DEM_Humboldtianum_Basin_ColorHillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Humboldtianum_Basin_ColorHillshade/LRO_NAC_ClrShade_55N077E_200cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Humboldtianum_Basin_Colorized_Confidence/LRO_LROC_DEM_Humboldtianum_Basin_Colorized_Confidence.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Humboldtianum_Basin_Colorized_Confidence/LRO_NAC_ClrConf_55N077E_200cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Humboldtianum_Basin_Colorized_Confidence/LRO_NAC_ClrConf_55N077E_200cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Humboldtianum_Basin_Colorized_Slope/LRO_LROC_DEM_Humboldtianum_Basin_Colorized_Slope.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Humboldtianum_Basin_Colorized_Slope/LRO_NAC_Slope_55N077E_200cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Humboldtianum_Basin_Colorized_Slope/LRO_NAC_Slope_55N077E_200cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Humboldtianum_Basin_Grayscale/LRO_LROC_DEM_Humboldtianum_Basin_Grayscale.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Humboldtianum_Basin_Grayscale/LRO_NAC_Gray_55N077E_200cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Humboldtianum_Basin_Grayscale/LRO_NAC_Gray_55N077E_200cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Humboldtianum_Basin_Hillshade/LRO_LROC_DEM_Humboldtianum_Basin_Hillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Humboldtianum_Basin_Hillshade/LRO_NAC_Shade_55N077E_200cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Humboldtianum_Basin_Hillshade/LRO_NAC_Shade_55N077E_200cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Ina_(D-Caldera)_ColorHillshade/LRO_LROC_DEM_Ina_(D-Caldera)_ColorHillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Ina_(D-Caldera)_ColorHillshade/LRO_NAC_ClrShade_19N005E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Ina_D-Caldera_ColorHillshade_Slope/LRO_LROC_DEM_Ina_D-Caldera_ColorHillshade_Slope.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Ina_D-Caldera_ColorHillshade_Slope/LRO_NAC_Slope_19N005E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Ina_D-Caldera_ColorHillshade_Slope/LRO_NAC_Slope_19N005E_2mp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Ina_D-Caldera_Colorized_Confidence/LRO_LROC_DEM_Ina_D-Caldera_Colorized_Confidence.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Ina_D-Caldera_Colorized_Confidence/LRO_NAC_ClrConf_19N005E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Ina_D-Caldera_Colorized_Confidence/LRO_NAC_ClrConf_19N005E_2mp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Ina_D-Caldera_Grayscale/LRO_LROC_DEM_Ina_D-Caldera_Grayscale.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Ina_D-Caldera_Grayscale/LRO_NAC_Gray_19N005E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Ina_D-Caldera_Grayscale/LRO_NAC_Gray_19N005E_2mp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Ina_D-Caldera_Hillshade/LRO_LROC_DEM_Ina_D-Caldera_Hillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Ina_D-Caldera_Hillshade/LRO_NAC_Shade_19N005E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Ina_D-Caldera_Hillshade/LRO_NAC_Shade_19N005E_2mp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_15m_Color_Roughness/LRO_LROC_DEM_King_Crater_15m_Color_Roughness.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_06N120E_200cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_15m_Color_Roughness_Hazard/LRO_LROC_DEM_King_Crater_15m_Color_Roughness_Hazard.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_06N120E_200cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_06N120E_200cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_15m_Color_Slope/LRO_LROC_DEM_King_Crater_15m_Color_Slope.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_15m_Color_Slope/LRO_NAC_ClrSlope_15m_06N120E_200cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_15m_Color_Slope/LRO_NAC_ClrSlope_15m_06N120E_200cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_15m_Color_Slope_Hazard/LRO_LROC_DEM_King_Crater_15m_Color_Slope_Hazard.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_06N120E_200cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_06N120E_200cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_4m_Color_Roughness/LRO_LROC_DEM_King_Crater_4m_Color_Roughness.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_4m_Color_Roughness/LRO_NAC_ClrRoughness_4m_06N120E_200cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_4m_Color_Roughness/LRO_NAC_ClrRoughness_4m_06N120E_200cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_4m_Color_Roughness_Hazard/LRO_LROC_DEM_King_Crater_4m_Color_Roughness_Hazard.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_4m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_4m_06N120E_200cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_4m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_4m_06N120E_200cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_4m_Color_Slope/LRO_LROC_DEM_King_Crater_4m_Color_Slope.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_4m_Color_Slope/LRO_NAC_ClrSlope_4m_06N120E_200cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_4m_Color_Slope/LRO_NAC_ClrSlope_4m_06N120E_200cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_4m_Color_Slope_Hazard/LRO_LROC_DEM_King_Crater_4m_Color_Slope_Hazard.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_4m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_4m_06N120E_200cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_4m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_4m_06N120E_200cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_ColorHillshade/LRO_LROC_DEM_King_Crater_ColorHillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_ColorHillshade/LRO_NAC_ClrShade_06N120E_200cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_ColorHillshade/LRO_NAC_ClrShade_06N120E_200cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_Colorized_Confidence/LRO_LROC_DEM_King_Crater_Colorized_Confidence.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_Colorized_Confidence/LRO_NAC_ClrConf_06N120E_200cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_Colorized_Confidence/LRO_NAC_ClrConf_06N120E_200cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_Colorized_Slope/LRO_LROC_DEM_King_Crater_Colorized_Slope.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_Colorized_Slope/LRO_NAC_Slope_06N120E_200cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_Colorized_Slope/LRO_NAC_Slope_06N120E_200cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_Grayscale/LRO_LROC_DEM_King_Crater_Grayscale.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_Grayscale/LRO_NAC_Gray_06N120E_200cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_Grayscale/LRO_NAC_Gray_06N120E_200cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_Hillshade/LRO_LROC_DEM_King_Crater_Hillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_Hillshade/LRO_NAC_Shade_06N120E_200cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_Hillshade/LRO_NAC_Shade_06N120E_200cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_15m_Color_Roughness/LRO_LROC_DEM_Lichtenberg_Crater_15m_Color_Roughness.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_32N292E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Lichtenberg_Crater_15m_Color_Roughness_Hazard.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_32N292E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_32N292E_2mp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_15m_Color_Slope/LRO_LROC_DEM_Lichtenberg_Crater_15m_Color_Slope.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_15m_Color_Slope/LRO_NAC_ClrSlope_15m_32N292E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_15m_Color_Slope/LRO_NAC_ClrSlope_15m_32N292E_2mp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_15m_Color_Slope_Hazard/LRO_LROC_DEM_Lichtenberg_Crater_15m_Color_Slope_Hazard.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_32N292E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_32N292E_2mp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_4m_Color_Roughness/LRO_LROC_DEM_Lichtenberg_Crater_4m_Color_Roughness.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_4m_Color_Roughness/LRO_NAC_ClrRoughness_4m_32N292E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_4m_Color_Roughness/LRO_NAC_ClrRoughness_4m_32N292E_2mp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_4m_Color_Roughness_Hazard/LRO_LROC_DEM_Lichtenberg_Crater_4m_Color_Roughness_Hazard.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_4m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_4m_32N292E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_4m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_4m_32N292E_2mp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_4m_Color_Slope/LRO_LROC_DEM_Lichtenberg_Crater_4m_Color_Slope.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_4m_Color_Slope/LRO_NAC_ClrSlope_4m_32N292E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_4m_Color_Slope/LRO_NAC_ClrSlope_4m_32N292E_2mp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_4m_Color_Slope_Hazard/LRO_LROC_DEM_Lichtenberg_Crater_4m_Color_Slope_Hazard.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_4m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_4m_32N292E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_4m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_4m_32N292E_2mp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_ColorHillshade/LRO_LROC_DEM_Lichtenberg_Crater_ColorHillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_ColorHillshade/LRO_NAC_ClrShade_32N292E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_ColorHillshade/LRO_NAC_ClrShade_32N292E_2mp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_ColorHillshade_Slope/LRO_LROC_DEM_Lichtenberg_Crater_ColorHillshade_Slope.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_ColorHillshade_Slope/LRO_NAC_Slope_32N292E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_ColorHillshade_Slope/LRO_NAC_Slope_32N292E_2mp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_Colorized_Confidence/LRO_LROC_DEM_Lichtenberg_Crater_Colorized_Confidence.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_Colorized_Confidence/LRO_NAC_ClrConf_32N292E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_Colorized_Confidence/LRO_NAC_ClrConf_32N292E_2mp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_Grayscale/LRO_LROC_DEM_Lichtenberg_Crater_Grayscale.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_Grayscale/LRO_NAC_Gray_32N292E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_Grayscale/LRO_NAC_Gray_32N292E_2mp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_Hillshade/LRO_LROC_DEM_Lichtenberg_Crater_Hillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_Hillshade/LRO_NAC_Shade_32N292E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_Hillshade/LRO_NAC_Shade_32N292E_2mp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_15m_Color_Roughness/LRO_LROC_DEM_Mare_Crisium_15m_Color_Roughness.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_10N58E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Mare_Crisium_15m_Color_Roughness_Hazard.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_10N58E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_10N58E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_15m_Color_Slope/LRO_LROC_DEM_Mare_Crisium_15m_Color_Slope.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_15m_Color_Slope/LRO_NAC_ClrSlope_15m_10N58E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_15m_Color_Slope/LRO_NAC_ClrSlope_15m_10N58E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_15m_Color_Slope_Hazard/LRO_LROC_DEM_Mare_Crisium_15m_Color_Slope_Hazard.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_10N58E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_10N58E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_3m_Color_Roughness/LRO_LROC_DEM_Mare_Crisium_3m_Color_Roughness.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_10N58E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_10N58E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_3m_Color_Roughness_Hazard/LRO_LROC_DEM_Mare_Crisium_3m_Color_Roughness_Hazard.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_10N58E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_10N58E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_3m_Color_Slope/LRO_LROC_DEM_Mare_Crisium_3m_Color_Slope.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_3m_Color_Slope/LRO_NAC_ClrSlope_3m_10N58E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_3m_Color_Slope/LRO_NAC_ClrSlope_3m_10N58E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_3m_Color_Slope_Hazard/LRO_LROC_DEM_Mare_Crisium_3m_Color_Slope_Hazard.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_10N58E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_10N58E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_ColorHillshade/LRO_LROC_DEM_Mare_Crisium_ColorHillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_ColorHillshade/LRO_NAC_ClrShade_10N058E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_ColorHillshade/LRO_NAC_ClrShade_10N058E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_Colorized_Confidence/LRO_LROC_DEM_Mare_Crisium_Colorized_Confidence.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_Colorized_Confidence/LRO_NAC_ClrConf_10N058E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_Colorized_Confidence/LRO_NAC_ClrConf_10N058E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_Colorized_Slope/LRO_LROC_DEM_Mare_Crisium_Colorized_Slope.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_Colorized_Slope/LRO_NAC_Slope_10N058E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_Colorized_Slope/LRO_NAC_Slope_10N058E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_Grayscale/LRO_LROC_DEM_Mare_Crisium_Grayscale.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_Grayscale/LRO_NAC_Gray_10N058E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_Grayscale/LRO_NAC_Gray_10N058E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_Hillshade/LRO_LROC_DEM_Mare_Crisium_Hillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_Hillshade/LRO_NAC_Shade_10N058E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_Hillshade/LRO_NAC_Shade_10N058E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Ingenii_ColorHillshade/LRO_LROC_DEM_Mare_Ingenii_ColorHillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Ingenii_ColorHillshade/LRO_NAC_ClrShade_36S164E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Ingenii_ColorHillshade_Slope/LRO_LROC_DEM_Mare_Ingenii_ColorHillshade_Slope.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Ingenii_ColorHillshade_Slope/LRO_NAC_Slope_36S164E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Ingenii_ColorHillshade_Slope/LRO_NAC_Slope_36S164E_2mp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Ingenii_Colorized_Confidence/LRO_LROC_DEM_Mare_Ingenii_Colorized_Confidence.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Ingenii_Colorized_Confidence/LRO_NAC_ClrConf_36S164E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Ingenii_Colorized_Confidence/LRO_NAC_ClrConf_36S164E_2mp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Ingenii_Grayscale/LRO_LROC_DEM_Mare_Ingenii_Grayscale.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Ingenii_Grayscale/LRO_NAC_Gray_36S164E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Ingenii_Grayscale/LRO_NAC_Gray_36S164E_2mp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Ingenii_Hillshade/LRO_LROC_DEM_Mare_Ingenii_Hillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Ingenii_Hillshade/LRO_NAC_Shade_36S164E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Ingenii_Hillshade/LRO_NAC_Shade_36S164E_2mp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Moscoviense_ColorHillshade/LRO_LROC_DEM_Mare_Moscoviense_ColorHillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Moscoviense_ColorHillshade/LRO_NAC_ClrShade_26N150E_200cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Moscoviense_Colorized_Confidence/LRO_LROC_DEM_Mare_Moscoviense_Colorized_Confidence.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Moscoviense_Colorized_Confidence/LRO_NAC_ClrConf_26N150E_200cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Moscoviense_Colorized_Confidence/LRO_NAC_ClrConf_26N150E_200cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Moscoviense_Colorized_Slope/LRO_LROC_DEM_Mare_Moscoviense_Colorized_Slope.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Moscoviense_Colorized_Slope/LRO_NAC_Slope_26N150E_200cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Moscoviense_Colorized_Slope/LRO_NAC_Slope_26N150E_200cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Moscoviense_Grayscale/LRO_LROC_DEM_Mare_Moscoviense_Grayscale.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Moscoviense_Grayscale/LRO_NAC_Gray_26N150E_200cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Moscoviense_Grayscale/LRO_NAC_Gray_26N150E_200cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Moscoviense_Hillshade/LRO_LROC_DEM_Mare_Moscoviense_Hillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Moscoviense_Hillshade/LRO_NAC_Shade_26N150E_200cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Moscoviense_Hillshade/LRO_NAC_Shade_26N150E_200cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Smythii_ColorHillshade/LRO_LROC_DEM_Mare_Smythii_ColorHillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Smythii_ColorHillshade/LRO_NAC_ClrShade_02N085E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Smythii_Colorized_Confidence/LRO_LROC_DEM_Mare_Smythii_Colorized_Confidence.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Smythii_Colorized_Confidence/LRO_NAC_ClrConf_02N085E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Smythii_Colorized_Confidence/LRO_NAC_ClrConf_02N085E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Smythii_Colorized_Slope/LRO_LROC_DEM_Mare_Smythii_Colorized_Slope.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Smythii_Colorized_Slope/LRO_NAC_Slope_02N085E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Smythii_Colorized_Slope/LRO_NAC_Slope_02N085E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Smythii_Grayscale/LRO_LROC_DEM_Mare_Smythii_Grayscale.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Smythii_Grayscale/LRO_NAC_Gray_02N085E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Smythii_Grayscale/LRO_NAC_Gray_02N085E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Smythii_Hillshade/LRO_LROC_DEM_Mare_Smythii_Hillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Smythii_Hillshade/LRO_NAC_Shade_02N085E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Smythii_Hillshade/LRO_NAC_Shade_02N085E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Tranquillitatis_ColorHillshade/LRO_LROC_DEM_Mare_Tranquillitatis_ColorHillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Tranquillitatis_ColorHillshade/LRO_NAC_ClrShade_07N022E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Tranquillitatis_Colorized_Confidence/LRO_LROC_DEM_Mare_Tranquillitatis_Colorized_Confidence.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Tranquillitatis_Colorized_Confidence/LRO_NAC_ClrConf_07N022E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Tranquillitatis_Colorized_Confidence/LRO_NAC_ClrConf_07N022E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Tranquillitatis_Colorized_Slope/LRO_LROC_DEM_Mare_Tranquillitatis_Colorized_Slope.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Tranquillitatis_Colorized_Slope/LRO_NAC_Slope_07N022E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Tranquillitatis_Colorized_Slope/LRO_NAC_Slope_07N022E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Tranquillitatis_Grayscale/LRO_LROC_DEM_Mare_Tranquillitatis_Grayscale.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Tranquillitatis_Grayscale/LRO_NAC_Gray_07N022E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Tranquillitatis_Grayscale/LRO_NAC_Gray_07N022E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Tranquillitatis_Hillshade/LRO_LROC_DEM_Mare_Tranquillitatis_Hillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Tranquillitatis_Hillshade/LRO_NAC_Shade_07N022E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Tranquillitatis_Hillshade/LRO_NAC_Shade_07N022E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Marius_Hills_ColorHillshade/LRO_LROC_DEM_Marius_Hills_ColorHillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Marius_Hills_ColorHillshade/LRO_NAC_ClrShade_14N304E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Marius_Hills_ColorHillshade_Slope/LRO_LROC_DEM_Marius_Hills_ColorHillshade_Slope.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Marius_Hills_ColorHillshade_Slope/LRO_NAC_Slope_14N304E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Marius_Hills_ColorHillshade_Slope/LRO_NAC_Slope_14N304E_2mp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Marius_Hills_Colorized_Confidence/LRO_LROC_DEM_Marius_Hills_Colorized_Confidence.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Marius_Hills_Colorized_Confidence/LRO_NAC_ClrConf_14N304E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Marius_Hills_Colorized_Confidence/LRO_NAC_ClrConf_14N304E_2mp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Marius_Hills_Grayscale/LRO_LROC_DEM_Marius_Hills_Grayscale.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Marius_Hills_Grayscale/LRO_NAC_Gray_14N304E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Marius_Hills_Grayscale/LRO_NAC_Gray_14N304E_2mp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Marius_Hills_Hillshade/LRO_LROC_DEM_Marius_Hills_Hillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Marius_Hills_Hillshade/LRO_NAC_Shade_14N304E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Marius_Hills_Hillshade/LRO_NAC_Shade_14N304E_2mp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_15m_Color_Roughness/LRO_LROC_DEM_Montes_Pyrenaeus_15m_Color_Roughness.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_16S041E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Montes_Pyrenaeus_15m_Color_Roughness_Hazard.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_16S041E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_16S041E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_15m_Color_Slope/LRO_LROC_DEM_Montes_Pyrenaeus_15m_Color_Slope.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_15m_Color_Slope/LRO_NAC_ClrSlope_15m_16S041E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_15m_Color_Slope/LRO_NAC_ClrSlope_15m_16S041E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_15m_Color_Slope_Hazard/LRO_LROC_DEM_Montes_Pyrenaeus_15m_Color_Slope_Hazard.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_16S041E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_16S041E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_3m_Color_Roughness/LRO_LROC_DEM_Montes_Pyrenaeus_3m_Color_Roughness.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_16S041E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_16S041E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_3m_Color_Roughness_Hazard/LRO_LROC_DEM_Montes_Pyrenaeus_3m_Color_Roughness_Hazard.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_16S041E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_16S041E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_3m_Color_Slope/LRO_LROC_DEM_Montes_Pyrenaeus_3m_Color_Slope.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_3m_Color_Slope/LRO_NAC_ClrSlope_3m_16S041E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_3m_Color_Slope/LRO_NAC_ClrSlope_3m_16S041E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_3m_Color_Slope_Hazard/LRO_LROC_DEM_Montes_Pyrenaeus_3m_Color_Slope_Hazard.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_16S041E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_16S041E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_ColorHillshade/LRO_LROC_DEM_Montes_Pyrenaeus_ColorHillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_ColorHillshade/LRO_NAC_ClrShade_16S041E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_ColorHillshade/LRO_NAC_ClrShade_16S041E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_Colorized_Confidence/LRO_LROC_DEM_Montes_Pyrenaeus_Colorized_Confidence.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_Colorized_Confidence/LRO_NAC_ClrConf_16S041E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_Colorized_Confidence/LRO_NAC_ClrConf_16S041E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_Colorized_Slope/LRO_LROC_DEM_Montes_Pyrenaeus_Colorized_Slope.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_Colorized_Slope/LRO_NAC_Slope_16S041E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_Colorized_Slope/LRO_NAC_Slope_16S041E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_Grayscale/LRO_LROC_DEM_Montes_Pyrenaeus_Grayscale.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_Grayscale/LRO_NAC_Gray_16S041E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_Grayscale/LRO_NAC_Gray_16S041E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_Hillshade/LRO_LROC_DEM_Montes_Pyrenaeus_Hillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_Hillshade/LRO_NAC_Shade_16S041E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_Hillshade/LRO_NAC_Shade_16S041E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Murchison_Crater_ColorHillshade/LRO_LROC_DEM_Murchison_Crater_ColorHillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Murchison_Crater_ColorHillshade/LRO_NAC_ClrShade_05N000E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Murchison_Crater_Colorized_Confidence/LRO_LROC_DEM_Murchison_Crater_Colorized_Confidence.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Murchison_Crater_Colorized_Confidence/LRO_NAC_ClrConf_05N000E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Murchison_Crater_Colorized_Confidence/LRO_NAC_ClrConf_05N000E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Murchison_Crater_Colorized_Slope/LRO_LROC_DEM_Murchison_Crater_Colorized_Slope.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Murchison_Crater_Colorized_Slope/LRO_NAC_Slope_05N000E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Murchison_Crater_Colorized_Slope/LRO_NAC_Slope_05N000E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Murchison_Crater_Grayscale/LRO_LROC_DEM_Murchison_Crater_Grayscale.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Murchison_Crater_Grayscale/LRO_NAC_Gray_05N000E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Murchison_Crater_Grayscale/LRO_NAC_Gray_05N000E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Murchison_Crater_Hillshade/LRO_LROC_DEM_Murchison_Crater_Hillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Murchison_Crater_Hillshade/LRO_NAC_Shade_05N000E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Murchison_Crater_Hillshade/LRO_NAC_Shade_05N000E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_15m_Color_Roughness/LRO_LROC_DEM_Orientale_1_15m_Color_Roughness.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_26S265E_200cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Orientale_1_15m_Color_Roughness_Hazard.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_26S265E_200cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_26S265E_200cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_15m_Color_Slope/LRO_LROC_DEM_Orientale_1_15m_Color_Slope.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_15m_Color_Slope/LRO_NAC_ClrSlope_15m_26S265E_200cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_15m_Color_Slope/LRO_NAC_ClrSlope_15m_26S265E_200cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_15m_Color_Slope_Hazard/LRO_LROC_DEM_Orientale_1_15m_Color_Slope_Hazard.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_26S265E_200cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_26S265E_200cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_4m_Color_Roughness/LRO_LROC_DEM_Orientale_1_4m_Color_Roughness.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_4m_Color_Roughness/LRO_NAC_ClrRoughness_4m_26S265E_200cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_4m_Color_Roughness/LRO_NAC_ClrRoughness_4m_26S265E_200cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_4m_Color_Roughness_Hazard/LRO_LROC_DEM_Orientale_1_4m_Color_Roughness_Hazard.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_4m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_4m_26S265E_200cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_4m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_4m_26S265E_200cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_4m_Color_Slope/LRO_LROC_DEM_Orientale_1_4m_Color_Slope.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_4m_Color_Slope/LRO_NAC_ClrSlope_4m_26S265E_200cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_4m_Color_Slope/LRO_NAC_ClrSlope_4m_26S265E_200cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_4m_Color_Slope_Hazard/LRO_LROC_DEM_Orientale_1_4m_Color_Slope_Hazard.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_4m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_4m_26S265E_200cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_4m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_4m_26S265E_200cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_ColorHillshade/LRO_LROC_DEM_Orientale_1_ColorHillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_ColorHillshade/LRO_NAC_ClrShade_26S265E_200cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_ColorHillshade/LRO_NAC_ClrShade_26S265E_200cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_Colorized_Confidence/LRO_LROC_DEM_Orientale_1_Colorized_Confidence.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_Colorized_Confidence/LRO_NAC_ClrConf_26S265E_200cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_Colorized_Confidence/LRO_NAC_ClrConf_26S265E_200cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_Colorized_Slope/LRO_LROC_DEM_Orientale_1_Colorized_Slope.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_Colorized_Slope/LRO_NAC_Slope_26S265E_200cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_Colorized_Slope/LRO_NAC_Slope_26S265E_200cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_Grayscale/LRO_LROC_DEM_Orientale_1_Grayscale.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_Grayscale/LRO_NAC_Gray_26S265E_200cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_Grayscale/LRO_NAC_Gray_26S265E_200cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_Hillshade/LRO_LROC_DEM_Orientale_1_Hillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_Hillshade/LRO_NAC_Shade_26S265E_200cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_Hillshade/LRO_NAC_Shade_26S265E_200cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_15m_Color_Roughness/LRO_LROC_DEM_Plato_Ejecta_15m_Color_Roughness.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_53N354E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Plato_Ejecta_15m_Color_Roughness_Hazard.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_53N354E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_53N354E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_15m_Color_Slope/LRO_LROC_DEM_Plato_Ejecta_15m_Color_Slope.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_15m_Color_Slope/LRO_NAC_ClrSlope_15m_53N354E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_15m_Color_Slope/LRO_NAC_ClrSlope_15m_53N354E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_15m_Color_Slope_Hazard/LRO_LROC_DEM_Plato_Ejecta_15m_Color_Slope_Hazard.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_53N354E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_53N354E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_3m_Color_Roughness/LRO_LROC_DEM_Plato_Ejecta_3m_Color_Roughness.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_53N354E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_53N354E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_3m_Color_Roughness_Hazard/LRO_LROC_DEM_Plato_Ejecta_3m_Color_Roughness_Hazard.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_53N354E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_53N354E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_3m_Color_Slope/LRO_LROC_DEM_Plato_Ejecta_3m_Color_Slope.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_3m_Color_Slope/LRO_NAC_ClrSlope_3m_53N354E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_3m_Color_Slope/LRO_NAC_ClrSlope_3m_53N354E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_3m_Color_Slope_Hazard/LRO_LROC_DEM_Plato_Ejecta_3m_Color_Slope_Hazard.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_53N354E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_53N354E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_ColorHillshade/LRO_LROC_DEM_Plato_Ejecta_ColorHillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_ColorHillshade/LRO_NAC_ClrShade_53N354E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_ColorHillshade/LRO_NAC_ClrShade_53N354E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_Colorized_Confidence/LRO_LROC_DEM_Plato_Ejecta_Colorized_Confidence.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_Colorized_Confidence/LRO_NAC_ClrConf_53N354E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_Colorized_Confidence/LRO_NAC_ClrConf_53N354E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_Colorized_Slope/LRO_LROC_DEM_Plato_Ejecta_Colorized_Slope.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_Colorized_Slope/LRO_NAC_Slope_53N354E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_Colorized_Slope/LRO_NAC_Slope_53N354E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_Grayscale/LRO_LROC_DEM_Plato_Ejecta_Grayscale.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_Grayscale/LRO_NAC_Gray_53N354E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_Grayscale/LRO_NAC_Gray_53N354E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_Hillshade/LRO_LROC_DEM_Plato_Ejecta_Hillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_Hillshade/LRO_NAC_Shade_53N354E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_Hillshade/LRO_NAC_Shade_53N354E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Reiner_Gamma_ColorHillshade/LRO_LROC_DEM_Reiner_Gamma_ColorHillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Reiner_Gamma_ColorHillshade/LRO_NAC_ClrShade_07N301E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Reiner_Gamma_ColorHillshade_Slope/LRO_LROC_DEM_Reiner_Gamma_ColorHillshade_Slope.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Reiner_Gamma_ColorHillshade_Slope/LRO_NAC_Slope_07N301E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Reiner_Gamma_ColorHillshade_Slope/LRO_NAC_Slope_07N301E_2mp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Reiner_Gamma_Colorized_Confidence/LRO_LROC_DEM_Reiner_Gamma_Colorized_Confidence.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Reiner_Gamma_Colorized_Confidence/LRO_NAC_ClrConf_07N301E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Reiner_Gamma_Colorized_Confidence/LRO_NAC_ClrConf_07N301E_2mp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Reiner_Gamma_Grayscale/LRO_LROC_DEM_Reiner_Gamma_Grayscale.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Reiner_Gamma_Grayscale/LRO_NAC_Gray_07N301E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Reiner_Gamma_Grayscale/LRO_NAC_Gray_07N301E_2mp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Reiner_Gamma_Hillshade/LRO_LROC_DEM_Reiner_Gamma_Hillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Reiner_Gamma_Hillshade/LRO_NAC_Shade_07N301E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Reiner_Gamma_Hillshade/LRO_NAC_Shade_07N301E_2mp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Riccioli_Crater_ColorHillshade/LRO_LROC_DEM_Riccioli_Crater_ColorHillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Riccioli_Crater_ColorHillshade/LRO_NAC_ClrShade_03S286E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Riccioli_Crater_Colorized_Confidence/LRO_LROC_DEM_Riccioli_Crater_Colorized_Confidence.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Riccioli_Crater_Colorized_Confidence/LRO_NAC_ClrConf_03S286E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Riccioli_Crater_Colorized_Confidence/LRO_NAC_ClrConf_03S286E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Riccioli_Crater_Colorized_Slope/LRO_LROC_DEM_Riccioli_Crater_Colorized_Slope.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Riccioli_Crater_Colorized_Slope/LRO_NAC_Slope_03S286E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Riccioli_Crater_Colorized_Slope/LRO_NAC_Slope_03S286E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Riccioli_Crater_Grayscale/LRO_LROC_DEM_Riccioli_Crater_Grayscale.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Riccioli_Crater_Grayscale/LRO_NAC_Gray_03S286E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Riccioli_Crater_Grayscale/LRO_NAC_Gray_03S286E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Riccioli_Crater_Hillshade/LRO_LROC_DEM_Riccioli_Crater_Hillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Riccioli_Crater_Hillshade/LRO_NAC_Shade_03S286E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Riccioli_Crater_Hillshade/LRO_NAC_Shade_03S286E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rima_Bode_ColorHillshade/LRO_LROC_DEM_Rima_Bode_ColorHillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rima_Bode_ColorHillshade/LRO_NAC_ClrShade_13N356E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rima_Bode_Colorized_Confidence/LRO_LROC_DEM_Rima_Bode_Colorized_Confidence.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rima_Bode_Colorized_Confidence/LRO_NAC_ClrConf_13N356E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rima_Bode_Colorized_Confidence/LRO_NAC_ClrConf_13N356E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rima_Bode_Colorized_Slope/LRO_LROC_DEM_Rima_Bode_Colorized_Slope.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rima_Bode_Colorized_Slope/LRO_NAC_Slope_13N356E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rima_Bode_Colorized_Slope/LRO_NAC_Slope_13N356E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rima_Bode_Grayscale/LRO_LROC_DEM_Rima_Bode_Grayscale.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rima_Bode_Grayscale/LRO_NAC_Gray_13N356E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rima_Bode_Grayscale/LRO_NAC_Gray_13N356E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rima_Bode_Hillshade/LRO_LROC_DEM_Rima_Bode_Hillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rima_Bode_Hillshade/LRO_NAC_Shade_13N356E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rima_Bode_Hillshade/LRO_NAC_Shade_13N356E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rimae_Prinz_ColorHillshade/LRO_LROC_DEM_Rimae_Prinz_ColorHillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rimae_Prinz_ColorHillshade/LRO_NAC_ClrShade_27N318E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rimae_Prinz_Colorized_Confidence/LRO_LROC_DEM_Rimae_Prinz_Colorized_Confidence.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rimae_Prinz_Colorized_Confidence/LRO_NAC_ClrConf_27N318E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rimae_Prinz_Colorized_Confidence/LRO_NAC_ClrConf_27N318E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rimae_Prinz_Colorized_Slope/LRO_LROC_DEM_Rimae_Prinz_Colorized_Slope.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rimae_Prinz_Colorized_Slope/LRO_NAC_Slope_27N318E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rimae_Prinz_Colorized_Slope/LRO_NAC_Slope_27N318E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rimae_Prinz_Grayscale/LRO_LROC_DEM_Rimae_Prinz_Grayscale.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rimae_Prinz_Grayscale/LRO_NAC_Gray_27N318E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rimae_Prinz_Grayscale/LRO_NAC_Gray_27N318E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rimae_Prinz_Hillshade/LRO_LROC_DEM_Rimae_Prinz_Hillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rimae_Prinz_Hillshade/LRO_NAC_Shade_27N318E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rimae_Prinz_Hillshade/LRO_NAC_Shade_27N318E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_15m_Color_Roughness/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_15m_Color_Roughness.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_60S200E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_15m_Color_Roughness_Hazard/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_15m_Color_Roughness_Hazard.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_60S200E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_60S200E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_15m_Color_Slope/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_15m_Color_Slope.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_15m_Color_Slope/LRO_NAC_ClrSlope_15m_60S200E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_15m_Color_Slope/LRO_NAC_ClrSlope_15m_60S200E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_15m_Color_Slope_Hazard/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_15m_Color_Slope_Hazard.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_60S200E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_60S200E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_3m_Color_Roughness/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_3m_Color_Roughness.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_60S200E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_60S200E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_3m_Color_Roughness_Hazard/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_3m_Color_Roughness_Hazard.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_60S200E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_60S200E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_3m_Color_Slope/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_3m_Color_Slope.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_3m_Color_Slope/LRO_NAC_ClrSlope_3m_60S200E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_3m_Color_Slope/LRO_NAC_ClrSlope_3m_60S200E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_3m_Color_Slope_Hazard/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_3m_Color_Slope_Hazard.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_60S200E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_60S200E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_ColorHillshade/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_ColorHillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_ColorHillshade/LRO_NAC_ClrShade_60S200E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_ColorHillshade/LRO_NAC_ClrShade_60S200E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_Colorized_Confidence/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_Colorized_Confidence.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_Colorized_Confidence/LRO_NAC_ClrConf_60S200E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_Colorized_Confidence/LRO_NAC_ClrConf_60S200E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_Colorized_Slope/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_Colorized_Slope.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_Colorized_Slope/LRO_NAC_Slope_60S200E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_Colorized_Slope/LRO_NAC_Slope_60S200E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_Grayscale/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_Grayscale.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_Grayscale/LRO_NAC_Gray_60S200E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_Grayscale/LRO_NAC_Gray_60S200E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_Hillshade/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_Hillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_Hillshade/LRO_NAC_Shade_60S200E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_Hillshade/LRO_NAC_Shade_60S200E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Rim_ColorHillshade/LRO_LROC_DEM_South_Pole-Aitken_Rim_ColorHillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Rim_ColorHillshade/LRO_NAC_ClrShade_51S171E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Rim_ColorHillshade_Slope/LRO_LROC_DEM_South_Pole-Aitken_Rim_ColorHillshade_Slope.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Rim_ColorHillshade_Slope/LRO_NAC_Slope_51S171E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Rim_ColorHillshade_Slope/LRO_NAC_Slope_51S171E_2mp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Rim_Colorized_Confidence/LRO_LROC_DEM_South_Pole-Aitken_Rim_Colorized_Confidence.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Rim_Colorized_Confidence/LRO_NAC_ClrConf_51S171E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Rim_Colorized_Confidence/LRO_NAC_ClrConf_51S171E_2mp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Rim_Grayscale/LRO_LROC_DEM_South_Pole-Aitken_Rim_Grayscale.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Rim_Grayscale/LRO_NAC_Gray_51S171E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Rim_Grayscale/LRO_NAC_Gray_51S171E_2mp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Rim_Hillshade/LRO_LROC_DEM_South_Pole-Aitken_Rim_Hillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Rim_Hillshade/LRO_NAC_Shade_51S171E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Rim_Hillshade/LRO_NAC_Shade_51S171E_2mp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_ColorHillshade/LRO_LROC_DEM_Stratton_(Dewar)_ColorHillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_ColorHillshade/LRO_NAC_ClrShade_02S167E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_Colorized_Confidence/LRO_LROC_DEM_Stratton_(Dewar)_Colorized_Confidence.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_Colorized_Confidence/LRO_NAC_ClrConf_02S167E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_Colorized_Confidence/LRO_NAC_ClrConf_02S167E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_Colorized_Slope/LRO_LROC_DEM_Stratton_(Dewar)_Colorized_Slope.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_Colorized_Slope/LRO_NAC_Slope_02S167E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_Colorized_Slope/LRO_NAC_Slope_02S167E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_Grayscale/LRO_LROC_DEM_Stratton_(Dewar)_Grayscale.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_Grayscale/LRO_NAC_Gray_02S167E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_Grayscale/LRO_NAC_Gray_02S167E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_15m_Color_Roughness/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_15m_Color_Roughness.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_02S167E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_15m_Color_Roughness_Hazard.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_02S167E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_02S167E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_15m_Color_Slope/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_15m_Color_Slope.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_15m_Color_Slope/LRO_NAC_ClrSlope_15m_02S167E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_15m_Color_Slope/LRO_NAC_ClrSlope_15m_02S167E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_15m_Color_Slope_Hazard/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_15m_Color_Slope_Hazard.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_02S167E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_02S167E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_3m_Color_Roughness/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_3m_Color_Roughness.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_02S167E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_02S167E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_3m_Color_Roughness_Hazard/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_3m_Color_Roughness_Hazard.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_02S167E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_02S167E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_3m_Color_Slope/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_3m_Color_Slope.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_3m_Color_Slope/LRO_NAC_ClrSlope_3m_02S167E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_3m_Color_Slope/LRO_NAC_ClrSlope_3m_02S167E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_3m_Color_Slope_Hazard/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_3m_Color_Slope_Hazard.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_02S167E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_02S167E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_Hillshade/LRO_LROC_DEM_Stratton_(Dewar)_Hillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_Hillshade/LRO_NAC_Shade_02S167E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_Hillshade/LRO_NAC_Shade_02S167E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_15m_Color_Roughness/LRO_LROC_DEM_Sulpicius_Gallus_15m_Color_Roughness.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_20N010E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Sulpicius_Gallus_15m_Color_Roughness_Hazard.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_20N010E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_20N010E_2mp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_15m_Color_Slope/LRO_LROC_DEM_Sulpicius_Gallus_15m_Color_Slope.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_15m_Color_Slope/LRO_NAC_ClrSlope_15m_20N010E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_15m_Color_Slope/LRO_NAC_ClrSlope_15m_20N010E_2mp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_15m_Color_Slope_Hazard/LRO_LROC_DEM_Sulpicius_Gallus_15m_Color_Slope_Hazard.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_20N010E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_20N010E_2mp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_4m_Color_Roughness/LRO_LROC_DEM_Sulpicius_Gallus_4m_Color_Roughness.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_4m_Color_Roughness/LRO_NAC_ClrRoughness_4m_20N010E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_4m_Color_Roughness/LRO_NAC_ClrRoughness_4m_20N010E_2mp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_4m_Color_Roughness_Hazard/LRO_LROC_DEM_Sulpicius_Gallus_4m_Color_Roughness_Hazard.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_4m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_4m_20N010E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_4m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_4m_20N010E_2mp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_4m_Color_Slope/LRO_LROC_DEM_Sulpicius_Gallus_4m_Color_Slope.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_4m_Color_Slope/LRO_NAC_ClrSlope_4m_20N010E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_4m_Color_Slope/LRO_NAC_ClrSlope_4m_20N010E_2mp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_4m_Color_Slope_Hazard/LRO_LROC_DEM_Sulpicius_Gallus_4m_Color_Slope_Hazard.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_4m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_4m_20N010E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_4m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_4m_20N010E_2mp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_ColorHillshade/LRO_LROC_DEM_Sulpicius_Gallus_ColorHillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_ColorHillshade/LRO_NAC_ClrShade_20N010E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_ColorHillshade/LRO_NAC_ClrShade_20N010E_2mp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_ColorHillshade_Slope/LRO_LROC_DEM_Sulpicius_Gallus_ColorHillshade_Slope.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_ColorHillshade_Slope/LRO_NAC_Slope_20N010E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_ColorHillshade_Slope/LRO_NAC_Slope_20N010E_2mp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_Colorized_Confidence/LRO_LROC_DEM_Sulpicius_Gallus_Colorized_Confidence.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_Colorized_Confidence/LRO_NAC_ClrConf_20N010E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_Colorized_Confidence/LRO_NAC_ClrConf_20N010E_2mp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_Grayscale/LRO_LROC_DEM_Sulpicius_Gallus_Grayscale.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_Grayscale/LRO_NAC_Gray_20N010E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_Grayscale/LRO_NAC_Gray_20N010E_2mp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_Hillshade/LRO_LROC_DEM_Sulpicius_Gallus_Hillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_Hillshade/LRO_NAC_Shade_20N010E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_Hillshade/LRO_NAC_Shade_20N010E_2mp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_15m_Color_Roughness/LRO_LROC_DEM_Tsiolkovskiy_Crater_15m_Color_Roughness.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_19S129E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Tsiolkovskiy_Crater_15m_Color_Roughness_Hazard.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_19S129E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_19S129E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_15m_Color_Slope/LRO_LROC_DEM_Tsiolkovskiy_Crater_15m_Color_Slope.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_15m_Color_Slope/LRO_NAC_ClrSlope_15m_19S129E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_15m_Color_Slope/LRO_NAC_ClrSlope_15m_19S129E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_15m_Color_Slope_Hazard/LRO_LROC_DEM_Tsiolkovskiy_Crater_15m_Color_Slope_Hazard.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_19S129E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_19S129E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_3m_Color_Roughness/LRO_LROC_DEM_Tsiolkovskiy_Crater_3m_Color_Roughness.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_19S129E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_19S129E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_3m_Color_Roughness_Hazard/LRO_LROC_DEM_Tsiolkovskiy_Crater_3m_Color_Roughness_Hazard.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_19S129E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_19S129E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_3m_Color_Slope/LRO_LROC_DEM_Tsiolkovskiy_Crater_3m_Color_Slope.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_3m_Color_Slope/LRO_NAC_ClrSlope_3m_19S129E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_3m_Color_Slope/LRO_NAC_ClrSlope_3m_19S129E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_3m_Color_Slope_Hazard/LRO_LROC_DEM_Tsiolkovskiy_Crater_3m_Color_Slope_Hazard.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_19S129E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_19S129E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_ColorHillshade/LRO_LROC_DEM_Tsiolkovskiy_Crater_ColorHillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_ColorHillshade/LRO_NAC_ClrShade_19S129E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_ColorHillshade/LRO_NAC_ClrShade_19S129E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_Colorized_Confidence/LRO_LROC_DEM_Tsiolkovskiy_Crater_Colorized_Confidence.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_Colorized_Confidence/LRO_NAC_ClrConf_19S129E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_Colorized_Confidence/LRO_NAC_ClrConf_19S129E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_Colorized_Slope/LRO_LROC_DEM_Tsiolkovskiy_Crater_Colorized_Slope.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_Colorized_Slope/LRO_NAC_Slope_19S129E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_Colorized_Slope/LRO_NAC_Slope_19S129E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_Grayscale/LRO_LROC_DEM_Tsiolkovskiy_Crater_Grayscale.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_Grayscale/LRO_NAC_Gray_19S129E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_Grayscale/LRO_NAC_Gray_19S129E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_Hillshade/LRO_LROC_DEM_Tsiolkovskiy_Crater_Hillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_Hillshade/LRO_NAC_Shade_19S129E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_Hillshade/LRO_NAC_Shade_19S129E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_15m_Color_Roughness/LRO_LROC_DEM_Tycho_Crater_15m_Color_Roughness.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_43S349E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Tycho_Crater_15m_Color_Roughness_Hazard.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_43S349E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_43S349E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_15m_Color_Slope/LRO_LROC_DEM_Tycho_Crater_15m_Color_Slope.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_15m_Color_Slope/LRO_NAC_ClrSlope_15m_43S349E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_15m_Color_Slope/LRO_NAC_ClrSlope_15m_43S349E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_15m_Color_Slope_Hazard/LRO_LROC_DEM_Tycho_Crater_15m_Color_Slope_Hazard.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_43S349E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_43S349E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_3m_Color_Roughness/LRO_LROC_DEM_Tycho_Crater_3m_Color_Roughness.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_43S349E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_43S349E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_3m_Color_Roughness_Hazard/LRO_LROC_DEM_Tycho_Crater_3m_Color_Roughness_Hazard.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_43S349E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_43S349E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_3m_Color_Slope/LRO_LROC_DEM_Tycho_Crater_3m_Color_Slope.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_3m_Color_Slope/LRO_NAC_ClrSlope_3m_43S349E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_3m_Color_Slope/LRO_NAC_ClrSlope_3m_43S349E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_3m_Color_Slope_Hazard/LRO_LROC_DEM_Tycho_Crater_3m_Color_Slope_Hazard.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_43S349E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_43S349E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_ColorHillshade/LRO_LROC_DEM_Tycho_Crater_ColorHillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_ColorHillshade/LRO_NAC_ClrShade_43S349E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_ColorHillshade/LRO_NAC_ClrShade_43S349E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_Colorized_Confidence/LRO_LROC_DEM_Tycho_Crater_Colorized_Confidence.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_Colorized_Confidence/LRO_NAC_ClrConf_43S349E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_Colorized_Confidence/LRO_NAC_ClrConf_43S349E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_Colorized_Slope/LRO_LROC_DEM_Tycho_Crater_Colorized_Slope.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_Colorized_Slope/LRO_NAC_Slope_43S349E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_Colorized_Slope/LRO_NAC_Slope_43S349E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_Grayscale/LRO_LROC_DEM_Tycho_Crater_Grayscale.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_Grayscale/LRO_NAC_Gray_43S349E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_Grayscale/LRO_NAC_Gray_43S349E_150cmp.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_Hillshade/LRO_LROC_DEM_Tycho_Crater_Hillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_Hillshade/LRO_NAC_Shade_43S349E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_Hillshade/LRO_NAC_Shade_43S349E_150cmp.wms create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic.asset create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Aitken_Crater.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Image_Mosaic_Aitken_Crater/LRO_NAC_Mosaic_17S173E_50cmp.wms => LRO_LROC_Image_Mosaic/Aitken_Crater.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Alphonsus.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Image_Mosaic_Alphonsus/LRO_NAC_Mosaic_13S358E_50cmp.wms => LRO_LROC_Image_Mosaic/Alphonsus.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Apollo_15.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Image_Mosaic_Apollo_15/LRO_NAC_Mosaic_26N004E_50cmp.wms => LRO_LROC_Image_Mosaic/Apollo_15.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Apollo_16.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Image_Mosaic_Apollo_16/LRO_NAC_Mosaic_09S015E_50cmp.wms => LRO_LROC_Image_Mosaic/Apollo_16.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Aristarchus_1.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Image_Mosaic_Aristarchus_1/LRO_NAC_Mosaic_25N311E_50cmp.wms => LRO_LROC_Image_Mosaic/Aristarchus_1.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Aristarchus_2.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Image_Mosaic_Aristarchus_2/LRO_NAC_Mosaic_28N307E_50cmp.wms => LRO_LROC_Image_Mosaic/Aristarchus_2.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Balmer_Basin.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Image_Mosaic_Balmer_Basin/LRO_NAC_Mosaic_19S070E_50cmp.wms => LRO_LROC_Image_Mosaic/Balmer_Basin.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Compton_Belkovich_Th_Anomaly.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Image_Mosaic_Compton_Belkovich_Th_Anomaly/LRO_NAC_Mosaic_61N099E_50cmp.wms => LRO_LROC_Image_Mosaic/Compton_Belkovich_Th_Anomaly.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Flamsteed_Crater.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Image_Mosaic_Flamsteed_Crater/LRO_NAC_Mosaic_02S317E_50cmp.wms => LRO_LROC_Image_Mosaic/Flamsteed_Crater.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Gruithuisen_Domes.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Image_Mosaic_Gruithuisen_Domes/LRO_NAC_Mosaic_36N320E_50cmp.wms => LRO_LROC_Image_Mosaic/Gruithuisen_Domes.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Hertzsprung.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Image_Mosaic_Hertzsprung/LRO_NAC_Mosaic_00N234E_50cmp.wms => LRO_LROC_Image_Mosaic/Hertzsprung.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Hortensius_Domes.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Image_Mosaic_Hortensius_Domes/LRO_NAC_Mosaic_08N332E_50cmp.wms => LRO_LROC_Image_Mosaic/Hortensius_Domes.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Humboldtianum_Basin.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Image_Mosaic_Humboldtianum_Basin/LRO_NAC_Mosaic_55N077E_50cmp.wms => LRO_LROC_Image_Mosaic/Humboldtianum_Basin.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Ina_D-Caldera.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Image_Mosaic_Ina_D-Caldera/LRO_NAC_Mosaic_19N005E_50cmp.wms => LRO_LROC_Image_Mosaic/Ina_D-Caldera.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/King_Crater.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Image_Mosaic_King_Crater/LRO_NAC_Mosaic_06N120E_50cmp.wms => LRO_LROC_Image_Mosaic/King_Crater.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Lichtenberg_Crater.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Image_Mosaic_Lichtenberg_Crater/LRO_NAC_Mosaic_32N292E_50cmp.wms => LRO_LROC_Image_Mosaic/Lichtenberg_Crater.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Mare_Ingenii.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Image_Mosaic_Mare_Ingenii/LRO_NAC_Mosaic_36S164E_70cmp.wms => LRO_LROC_Image_Mosaic/Mare_Ingenii.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Mare_Moscoviense.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Image_Mosaic_Mare_Moscoviense/LRO_NAC_Mosaic_26N150E_50cmp.wms => LRO_LROC_Image_Mosaic/Mare_Moscoviense.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Mare_Smythii.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Image_Mosaic_Mare_Smythii/LRO_NAC_Mosaic_02N085E_50cmp.wms => LRO_LROC_Image_Mosaic/Mare_Smythii.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Mare_Tranquillitatis.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Image_Mosaic_Mare_Tranquillitatis/LRO_NAC_Mosaic_07N022E_50cmp.wms => LRO_LROC_Image_Mosaic/Mare_Tranquillitatis.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Marius_Hills.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Image_Mosaic_Marius_Hills/LRO_NAC_Mosaic_14N304E_50cmp.wms => LRO_LROC_Image_Mosaic/Marius_Hills.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Montes_Pyrenaeus.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Image_Mosaic_Montes_Pyrenaeus/LRO_NAC_Mosaic_16S041E_50cmp.wms => LRO_LROC_Image_Mosaic/Montes_Pyrenaeus.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Murchison_Crater.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Image_Mosaic_Murchison_Crater/LRO_NAC_Mosaic_05N000E_50cmp.wms => LRO_LROC_Image_Mosaic/Murchison_Crater.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Orientale_1.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Image_Mosaic_Orientale_1/LRO_NAC_Mosaic_26S265E_50cmp.wms => LRO_LROC_Image_Mosaic/Orientale_1.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Reiner_Gamma.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Image_Mosaic_Reiner_Gamma/LRO_NAC_Mosaic_07N301E_50cmp.wms => LRO_LROC_Image_Mosaic/Reiner_Gamma.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Riccioli_Crater.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Image_Mosaic_Riccioli_Crater/LRO_NAC_Mosaic_03S286E_50cmp.wms => LRO_LROC_Image_Mosaic/Riccioli_Crater.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Rima_Bode.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Image_Mosaic_Rima_Bode/LRO_NAC_Mosaic_13N356E_50cmp.wms => LRO_LROC_Image_Mosaic/Rima_Bode.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Rimae_Prinz.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Image_Mosaic_Rimae_Prinz/LRO_NAC_Mosaic_27N318E_50cmp.wms => LRO_LROC_Image_Mosaic/Rimae_Prinz.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/South_Pole-Aitken_Basin_Interior.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Image_Mosaic_South_Pole-Aitken_Basin_Interior/LRO_NAC_Mosaic_60S200E_50cmp.wms => LRO_LROC_Image_Mosaic/South_Pole-Aitken_Basin_Interior.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/South_Pole-Aitken_Rim.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Image_Mosaic_South_Pole-Aitken_Rim/LRO_NAC_Mosaic_51S171E_60cmp.wms => LRO_LROC_Image_Mosaic/South_Pole-Aitken_Rim.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Stratton_Dewar.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Image_Mosaic_Stratton_(Dewar)/LRO_NAC_Mosaic_02S167E_50cmp.wms => LRO_LROC_Image_Mosaic/Stratton_Dewar.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Sulpicius_Gallus.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Image_Mosaic_Sulpicius_Gallus/LRO_NAC_Mosaic_20N010E_60cmp.wms => LRO_LROC_Image_Mosaic/Sulpicius_Gallus.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Tsiolkovskiy_Crater.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Image_Mosaic_Tsiolkovskiy_Crater/LRO_NAC_Mosaic_19S129E_50cmp.wms => LRO_LROC_Image_Mosaic/Tsiolkovskiy_Crater.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Tycho_Crater.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Image_Mosaic_Tycho_Crater/LRO_NAC_Mosaic_43S349E_50cmp.wms => LRO_LROC_Image_Mosaic/Tycho_Crater.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_26cm.asset create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_26cm/Apollo_11.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Image_Mosaic_26cm_Apollo_11/apollo11_26cm_mosaic_byte_geo_1_2_highContrast.wms => LRO_LROC_Image_Mosaic_26cm/Apollo_11.wms} (100%) delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_26cm_Apollo_11/LRO_LROC_Image_Mosaic_26cm_Apollo_11.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_26cm_Apollo_11/apollo11_26cm_mosaic_byte_geo_1_2_highContrast.vrt create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_28cm.asset create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_28cm/Apollo_14.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Image_Mosaic_28cm_Apollo_14/apollo14_28cm_mosaic_byte_geo_1_2_highContrast.wms => LRO_LROC_Image_Mosaic_28cm/Apollo_14.wms} (100%) delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_28cm_Apollo_14/LRO_LROC_Image_Mosaic_28cm_Apollo_14.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_28cm_Apollo_14/apollo14_28cm_mosaic_byte_geo_1_2_highContrast.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Aitken_Crater/LRO_LROC_Image_Mosaic_Aitken_Crater.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Aitken_Crater/LRO_NAC_Mosaic_17S173E_50cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Alphonsus/LRO_LROC_Image_Mosaic_Alphonsus.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Alphonsus/LRO_NAC_Mosaic_13S358E_50cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Apollo_15/LRO_LROC_Image_Mosaic_Apollo_15.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Apollo_15/LRO_NAC_Mosaic_26N004E_50cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Apollo_16/LRO_LROC_Image_Mosaic_Apollo_16.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Apollo_16/LRO_NAC_Mosaic_09S015E_50cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Aristarchus_1/LRO_LROC_Image_Mosaic_Aristarchus_1.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Aristarchus_1/LRO_NAC_Mosaic_25N311E_50cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Aristarchus_2/LRO_LROC_Image_Mosaic_Aristarchus_2.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Aristarchus_2/LRO_NAC_Mosaic_28N307E_50cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Balmer_Basin/LRO_LROC_Image_Mosaic_Balmer_Basin.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Balmer_Basin/LRO_NAC_Mosaic_19S070E_50cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Compton_Belkovich_Th_Anomaly/LRO_LROC_Image_Mosaic_Compton_Belkovich_Th_Anomaly.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Compton_Belkovich_Th_Anomaly/LRO_NAC_Mosaic_61N099E_50cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Flamsteed_Crater/LRO_LROC_Image_Mosaic_Flamsteed_Crater.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Flamsteed_Crater/LRO_NAC_Mosaic_02S317E_50cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Gruithuisen_Domes/LRO_LROC_Image_Mosaic_Gruithuisen_Domes.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Gruithuisen_Domes/LRO_NAC_Mosaic_36N320E_50cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Hertzsprung/LRO_LROC_Image_Mosaic_Hertzsprung.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Hertzsprung/LRO_NAC_Mosaic_00N234E_50cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Hortensius_Domes/LRO_LROC_Image_Mosaic_Hortensius_Domes.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Hortensius_Domes/LRO_NAC_Mosaic_08N332E_50cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Humboldtianum_Basin/LRO_LROC_Image_Mosaic_Humboldtianum_Basin.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Humboldtianum_Basin/LRO_NAC_Mosaic_55N077E_50cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Ina_D-Caldera/LRO_LROC_Image_Mosaic_Ina_D-Caldera.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Ina_D-Caldera/LRO_NAC_Mosaic_19N005E_50cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_King_Crater/LRO_LROC_Image_Mosaic_King_Crater.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_King_Crater/LRO_NAC_Mosaic_06N120E_50cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Lichtenberg_Crater/LRO_LROC_Image_Mosaic_Lichtenberg_Crater.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Lichtenberg_Crater/LRO_NAC_Mosaic_32N292E_50cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Mare_Ingenii/LRO_LROC_Image_Mosaic_Mare_Ingenii.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Mare_Ingenii/LRO_NAC_Mosaic_36S164E_70cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Mare_Moscoviense/LRO_LROC_Image_Mosaic_Mare_Moscoviense.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Mare_Moscoviense/LRO_NAC_Mosaic_26N150E_50cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Mare_Smythii/LRO_LROC_Image_Mosaic_Mare_Smythii.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Mare_Smythii/LRO_NAC_Mosaic_02N085E_50cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Mare_Tranquillitatis/LRO_LROC_Image_Mosaic_Mare_Tranquillitatis.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Mare_Tranquillitatis/LRO_NAC_Mosaic_07N022E_50cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Marius_Hills/LRO_LROC_Image_Mosaic_Marius_Hills.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Marius_Hills/LRO_NAC_Mosaic_14N304E_50cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Montes_Pyrenaeus/LRO_LROC_Image_Mosaic_Montes_Pyrenaeus.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Montes_Pyrenaeus/LRO_NAC_Mosaic_16S041E_50cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Murchison_Crater/LRO_LROC_Image_Mosaic_Murchison_Crater.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Murchison_Crater/LRO_NAC_Mosaic_05N000E_50cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Orientale_1/LRO_LROC_Image_Mosaic_Orientale_1.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Orientale_1/LRO_NAC_Mosaic_26S265E_50cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Reiner_Gamma/LRO_LROC_Image_Mosaic_Reiner_Gamma.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Reiner_Gamma/LRO_NAC_Mosaic_07N301E_50cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Riccioli_Crater/LRO_LROC_Image_Mosaic_Riccioli_Crater.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Riccioli_Crater/LRO_NAC_Mosaic_03S286E_50cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Rima_Bode/LRO_LROC_Image_Mosaic_Rima_Bode.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Rima_Bode/LRO_NAC_Mosaic_13N356E_50cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Rimae_Prinz/LRO_LROC_Image_Mosaic_Rimae_Prinz.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Rimae_Prinz/LRO_NAC_Mosaic_27N318E_50cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_South_Pole-Aitken_Basin_Interior/LRO_LROC_Image_Mosaic_South_Pole-Aitken_Basin_Interior.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_South_Pole-Aitken_Basin_Interior/LRO_NAC_Mosaic_60S200E_50cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_South_Pole-Aitken_Rim/LRO_LROC_Image_Mosaic_South_Pole-Aitken_Rim.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_South_Pole-Aitken_Rim/LRO_NAC_Mosaic_51S171E_60cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Stratton_(Dewar)/LRO_LROC_Image_Mosaic_Stratton_(Dewar).asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Stratton_(Dewar)/LRO_NAC_Mosaic_02S167E_50cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Sulpicius_Gallus/LRO_LROC_Image_Mosaic_Sulpicius_Gallus.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Sulpicius_Gallus/LRO_NAC_Mosaic_20N010E_60cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Tsiolkovskiy_Crater/LRO_LROC_Image_Mosaic_Tsiolkovskiy_Crater.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Tsiolkovskiy_Crater/LRO_NAC_Mosaic_19S129E_50cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Tycho_Crater/LRO_LROC_Image_Mosaic_Tycho_Crater.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Tycho_Crater/LRO_NAC_Mosaic_43S349E_50cmp.vrt create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Mosaic.asset create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Mosaic/Fresh_Crater_East_of_Lents.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Mosaic_Fresh_Crater_East_of_Lents/LRO_NAC_Mosaic_03N280E_70cm.wms => LRO_LROC_Mosaic/Fresh_Crater_East_of_Lents.wms} (100%) delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Mosaic_Fresh_Crater_East_of_Lents/LRO_LROC_Mosaic_Fresh_Crater_East_of_Lents.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Mosaic_Fresh_Crater_East_of_Lents/LRO_NAC_Mosaic_03N280E_70cm.vrt create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_NAC_Image_Mosaic.asset create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_NAC_Image_Mosaic/N_Pole.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_NAC_Image_Mosaic_N_Pole_Avg_Merge/LRO_NAC_AvgMosaic_NPole855_1mp_EQ.wms => LRO_LROC_NAC_Image_Mosaic/N_Pole.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_NAC_Image_Mosaic/S_Pole.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_NAC_Image_Mosaic_S_Pole_Avg_Merge/LRO_NAC_AvgMosaic_SPole855_1mp_EQ.wms => LRO_LROC_NAC_Image_Mosaic/S_Pole.wms} (100%) delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_NAC_Image_Mosaic_N_Pole_Avg_Merge/LRO_LROC_NAC_Image_Mosaic_N_Pole_Avg_Merge.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_NAC_Image_Mosaic_N_Pole_Avg_Merge/LRO_NAC_AvgMosaic_NPole855_1mp_EQ.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_NAC_Image_Mosaic_S_Pole_Avg_Merge/LRO_LROC_NAC_Image_Mosaic_S_Pole_Avg_Merge.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_NAC_Image_Mosaic_S_Pole_Avg_Merge/LRO_NAC_AvgMosaic_SPole855_1mp_EQ.vrt create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance.asset create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Aitken_Crater.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Rock_Abundance_Aitken_Crater/LRO_NAC_RockAbnd_17S173E_150cmp.wms => LRO_LROC_Rock_Abundance/Aitken_Crater.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Alphonsus_Crater.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Rock_Abundance_Alphonsus_Crater/LRO_NAC_RockAbnd_13S358E_2mp.wms => LRO_LROC_Rock_Abundance/Alphonsus_Crater.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Anaxagoras_Crater.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Rock_Abundance_Anaxagoras_Crater/LRO_NAC_RockAbnd_73N350E_150cmp.wms => LRO_LROC_Rock_Abundance/Anaxagoras_Crater.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Apollo_15.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Rock_Abundance_Apollo_15/LRO_NAC_RockAbnd_26N004E_150cmp.wms => LRO_LROC_Rock_Abundance/Apollo_15.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Apollo_16.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Rock_Abundance_Apollo_16/LRO_NAC_RockAbnd_09S015E_150cmp.wms => LRO_LROC_Rock_Abundance/Apollo_16.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Apollo_Basin.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Rock_Abundance_Apollo_Basin/LRO_NAC_RockAbnd_37S206E_150cmp.wms => LRO_LROC_Rock_Abundance/Apollo_Basin.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Aristarchus_1.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Rock_Abundance_Aristarchus_1/LRO_NAC_RockAbnd_25N311E_2mp.wms => LRO_LROC_Rock_Abundance/Aristarchus_1.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Aristarchus_2.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Rock_Abundance_Aristarchus_2/LRO_NAC_RockAbnd_28N307E_150cmp.wms => LRO_LROC_Rock_Abundance/Aristarchus_2.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Balmer_Basin.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Rock_Abundance_Balmer_Basin/LRO_NAC_RockAbnd_19S070E_150cmp.wms => LRO_LROC_Rock_Abundance/Balmer_Basin.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Bullialdus_Crater.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Rock_Abundance_Bullialdus_Crater/LRO_NAC_RockAbnd_20S337E_400cmp.wms => LRO_LROC_Rock_Abundance/Bullialdus_Crater.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Gruithuisen_Domes.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Rock_Abundance_Gruithuisen_Domes/LRO_NAC_RockAbnd_36N320E_2mp.wms => LRO_LROC_Rock_Abundance/Gruithuisen_Domes.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Hertzsprung.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Rock_Abundance_Hertzsprung/LRO_NAC_RockAbnd_00N234E_150cmp.wms => LRO_LROC_Rock_Abundance/Hertzsprung.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Hortensius_Domes.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Rock_Abundance_Hortensius_Domes/LRO_NAC_RockAbnd_08N332E_2mp.wms => LRO_LROC_Rock_Abundance/Hortensius_Domes.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/King_Crater.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Rock_Abundance_King_Crater/LRO_NAC_RockAbnd_06N120E_200cmp.wms => LRO_LROC_Rock_Abundance/King_Crater.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Lichtenberg_Crater.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Rock_Abundance_Lichtenberg_Crater/LRO_NAC_RockAbnd_32N292E_2mp.wms => LRO_LROC_Rock_Abundance/Lichtenberg_Crater.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Mare_Crisium.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Rock_Abundance_Mare_Crisium/LRO_NAC_RockAbnd_10N058E_150cmp.wms => LRO_LROC_Rock_Abundance/Mare_Crisium.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Montes_Pyrenaeus.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Rock_Abundance_Montes_Pyrenaeus/LRO_NAC_RockAbnd_16S041E_150cmp.wms => LRO_LROC_Rock_Abundance/Montes_Pyrenaeus.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Orientale_1.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Rock_Abundance_Orientale_1/LRO_NAC_RockAbnd_26S265E_200cmp.wms => LRO_LROC_Rock_Abundance/Orientale_1.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Plato_Ejecta.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Rock_Abundance_Plato_Ejecta/LRO_NAC_RockAbnd_53N354E_150cmp.wms => LRO_LROC_Rock_Abundance/Plato_Ejecta.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/South_Pole-Aitken_Basin_Interior.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Rock_Abundance_South_Pole-Aitken_Basin_Interior/LRO_NAC_RockAbnd_60S200E_150cmp.wms => LRO_LROC_Rock_Abundance/South_Pole-Aitken_Basin_Interior.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Stratton_Dewar_High_Fe_Anomaly.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Rock_Abundance_Stratton_(Dewar)_High_Fe_Anomaly/LRO_NAC_RockAbnd_02S167E_150cmp.wms => LRO_LROC_Rock_Abundance/Stratton_Dewar_High_Fe_Anomaly.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Sulpicius_Gallus.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Rock_Abundance_Sulpicius_Gallus/LRO_NAC_RockAbnd_20N010E_2mp.wms => LRO_LROC_Rock_Abundance/Sulpicius_Gallus.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Tycho_Crater.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Rock_Abundance_Tycho_Crater/LRO_NAC_RockAbnd_43S349E_150cmp.wms => LRO_LROC_Rock_Abundance/Tycho_Crater.wms} (100%) delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Aitken_Crater/LRO_LROC_Rock_Abundance_Aitken_Crater.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Aitken_Crater/LRO_NAC_RockAbnd_17S173E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Alphonsus_Crater/LRO_LROC_Rock_Abundance_Alphonsus_Crater.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Alphonsus_Crater/LRO_NAC_RockAbnd_13S358E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Anaxagoras_Crater/LRO_LROC_Rock_Abundance_Anaxagoras_Crater.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Anaxagoras_Crater/LRO_NAC_RockAbnd_73N350E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Apollo_15/LRO_LROC_Rock_Abundance_Apollo_15.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Apollo_15/LRO_NAC_RockAbnd_26N004E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Apollo_16/LRO_LROC_Rock_Abundance_Apollo_16.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Apollo_16/LRO_NAC_RockAbnd_09S015E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Apollo_Basin/LRO_LROC_Rock_Abundance_Apollo_Basin.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Apollo_Basin/LRO_NAC_RockAbnd_37S206E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Aristarchus_1/LRO_LROC_Rock_Abundance_Aristarchus_1.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Aristarchus_1/LRO_NAC_RockAbnd_25N311E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Aristarchus_2/LRO_LROC_Rock_Abundance_Aristarchus_2.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Aristarchus_2/LRO_NAC_RockAbnd_28N307E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Balmer_Basin/LRO_LROC_Rock_Abundance_Balmer_Basin.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Balmer_Basin/LRO_NAC_RockAbnd_19S070E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Bullialdus_Crater/LRO_LROC_Rock_Abundance_Bullialdus_Crater.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Bullialdus_Crater/LRO_NAC_RockAbnd_20S337E_400cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Gruithuisen_Domes/LRO_LROC_Rock_Abundance_Gruithuisen_Domes.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Gruithuisen_Domes/LRO_NAC_RockAbnd_36N320E_2mp.vrt create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard.asset create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Aitken_Crater.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Rock_Abundance_Hazard_Aitken_Crater/LRO_NAC_RockAbndHaz_17S173E_150cmp.wms => LRO_LROC_Rock_Abundance_Hazard/Aitken_Crater.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Alphonsus_Crater.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Rock_Abundance_Hazard_Alphonsus_Crater/LRO_NAC_RockAbndHaz_13S358E_2mp.wms => LRO_LROC_Rock_Abundance_Hazard/Alphonsus_Crater.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Anaxagoras_Crater.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Rock_Abundance_Hazard_Anaxagoras_Crater/LRO_NAC_RockAbndHaz_73N350E_150cmp.wms => LRO_LROC_Rock_Abundance_Hazard/Anaxagoras_Crater.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Apollo_15.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Rock_Abundance_Hazard_Apollo_15/LRO_NAC_RockAbndHaz_26N004E_150cmp.wms => LRO_LROC_Rock_Abundance_Hazard/Apollo_15.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Apollo_16.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Rock_Abundance_Hazard_Apollo_16/LRO_NAC_RockAbndHaz_09S015E_150cmp.wms => LRO_LROC_Rock_Abundance_Hazard/Apollo_16.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Apollo_Basin.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Rock_Abundance_Hazard_Apollo_Basin/LRO_NAC_RockAbndHaz_37S206E_150cmp.wms => LRO_LROC_Rock_Abundance_Hazard/Apollo_Basin.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Aristarchus_1.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Rock_Abundance_Hazard_Aristarchus_1/LRO_NAC_RockAbndHaz_25N311E_2mp.wms => LRO_LROC_Rock_Abundance_Hazard/Aristarchus_1.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Aristarchus_2.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Rock_Abundance_Hazard_Aristarchus_2/LRO_NAC_RockAbndHaz_28N307E_150cmp.wms => LRO_LROC_Rock_Abundance_Hazard/Aristarchus_2.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Balmer_Basin.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Rock_Abundance_Hazard_Balmer_Basin/LRO_NAC_RockAbndHaz_19S070E_150cmp.wms => LRO_LROC_Rock_Abundance_Hazard/Balmer_Basin.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Bullialdus_Crater.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Rock_Abundance_Hazard_Bullialdus_Crater/LRO_NAC_RockAbndHaz_20S337E_400cmp.wms => LRO_LROC_Rock_Abundance_Hazard/Bullialdus_Crater.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Gruithuisen_Domes.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Rock_Abundance_Hazard_Gruithuisen_Domes/LRO_NAC_RockAbndHaz_36N320E_2mp.wms => LRO_LROC_Rock_Abundance_Hazard/Gruithuisen_Domes.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Hertzsprung.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Rock_Abundance_Hazard_Hertzsprung/LRO_NAC_RockAbndHaz_00N234E_150cmp.wms => LRO_LROC_Rock_Abundance_Hazard/Hertzsprung.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Hortensius_Domes.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Rock_Abundance_Hazard_Hortensius_Domes/LRO_NAC_RockAbndHaz_08N332E_2mp.wms => LRO_LROC_Rock_Abundance_Hazard/Hortensius_Domes.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/King_Crater.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Rock_Abundance_Hazard_King_Crater/LRO_NAC_RockAbndHaz_06N120E_200cmp.wms => LRO_LROC_Rock_Abundance_Hazard/King_Crater.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Lichtenberg_Crater.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Rock_Abundance_Hazard_Lichtenberg_Crater/LRO_NAC_RockAbndHaz_32N292E_2mp.wms => LRO_LROC_Rock_Abundance_Hazard/Lichtenberg_Crater.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Mare_Crisium.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Rock_Abundance_Hazard_Mare_Crisium/LRO_NAC_RockAbndHaz_10N058E_150cmp.wms => LRO_LROC_Rock_Abundance_Hazard/Mare_Crisium.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Montes_Pyrenaeus.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Rock_Abundance_Hazard_Montes_Pyrenaeus/LRO_NAC_RockAbndHaz_16S041E_150cmp.wms => LRO_LROC_Rock_Abundance_Hazard/Montes_Pyrenaeus.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Orientale_1.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Rock_Abundance_Hazard_Orientale_1/LRO_NAC_RockAbndHaz_26S265E_200cmp.wms => LRO_LROC_Rock_Abundance_Hazard/Orientale_1.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Plato_Ejecta.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Rock_Abundance_Hazard_Plato_Ejecta/LRO_NAC_RockAbndHaz_53N354E_150cmp.wms => LRO_LROC_Rock_Abundance_Hazard/Plato_Ejecta.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/South_Pole-Aitken_Basin_Interior.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Rock_Abundance_Hazard_South_Pole-Aitken_Basin_Interior/LRO_NAC_RockAbndHaz_60S200E_150cmp.wms => LRO_LROC_Rock_Abundance_Hazard/South_Pole-Aitken_Basin_Interior.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Stratton_Dewar_High_Fe_Anomaly.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Rock_Abundance_Hazard_Stratton_(Dewar)_High_Fe_Anomaly/LRO_NAC_RockAbndHaz_02S167E_150cmp.wms => LRO_LROC_Rock_Abundance_Hazard/Stratton_Dewar_High_Fe_Anomaly.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Sulpicius_Gallus.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Rock_Abundance_Hazard_Sulpicius_Gallus/LRO_NAC_RockAbndHaz_20N010E_2mp.wms => LRO_LROC_Rock_Abundance_Hazard/Sulpicius_Gallus.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Tycho_Crater.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Rock_Abundance_Hazard_Tycho_Crater/LRO_NAC_RockAbndHaz_43S349E_150cmp.wms => LRO_LROC_Rock_Abundance_Hazard/Tycho_Crater.wms} (100%) delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Aitken_Crater/LRO_LROC_Rock_Abundance_Hazard_Aitken_Crater.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Aitken_Crater/LRO_NAC_RockAbndHaz_17S173E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Alphonsus_Crater/LRO_LROC_Rock_Abundance_Hazard_Alphonsus_Crater.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Alphonsus_Crater/LRO_NAC_RockAbndHaz_13S358E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Anaxagoras_Crater/LRO_LROC_Rock_Abundance_Hazard_Anaxagoras_Crater.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Anaxagoras_Crater/LRO_NAC_RockAbndHaz_73N350E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Apollo_15/LRO_LROC_Rock_Abundance_Hazard_Apollo_15.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Apollo_15/LRO_NAC_RockAbndHaz_26N004E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Apollo_16/LRO_LROC_Rock_Abundance_Hazard_Apollo_16.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Apollo_16/LRO_NAC_RockAbndHaz_09S015E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Apollo_Basin/LRO_LROC_Rock_Abundance_Hazard_Apollo_Basin.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Apollo_Basin/LRO_NAC_RockAbndHaz_37S206E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Aristarchus_1/LRO_LROC_Rock_Abundance_Hazard_Aristarchus_1.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Aristarchus_1/LRO_NAC_RockAbndHaz_25N311E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Aristarchus_2/LRO_LROC_Rock_Abundance_Hazard_Aristarchus_2.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Aristarchus_2/LRO_NAC_RockAbndHaz_28N307E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Balmer_Basin/LRO_LROC_Rock_Abundance_Hazard_Balmer_Basin.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Balmer_Basin/LRO_NAC_RockAbndHaz_19S070E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Bullialdus_Crater/LRO_LROC_Rock_Abundance_Hazard_Bullialdus_Crater.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Bullialdus_Crater/LRO_NAC_RockAbndHaz_20S337E_400cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Gruithuisen_Domes/LRO_LROC_Rock_Abundance_Hazard_Gruithuisen_Domes.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Gruithuisen_Domes/LRO_NAC_RockAbndHaz_36N320E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Hertzsprung/LRO_LROC_Rock_Abundance_Hazard_Hertzsprung.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Hertzsprung/LRO_NAC_RockAbndHaz_00N234E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Hortensius_Domes/LRO_LROC_Rock_Abundance_Hazard_Hortensius_Domes.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Hortensius_Domes/LRO_NAC_RockAbndHaz_08N332E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_King_Crater/LRO_LROC_Rock_Abundance_Hazard_King_Crater.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_King_Crater/LRO_NAC_RockAbndHaz_06N120E_200cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Lichtenberg_Crater/LRO_LROC_Rock_Abundance_Hazard_Lichtenberg_Crater.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Lichtenberg_Crater/LRO_NAC_RockAbndHaz_32N292E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Mare_Crisium/LRO_LROC_Rock_Abundance_Hazard_Mare_Crisium.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Mare_Crisium/LRO_NAC_RockAbndHaz_10N058E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Montes_Pyrenaeus/LRO_LROC_Rock_Abundance_Hazard_Montes_Pyrenaeus.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Montes_Pyrenaeus/LRO_NAC_RockAbndHaz_16S041E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Orientale_1/LRO_LROC_Rock_Abundance_Hazard_Orientale_1.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Orientale_1/LRO_NAC_RockAbndHaz_26S265E_200cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Plato_Ejecta/LRO_LROC_Rock_Abundance_Hazard_Plato_Ejecta.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Plato_Ejecta/LRO_NAC_RockAbndHaz_53N354E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_South_Pole-Aitken_Basin_Interior/LRO_LROC_Rock_Abundance_Hazard_South_Pole-Aitken_Basin_Interior.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_South_Pole-Aitken_Basin_Interior/LRO_NAC_RockAbndHaz_60S200E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Stratton_(Dewar)_High_Fe_Anomaly/LRO_LROC_Rock_Abundance_Hazard_Stratton_(Dewar)_High_Fe_Anomaly.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Stratton_(Dewar)_High_Fe_Anomaly/LRO_NAC_RockAbndHaz_02S167E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Sulpicius_Gallus/LRO_LROC_Rock_Abundance_Hazard_Sulpicius_Gallus.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Sulpicius_Gallus/LRO_NAC_RockAbndHaz_20N010E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Tycho_Crater/LRO_LROC_Rock_Abundance_Hazard_Tycho_Crater.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Tycho_Crater/LRO_NAC_RockAbndHaz_43S349E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hertzsprung/LRO_LROC_Rock_Abundance_Hertzsprung.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hertzsprung/LRO_NAC_RockAbnd_00N234E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hortensius_Domes/LRO_LROC_Rock_Abundance_Hortensius_Domes.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hortensius_Domes/LRO_NAC_RockAbnd_08N332E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_King_Crater/LRO_LROC_Rock_Abundance_King_Crater.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_King_Crater/LRO_NAC_RockAbnd_06N120E_200cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Lichtenberg_Crater/LRO_LROC_Rock_Abundance_Lichtenberg_Crater.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Lichtenberg_Crater/LRO_NAC_RockAbnd_32N292E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Mare_Crisium/LRO_LROC_Rock_Abundance_Mare_Crisium.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Mare_Crisium/LRO_NAC_RockAbnd_10N058E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Montes_Pyrenaeus/LRO_LROC_Rock_Abundance_Montes_Pyrenaeus.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Montes_Pyrenaeus/LRO_NAC_RockAbnd_16S041E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Orientale_1/LRO_LROC_Rock_Abundance_Orientale_1.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Orientale_1/LRO_NAC_RockAbnd_26S265E_200cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Plato_Ejecta/LRO_LROC_Rock_Abundance_Plato_Ejecta.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Plato_Ejecta/LRO_NAC_RockAbnd_53N354E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_South_Pole-Aitken_Basin_Interior/LRO_LROC_Rock_Abundance_South_Pole-Aitken_Basin_Interior.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_South_Pole-Aitken_Basin_Interior/LRO_NAC_RockAbnd_60S200E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Stratton_(Dewar)_High_Fe_Anomaly/LRO_LROC_Rock_Abundance_Stratton_(Dewar)_High_Fe_Anomaly.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Stratton_(Dewar)_High_Fe_Anomaly/LRO_NAC_RockAbnd_02S167E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Sulpicius_Gallus/LRO_LROC_Rock_Abundance_Sulpicius_Gallus.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Sulpicius_Gallus/LRO_NAC_RockAbnd_20N010E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Tycho_Crater/LRO_LROC_Rock_Abundance_Tycho_Crater.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Tycho_Crater/LRO_NAC_RockAbnd_43S349E_150cmp.vrt create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density.asset create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Aitken_Crater.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Rock_Density_Aitken_Crater/LRO_NAC_RockDen_17S173E_150cmp.wms => LRO_LROC_Rock_Density/Aitken_Crater.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Alphonsus_Crater.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Rock_Density_Alphonsus_Crater/LRO_NAC_RockDen_13S358E_2mp.wms => LRO_LROC_Rock_Density/Alphonsus_Crater.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Anaxagoras_Crater.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Rock_Density_Anaxagoras_Crater/LRO_NAC_RockDen_73N350E_150cmp.wms => LRO_LROC_Rock_Density/Anaxagoras_Crater.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Apollo_15.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Rock_Density_Apollo_15/LRO_NAC_RockDen_26N004E_150cmp.wms => LRO_LROC_Rock_Density/Apollo_15.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Apollo_16.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Rock_Density_Apollo_16/LRO_NAC_RockDen_09S015E_150cmp.wms => LRO_LROC_Rock_Density/Apollo_16.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Apollo_Basin.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Rock_Density_Apollo_Basin/LRO_NAC_RockDen_37S206E_150cmp.wms => LRO_LROC_Rock_Density/Apollo_Basin.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Aristarchus_1.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Rock_Density_Aristarchus_1/LRO_NAC_RockDen_25N311E_2mp.wms => LRO_LROC_Rock_Density/Aristarchus_1.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Aristarchus_2.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Rock_Density_Aristarchus_2/LRO_NAC_RockDen_28N307E_150cmp.wms => LRO_LROC_Rock_Density/Aristarchus_2.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Balmer_Basin.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Rock_Density_Balmer_Basin/LRO_NAC_RockDen_19S070E_150cmp.wms => LRO_LROC_Rock_Density/Balmer_Basin.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Bullialdus_Crater.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Rock_Density_Bullialdus_Crater/LRO_NAC_RockDen_20S337E_400cmp.wms => LRO_LROC_Rock_Density/Bullialdus_Crater.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Gruithuisen_Domes.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Rock_Density_Gruithuisen_Domes/LRO_NAC_RockDen_36N320E_2mp.wms => LRO_LROC_Rock_Density/Gruithuisen_Domes.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Hazard_Aitken_Crater.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Rock_Density_Hazard_Aitken_Crater/LRO_NAC_RockDenHaz_17S173E_150cmp.wms => LRO_LROC_Rock_Density/Hazard_Aitken_Crater.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Hertzsprung.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Rock_Density_Hertzsprung/LRO_NAC_RockDen_00N234E_150cmp.wms => LRO_LROC_Rock_Density/Hertzsprung.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Hortensius_Domes.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Rock_Density_Hortensius_Domes/LRO_NAC_RockDen_08N332E_2mp.wms => LRO_LROC_Rock_Density/Hortensius_Domes.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/King_Crater.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Rock_Density_King_Crater/LRO_NAC_RockDen_06N120E_200cmp.wms => LRO_LROC_Rock_Density/King_Crater.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Lichtenberg_Crater.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Rock_Density_Lichtenberg_Crater/LRO_NAC_RockDen_32N292E_2mp.wms => LRO_LROC_Rock_Density/Lichtenberg_Crater.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Mare_Crisium.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Rock_Density_Mare_Crisium/LRO_NAC_RockDen_10N058E_150cmp.wms => LRO_LROC_Rock_Density/Mare_Crisium.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Montes_Pyrenaeus.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Rock_Density_Montes_Pyrenaeus/LRO_NAC_RockDen_16S041E_150cmp.wms => LRO_LROC_Rock_Density/Montes_Pyrenaeus.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Orientale_1.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Rock_Density_Orientale_1/LRO_NAC_RockDen_26S265E_200cmp.wms => LRO_LROC_Rock_Density/Orientale_1.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Plato_Ejecta.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Rock_Density_Plato_Ejecta/LRO_NAC_RockDen_53N354E_150cmp.wms => LRO_LROC_Rock_Density/Plato_Ejecta.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/South_Pole-Aitken_Basin_Interior.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Rock_Density_South_Pole-Aitken_Basin_Interior/LRO_NAC_RockDen_60S200E_150cmp.wms => LRO_LROC_Rock_Density/South_Pole-Aitken_Basin_Interior.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Stratton_Dewar_High_Fe_Anomaly.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Rock_Density_Stratton_(Dewar)_High_Fe_Anomaly/LRO_NAC_RockDen_02S167E_150cmp.wms => LRO_LROC_Rock_Density/Stratton_Dewar_High_Fe_Anomaly.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Sulpicius_Gallus.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Rock_Density_Sulpicius_Gallus/LRO_NAC_RockDen_20N010E_2mp.wms => LRO_LROC_Rock_Density/Sulpicius_Gallus.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Tycho_Crater.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Rock_Density_Tycho_Crater/LRO_NAC_RockDen_43S349E_150cmp.wms => LRO_LROC_Rock_Density/Tycho_Crater.wms} (100%) delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Aitken_Crater/LRO_LROC_Rock_Density_Aitken_Crater.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Aitken_Crater/LRO_NAC_RockDen_17S173E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Alphonsus_Crater/LRO_LROC_Rock_Density_Alphonsus_Crater.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Alphonsus_Crater/LRO_NAC_RockDen_13S358E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Anaxagoras_Crater/LRO_LROC_Rock_Density_Anaxagoras_Crater.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Anaxagoras_Crater/LRO_NAC_RockDen_73N350E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Apollo_15/LRO_LROC_Rock_Density_Apollo_15.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Apollo_15/LRO_NAC_RockDen_26N004E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Apollo_16/LRO_LROC_Rock_Density_Apollo_16.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Apollo_16/LRO_NAC_RockDen_09S015E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Apollo_Basin/LRO_LROC_Rock_Density_Apollo_Basin.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Apollo_Basin/LRO_NAC_RockDen_37S206E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Aristarchus_1/LRO_LROC_Rock_Density_Aristarchus_1.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Aristarchus_1/LRO_NAC_RockDen_25N311E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Aristarchus_2/LRO_LROC_Rock_Density_Aristarchus_2.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Aristarchus_2/LRO_NAC_RockDen_28N307E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Balmer_Basin/LRO_LROC_Rock_Density_Balmer_Basin.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Balmer_Basin/LRO_NAC_RockDen_19S070E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Bullialdus_Crater/LRO_LROC_Rock_Density_Bullialdus_Crater.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Bullialdus_Crater/LRO_NAC_RockDen_20S337E_400cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Gruithuisen_Domes/LRO_LROC_Rock_Density_Gruithuisen_Domes.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Gruithuisen_Domes/LRO_NAC_RockDen_36N320E_2mp.vrt create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard.asset create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Alphonsus_Crater.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Rock_Density_Hazard_Alphonsus_Crater/LRO_NAC_RockDenHaz_13S358E_2mp.wms => LRO_LROC_Rock_Density_Hazard/Alphonsus_Crater.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Anaxagoras_Crater.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Rock_Density_Hazard_Anaxagoras_Crater/LRO_NAC_RockDenHaz_73N350E_150cmp.wms => LRO_LROC_Rock_Density_Hazard/Anaxagoras_Crater.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Apollo_15.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Rock_Density_Hazard_Apollo_15/LRO_NAC_RockDenHaz_26N004E_150cmp.wms => LRO_LROC_Rock_Density_Hazard/Apollo_15.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Apollo_16.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Rock_Density_Hazard_Apollo_16/LRO_NAC_RockDenHaz_09S015E_150cmp.wms => LRO_LROC_Rock_Density_Hazard/Apollo_16.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Apollo_Basin.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Rock_Density_Hazard_Apollo_Basin/LRO_NAC_RockDenHaz_37S206E_150cmp.wms => LRO_LROC_Rock_Density_Hazard/Apollo_Basin.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Aristarchus_1.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Rock_Density_Hazard_Aristarchus_1/LRO_NAC_RockDenHaz_25N311E_2mp.wms => LRO_LROC_Rock_Density_Hazard/Aristarchus_1.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Aristarchus_2.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Rock_Density_Hazard_Aristarchus_2/LRO_NAC_RockDenHaz_28N307E_150cmp.wms => LRO_LROC_Rock_Density_Hazard/Aristarchus_2.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Balmer_Basin.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Rock_Density_Hazard_Balmer_Basin/LRO_NAC_RockDenHaz_19S070E_150cmp.wms => LRO_LROC_Rock_Density_Hazard/Balmer_Basin.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Bullialdus_Crater.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Rock_Density_Hazard_Bullialdus_Crater/LRO_NAC_RockDenHaz_20S337E_400cmp.wms => LRO_LROC_Rock_Density_Hazard/Bullialdus_Crater.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Gruithuisen_Domes.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Rock_Density_Hazard_Gruithuisen_Domes/LRO_NAC_RockDenHaz_36N320E_2mp.wms => LRO_LROC_Rock_Density_Hazard/Gruithuisen_Domes.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Hertzsprung.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Rock_Density_Hazard_Hertzsprung/LRO_NAC_RockDenHaz_00N234E_150cmp.wms => LRO_LROC_Rock_Density_Hazard/Hertzsprung.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Hortensius_Domes.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Rock_Density_Hazard_Hortensius_Domes/LRO_NAC_RockDenHaz_08N332E_2mp.wms => LRO_LROC_Rock_Density_Hazard/Hortensius_Domes.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/King_Crater.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Rock_Density_Hazard_King_Crater/LRO_NAC_RockDenHaz_06N120E_200cmp.wms => LRO_LROC_Rock_Density_Hazard/King_Crater.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Lichtenberg_Crater.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Rock_Density_Hazard_Lichtenberg_Crater/LRO_NAC_RockDenHaz_32N292E_2mp.wms => LRO_LROC_Rock_Density_Hazard/Lichtenberg_Crater.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Mare_Crisium.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Rock_Density_Hazard_Mare_Crisium/LRO_NAC_RockDenHaz_10N058E_150cmp.wms => LRO_LROC_Rock_Density_Hazard/Mare_Crisium.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Montes_Pyrenaeus.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Rock_Density_Hazard_Montes_Pyrenaeus/LRO_NAC_RockDenHaz_16S041E_150cmp.wms => LRO_LROC_Rock_Density_Hazard/Montes_Pyrenaeus.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Orientale_1.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Rock_Density_Hazard_Orientale_1/LRO_NAC_RockDenHaz_26S265E_200cmp.wms => LRO_LROC_Rock_Density_Hazard/Orientale_1.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Plato_Ejecta.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Rock_Density_Hazard_Plato_Ejecta/LRO_NAC_RockDenHaz_53N354E_150cmp.wms => LRO_LROC_Rock_Density_Hazard/Plato_Ejecta.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/South_Pole-Aitken_Basin_Interior.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Rock_Density_Hazard_South_Pole-Aitken_Basin_Interior/LRO_NAC_RockDenHaz_60S200E_150cmp.wms => LRO_LROC_Rock_Density_Hazard/South_Pole-Aitken_Basin_Interior.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Stratton_Dewar_High_Fe_Anomaly.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Rock_Density_Hazard_Stratton_(Dewar)_High_Fe_Anomaly/LRO_NAC_RockDenHaz_02S167E_150cmp.wms => LRO_LROC_Rock_Density_Hazard/Stratton_Dewar_High_Fe_Anomaly.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Sulpicius_Gallus.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Rock_Density_Hazard_Sulpicius_Gallus/LRO_NAC_RockDenHaz_20N010E_2mp.wms => LRO_LROC_Rock_Density_Hazard/Sulpicius_Gallus.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Tycho_Crater.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_LROC_Rock_Density_Hazard_Tycho_Crater/LRO_NAC_RockDenHaz_43S349E_150cmp.wms => LRO_LROC_Rock_Density_Hazard/Tycho_Crater.wms} (100%) delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Aitken_Crater/LRO_LROC_Rock_Density_Hazard_Aitken_Crater.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Aitken_Crater/LRO_NAC_RockDenHaz_17S173E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Alphonsus_Crater/LRO_LROC_Rock_Density_Hazard_Alphonsus_Crater.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Alphonsus_Crater/LRO_NAC_RockDenHaz_13S358E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Anaxagoras_Crater/LRO_LROC_Rock_Density_Hazard_Anaxagoras_Crater.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Anaxagoras_Crater/LRO_NAC_RockDenHaz_73N350E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Apollo_15/LRO_LROC_Rock_Density_Hazard_Apollo_15.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Apollo_15/LRO_NAC_RockDenHaz_26N004E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Apollo_16/LRO_LROC_Rock_Density_Hazard_Apollo_16.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Apollo_16/LRO_NAC_RockDenHaz_09S015E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Apollo_Basin/LRO_LROC_Rock_Density_Hazard_Apollo_Basin.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Apollo_Basin/LRO_NAC_RockDenHaz_37S206E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Aristarchus_1/LRO_LROC_Rock_Density_Hazard_Aristarchus_1.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Aristarchus_1/LRO_NAC_RockDenHaz_25N311E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Aristarchus_2/LRO_LROC_Rock_Density_Hazard_Aristarchus_2.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Aristarchus_2/LRO_NAC_RockDenHaz_28N307E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Balmer_Basin/LRO_LROC_Rock_Density_Hazard_Balmer_Basin.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Balmer_Basin/LRO_NAC_RockDenHaz_19S070E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Bullialdus_Crater/LRO_LROC_Rock_Density_Hazard_Bullialdus_Crater.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Bullialdus_Crater/LRO_NAC_RockDenHaz_20S337E_400cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Gruithuisen_Domes/LRO_LROC_Rock_Density_Hazard_Gruithuisen_Domes.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Gruithuisen_Domes/LRO_NAC_RockDenHaz_36N320E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Hertzsprung/LRO_LROC_Rock_Density_Hazard_Hertzsprung.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Hertzsprung/LRO_NAC_RockDenHaz_00N234E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Hortensius_Domes/LRO_LROC_Rock_Density_Hazard_Hortensius_Domes.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Hortensius_Domes/LRO_NAC_RockDenHaz_08N332E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_King_Crater/LRO_LROC_Rock_Density_Hazard_King_Crater.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_King_Crater/LRO_NAC_RockDenHaz_06N120E_200cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Lichtenberg_Crater/LRO_LROC_Rock_Density_Hazard_Lichtenberg_Crater.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Lichtenberg_Crater/LRO_NAC_RockDenHaz_32N292E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Mare_Crisium/LRO_LROC_Rock_Density_Hazard_Mare_Crisium.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Mare_Crisium/LRO_NAC_RockDenHaz_10N058E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Montes_Pyrenaeus/LRO_LROC_Rock_Density_Hazard_Montes_Pyrenaeus.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Montes_Pyrenaeus/LRO_NAC_RockDenHaz_16S041E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Orientale_1/LRO_LROC_Rock_Density_Hazard_Orientale_1.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Orientale_1/LRO_NAC_RockDenHaz_26S265E_200cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Plato_Ejecta/LRO_LROC_Rock_Density_Hazard_Plato_Ejecta.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Plato_Ejecta/LRO_NAC_RockDenHaz_53N354E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_South_Pole-Aitken_Basin_Interior/LRO_LROC_Rock_Density_Hazard_South_Pole-Aitken_Basin_Interior.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_South_Pole-Aitken_Basin_Interior/LRO_NAC_RockDenHaz_60S200E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Stratton_(Dewar)_High_Fe_Anomaly/LRO_LROC_Rock_Density_Hazard_Stratton_(Dewar)_High_Fe_Anomaly.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Stratton_(Dewar)_High_Fe_Anomaly/LRO_NAC_RockDenHaz_02S167E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Sulpicius_Gallus/LRO_LROC_Rock_Density_Hazard_Sulpicius_Gallus.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Sulpicius_Gallus/LRO_NAC_RockDenHaz_20N010E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Tycho_Crater/LRO_LROC_Rock_Density_Hazard_Tycho_Crater.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Tycho_Crater/LRO_NAC_RockDenHaz_43S349E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hertzsprung/LRO_LROC_Rock_Density_Hertzsprung.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hertzsprung/LRO_NAC_RockDen_00N234E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hortensius_Domes/LRO_LROC_Rock_Density_Hortensius_Domes.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hortensius_Domes/LRO_NAC_RockDen_08N332E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_King_Crater/LRO_LROC_Rock_Density_King_Crater.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_King_Crater/LRO_NAC_RockDen_06N120E_200cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Lichtenberg_Crater/LRO_LROC_Rock_Density_Lichtenberg_Crater.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Lichtenberg_Crater/LRO_NAC_RockDen_32N292E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Mare_Crisium/LRO_LROC_Rock_Density_Mare_Crisium.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Mare_Crisium/LRO_NAC_RockDen_10N058E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Montes_Pyrenaeus/LRO_LROC_Rock_Density_Montes_Pyrenaeus.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Montes_Pyrenaeus/LRO_NAC_RockDen_16S041E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Orientale_1/LRO_LROC_Rock_Density_Orientale_1.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Orientale_1/LRO_NAC_RockDen_26S265E_200cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Plato_Ejecta/LRO_LROC_Rock_Density_Plato_Ejecta.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Plato_Ejecta/LRO_NAC_RockDen_53N354E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_South_Pole-Aitken_Basin_Interior/LRO_LROC_Rock_Density_South_Pole-Aitken_Basin_Interior.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_South_Pole-Aitken_Basin_Interior/LRO_NAC_RockDen_60S200E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Stratton_(Dewar)_High_Fe_Anomaly/LRO_LROC_Rock_Density_Stratton_(Dewar)_High_Fe_Anomaly.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Stratton_(Dewar)_High_Fe_Anomaly/LRO_NAC_RockDen_02S167E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Sulpicius_Gallus/LRO_LROC_Rock_Density_Sulpicius_Gallus.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Sulpicius_Gallus/LRO_NAC_RockDen_20N010E_2mp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Tycho_Crater/LRO_LROC_Rock_Density_Tycho_Crater.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Tycho_Crater/LRO_NAC_RockDen_43S349E_150cmp.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_WAC_Image_Mosaic/LRO_LROC_WAC_Image_Mosaic.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_WAC_Image_Mosaic/LRO_WAC_Mosaic_Global_303ppd.vrt create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Laser_Altimeter.asset create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Laser_Altimeter/Albedo_Global.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_Laser_Altimeter_Albedo_Global/ldam_10.wms => LRO_Laser_Altimeter/Albedo_Global.wms} (100%) delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Laser_Altimeter_Albedo_Global/LRO_Laser_Altimeter_Albedo_Global.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Laser_Altimeter_Albedo_Global/ldam_10.vrt create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Mini-RF_Circular_Polarization_Ratio.asset create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Mini-RF_Circular_Polarization_Ratio/Grayscale.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_Mini-RF_Circular_Polarization_Ratio_Grayscale/LRO_MiniRF_CPR_Gray_Global_128ppd.wms => LRO_Mini-RF_Circular_Polarization_Ratio/Grayscale.wms} (100%) delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Mini-RF_Circular_Polarization_Ratio_Grayscale/LRO_Mini-RF_Circular_Polarization_Ratio_Grayscale.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Mini-RF_Circular_Polarization_Ratio_Grayscale/LRO_MiniRF_CPR_Gray_Global_128ppd.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Mini-RF_First_Stokes_Parameter/LRO_Mini-RF_First_Stokes_Parameter.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Mini-RF_First_Stokes_Parameter/LRO_MiniRF_S1_Gray_Global_128ppd.vrt create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_NAC_ColorHillshade.asset create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_NAC_ColorHillshade/Lacus_Mortis.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_NAC_ColorHillshade_Lacus_Mortis/20191118-demmos-eqc-colorhillshade.wms => LRO_NAC_ColorHillshade/Lacus_Mortis.wms} (100%) delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_NAC_ColorHillshade_Lacus_Mortis/20191118-demmos-eqc-colorhillshade.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_NAC_ColorHillshade_Lacus_Mortis/LRO_NAC_ColorHillshade_Lacus_Mortis.asset create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_NAC_Mosaic.asset create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_NAC_Mosaic/Lacus_Mortis.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_NAC_Mosaic_Lacus_Mortis_Extended_Version/20200415_lacusmortis_orthomos_filled_8bit_lzw.wms => LRO_NAC_Mosaic/Lacus_Mortis.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_NAC_Mosaic_0.5mpp.asset create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_NAC_Mosaic_0.5mpp/Von_Karman.vrt create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_NAC_Mosaic_0.5mpp/Von_Karman.wms create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_NAC_Mosaic_1mpp.asset create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_NAC_Mosaic_1mpp/Von_Karman.vrt create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_NAC_Mosaic_1mpp/Von_Karman.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_NAC_Mosaic_Lacus_Mortis_Extended_Version/20200415_lacusmortis_orthomos_filled_8bit_lzw.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_NAC_Mosaic_Lacus_Mortis_Extended_Version/LRO_NAC_Mosaic_Lacus_Mortis_Extended_Version.asset create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_NAC_PSR_Mosaic_20mpp.asset create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_NAC_PSR_Mosaic_20mpp/N_Pole.vrt create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_NAC_PSR_Mosaic_20mpp/N_Pole.wms create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_NAC_PSR_Mosaic_20mpp/S_Pole.vrt create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_NAC_PSR_Mosaic_20mpp/S_Pole.wms create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_NAC_and_CE-2_CCD_Mosaic_1mpp.asset create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_NAC_and_CE-2_CCD_Mosaic_1mpp/Von_Karman.vrt create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_NAC_and_CE-2_CCD_Mosaic_1mpp/Von_Karman.wms create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera.asset create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Apollo_11_Landing_Site.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_Narrow_Angle_Camera_Apollo_11_Landing_Site/LRO_NAC_Apollo11_Mosaic_p.wms => LRO_Narrow_Angle_Camera/Apollo_11_Landing_Site.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Apollo_12_Landing_Site.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_Narrow_Angle_Camera_Apollo_12_Landing_Site/LRO_NAC_Apollo12_Mosaic_p.wms => LRO_Narrow_Angle_Camera/Apollo_12_Landing_Site.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Apollo_14_Landing_Site.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_Narrow_Angle_Camera_Apollo_14_Landing_Site/LRO_NAC_Apollo14_Mosaic_p.wms => LRO_Narrow_Angle_Camera/Apollo_14_Landing_Site.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Apollo_15_Landing_Site.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_Narrow_Angle_Camera_Apollo_15_Landing_Site/LRO_NAC_Apollo15_Mosaic_p.wms => LRO_Narrow_Angle_Camera/Apollo_15_Landing_Site.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Apollo_16_Landing_Site.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_Narrow_Angle_Camera_Apollo_16_Landing_Site/LRO_NAC_Apollo16_Mosaic_p.wms => LRO_Narrow_Angle_Camera/Apollo_16_Landing_Site.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/ColorHillShade_Apollo_17.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_Narrow_Angle_Camera_ColorHillShade_Apollo_17/NAC_DTM_APOLLO17_CLRSHADE.wms => LRO_Narrow_Angle_Camera/ColorHillShade_Apollo_17.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/HillShade_Apollo_17.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_Narrow_Angle_Camera_HillShade_Apollo_17/NAC_DTM_APOLLO17_SHADE.wms => LRO_Narrow_Angle_Camera/HillShade_Apollo_17.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Apollo_11.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_Narrow_Angle_Camera_Mosaic_Apollo_11/A11_60x60km.eq.wms => LRO_Narrow_Angle_Camera/Mosaic_Apollo_11.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Apollo_12.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_Narrow_Angle_Camera_Mosaic_Apollo_12/A12_60x60km.0_3.eq.wms => LRO_Narrow_Angle_Camera/Mosaic_Apollo_12.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Apollo_14.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_Narrow_Angle_Camera_Mosaic_Apollo_14/A14_60x60km.0_3.eq.wms => LRO_Narrow_Angle_Camera/Mosaic_Apollo_14.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Apollo_15.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_Narrow_Angle_Camera_Mosaic_Apollo_15/A15_60x60km.0_2.eq.wms => LRO_Narrow_Angle_Camera/Mosaic_Apollo_15.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Apollo_16.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_Narrow_Angle_Camera_Mosaic_Apollo_16/A16_60x60km.eq.wms => LRO_Narrow_Angle_Camera/Mosaic_Apollo_16.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Apollo_17.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_Narrow_Angle_Camera_Mosaic_Apollo_17/A17_60x60km.eq.wms => LRO_Narrow_Angle_Camera/Mosaic_Apollo_17.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Apollo_17_Landing_Site.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_Narrow_Angle_Camera_Mosaic_Apollo_17_Landing_Site/M129086118.nd.gcs.wms => LRO_Narrow_Angle_Camera/Mosaic_Apollo_17_Landing_Site.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Ingenii.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_Narrow_Angle_Camera_Mosaic_Ingenii/ingenii_skylight.wms => LRO_Narrow_Angle_Camera/Mosaic_Ingenii.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Marius.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_Narrow_Angle_Camera_Mosaic_Marius/marius_skylight.wms => LRO_Narrow_Angle_Camera/Mosaic_Marius.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Schrodinger.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_Narrow_Angle_Camera_Mosaic_Schrodinger/LRO_NAC_Schrodinger.wms => LRO_Narrow_Angle_Camera/Mosaic_Schrodinger.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Schrodinger_Extra.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_Narrow_Angle_Camera_Mosaic_Schrodinger_Extra/schrodinger.extraswaths.eq.wms => LRO_Narrow_Angle_Camera/Mosaic_Schrodinger_Extra.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Schrodinger_Landing_Site.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_Narrow_Angle_Camera_Mosaic_Schrodinger_Landing_Site/LRO_NAC_SchrodingerLandingSite2.wms => LRO_Narrow_Angle_Camera/Mosaic_Schrodinger_Landing_Site.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Schrodinger_NorthEast.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_Narrow_Angle_Camera_Mosaic_Schrodinger_NorthEast/schrodinger.ne.equirect.wms => LRO_Narrow_Angle_Camera/Mosaic_Schrodinger_NorthEast.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Schrodinger_SouthCenter.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_Narrow_Angle_Camera_Mosaic_Schrodinger_SouthCenter/schrodinger.sc.equirect.wms => LRO_Narrow_Angle_Camera/Mosaic_Schrodinger_SouthCenter.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Schrodinger_SouthEast.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_Narrow_Angle_Camera_Mosaic_Schrodinger_SouthEast/schrodinger.se.equirect.wms => LRO_Narrow_Angle_Camera/Mosaic_Schrodinger_SouthEast.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Small_Tranquilltatis_1.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_Narrow_Angle_Camera_Mosaic_Small_Tranquilltatis_1/small_tranq_skylight_1.wms => LRO_Narrow_Angle_Camera/Mosaic_Small_Tranquilltatis_1.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Small_Tranquilltatis_2.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_Narrow_Angle_Camera_Mosaic_Small_Tranquilltatis_2/small_tranq_skylight_2.wms => LRO_Narrow_Angle_Camera/Mosaic_Small_Tranquilltatis_2.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Slope_Apollo_17.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_Narrow_Angle_Camera_Slope_Apollo_17/NAC_DTM_APOLLO17_SLOPE.wms => LRO_Narrow_Angle_Camera/Slope_Apollo_17.wms} (100%) delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Apollo_11_Landing_Site/LRO_NAC_Apollo11_Mosaic_p.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Apollo_11_Landing_Site/LRO_Narrow_Angle_Camera_Apollo_11_Landing_Site.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Apollo_12_Landing_Site/LRO_NAC_Apollo12_Mosaic_p.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Apollo_12_Landing_Site/LRO_Narrow_Angle_Camera_Apollo_12_Landing_Site.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Apollo_14_Landing_Site/LRO_NAC_Apollo14_Mosaic_p.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Apollo_14_Landing_Site/LRO_Narrow_Angle_Camera_Apollo_14_Landing_Site.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Apollo_15_Landing_Site/LRO_NAC_Apollo15_Mosaic_p.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Apollo_15_Landing_Site/LRO_Narrow_Angle_Camera_Apollo_15_Landing_Site.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Apollo_16_Landing_Site/LRO_NAC_Apollo16_Mosaic_p.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Apollo_16_Landing_Site/LRO_Narrow_Angle_Camera_Apollo_16_Landing_Site.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_ColorHillShade_Apollo_17/LRO_Narrow_Angle_Camera_ColorHillShade_Apollo_17.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_ColorHillShade_Apollo_17/NAC_DTM_APOLLO17_CLRSHADE.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_HillShade_Apollo_17/LRO_Narrow_Angle_Camera_HillShade_Apollo_17.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_HillShade_Apollo_17/NAC_DTM_APOLLO17_SHADE.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Apollo_11/A11_60x60km.eq.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Apollo_11/LRO_Narrow_Angle_Camera_Mosaic_Apollo_11.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Apollo_12/A12_60x60km.0_3.eq.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Apollo_12/LRO_Narrow_Angle_Camera_Mosaic_Apollo_12.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Apollo_14/A14_60x60km.0_3.eq.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Apollo_14/LRO_Narrow_Angle_Camera_Mosaic_Apollo_14.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Apollo_15/A15_60x60km.0_2.eq.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Apollo_15/LRO_Narrow_Angle_Camera_Mosaic_Apollo_15.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Apollo_16/A16_60x60km.eq.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Apollo_16/LRO_Narrow_Angle_Camera_Mosaic_Apollo_16.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Apollo_17/A17_60x60km.eq.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Apollo_17/LRO_Narrow_Angle_Camera_Mosaic_Apollo_17.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Apollo_17/NAC_DTM_APOLLO17_MOSAIC_120CM.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Apollo_17/NAC_DTM_APOLLO17_MOSAIC_120CM.wms delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Apollo_17_Landing_Site/LRO_Narrow_Angle_Camera_Mosaic_Apollo_17_Landing_Site.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Apollo_17_Landing_Site/M129086118.nd.gcs.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Ingenii/LRO_Narrow_Angle_Camera_Mosaic_Ingenii.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Ingenii/ingenii_skylight.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Marius/LRO_Narrow_Angle_Camera_Mosaic_Marius.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Marius/marius_skylight.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Schrodinger/LRO_NAC_Schrodinger.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Schrodinger/LRO_Narrow_Angle_Camera_Mosaic_Schrodinger.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Schrodinger_Extra/LRO_Narrow_Angle_Camera_Mosaic_Schrodinger_Extra.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Schrodinger_Extra/schrodinger.extraswaths.eq.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Schrodinger_Landing_Site/LRO_NAC_SchrodingerLandingSite2.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Schrodinger_Landing_Site/LRO_Narrow_Angle_Camera_Mosaic_Schrodinger_Landing_Site.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Schrodinger_NorthEast/LRO_Narrow_Angle_Camera_Mosaic_Schrodinger_NorthEast.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Schrodinger_NorthEast/schrodinger.ne.equirect.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Schrodinger_SouthCenter/LRO_Narrow_Angle_Camera_Mosaic_Schrodinger_SouthCenter.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Schrodinger_SouthCenter/schrodinger.sc.equirect.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Schrodinger_SouthEast/LRO_Narrow_Angle_Camera_Mosaic_Schrodinger_SouthEast.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Schrodinger_SouthEast/schrodinger.se.equirect.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Small_Tranquilltatis_1/LRO_Narrow_Angle_Camera_Mosaic_Small_Tranquilltatis_1.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Small_Tranquilltatis_1/small_tranq_skylight_1.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Small_Tranquilltatis_2/LRO_Narrow_Angle_Camera_Mosaic_Small_Tranquilltatis_2.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Small_Tranquilltatis_2/small_tranq_skylight_2.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Slope_Apollo_17/LRO_Narrow_Angle_Camera_Slope_Apollo_17.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Slope_Apollo_17/NAC_DTM_APOLLO17_SLOPE.vrt create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_WAC-GLD100_DEM.asset create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_WAC-GLD100_DEM/Grayscale.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_WAC-GLD100_DEM_Grayscale/LRO_WAC-GLD100_Gray_79S79N_256ppd.wms => LRO_WAC-GLD100_DEM/Grayscale.wms} (100%) delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_WAC-GLD100_DEM_Grayscale/LRO_WAC-GLD100_DEM_Grayscale.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_WAC-GLD100_DEM_Grayscale/LRO_WAC-GLD100_Gray_79S79N_256ppd.vrt create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_WAC_GLD100_DEM.asset create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_WAC_GLD100_DEM/ColorHillShade.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_WAC_GLD100_DEM_ColorHillShade/LRO_WAC-GLD100_ClrShade_79S79N_256ppd.wms => LRO_WAC_GLD100_DEM/ColorHillShade.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_WAC_GLD100_DEM/Hillshade.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_WAC_GLD100_DEM_Hillshade/LRO_WAC-GLD100_Shade_79S79N_256ppd.wms => LRO_WAC_GLD100_DEM/Hillshade.wms} (100%) delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_WAC_GLD100_DEM_ColorHillShade/LRO_WAC-GLD100_ClrShade_79S79N_256ppd.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_WAC_GLD100_DEM_ColorHillShade/LRO_WAC_GLD100_DEM_ColorHillShade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_WAC_GLD100_DEM_Hillshade/LRO_WAC-GLD100_Shade_79S79N_256ppd.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_WAC_GLD100_DEM_Hillshade/LRO_WAC_GLD100_DEM_Hillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_WAC_Mosaic_v2/LRO_WAC_Mosaic_Global_303ppd_v02.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_WAC_Mosaic_v2/LRO_WAC_Mosaic_v2.asset create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_and_Kaguya_Multi_Instruments_1895.21mpp.asset create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_and_Kaguya_Multi_Instruments_1895.21mpp/3He_Dig_Here.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_and_Kaguya_Multi_Instruments_1895.21mpp_3He_Dig_Here/3He_Dig_Here_Layer.wms => LRO_and_Kaguya_Multi_Instruments_1895.21mpp/3He_Dig_Here.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_and_Kaguya_Multi_Instruments_1895.21mpp/3He_Likely.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_and_Kaguya_Multi_Instruments_1895.21mpp_3He_Likely/3He_Likely_Layer.wms => LRO_and_Kaguya_Multi_Instruments_1895.21mpp/3He_Likely.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_and_Kaguya_Multi_Instruments_1895.21mpp/3He_More_Likely.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_and_Kaguya_Multi_Instruments_1895.21mpp_3He_More_Likely/3He_More_Likely_Layer.wms => LRO_and_Kaguya_Multi_Instruments_1895.21mpp/3He_More_Likely.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_and_Kaguya_Multi_Instruments_1895.21mpp/3He_Most_Likely.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_and_Kaguya_Multi_Instruments_1895.21mpp_3He_Most_Likely/3He_Most_Likely_Layer.wms => LRO_and_Kaguya_Multi_Instruments_1895.21mpp/3He_Most_Likely.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_and_Kaguya_Multi_Instruments_1895.21mpp/3He_Very_Likely.vrt rename data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/{LRO_and_Kaguya_Multi_Instruments_1895.21mpp_3He_Very_Likely/3He_Very_Likely_Layer.wms => LRO_and_Kaguya_Multi_Instruments_1895.21mpp/3He_Very_Likely.wms} (100%) delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_and_Kaguya_Multi_Instruments_1895.21mpp_3He_Dig_Here/3He_Dig_Here_Layer.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_and_Kaguya_Multi_Instruments_1895.21mpp_3He_Dig_Here/LRO_and_Kaguya_Multi_Instruments_1895.21mpp_3He_Dig_Here.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_and_Kaguya_Multi_Instruments_1895.21mpp_3He_Likely/3He_Likely_Layer.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_and_Kaguya_Multi_Instruments_1895.21mpp_3He_Likely/LRO_and_Kaguya_Multi_Instruments_1895.21mpp_3He_Likely.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_and_Kaguya_Multi_Instruments_1895.21mpp_3He_More_Likely/3He_More_Likely_Layer.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_and_Kaguya_Multi_Instruments_1895.21mpp_3He_More_Likely/LRO_and_Kaguya_Multi_Instruments_1895.21mpp_3He_More_Likely.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_and_Kaguya_Multi_Instruments_1895.21mpp_3He_Most_Likely/3He_Most_Likely_Layer.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_and_Kaguya_Multi_Instruments_1895.21mpp_3He_Most_Likely/LRO_and_Kaguya_Multi_Instruments_1895.21mpp_3He_Most_Likely.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_and_Kaguya_Multi_Instruments_1895.21mpp_3He_Very_Likely/3He_Very_Likely_Layer.vrt delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_and_Kaguya_Multi_Instruments_1895.21mpp_3He_Very_Likely/LRO_and_Kaguya_Multi_Instruments_1895.21mpp_3He_Very_Likely.asset delete mode 100644 data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/all_treks_layers.asset create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MEX_HRSC.asset create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MEX_HRSC/Martian_Path_Eastern_Section_DEM.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{MEX_HRSC_Martian_Path_Eastern_Section_DEM/hrsc_dem_martian_east.wms => MEX_HRSC/Martian_Path_Eastern_Section_DEM.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MEX_HRSC/Martian_Path_MC11_Quad_DEM.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{MEX_HRSC_Martian_Path_MC11_Quad_DEM/MC11E11_HRDTMAR_DA5.wms => MEX_HRSC/Martian_Path_MC11_Quad_DEM.wms} (100%) delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MEX_HRSC_Martian_Path_Eastern_Section_DEM/MEX_HRSC_Martian_Path_Eastern_Section_DEM.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MEX_HRSC_Martian_Path_Eastern_Section_DEM/hrsc_dem_martian_east.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MEX_HRSC_Martian_Path_MC11_Quad_DEM/MC11E11_HRDTMAR_DA5.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MEX_HRSC_Martian_Path_MC11_Quad_DEM/MEX_HRSC_Martian_Path_MC11_Quad_DEM.asset create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOC_Atlas.asset create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOC_Atlas/Global_Color_Mosaic.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{MGS_MOC_Atlas_Global_Color_Mosaic/msss_atlas_simp_clon.wms => MGS_MOC_Atlas/Global_Color_Mosaic.wms} (100%) delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOC_Atlas_Global_Color_Mosaic/MGS_MOC_Atlas_Global_Color_Mosaic.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOC_Atlas_Global_Color_Mosaic/msss_atlas_simp_clon.vrt create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOLA.asset create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOLA/Global_Color_Hillshade.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{MGS_MOLA_Global_Color_Hillshade/Mars_MGS_MOLA_ClrShade_merge_global_463m.wms => MGS_MOLA/Global_Color_Hillshade.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOLA/Global_DEM.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{MGS_MOLA_Global_DEM/mola128_mola64_merge_90Nto90S_SimpleC_clon0.wms => MGS_MOLA/Global_DEM.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOLA/Global_Surface_Roughness.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{MGS_MOLA_Global_Surface_Roughness/mola_roughness.wms => MGS_MOLA/Global_Surface_Roughness.wms} (100%) delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOLA_Global_Color_Hillshade/MGS_MOLA_Global_Color_Hillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOLA_Global_Color_Hillshade/Mars_MGS_MOLA_ClrShade_merge_global_463m.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOLA_Global_DEM/MGS_MOLA_Global_DEM.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOLA_Global_DEM/mola128_mola64_merge_90Nto90S_SimpleC_clon0.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOLA_Global_Surface_Roughness/MGS_MOLA_Global_Surface_Roughness.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOLA_Global_Surface_Roughness/mola_roughness.vrt create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOLA_and_Mars_Express_HRSC.asset create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOLA_and_Mars_Express_HRSC/Color_Hillshade_Blend.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{MGS_MOLA_and_Mars_Express_HRSC_Color_Hillshade_Blend/Mars_MOLA_blend200ppx_HRSC_ClrShade_clon0dd_200mpp_lzw.wms => MGS_MOLA_and_Mars_Express_HRSC/Color_Hillshade_Blend.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOLA_and_Mars_Express_HRSC/Hillshade_Blend.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{MGS_MOLA_and_Mars_Express_HRSC_Hillshade_Blend/Mars_MOLA_blend200ppx_HRSC_Shade_clon0dd_200mpp_lzw.wms => MGS_MOLA_and_Mars_Express_HRSC/Hillshade_Blend.wms} (100%) delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOLA_and_Mars_Express_HRSC_Color_Hillshade_Blend/MGS_MOLA_and_Mars_Express_HRSC_Color_Hillshade_Blend.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOLA_and_Mars_Express_HRSC_Color_Hillshade_Blend/Mars_MOLA_blend200ppx_HRSC_ClrShade_clon0dd_200mpp_lzw.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOLA_and_Mars_Express_HRSC_Hillshade_Blend/MGS_MOLA_and_Mars_Express_HRSC_Hillshade_Blend.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOLA_and_Mars_Express_HRSC_Hillshade_Blend/Mars_MOLA_blend200ppx_HRSC_Shade_clon0dd_200mpp_lzw.vrt create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_TES.asset create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_TES/Global_Dust.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{MGS_TES_Global_Dust/TES_Dust.wms => MGS_TES/Global_Dust.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_TES/Global_Dust_Index.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{MGS_TES_Global_Dust_Index/tes_ruffdust.wms => MGS_TES/Global_Dust_Index.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_TES/Global_High-Ca_Pyroxene_Abundance.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{MGS_TES_Global_High-Ca_Pyroxene_Abundance/TES_Clinopyroxene.wms => MGS_TES/Global_High-Ca_Pyroxene_Abundance.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_TES/Global_Plagioclase_Abundance.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{MGS_TES_Global_Plagioclase_Abundance/TES_Plagioclase.wms => MGS_TES/Global_Plagioclase_Abundance.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_TES/Global_Sheet_SilicatesHigh-Si_Glass.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{MGS_TES_Global_Sheet_SilicatesHigh-Si_Glass/TES_Glass_Clay.wms => MGS_TES/Global_Sheet_SilicatesHigh-Si_Glass.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_TES/Global_Thermal_Inertia.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{MGS_TES_Global_Thermal_Inertia/TES_Thermal_Inertia.wms => MGS_TES/Global_Thermal_Inertia.wms} (100%) delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_TES_Global_Dust/MGS_TES_Global_Dust.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_TES_Global_Dust/TES_Dust.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_TES_Global_Dust_Index/MGS_TES_Global_Dust_Index.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_TES_Global_Dust_Index/tes_ruffdust.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_TES_Global_High-Ca_Pyroxene_Abundance/MGS_TES_Global_High-Ca_Pyroxene_Abundance.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_TES_Global_High-Ca_Pyroxene_Abundance/TES_Clinopyroxene.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_TES_Global_Plagioclase_Abundance/MGS_TES_Global_Plagioclase_Abundance.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_TES_Global_Plagioclase_Abundance/TES_Plagioclase.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_TES_Global_Sheet_SilicatesHigh-Si_Glass/MGS_TES_Global_Sheet_SilicatesHigh-Si_Glass.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_TES_Global_Sheet_SilicatesHigh-Si_Glass/TES_Glass_Clay.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_TES_Global_Thermal_Inertia/MGS_TES_Global_Thermal_Inertia.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_TES_Global_Thermal_Inertia/TES_Thermal_Inertia.vrt create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MO_THEMIS-IR_Day.asset create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MO_THEMIS-IR_Day/Global_Mosaic.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{MO_THEMIS-IR_Day_Global_Mosaic/THEMIS_DayIR_ControlledMosaics_100m_v2_oct2018.wms => MO_THEMIS-IR_Day/Global_Mosaic.wms} (100%) delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MO_THEMIS-IR_Day_Global_Mosaic/MO_THEMIS-IR_Day_Global_Mosaic.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MO_THEMIS-IR_Day_Global_Mosaic/THEMIS_DayIR_ControlledMosaics_100m_v2_oct2018.vrt create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MO_THEMIS-IR_Night.asset create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MO_THEMIS-IR_Night/Global_Mosaic.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{MO_THEMIS-IR_Night_Global_Mosaic/THEMIS_NightIR_ControlledMosaics_100m_v2_oct2018.wms => MO_THEMIS-IR_Night/Global_Mosaic.wms} (100%) delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MO_THEMIS-IR_Night_Global_Mosaic/MO_THEMIS-IR_Night_Global_Mosaic.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MO_THEMIS-IR_Night_Global_Mosaic/THEMIS_NightIR_ControlledMosaics_100m_v2_oct2018.vrt create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX.asset create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/22n048w_Mosaic.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{MRO_CTX_22n048w_Mosaic/b21_017819_2025_xn_22n048w.wms => MRO_CTX/22n048w_Mosaic.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Acheron_Fossae_Mosaic.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{MRO_CTX_Acheron_Fossae_Mosaic/Acheron_Fossae_CTX_BlockAdj_dd.wms => MRO_CTX/Acheron_Fossae_Mosaic.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Acidalia_Plantia_Mosaic.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{MRO_CTX_Acidalia_Plantia_Mosaic/Acidalia_Plantia_CTX_BlockAdj_dd.wms => MRO_CTX/Acidalia_Plantia_Mosaic.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Arabia_Terra_Mosaic.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{MRO_CTX_Arabia_Terra_Mosaic/Arabia_Terra_CTX_BlockAdj_dd.wms => MRO_CTX/Arabia_Terra_Mosaic.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Aram_Chaos_Mosaic.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{MRO_CTX_Aram_Chaos_Mosaic/Aram_Chaos_CTX_BlockAdj_dd.wms => MRO_CTX/Aram_Chaos_Mosaic.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Arcadia_Mosaic.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{MRO_CTX_Arcadia_Mosaic/Arcadia_CTX_BlockAdj_dd.wms => MRO_CTX/Arcadia_Mosaic.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Arcadia_Planitia_Mosaic.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{MRO_CTX_Arcadia_Planitia_Mosaic/Arcadia_Planitia_CTX_BlockAdj_dd.wms => MRO_CTX/Arcadia_Planitia_Mosaic.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Ausonia_Mosaic.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{MRO_CTX_Ausonia_Mosaic/Ausonia_CTX_BlockAdj_dd.wms => MRO_CTX/Ausonia_Mosaic.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Cerberus_Mosaic.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{MRO_CTX_Cerberus_Mosaic/Cerberus_CTX_BlockAdj_dd.wms => MRO_CTX/Cerberus_Mosaic.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Columbia_Hills_DEM.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{MRO_CTX_Columbia_Hills_DEM/DEM_1m_ColumbiaHills_fixed.wms => MRO_CTX/Columbia_Hills_DEM.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Columbus_Crater_Mosaic.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{MRO_CTX_Columbus_Crater_Mosaic/Columbus_Crater_CTX_BlockAdj_dd.wms => MRO_CTX/Columbus_Crater_Mosaic.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Copernicus_Crater_Mosaic.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{MRO_CTX_Copernicus_Crater_Mosaic/Copernicus_Crater_CTX_BlockAdj_dd.wms => MRO_CTX/Copernicus_Crater_Mosaic.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Coprates_EMelas_Chasm_Mosaic.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{MRO_CTX_Coprates_EMelas_Chasm_Mosaic/Coprates_EMelas_Chasm_CTX_BlockAdj_dd.wms => MRO_CTX/Coprates_EMelas_Chasm_Mosaic.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Curiosity_Roving_Site_Mosaic.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{MRO_CTX_Curiosity_Roving_Site_Mosaic/curiosity_ctx_mosaic.wms => MRO_CTX/Curiosity_Roving_Site_Mosaic.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Deuteronilus_Mensae_Mosaic.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{MRO_CTX_Deuteronilus_Mensae_Mosaic/Deuteronilus1_2_CTX_BlockAdj_dd.wms => MRO_CTX/Deuteronilus_Mensae_Mosaic.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/East_Melas_DEM.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{MRO_CTX_East_Melas_DEM/CTX_DEM_East_Melas.wms => MRO_CTX/East_Melas_DEM.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/East_Melas_Hillshade.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{MRO_CTX_East_Melas_Hillshade/CTX_Shade_East_Melas.wms => MRO_CTX/East_Melas_Hillshade.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Eastern_Valles_Marineris_Mosaic.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{MRO_CTX_Eastern_Valles_Marineris_Mosaic/NE_Marineris_Crater_CTX_BlockAdj_dd.wms => MRO_CTX/Eastern_Valles_Marineris_Mosaic.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Equatorial_Valles_Marineries_Mosaic.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{MRO_CTX_Equatorial_Valles_Marineries_Mosaic/SE_Marineris_CTX_BlockAdj_dd.wms => MRO_CTX/Equatorial_Valles_Marineries_Mosaic.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Erebus_Montes_Mosaic.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{MRO_CTX_Erebus_Montes_Mosaic/Erebus_Montes_CTX_BlockAdj_dd.wms => MRO_CTX/Erebus_Montes_Mosaic.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Gale_Crater_Mosaic.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{MRO_CTX_Gale_Crater_Mosaic/Gale_CTX_BlockAdj_dd.wms => MRO_CTX/Gale_Crater_Mosaic.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Gusev_Crater_Mosaic.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{MRO_CTX_Gusev_Crater_Mosaic/Gusev_CTX_BlockAdj_dd.wms => MRO_CTX/Gusev_Crater_Mosaic.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Hadriacus_Mosaic.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{MRO_CTX_Hadriacus_Mosaic/Hadriacus_CTX_BlockAdj_dd.wms => MRO_CTX/Hadriacus_Mosaic.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Hale_Crater_Mosaic.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{MRO_CTX_Hale_Crater_Mosaic/Hale_Crater_CTX_BlockAdj_dd.wms => MRO_CTX/Hale_Crater_Mosaic.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Hebrus_Valles_Mosaic.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{MRO_CTX_Hebrus_Valles_Mosaic/Hebrus_CTX_BlockAdj_dd.wms => MRO_CTX/Hebrus_Valles_Mosaic.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Hellas_Eastern_Rim_Mosaic.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{MRO_CTX_Hellas_Eastern_Rim_Mosaic/Hellas_Hellas2_CTX_BlockAdj_dd.wms => MRO_CTX/Hellas_Eastern_Rim_Mosaic.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Hellas_Mesopotamia_Mosaic.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{MRO_CTX_Hellas_Mesopotamia_Mosaic/Hellas3_CTX_BlockAdj_dd.wms => MRO_CTX/Hellas_Mesopotamia_Mosaic.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Huygens_Crater_Mosaic.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{MRO_CTX_Huygens_Crater_Mosaic/Huygens_CTX_BlockAdj_dd.wms => MRO_CTX/Huygens_Crater_Mosaic.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Hypanis_Delta_Mosaic.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{MRO_CTX_Hypanis_Delta_Mosaic/Hypanis_Delta_CTX_BlockAdj_dd.wms => MRO_CTX/Hypanis_Delta_Mosaic.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Ismenius_Cavus_Mosaic.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{MRO_CTX_Ismenius_Cavus_Mosaic/Ismenius_Cavus_CTX_BlockAdj_dd.wms => MRO_CTX/Ismenius_Cavus_Mosaic.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Jezero_Mosaic.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{MRO_CTX_Jezero_Mosaic_Preliminary/Jezero_CTX_BlockAdj_dd.wms => MRO_CTX/Jezero_Mosaic.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Kasei_Valles_Mosaic.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{MRO_CTX_Kasei_Valles_Mosaic/Kasei_Valles_CTX_BlockAdj_dd.wms => MRO_CTX/Kasei_Valles_Mosaic.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Mawrth_Vallis_Mosaic.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{MRO_CTX_Mawrth_Vallis_Mosaic/Mawrth_Valles_CTX_BlockAdj_dd.wms => MRO_CTX/Mawrth_Vallis_Mosaic.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/McLaughlin_Crater_Mosaic.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{MRO_CTX_McLaughlin_Crater_Mosaic/McLaughlin_Crater_CTX_BlockAdj_dd.wms => MRO_CTX/McLaughlin_Crater_Mosaic.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Meridiani_Planum_-_Sinus_Meridiani_Mosaic.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{MRO_CTX_Meridiani_Planum_-_Sinus_Meridiani_Mosaic/S_Meridiani_Sinus_Planium_CTX_BlockAdj_dd.wms => MRO_CTX/Meridiani_Planum_-_Sinus_Meridiani_Mosaic.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Mosaic_Global_Uncontrolled_Caltech.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{MRO_CTX_Mosaic_Global_Uncontrolled_(Caltech)/CTX_beta01_uncontrolled_5m_Caltech.wms => MRO_CTX/Mosaic_Global_Uncontrolled_Caltech.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Mosaic_InSight.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{MRO_CTX_Mosaic_InSight/InSightCTXMosaic_112917.wms => MRO_CTX/Mosaic_InSight.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Mosaic_Olympus_Mons.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{MRO_CTX_Mosaic_Olympus_Mons/olympus_mons.eq.wms => MRO_CTX/Mosaic_Olympus_Mons.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Newton_Crater_Mosaic.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{MRO_CTX_Newton_Crater_Mosaic/Newton_Crater_CTX_BlockAdj_dd.wms => MRO_CTX/Newton_Crater_Mosaic.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Noctis_Landing_Mosaic.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{MRO_CTX_Noctis_Landing_Mosaic/Noactis_Landing_CTX_BlockAdj_dd.wms => MRO_CTX/Noctis_Landing_Mosaic.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Protonilus_Mensae_Mosaic.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{MRO_CTX_Protonilus_Mensae_Mosaic/Protonilus_CTX_BlockAdj_dd.wms => MRO_CTX/Protonilus_Mensae_Mosaic.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Southern_Nectaris_Fossae_Mosaic.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{MRO_CTX_Southern_Nectaris_Fossae_Mosaic/S_Nectaris_Fossae_CTX_BlockAdj_dd.wms => MRO_CTX/Southern_Nectaris_Fossae_Mosaic.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Victoria_Crater_DEM.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{MRO_CTX_Victoria_Crater_DEM/DEM_1m_VictoriaCrater.wms => MRO_CTX/Victoria_Crater_DEM.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Viking_1_Landing_Site_Mosaic.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{MRO_CTX_Viking_1_Landing_Site_Mosaic/Viking_CTX_BlockAdj_dd.wms => MRO_CTX/Viking_1_Landing_Site_Mosaic.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Viking_2_Landing_Site_Mosaic.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{MRO_CTX_Viking_2_Landing_Site_Mosaic/b16_015887_2280_xn_48n225w.wms => MRO_CTX/Viking_2_Landing_Site_Mosaic.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/West_Candor_Chasma_Mosaic.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{MRO_CTX_West_Candor_Chasma_Mosaic/West_Candor_Chasma_longlat.wms => MRO_CTX/West_Candor_Chasma_Mosaic.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/West_Candor_DEM.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{MRO_CTX_West_Candor_DEM/West_Candor_Chasma_DEM_longlat.wms => MRO_CTX/West_Candor_DEM.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Western_Noachis_Terra_Mosaic.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{MRO_CTX_Western_Noachis_Terra_Mosaic/Noachis_CTX_BlockAdj_dd.wms => MRO_CTX/Western_Noachis_Terra_Mosaic.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Zephyria_Planum_Mosaic.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{MRO_CTX_Zephyria_Planum_Mosaic/Zephyria_CTX_BlockAdj_dd.wms => MRO_CTX/Zephyria_Planum_Mosaic.wms} (100%) delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_22n048w_Mosaic/MRO_CTX_22n048w_Mosaic.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_22n048w_Mosaic/b21_017819_2025_xn_22n048w.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Acheron_Fossae_Mosaic/Acheron_Fossae_CTX_BlockAdj_dd.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Acheron_Fossae_Mosaic/MRO_CTX_Acheron_Fossae_Mosaic.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Acidalia_Plantia_Mosaic/Acidalia_Plantia_CTX_BlockAdj_dd.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Acidalia_Plantia_Mosaic/MRO_CTX_Acidalia_Plantia_Mosaic.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Arabia_Terra_Mosaic/Arabia_Terra_CTX_BlockAdj_dd.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Arabia_Terra_Mosaic/MRO_CTX_Arabia_Terra_Mosaic.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Aram_Chaos_Mosaic/Aram_Chaos_CTX_BlockAdj_dd.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Aram_Chaos_Mosaic/MRO_CTX_Aram_Chaos_Mosaic.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Arcadia_Mosaic/Arcadia_CTX_BlockAdj_dd.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Arcadia_Mosaic/MRO_CTX_Arcadia_Mosaic.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Arcadia_Planitia_Mosaic/Arcadia_Planitia_CTX_BlockAdj_dd.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Arcadia_Planitia_Mosaic/MRO_CTX_Arcadia_Planitia_Mosaic.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Ausonia_Mosaic/Ausonia_CTX_BlockAdj_dd.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Ausonia_Mosaic/MRO_CTX_Ausonia_Mosaic.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Cerberus_Mosaic/Cerberus_CTX_BlockAdj_dd.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Cerberus_Mosaic/MRO_CTX_Cerberus_Mosaic.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Columbia_Hills_DEM/DEM_1m_ColumbiaHills_fixed.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Columbia_Hills_DEM/MRO_CTX_Columbia_Hills_DEM.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Columbus_Crater_Mosaic/Columbus_Crater_CTX_BlockAdj_dd.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Columbus_Crater_Mosaic/MRO_CTX_Columbus_Crater_Mosaic.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Copernicus_Crater_Mosaic/Copernicus_Crater_CTX_BlockAdj_dd.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Copernicus_Crater_Mosaic/MRO_CTX_Copernicus_Crater_Mosaic.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Coprates_EMelas_Chasm_Mosaic/Coprates_EMelas_Chasm_CTX_BlockAdj_dd.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Coprates_EMelas_Chasm_Mosaic/MRO_CTX_Coprates_EMelas_Chasm_Mosaic.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Curiosity_Roving_Site_Mosaic/MRO_CTX_Curiosity_Roving_Site_Mosaic.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Curiosity_Roving_Site_Mosaic/curiosity_ctx_mosaic.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Deuteronilus_Mensae_Mosaic/Deuteronilus1_2_CTX_BlockAdj_dd.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Deuteronilus_Mensae_Mosaic/MRO_CTX_Deuteronilus_Mensae_Mosaic.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_East_Melas_DEM/CTX_DEM_East_Melas.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_East_Melas_DEM/MRO_CTX_East_Melas_DEM.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_East_Melas_Hillshade/CTX_Shade_East_Melas.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_East_Melas_Hillshade/MRO_CTX_East_Melas_Hillshade.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Eastern_Valles_Marineris_Mosaic/MRO_CTX_Eastern_Valles_Marineris_Mosaic.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Eastern_Valles_Marineris_Mosaic/NE_Marineris_Crater_CTX_BlockAdj_dd.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Equatorial_Valles_Marineries_Mosaic/MRO_CTX_Equatorial_Valles_Marineries_Mosaic.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Equatorial_Valles_Marineries_Mosaic/SE_Marineris_CTX_BlockAdj_dd.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Erebus_Montes_Mosaic/Erebus_Montes_CTX_BlockAdj_dd.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Erebus_Montes_Mosaic/MRO_CTX_Erebus_Montes_Mosaic.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Gale_Crater_Mosaic/Gale_CTX_BlockAdj_dd.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Gale_Crater_Mosaic/MRO_CTX_Gale_Crater_Mosaic.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Gusev_Crater_Mosaic/Gusev_CTX_BlockAdj_dd.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Gusev_Crater_Mosaic/MRO_CTX_Gusev_Crater_Mosaic.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Hadriacus_Mosaic/Hadriacus_CTX_BlockAdj_dd.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Hadriacus_Mosaic/MRO_CTX_Hadriacus_Mosaic.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Hale_Crater_Mosaic/Hale_Crater_CTX_BlockAdj_dd.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Hale_Crater_Mosaic/MRO_CTX_Hale_Crater_Mosaic.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Hebrus_Valles_Mosaic/Hebrus_CTX_BlockAdj_dd.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Hebrus_Valles_Mosaic/MRO_CTX_Hebrus_Valles_Mosaic.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Hellas_Eastern_Rim_Mosaic/Hellas_Hellas2_CTX_BlockAdj_dd.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Hellas_Eastern_Rim_Mosaic/MRO_CTX_Hellas_Eastern_Rim_Mosaic.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Hellas_Mesopotamia_Mosaic/Hellas3_CTX_BlockAdj_dd.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Hellas_Mesopotamia_Mosaic/MRO_CTX_Hellas_Mesopotamia_Mosaic.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Huygens_Crater_Mosaic/Huygens_CTX_BlockAdj_dd.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Huygens_Crater_Mosaic/MRO_CTX_Huygens_Crater_Mosaic.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Hypanis_Delta_Mosaic/Hypanis_Delta_CTX_BlockAdj_dd.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Hypanis_Delta_Mosaic/MRO_CTX_Hypanis_Delta_Mosaic.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Ismenius_Cavus_Mosaic/Ismenius_Cavus_CTX_BlockAdj_dd.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Ismenius_Cavus_Mosaic/MRO_CTX_Ismenius_Cavus_Mosaic.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Jezero_Mosaic_Preliminary/Jezero_CTX_BlockAdj_dd.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Jezero_Mosaic_Preliminary/MRO_CTX_Jezero_Mosaic_Preliminary.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Kasei_Valles_Mosaic/Kasei_Valles_CTX_BlockAdj_dd.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Kasei_Valles_Mosaic/MRO_CTX_Kasei_Valles_Mosaic.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Mawrth_Vallis_Mosaic/MRO_CTX_Mawrth_Vallis_Mosaic.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Mawrth_Vallis_Mosaic/Mawrth_Valles_CTX_BlockAdj_dd.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_McLaughlin_Crater_Mosaic/MRO_CTX_McLaughlin_Crater_Mosaic.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_McLaughlin_Crater_Mosaic/McLaughlin_Crater_CTX_BlockAdj_dd.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Meridiani_Planum_-_Sinus_Meridiani_Mosaic/MRO_CTX_Meridiani_Planum_-_Sinus_Meridiani_Mosaic.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Meridiani_Planum_-_Sinus_Meridiani_Mosaic/S_Meridiani_Sinus_Planium_CTX_BlockAdj_dd.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Mosaic_Global_Uncontrolled_(Caltech)/CTX_beta01_uncontrolled_5m_Caltech.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Mosaic_Global_Uncontrolled_(Caltech)/MRO_CTX_Mosaic_Global_Uncontrolled_(Caltech).asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Mosaic_InSight/InSightCTXMosaic_112917.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Mosaic_InSight/MRO_CTX_Mosaic_InSight.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Mosaic_Olympus_Mons/MRO_CTX_Mosaic_Olympus_Mons.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Mosaic_Olympus_Mons/olympus_mons.eq.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Newton_Crater_Mosaic/MRO_CTX_Newton_Crater_Mosaic.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Newton_Crater_Mosaic/Newton_Crater_CTX_BlockAdj_dd.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Noctis_Landing_Mosaic/MRO_CTX_Noctis_Landing_Mosaic.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Noctis_Landing_Mosaic/Noactis_Landing_CTX_BlockAdj_dd.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Protonilus_Mensae_Mosaic/MRO_CTX_Protonilus_Mensae_Mosaic.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Protonilus_Mensae_Mosaic/Protonilus_CTX_BlockAdj_dd.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Southern_Nectaris_Fossae_Mosaic/MRO_CTX_Southern_Nectaris_Fossae_Mosaic.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Southern_Nectaris_Fossae_Mosaic/S_Nectaris_Fossae_CTX_BlockAdj_dd.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Victoria_Crater_DEM/DEM_1m_VictoriaCrater.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Victoria_Crater_DEM/MRO_CTX_Victoria_Crater_DEM.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Viking_1_Landing_Site_Mosaic/MRO_CTX_Viking_1_Landing_Site_Mosaic.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Viking_1_Landing_Site_Mosaic/Viking_CTX_BlockAdj_dd.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Viking_2_Landing_Site_Mosaic/MRO_CTX_Viking_2_Landing_Site_Mosaic.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Viking_2_Landing_Site_Mosaic/b16_015887_2280_xn_48n225w.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_West_Candor_Chasma_Mosaic/MRO_CTX_West_Candor_Chasma_Mosaic.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_West_Candor_Chasma_Mosaic/West_Candor_Chasma_longlat.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_West_Candor_DEM/MRO_CTX_West_Candor_DEM.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_West_Candor_DEM/West_Candor_Chasma_DEM_longlat.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Western_Noachis_Terra_Mosaic/MRO_CTX_Western_Noachis_Terra_Mosaic.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Western_Noachis_Terra_Mosaic/Noachis_CTX_BlockAdj_dd.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Zephyria_Planum_Mosaic/MRO_CTX_Zephyria_Planum_Mosaic.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Zephyria_Planum_Mosaic/Zephyria_CTX_BlockAdj_dd.vrt create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE.asset create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/001918_1735_001984_1735_DEM.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{MRO_HiRISE_001918_1735_001984_1735_DEM/DTEEC_001918_1735_001984_1735_U01_longlat.wms => MRO_HiRISE/001918_1735_001984_1735_DEM.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/042014_1760_042647_1760_DEM.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{MRO_HiRISE_042014_1760_042647_1760_DEM/DTEED_042014_1760_042647_1760_A01.wms => MRO_HiRISE/042014_1760_042647_1760_DEM.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/042753_1930_042252_1930_DEM.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{MRO_HiRISE_042753_1930_042252_1930_DEM/DTEED_042753_1930_042252_1930_A01.wms => MRO_HiRISE/042753_1930_042252_1930_DEM.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/1183_0000_DEM.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{MRO_HiRISE_1183_0000_DEM/h1183_0000_da4.wms => MRO_HiRISE/1183_0000_DEM.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Columbia_Hills_Mosaic.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{MRO_HiRISE_Columbia_Hills_Mosaic/HiRISE_ColumbiaHills.wms => MRO_HiRISE/Columbia_Hills_Mosaic.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Curiosity_Roving_Site_Mosaic.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{MRO_HiRISE_Curiosity_Roving_Site_Mosaic/curiosity_hirise_mosaic.wms => MRO_HiRISE/Curiosity_Roving_Site_Mosaic.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Gale_Crater_DEM.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{MRO_HiRISE_Gale_Crater_DEM/Gale_DEM_SMG_1m.wms => MRO_HiRISE/Gale_Crater_DEM.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Marth_Crater_West_Rim_Mosaic.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{MRO_HiRISE_Marth_Crater_West_Rim_Mosaic/ESP_042252_1930_RED_B_01_ORTHO.wms => MRO_HiRISE/Marth_Crater_West_Rim_Mosaic.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Martian_Ares_3_Landing_Site_Mosaic.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{MRO_HiRISE_Martian_Ares_3_Landing_Site_Mosaic/ESP_040776_2115_RED_A_01_ORTHO.wms => MRO_HiRISE/Martian_Ares_3_Landing_Site_Mosaic.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Martian_Ares_4_Landing_Site_Mosaic.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{MRO_HiRISE_Martian_Ares_4_Landing_Site_Mosaic/ESP_042647_1760_RED_B_01_ORTHO.wms => MRO_HiRISE/Martian_Ares_4_Landing_Site_Mosaic.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Mosaic_Columbia_Hills.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{MRO_HiRISE_Mosaic_Columbia_Hills/CLH_Visible_Mosaic_HiRISE_CTX_HRSC_GCS_MARS_07-10-2018.wms => MRO_HiRISE/Mosaic_Columbia_Hills.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Mosaic_Insight_Landing_Site.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{MRO_HiRISE_Mosaic_Insight_Landing_Site/ESP_058005_1845_RED_spline_rect.wms => MRO_HiRISE/Mosaic_Insight_Landing_Site.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Mosaic_Jezero_NE_Syrtis_Midway.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{MRO_HiRISE_Mosaic_Jezero_NE_Syrtis_Midway/NES_JEZ_MID_Visible_Mosaic_HiRISE_CTX_HRSC_GCS_MARS_07-10-2018.wms => MRO_HiRISE/Mosaic_Jezero_NE_Syrtis_Midway.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Mosaic_Opportunity.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{MRO_HiRISE_Mosaic_Opportunity/HiRISE_Opportunity.wms => MRO_HiRISE/Mosaic_Opportunity.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Opportunity_Roving_Site_Mosaic.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{MRO_HiRISE_Opportunity_Roving_Site_Mosaic/opportunity_hirise_mosaic.wms => MRO_HiRISE/Opportunity_Roving_Site_Mosaic.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Phoenix_Landing_Site_Mosaic.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{MRO_HiRISE_Phoenix_Landing_Site_Mosaic/phoenix_hirise_mosaic.wms => MRO_HiRISE/Phoenix_Landing_Site_Mosaic.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Sojourner_Roving_Site_Mosaic.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{MRO_HiRISE_Sojourner_Roving_Site_Mosaic/sojourner_hirise_mosaic.wms => MRO_HiRISE/Sojourner_Roving_Site_Mosaic.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Southwest_Candor_Chasma_Mosaic.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{MRO_HiRISE_Southwest_Candor_Chasma_Mosaic/PSP_001918_1735_RED_A_01_ORTHO_longlat.wms => MRO_HiRISE/Southwest_Candor_Chasma_Mosaic.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Spirit_Roving_Site_Mosaic.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{MRO_HiRISE_Spirit_Roving_Site_Mosaic/spirit_hirise_mosaic.wms => MRO_HiRISE/Spirit_Roving_Site_Mosaic.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Viking_1_Landing_Site_Mosaic.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{MRO_HiRISE_Viking_1_Landing_Site_Mosaic/PSP_001521_2025_RED.wms => MRO_HiRISE/Viking_1_Landing_Site_Mosaic.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Viking_2_Landing_Site_Mosaic.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{MRO_HiRISE_Viking_2_Landing_Site_Mosaic/PSP_001501_2280_RED.wms => MRO_HiRISE/Viking_2_Landing_Site_Mosaic.wms} (100%) delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_001918_1735_001984_1735_DEM/DTEEC_001918_1735_001984_1735_U01_longlat.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_001918_1735_001984_1735_DEM/MRO_HiRISE_001918_1735_001984_1735_DEM.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_042014_1760_042647_1760_DEM/DTEED_042014_1760_042647_1760_A01.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_042014_1760_042647_1760_DEM/MRO_HiRISE_042014_1760_042647_1760_DEM.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_042753_1930_042252_1930_DEM/DTEED_042753_1930_042252_1930_A01.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_042753_1930_042252_1930_DEM/MRO_HiRISE_042753_1930_042252_1930_DEM.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_1183_0000_DEM/MRO_HiRISE_1183_0000_DEM.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_1183_0000_DEM/h1183_0000_da4.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Columbia_Hills_Mosaic/HiRISE_ColumbiaHills.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Columbia_Hills_Mosaic/MRO_HiRISE_Columbia_Hills_Mosaic.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Curiosity_Roving_Site_Mosaic/MRO_HiRISE_Curiosity_Roving_Site_Mosaic.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Curiosity_Roving_Site_Mosaic/curiosity_hirise_mosaic.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Gale_Crater_DEM/Gale_DEM_SMG_1m.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Gale_Crater_DEM/MRO_HiRISE_Gale_Crater_DEM.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Marth_Crater_West_Rim_Mosaic/ESP_042252_1930_RED_B_01_ORTHO.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Marth_Crater_West_Rim_Mosaic/MRO_HiRISE_Marth_Crater_West_Rim_Mosaic.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Martian_Ares_3_Landing_Site_Mosaic/ESP_040776_2115_RED_A_01_ORTHO.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Martian_Ares_3_Landing_Site_Mosaic/MRO_HiRISE_Martian_Ares_3_Landing_Site_Mosaic.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Martian_Ares_4_Landing_Site_Mosaic/ESP_042647_1760_RED_B_01_ORTHO.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Martian_Ares_4_Landing_Site_Mosaic/MRO_HiRISE_Martian_Ares_4_Landing_Site_Mosaic.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Mosaic_Columbia_Hills/CLH_Visible_Mosaic_HiRISE_CTX_HRSC_GCS_MARS_07-10-2018.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Mosaic_Columbia_Hills/MRO_HiRISE_Mosaic_Columbia_Hills.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Mosaic_Insight_Landing_Site/ESP_058005_1845_RED_spline_rect.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Mosaic_Insight_Landing_Site/MRO_HiRISE_Mosaic_Insight_Landing_Site.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Mosaic_Jezero_NE_Syrtis_Midway/MRO_HiRISE_Mosaic_Jezero_NE_Syrtis_Midway.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Mosaic_Jezero_NE_Syrtis_Midway/NES_JEZ_MID_Visible_Mosaic_HiRISE_CTX_HRSC_GCS_MARS_07-10-2018.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Mosaic_Opportunity/HiRISE_Opportunity.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Mosaic_Opportunity/MRO_HiRISE_Mosaic_Opportunity.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Opportunity_Roving_Site_Mosaic/MRO_HiRISE_Opportunity_Roving_Site_Mosaic.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Opportunity_Roving_Site_Mosaic/opportunity_hirise_mosaic.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Phoenix_Landing_Site_Mosaic/MRO_HiRISE_Phoenix_Landing_Site_Mosaic.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Phoenix_Landing_Site_Mosaic/phoenix_hirise_mosaic.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Sojourner_Roving_Site_Mosaic/MRO_HiRISE_Sojourner_Roving_Site_Mosaic.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Sojourner_Roving_Site_Mosaic/sojourner_hirise_mosaic.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Southwest_Candor_Chasma_Mosaic/MRO_HiRISE_Southwest_Candor_Chasma_Mosaic.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Southwest_Candor_Chasma_Mosaic/PSP_001918_1735_RED_A_01_ORTHO_longlat.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Spirit_Roving_Site_Mosaic/MRO_HiRISE_Spirit_Roving_Site_Mosaic.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Spirit_Roving_Site_Mosaic/spirit_hirise_mosaic.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Viking_1_Landing_Site_Mosaic/MRO_HiRISE_Viking_1_Landing_Site_Mosaic.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Viking_1_Landing_Site_Mosaic/PSP_001521_2025_RED.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Viking_2_Landing_Site_Mosaic/MRO_HiRISE_Viking_2_Landing_Site_Mosaic.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Viking_2_Landing_Site_Mosaic/PSP_001501_2280_RED.vrt create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MSL.asset create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MSL/Pahrump_Hills.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{MSL_Pahrump_Hills/mars_pahrump_patch_8k_256m.wms => MSL/Pahrump_Hills.wms} (100%) delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MSL_Pahrump_Hills/MSL_Pahrump_Hills.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MSL_Pahrump_Hills/mars_pahrump_patch_8k_256m.vrt create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC.asset create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC/Martian_Path_Eastern_Section_Color_Mosaic.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{Mars_Express_HRSC_Martian_Path_Eastern_Section_Color_Mosaic/HRSC_Martian_east.wms => Mars_Express_HRSC/Martian_Path_Eastern_Section_Color_Mosaic.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC/Martian_Path_MC11_Quad_Color_Mosaic.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{Mars_Express_HRSC_Martian_Path_MC11_Quad_Color_Mosaic/MC11E_HRMOSCO_COL.wms => Mars_Express_HRSC/Martian_Path_MC11_Quad_Color_Mosaic.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC/Martian_Path_MC11_Quad_Mosaic.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{Mars_Express_HRSC_Martian_Path_MC11_Quad_Mosaic/MC11E_HRMOSND_ND5.wms => Mars_Express_HRSC/Martian_Path_MC11_Quad_Mosaic.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC/Mawrth_Vallis_Color_Mosaic.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{Mars_Express_HRSC_Mawrth_Vallis_Color_Mosaic/hrsc_mawrth_vallis_color.wms => Mars_Express_HRSC/Mawrth_Vallis_Color_Mosaic.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC/Mawrth_Vallis_Mosaic.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{Mars_Express_HRSC_Mawrth_Vallis_Mosaic/hrsc_mawrth_vallis.wms => Mars_Express_HRSC/Mawrth_Vallis_Mosaic.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC/Viking_1_Landing_Site_Mosaic.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{Mars_Express_HRSC_Viking_1_Landing_Site_Mosaic/h2942_0000_nd3.wms => Mars_Express_HRSC/Viking_1_Landing_Site_Mosaic.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC/Viking_2_Landing_Site_Mosaic.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{Mars_Express_HRSC_Viking_2_Landing_Site_Mosaic/h1394_0000_nd3.wms => Mars_Express_HRSC/Viking_2_Landing_Site_Mosaic.wms} (100%) delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC_Martian_Path_Eastern_Section_Color_Mosaic/HRSC_Martian_east.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC_Martian_Path_Eastern_Section_Color_Mosaic/Mars_Express_HRSC_Martian_Path_Eastern_Section_Color_Mosaic.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC_Martian_Path_MC11_Quad_Color_Mosaic/MC11E_HRMOSCO_COL.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC_Martian_Path_MC11_Quad_Color_Mosaic/Mars_Express_HRSC_Martian_Path_MC11_Quad_Color_Mosaic.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC_Martian_Path_MC11_Quad_Mosaic/MC11E_HRMOSND_ND5.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC_Martian_Path_MC11_Quad_Mosaic/Mars_Express_HRSC_Martian_Path_MC11_Quad_Mosaic.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC_Mawrth_Vallis_Color_Mosaic/Mars_Express_HRSC_Mawrth_Vallis_Color_Mosaic.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC_Mawrth_Vallis_Color_Mosaic/hrsc_mawrth_vallis_color.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC_Mawrth_Vallis_Mosaic/Mars_Express_HRSC_Mawrth_Vallis_Mosaic.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC_Mawrth_Vallis_Mosaic/hrsc_mawrth_vallis.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC_Viking_1_Landing_Site_Mosaic/Mars_Express_HRSC_Viking_1_Landing_Site_Mosaic.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC_Viking_1_Landing_Site_Mosaic/h2942_0000_nd3.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC_Viking_2_Landing_Site_Mosaic/Mars_Express_HRSC_Viking_2_Landing_Site_Mosaic.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC_Viking_2_Landing_Site_Mosaic/h1394_0000_nd3.vrt create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX.asset create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_Apollinaris_12S182E.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Apollinaris_12S182E/CTX_ClrSlope_8bit_12S182E_24mp_P22_009609_1674_B02_010453_1675.wms => Mars_Reconnaissance_Orbiter_CTX/Color_Slope_Apollinaris_12S182E.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_Apollinaris_13S182E.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Apollinaris_13S182E/CTX_ClrSlope_8bit_13S182E_24mp_G15_024127_1673_G16_024483_1673.wms => Mars_Reconnaissance_Orbiter_CTX/Color_Slope_Apollinaris_13S182E.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_Apollinaris_14S184E.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Apollinaris_14S184E/CTX_ClrSlope_8bit_14S184E_24mp_B01_009886_1658_P21_009385_1658.wms => Mars_Reconnaissance_Orbiter_CTX/Color_Slope_Apollinaris_14S184E.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_Coprates_10S291E.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Coprates_10S291E/CTX_ClrSlope_8bit_10S291E_24mp_P22_009684_1699_B02_010396_1699.wms => Mars_Reconnaissance_Orbiter_CTX/Color_Slope_Coprates_10S291E.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_Coprates_11S293E.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Coprates_11S293E/CTX_ClrSlope_8bit_11S293E_24mp_B09_013231_1696_B11_013732_1690.wms => Mars_Reconnaissance_Orbiter_CTX/Color_Slope_Coprates_11S293E.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_Coprates_13S293E.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Coprates_13S293E/CTX_ClrSlope_8bit_13S293E_24mp_G07_020879_1669_G09_021657_1665.wms => Mars_Reconnaissance_Orbiter_CTX/Color_Slope_Coprates_13S293E.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_Deuteronius_37N024E.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Deuteronius_37N024E/CTX_ClrSlope_8bit_37N024E_24mp_G05_020203_2178_G22_026994_2170.wms => Mars_Reconnaissance_Orbiter_CTX/Color_Slope_Deuteronius_37N024E.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_Deuteronius_38N024E.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Deuteronius_38N024E/CTX_ClrSlope_8bit_38N024E_24mp_B17_016168_2181_G16_024594_2181.wms => Mars_Reconnaissance_Orbiter_CTX/Color_Slope_Deuteronius_38N024E.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_Deuteronius_39N024E.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Deuteronius_39N024E/CTX_ClrSlope_8bit_39N024E_24mp_D15_032875_2196_D15_033165_2196.wms => Mars_Reconnaissance_Orbiter_CTX/Color_Slope_Deuteronius_39N024E.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_Deuteronius_40N024E.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Deuteronius_40N024E/CTX_ClrSlope_8bit_40N022E_24mp_B18_016656_2206_B18_016801_2206.wms => Mars_Reconnaissance_Orbiter_CTX/Color_Slope_Deuteronius_40N024E.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_East_Melas_11S289E.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_11S289E/CTX_ClrSlope_8bit_11S289E_24mp_F23_044971_1685_F21_043995_1685.wms => Mars_Reconnaissance_Orbiter_CTX/Color_Slope_East_Melas_11S289E.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_East_Melas_11S291E.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_11S291E/CTX_ClrSlope_8bit_11S291E_24mp_B19_017187_1685_B19_016976_1685.wms => Mars_Reconnaissance_Orbiter_CTX/Color_Slope_East_Melas_11S291E.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_East_Melas_12S289E_D01.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S289E_D01/CTX_ClrSlope_8bit_12S289E_24mp_D01_027446_1678_D01_027723_1677.wms => Mars_Reconnaissance_Orbiter_CTX/Color_Slope_East_Melas_12S289E_D01.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_East_Melas_12S289E_F18.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S289E_F18/CTX_ClrSlope_8bit_12S289E_24mp_F18_042927_1681_J02_045749_1694.wms => Mars_Reconnaissance_Orbiter_CTX/Color_Slope_East_Melas_12S289E_F18.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_East_Melas_12S290E.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S290E/CTX_ClrSlope_8bit_12S290E_24mp_D18_034250_1676_D21_035450_1674.wms => Mars_Reconnaissance_Orbiter_CTX/Color_Slope_East_Melas_12S290E.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_East_Melas_12S291E_F14.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S291E_F14/CTX_ClrSlope_8bit_12S291E_24mp_F14_041292_1682_F16_041938_1682.wms => Mars_Reconnaissance_Orbiter_CTX/Color_Slope_East_Melas_12S291E_F14.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_East_Melas_12S291E_F21.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S291E_F21/CTX_ClrSlope_8bit_12S291E_24mp_F21_043850_1684_F21_043916_1685.wms => Mars_Reconnaissance_Orbiter_CTX/Color_Slope_East_Melas_12S291E_F21.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_East_Melas_12S291E_J01.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S291E_J01/CTX_ClrSlope_8bit_12S291E_24mp_J01_045116_1677_J03_046039_1676.wms => Mars_Reconnaissance_Orbiter_CTX/Color_Slope_East_Melas_12S291E_J01.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_East_Melas_13S289E.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_13S289E/CTX_ClrSlope_8bit_13S289E_24mp_D10_031125_1673_D12_031903_1669.wms => Mars_Reconnaissance_Orbiter_CTX/Color_Slope_East_Melas_13S289E.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_East_Melas_16S291E_D22.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_16S291E_D22/CTX_ClrSlope_8bit_16S291E_24mp_D22_035951_1644_F01_036307_1644.wms => Mars_Reconnaissance_Orbiter_CTX/Color_Slope_East_Melas_16S291E_D22.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_Apollinaris_12S182E.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{Mars_Reconnaissance_Orbiter_CTX_HillShade_Apollinaris_12S182E/CTX_Shade_12S182E_24mp_P22_009609_1674_B02_010453_1675.wms => Mars_Reconnaissance_Orbiter_CTX/HillShade_Apollinaris_12S182E.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_Apollinaris_13S182E.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{Mars_Reconnaissance_Orbiter_CTX_HillShade_Apollinaris_13S182E/CTX_Shade_13S182E_24mp_G15_024127_1673_G16_024483_1673.wms => Mars_Reconnaissance_Orbiter_CTX/HillShade_Apollinaris_13S182E.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_Apollinaris_14S184E.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{Mars_Reconnaissance_Orbiter_CTX_HillShade_Apollinaris_14S184E/CTX_Shade_14S184E_24mp_B01_009886_1658_P21_009385_1658.wms => Mars_Reconnaissance_Orbiter_CTX/HillShade_Apollinaris_14S184E.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_Coprates_10S291E.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{Mars_Reconnaissance_Orbiter_CTX_HillShade_Coprates_10S291E/CTX_Shade_10S291E_24mp_P22_009684_1699_B02_010396_1699.wms => Mars_Reconnaissance_Orbiter_CTX/HillShade_Coprates_10S291E.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_Coprates_11S293E.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{Mars_Reconnaissance_Orbiter_CTX_HillShade_Coprates_11S293E/CTX_Shade_11S293E_24mp_B09_013231_1696_B11_013732_1690.wms => Mars_Reconnaissance_Orbiter_CTX/HillShade_Coprates_11S293E.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_Coprates_13S293E.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{Mars_Reconnaissance_Orbiter_CTX_HillShade_Coprates_13S293E/CTX_Shade_13S293E_24mp_G07_020879_1669_G09_021657_1665.wms => Mars_Reconnaissance_Orbiter_CTX/HillShade_Coprates_13S293E.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_Deuteronius_37N024E.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{Mars_Reconnaissance_Orbiter_CTX_HillShade_Deuteronius_37N024E/CTX_Shade_37N024E_24mp_G05_020203_2178_G22_026994_2170.wms => Mars_Reconnaissance_Orbiter_CTX/HillShade_Deuteronius_37N024E.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_Deuteronius_38N024E.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{Mars_Reconnaissance_Orbiter_CTX_HillShade_Deuteronius_38N024E/CTX_Shade_38N024E_24mp_B17_016168_2181_G16_024594_2181.wms => Mars_Reconnaissance_Orbiter_CTX/HillShade_Deuteronius_38N024E.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_Deuteronius_39N024E.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{Mars_Reconnaissance_Orbiter_CTX_HillShade_Deuteronius_39N024E/CTX_Shade_39N024E_24mp_D15_032875_2196_D15_033165_2196.wms => Mars_Reconnaissance_Orbiter_CTX/HillShade_Deuteronius_39N024E.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_Deuteronius_40N024E.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{Mars_Reconnaissance_Orbiter_CTX_HillShade_Deuteronius_40N024E/CTX_Shade_40N022E_24mp_B18_016656_2206_B18_016801_2206.wms => Mars_Reconnaissance_Orbiter_CTX/HillShade_Deuteronius_40N024E.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_East_Melas_11S289E.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_11S289E/CTX_Shade_11S289E_24mp_F23_044971_1685_F21_043995_1685.wms => Mars_Reconnaissance_Orbiter_CTX/HillShade_East_Melas_11S289E.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_East_Melas_11S291E.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_11S291E/CTX_Shade_11S291E_24mp_B19_017187_1685_B19_016976_1685.wms => Mars_Reconnaissance_Orbiter_CTX/HillShade_East_Melas_11S291E.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_East_Melas_12S289E_D01.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S289E_D01/CTX_Shade_12S289E_24mp_D01_027446_1678_D01_027723_1677.wms => Mars_Reconnaissance_Orbiter_CTX/HillShade_East_Melas_12S289E_D01.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_East_Melas_12S289E_F18.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S289E_F18/CTX_Shade_12S289E_24mp_F18_042927_1681_J02_045749_1694.wms => Mars_Reconnaissance_Orbiter_CTX/HillShade_East_Melas_12S289E_F18.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_East_Melas_12S290E.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S290E/CTX_Shade_12S290E_24mp_D18_034250_1676_D21_035450_1674.wms => Mars_Reconnaissance_Orbiter_CTX/HillShade_East_Melas_12S290E.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_East_Melas_12S291E_F14.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S291E_F14/CTX_Shade_12S291E_24mp_F14_041292_1682_F16_041938_1682.wms => Mars_Reconnaissance_Orbiter_CTX/HillShade_East_Melas_12S291E_F14.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_East_Melas_12S291E_F21.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S291E_F21/CTX_Shade_12S291E_24mp_F21_043850_1684_F21_043916_1685.wms => Mars_Reconnaissance_Orbiter_CTX/HillShade_East_Melas_12S291E_F21.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_East_Melas_12S291E_J01.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S291E_J01/CTX_Shade_12S291E_24mp_J01_045116_1677_J03_046039_1676.wms => Mars_Reconnaissance_Orbiter_CTX/HillShade_East_Melas_12S291E_J01.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_East_Melas_13S289E_D10.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_13S289E_D10/CTX_Shade_13S289E_24mp_D10_031125_1673_D12_031903_1669.wms => Mars_Reconnaissance_Orbiter_CTX/HillShade_East_Melas_13S289E_D10.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_East_Melas_16S291E_D22.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_16S291E_D22/CTX_Shade_16S291E_24mp_D22_035951_1644_F01_036307_1644.wms => Mars_Reconnaissance_Orbiter_CTX/HillShade_East_Melas_16S291E_D22.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Hilllshade_Deuteronilus.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{Mars_Reconnaissance_Orbiter_CTX_Hilllshade_Deuteronilus/Deuteronilus_CTX_Shade_v0_20171112.wms => Mars_Reconnaissance_Orbiter_CTX/Hilllshade_Deuteronilus.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_Apollinaris_12S182E.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{Mars_Reconnaissance_Orbiter_CTX_Mosaic_Apollinaris_12S182E/CTX_Ortho_12S182E_24mp_P22_009609_1674.wms => Mars_Reconnaissance_Orbiter_CTX/Mosaic_Apollinaris_12S182E.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_Apollinaris_13S182E.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{Mars_Reconnaissance_Orbiter_CTX_Mosaic_Apollinaris_13S182E/CTX_Ortho_13S182E_24mp_G15_024127_1673.wms => Mars_Reconnaissance_Orbiter_CTX/Mosaic_Apollinaris_13S182E.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_Apollinaris_14S184E.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{Mars_Reconnaissance_Orbiter_CTX_Mosaic_Apollinaris_14S184E/CTX_Ortho_14S184E_24mp_B01_009886_1658.wms => Mars_Reconnaissance_Orbiter_CTX/Mosaic_Apollinaris_14S184E.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_Coprates_10S291E.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{Mars_Reconnaissance_Orbiter_CTX_Mosaic_Coprates_10S291E/CTX_Ortho_10S291E_24mp_P22_009684_1699.wms => Mars_Reconnaissance_Orbiter_CTX/Mosaic_Coprates_10S291E.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_Coprates_11S293E.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{Mars_Reconnaissance_Orbiter_CTX_Mosaic_Coprates_11S293E/CTX_Ortho_11S293E_24mp_B09_013231_1696.wms => Mars_Reconnaissance_Orbiter_CTX/Mosaic_Coprates_11S293E.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_Coprates_13S293E.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{Mars_Reconnaissance_Orbiter_CTX_Mosaic_Coprates_13S293E/CTX_Ortho_13S293E_24mp_G07_020879_1669.wms => Mars_Reconnaissance_Orbiter_CTX/Mosaic_Coprates_13S293E.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_Deuteronius_38N024E.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{Mars_Reconnaissance_Orbiter_CTX_Mosaic_Deuteronius_38N024E/CTX_Ortho_38N024E_6mp_B17_016168_2181.wms => Mars_Reconnaissance_Orbiter_CTX/Mosaic_Deuteronius_38N024E.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_Deuteronius_39N024E.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{Mars_Reconnaissance_Orbiter_CTX_Mosaic_Deuteronius_39N024E/CTX_Ortho_39N024E_6mp_D15_032875_2196.wms => Mars_Reconnaissance_Orbiter_CTX/Mosaic_Deuteronius_39N024E.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_Deuteronius_40N024E.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{Mars_Reconnaissance_Orbiter_CTX_Mosaic_Deuteronius_40N024E/CTX_Ortho_40N022E_6mp_B18_016656_2206.wms => Mars_Reconnaissance_Orbiter_CTX/Mosaic_Deuteronius_40N024E.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_East_Melas_11S289E.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_11S289E/CTX_Ortho_11S289E_6mp_F23_044971_1685.wms => Mars_Reconnaissance_Orbiter_CTX/Mosaic_East_Melas_11S289E.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_East_Melas_11S291E.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_11S291E/CTX_Ortho_11S291E_6mp_B19_017187_1685.wms => Mars_Reconnaissance_Orbiter_CTX/Mosaic_East_Melas_11S291E.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_East_Melas_12S289E_D01.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S289E_D01/CTX_Ortho_12S289E_6mp_D01_027446_1678.wms => Mars_Reconnaissance_Orbiter_CTX/Mosaic_East_Melas_12S289E_D01.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_East_Melas_12S289E_F18.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S289E_F18/CTX_Ortho_12S289E_6mp_F18_042927_1681.wms => Mars_Reconnaissance_Orbiter_CTX/Mosaic_East_Melas_12S289E_F18.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_East_Melas_12S290E.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S290E/CTX_Ortho_12S290E_6mp_D18_034250_1676.wms => Mars_Reconnaissance_Orbiter_CTX/Mosaic_East_Melas_12S290E.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_East_Melas_12S291E_F14.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S291E_F14/F14_041292_1682_map_ba_align_6_fill500-DRG.wms => Mars_Reconnaissance_Orbiter_CTX/Mosaic_East_Melas_12S291E_F14.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_East_Melas_12S291E_F21.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S291E_F21/CTX_Ortho_12S291E_6mp_F21_043850_1684.wms => Mars_Reconnaissance_Orbiter_CTX/Mosaic_East_Melas_12S291E_F21.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_East_Melas_12S291E_J01.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S291E_J01/CTX_Ortho_12S291E_6mp_J01_045116_1677.wms => Mars_Reconnaissance_Orbiter_CTX/Mosaic_East_Melas_12S291E_J01.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_East_Melas_13S289E_D10.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_13S289E_D10/CTX_Ortho_13S289E_6mp_D10_031125_1673.wms => Mars_Reconnaissance_Orbiter_CTX/Mosaic_East_Melas_13S289E_D10.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_East_Melas_16S291E.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_16S291E/CTX_Ortho_16S291E_6mp_D22_035951_1644.wms => Mars_Reconnaissance_Orbiter_CTX/Mosaic_East_Melas_16S291E.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Slope_Apollinaris_12S182E.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{Mars_Reconnaissance_Orbiter_CTX_Slope_Apollinaris_12S182E/CTX_Slope_12S182E_24mp_P22_009609_1674_B02_010453_1675.wms => Mars_Reconnaissance_Orbiter_CTX/Slope_Apollinaris_12S182E.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Slope_Apollinaris_13S182E.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{Mars_Reconnaissance_Orbiter_CTX_Slope_Apollinaris_13S182E/CTX_Slope_13S182E_24mp_G15_024127_1673_G16_024483_1673.wms => Mars_Reconnaissance_Orbiter_CTX/Slope_Apollinaris_13S182E.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Slope_Apollinaris_14S184E.vrt rename data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/{Mars_Reconnaissance_Orbiter_CTX_Slope_Apollinaris_14S184E/CTX_Slope_14S184E_24mp_B01_009886_1658_P21_009385_1658.wms => Mars_Reconnaissance_Orbiter_CTX/Slope_Apollinaris_14S184E.wms} (100%) delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Apollinaris_12S182E/CTX_ClrSlope_8bit_12S182E_24mp_P22_009609_1674_B02_010453_1675.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Apollinaris_12S182E/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Apollinaris_12S182E.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Apollinaris_13S182E/CTX_ClrSlope_8bit_13S182E_24mp_G15_024127_1673_G16_024483_1673.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Apollinaris_13S182E/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Apollinaris_13S182E.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Apollinaris_14S184E/CTX_ClrSlope_8bit_14S184E_24mp_B01_009886_1658_P21_009385_1658.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Apollinaris_14S184E/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Apollinaris_14S184E.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Coprates_10S291E/CTX_ClrSlope_8bit_10S291E_24mp_P22_009684_1699_B02_010396_1699.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Coprates_10S291E/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Coprates_10S291E.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Coprates_11S293E/CTX_ClrSlope_8bit_11S293E_24mp_B09_013231_1696_B11_013732_1690.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Coprates_11S293E/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Coprates_11S293E.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Coprates_13S293E/CTX_ClrSlope_8bit_13S293E_24mp_G07_020879_1669_G09_021657_1665.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Coprates_13S293E/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Coprates_13S293E.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Deuteronius_37N024E/CTX_ClrSlope_8bit_37N024E_24mp_G05_020203_2178_G22_026994_2170.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Deuteronius_37N024E/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Deuteronius_37N024E.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Deuteronius_38N024E/CTX_ClrSlope_8bit_38N024E_24mp_B17_016168_2181_G16_024594_2181.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Deuteronius_38N024E/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Deuteronius_38N024E.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Deuteronius_39N024E/CTX_ClrSlope_8bit_39N024E_24mp_D15_032875_2196_D15_033165_2196.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Deuteronius_39N024E/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Deuteronius_39N024E.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Deuteronius_40N024E/CTX_ClrSlope_8bit_40N022E_24mp_B18_016656_2206_B18_016801_2206.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Deuteronius_40N024E/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Deuteronius_40N024E.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_11S289E/CTX_ClrSlope_8bit_11S289E_24mp_F23_044971_1685_F21_043995_1685.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_11S289E/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_11S289E.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_11S291E/CTX_ClrSlope_8bit_11S291E_24mp_B19_017187_1685_B19_016976_1685.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_11S291E/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_11S291E.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S289E_D01/CTX_ClrSlope_8bit_12S289E_24mp_D01_027446_1678_D01_027723_1677.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S289E_D01/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S289E_D01.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S289E_F18/CTX_ClrSlope_8bit_12S289E_24mp_F18_042927_1681_J02_045749_1694.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S289E_F18/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S289E_F18.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S290E/CTX_ClrSlope_8bit_12S290E_24mp_D18_034250_1676_D21_035450_1674.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S290E/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S290E.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S291E_F14/CTX_ClrSlope_8bit_12S291E_24mp_F14_041292_1682_F16_041938_1682.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S291E_F14/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S291E_F14.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S291E_F21/CTX_ClrSlope_8bit_12S291E_24mp_F21_043850_1684_F21_043916_1685.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S291E_F21/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S291E_F21.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S291E_J01/CTX_ClrSlope_8bit_12S291E_24mp_J01_045116_1677_J03_046039_1676.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S291E_J01/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S291E_J01.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_13S289E/CTX_ClrSlope_8bit_13S289E_24mp_D10_031125_1673_D12_031903_1669.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_13S289E/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_13S289E.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_16S291E_D22/CTX_ClrSlope_8bit_16S291E_24mp_D22_035951_1644_F01_036307_1644.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_16S291E_D22/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_16S291E_D22.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_Apollinaris_12S182E/CTX_Shade_12S182E_24mp_P22_009609_1674_B02_010453_1675.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_Apollinaris_12S182E/Mars_Reconnaissance_Orbiter_CTX_HillShade_Apollinaris_12S182E.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_Apollinaris_13S182E/CTX_Shade_13S182E_24mp_G15_024127_1673_G16_024483_1673.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_Apollinaris_13S182E/Mars_Reconnaissance_Orbiter_CTX_HillShade_Apollinaris_13S182E.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_Apollinaris_14S184E/CTX_Shade_14S184E_24mp_B01_009886_1658_P21_009385_1658.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_Apollinaris_14S184E/Mars_Reconnaissance_Orbiter_CTX_HillShade_Apollinaris_14S184E.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_Coprates_10S291E/CTX_Shade_10S291E_24mp_P22_009684_1699_B02_010396_1699.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_Coprates_10S291E/Mars_Reconnaissance_Orbiter_CTX_HillShade_Coprates_10S291E.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_Coprates_11S293E/CTX_Shade_11S293E_24mp_B09_013231_1696_B11_013732_1690.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_Coprates_11S293E/Mars_Reconnaissance_Orbiter_CTX_HillShade_Coprates_11S293E.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_Coprates_13S293E/CTX_Shade_13S293E_24mp_G07_020879_1669_G09_021657_1665.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_Coprates_13S293E/Mars_Reconnaissance_Orbiter_CTX_HillShade_Coprates_13S293E.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_Deuteronius_37N024E/CTX_Shade_37N024E_24mp_G05_020203_2178_G22_026994_2170.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_Deuteronius_37N024E/Mars_Reconnaissance_Orbiter_CTX_HillShade_Deuteronius_37N024E.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_Deuteronius_38N024E/CTX_Shade_38N024E_24mp_B17_016168_2181_G16_024594_2181.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_Deuteronius_38N024E/Mars_Reconnaissance_Orbiter_CTX_HillShade_Deuteronius_38N024E.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_Deuteronius_39N024E/CTX_Shade_39N024E_24mp_D15_032875_2196_D15_033165_2196.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_Deuteronius_39N024E/Mars_Reconnaissance_Orbiter_CTX_HillShade_Deuteronius_39N024E.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_Deuteronius_40N024E/CTX_Shade_40N022E_24mp_B18_016656_2206_B18_016801_2206.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_Deuteronius_40N024E/Mars_Reconnaissance_Orbiter_CTX_HillShade_Deuteronius_40N024E.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_11S289E/CTX_Shade_11S289E_24mp_F23_044971_1685_F21_043995_1685.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_11S289E/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_11S289E.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_11S291E/CTX_Shade_11S291E_24mp_B19_017187_1685_B19_016976_1685.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_11S291E/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_11S291E.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S289E_D01/CTX_Shade_12S289E_24mp_D01_027446_1678_D01_027723_1677.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S289E_D01/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S289E_D01.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S289E_F18/CTX_Shade_12S289E_24mp_F18_042927_1681_J02_045749_1694.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S289E_F18/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S289E_F18.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S290E/CTX_Shade_12S290E_24mp_D18_034250_1676_D21_035450_1674.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S290E/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S290E.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S291E_F14/CTX_Shade_12S291E_24mp_F14_041292_1682_F16_041938_1682.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S291E_F14/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S291E_F14.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S291E_F21/CTX_Shade_12S291E_24mp_F21_043850_1684_F21_043916_1685.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S291E_F21/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S291E_F21.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S291E_J01/CTX_Shade_12S291E_24mp_J01_045116_1677_J03_046039_1676.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S291E_J01/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S291E_J01.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_13S289E_D10/CTX_Shade_13S289E_24mp_D10_031125_1673_D12_031903_1669.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_13S289E_D10/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_13S289E_D10.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_16S291E_D22/CTX_Shade_16S291E_24mp_D22_035951_1644_F01_036307_1644.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_16S291E_D22/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_16S291E_D22.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Hilllshade_Deuteronilus/Deuteronilus_CTX_Shade_v0_20171112.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Hilllshade_Deuteronilus/Mars_Reconnaissance_Orbiter_CTX_Hilllshade_Deuteronilus.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Apollinaris_12S182E/CTX_Ortho_12S182E_24mp_P22_009609_1674.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Apollinaris_12S182E/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Apollinaris_12S182E.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Apollinaris_13S182E/CTX_Ortho_13S182E_24mp_G15_024127_1673.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Apollinaris_13S182E/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Apollinaris_13S182E.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Apollinaris_14S184E/CTX_Ortho_14S184E_24mp_B01_009886_1658.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Apollinaris_14S184E/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Apollinaris_14S184E.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Coprates_10S291E/CTX_Ortho_10S291E_24mp_P22_009684_1699.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Coprates_10S291E/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Coprates_10S291E.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Coprates_11S293E/CTX_Ortho_11S293E_24mp_B09_013231_1696.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Coprates_11S293E/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Coprates_11S293E.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Coprates_13S293E/CTX_Ortho_13S293E_24mp_G07_020879_1669.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Coprates_13S293E/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Coprates_13S293E.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Deuteronius_38N024E/CTX_Ortho_38N024E_6mp_B17_016168_2181.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Deuteronius_38N024E/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Deuteronius_38N024E.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Deuteronius_39N024E/CTX_Ortho_39N024E_6mp_D15_032875_2196.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Deuteronius_39N024E/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Deuteronius_39N024E.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Deuteronius_40N024E/CTX_Ortho_40N022E_6mp_B18_016656_2206.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Deuteronius_40N024E/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Deuteronius_40N024E.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_11S289E/CTX_Ortho_11S289E_6mp_F23_044971_1685.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_11S289E/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_11S289E.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_11S291E/CTX_Ortho_11S291E_6mp_B19_017187_1685.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_11S291E/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_11S291E.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S289E_D01/CTX_Ortho_12S289E_6mp_D01_027446_1678.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S289E_D01/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S289E_D01.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S289E_F18/CTX_Ortho_12S289E_6mp_F18_042927_1681.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S289E_F18/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S289E_F18.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S290E/CTX_Ortho_12S290E_6mp_D18_034250_1676.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S290E/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S290E.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S291E_F14/F14_041292_1682_map_ba_align_6_fill500-DRG.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S291E_F14/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S291E_F14.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S291E_F21/CTX_Ortho_12S291E_6mp_F21_043850_1684.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S291E_F21/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S291E_F21.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S291E_J01/CTX_Ortho_12S291E_6mp_J01_045116_1677.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S291E_J01/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S291E_J01.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_13S289E_D10/CTX_Ortho_13S289E_6mp_D10_031125_1673.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_13S289E_D10/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_13S289E_D10.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_16S291E/CTX_Ortho_16S291E_6mp_D22_035951_1644.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_16S291E/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_16S291E.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Slope_Apollinaris_12S182E/CTX_Slope_12S182E_24mp_P22_009609_1674_B02_010453_1675.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Slope_Apollinaris_12S182E/Mars_Reconnaissance_Orbiter_CTX_Slope_Apollinaris_12S182E.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Slope_Apollinaris_13S182E/CTX_Slope_13S182E_24mp_G15_024127_1673_G16_024483_1673.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Slope_Apollinaris_13S182E/Mars_Reconnaissance_Orbiter_CTX_Slope_Apollinaris_13S182E.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Slope_Apollinaris_14S184E/CTX_Slope_14S184E_24mp_B01_009886_1658_P21_009385_1658.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Slope_Apollinaris_14S184E/Mars_Reconnaissance_Orbiter_CTX_Slope_Apollinaris_14S184E.asset delete mode 100644 data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/all_treks_layers.asset create mode 100644 data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS.asset create mode 100644 data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS/ColorHillshade_Global.vrt rename data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/{MSGR_MDIS_ColorHillshade_Global/Mercury_Messenger_USGS_DEM_665m_v2_HillshadeColor.wms => MSGR_MDIS/ColorHillshade_Global.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS/Hillshade_Global.vrt rename data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/{MSGR_MDIS_Hillshade_Global/Mercury_Messenger_USGS_DEM_665m_v2_Hillshade.wms => MSGR_MDIS/Hillshade_Global.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS/Slope_Colorized_Global.vrt rename data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/{MSGR_MDIS_Slope_Colorized_Global/Mercury_Messenger_USGS_DEM_665m_v2_SlopeColor.wms => MSGR_MDIS/Slope_Colorized_Global.wms} (100%) delete mode 100644 data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_ColorHillshade_Global/MSGR_MDIS_ColorHillshade_Global.asset delete mode 100644 data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_ColorHillshade_Global/Mercury_Messenger_USGS_DEM_665m_v2_HillshadeColor.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Hillshade_Global/MSGR_MDIS_Hillshade_Global.asset delete mode 100644 data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Hillshade_Global/Mercury_Messenger_USGS_DEM_665m_v2_Hillshade.vrt create mode 100644 data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic.asset create mode 100644 data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic/Aksakov_Crater_Peak_Ring.vrt rename data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/{MSGR_MDIS_Mosaic_Aksakov_Crater_Peak_Ring/MSGR_Aksakov_Crater_Peak_Ring_Ortho_29m.wms => MSGR_MDIS_Mosaic/Aksakov_Crater_Peak_Ring.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic/Crater_near_Dali_Crater.vrt rename data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/{MSGR_MDIS_Mosaic_Crater_near_Dali_Crater/MSGR_near_Dali_Crater_Ortho_20m.wms => MSGR_MDIS_Mosaic/Crater_near_Dali_Crater.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic/Crater_near_Geddes_Crater.vrt rename data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/{MSGR_MDIS_Mosaic_Crater_near_Geddes_Crater/MSGR_near_Geddes_Crater_Ortho_33m.wms => MSGR_MDIS_Mosaic/Crater_near_Geddes_Crater.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic/Degas_Crater.vrt rename data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/{MSGR_MDIS_Mosaic_Degas_Crater/MSGR_Degas_Crater_Ortho_30m.wms => MSGR_MDIS_Mosaic/Degas_Crater.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic/Kertesz_Crater.vrt rename data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/{MSGR_MDIS_Mosaic_Kertesz_Crater/MSGR_Kertesz_Crater_Ortho_30m.wms => MSGR_MDIS_Mosaic/Kertesz_Crater.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic/North-West_of_Degas_Crater.vrt rename data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/{MSGR_MDIS_Mosaic_North-West_of_Degas_Crater/MSGR_nw_Degas_Crater_Ortho_26m.wms => MSGR_MDIS_Mosaic/North-West_of_Degas_Crater.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic/Praxiteles_Peak_Ring.vrt rename data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/{MSGR_MDIS_Mosaic_Praxiteles_Peak_Ring/MSGR_Praxiteles_Peak_Ring_Ortho_20m.wms => MSGR_MDIS_Mosaic/Praxiteles_Peak_Ring.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic/Raditladi_Crater.vrt rename data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/{MSGR_MDIS_Mosaic_Raditladi_Crater/MSGR_Raditladi_Crater_Ortho_40m.wms => MSGR_MDIS_Mosaic/Raditladi_Crater.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic/Sander_Crater.vrt rename data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/{MSGR_MDIS_Mosaic_Sander_Crater/MSGR_Sander_Crater_Ortho_22m.wms => MSGR_MDIS_Mosaic/Sander_Crater.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic/Sholem_Aleichem_Crater_Wall.vrt rename data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/{MSGR_MDIS_Mosaic_Sholem_Aleichem_Crater_Wall/MSGR_Sholem_Aleichem_Crater_Wall_Ortho_8m.wms => MSGR_MDIS_Mosaic/Sholem_Aleichem_Crater_Wall.wms} (100%) delete mode 100644 data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic_Aksakov_Crater_Peak_Ring/MSGR_Aksakov_Crater_Peak_Ring_Ortho_29m.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic_Aksakov_Crater_Peak_Ring/MSGR_MDIS_Mosaic_Aksakov_Crater_Peak_Ring.asset delete mode 100644 data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic_Crater_near_Dali_Crater/MSGR_MDIS_Mosaic_Crater_near_Dali_Crater.asset delete mode 100644 data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic_Crater_near_Dali_Crater/MSGR_near_Dali_Crater_Ortho_20m.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic_Crater_near_Geddes_Crater/MSGR_MDIS_Mosaic_Crater_near_Geddes_Crater.asset delete mode 100644 data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic_Crater_near_Geddes_Crater/MSGR_near_Geddes_Crater_Ortho_33m.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic_Degas_Crater/MSGR_Degas_Crater_Ortho_30m.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic_Degas_Crater/MSGR_MDIS_Mosaic_Degas_Crater.asset delete mode 100644 data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic_Kertesz_Crater/MSGR_Kertesz_Crater_Ortho_30m.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic_Kertesz_Crater/MSGR_MDIS_Mosaic_Kertesz_Crater.asset delete mode 100644 data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic_North-West_of_Degas_Crater/MSGR_MDIS_Mosaic_North-West_of_Degas_Crater.asset delete mode 100644 data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic_North-West_of_Degas_Crater/MSGR_nw_Degas_Crater_Ortho_26m.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic_Praxiteles_Peak_Ring/MSGR_MDIS_Mosaic_Praxiteles_Peak_Ring.asset delete mode 100644 data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic_Praxiteles_Peak_Ring/MSGR_Praxiteles_Peak_Ring_Ortho_20m.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic_Raditladi_Crater/MSGR_MDIS_Mosaic_Raditladi_Crater.asset delete mode 100644 data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic_Raditladi_Crater/MSGR_Raditladi_Crater_Ortho_40m.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic_Sander_Crater/MSGR_MDIS_Mosaic_Sander_Crater.asset delete mode 100644 data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic_Sander_Crater/MSGR_Sander_Crater_Ortho_22m.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic_Sholem_Aleichem_Crater_Wall/MSGR_MDIS_Mosaic_Sholem_Aleichem_Crater_Wall.asset delete mode 100644 data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic_Sholem_Aleichem_Crater_Wall/MSGR_Sholem_Aleichem_Crater_Wall_Ortho_8m.vrt create mode 100644 data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope.asset create mode 100644 data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope/Aksakov_Crater_Peak_Ring.vrt rename data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/{MSGR_MDIS_Slope_Aksakov_Crater_Peak_Ring/MSGR_Aksakov_Crater_Peak_Ring_Slope_100m.wms => MSGR_MDIS_Slope/Aksakov_Crater_Peak_Ring.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope/Crater_near_Dali_Crater.vrt rename data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/{MSGR_MDIS_Slope_Crater_near_Dali_Crater/MSGR_near_Dali_Crater_Slope_60m.wms => MSGR_MDIS_Slope/Crater_near_Dali_Crater.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope/Crater_near_Geddes_Crater.vrt rename data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/{MSGR_MDIS_Slope_Crater_near_Geddes_Crater/MSGR_near_Geddes_Crater_Slope_100m.wms => MSGR_MDIS_Slope/Crater_near_Geddes_Crater.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope/Degas_Crater.vrt rename data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/{MSGR_MDIS_Slope_Degas_Crater/MSGR_Degas_Crater_Slope_90m.wms => MSGR_MDIS_Slope/Degas_Crater.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope/Kertesz_Crater.vrt rename data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/{MSGR_MDIS_Slope_Kertesz_Crater/MSGR_Kertesz_Crater_Slope_100m.wms => MSGR_MDIS_Slope/Kertesz_Crater.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope/North-West_of_Degas_Crater.vrt rename data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/{MSGR_MDIS_Slope_North-West_of_Degas_Crater/MSGR_nw_Degas_Crater_Slope_80m.wms => MSGR_MDIS_Slope/North-West_of_Degas_Crater.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope/Praxiteles_Peak_Ring.vrt rename data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/{MSGR_MDIS_Slope_Praxiteles_Peak_Ring/MSGR_Praxiteles_Peak_Ring_Slope_60m.wms => MSGR_MDIS_Slope/Praxiteles_Peak_Ring.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope/Raditladi_Crater.vrt rename data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/{MSGR_MDIS_Slope_Raditladi_Crater/MSGR_Raditladi_Crater_Slope_120m.wms => MSGR_MDIS_Slope/Raditladi_Crater.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope/Sander_Crater.vrt rename data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/{MSGR_MDIS_Slope_Sander_Crater/MSGR_Sander_Crater_Slope_80m.wms => MSGR_MDIS_Slope/Sander_Crater.wms} (100%) create mode 100644 data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope/Sholem_Aleichem_Crater_Wall.vrt rename data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/{MSGR_MDIS_Slope_Sholem_Aleichem_Crater_Wall/MSGR_Sholem_Aleichem_Crater_Wall_Slope_25m.wms => MSGR_MDIS_Slope/Sholem_Aleichem_Crater_Wall.wms} (100%) delete mode 100644 data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_Aksakov_Crater_Peak_Ring/MSGR_Aksakov_Crater_Peak_Ring_Slope_100m.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_Aksakov_Crater_Peak_Ring/MSGR_MDIS_Slope_Aksakov_Crater_Peak_Ring.asset delete mode 100644 data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_Colorized_Global/MSGR_MDIS_Slope_Colorized_Global.asset delete mode 100644 data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_Colorized_Global/Mercury_Messenger_USGS_DEM_665m_v2_SlopeColor.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_Crater_near_Dali_Crater/MSGR_MDIS_Slope_Crater_near_Dali_Crater.asset delete mode 100644 data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_Crater_near_Dali_Crater/MSGR_near_Dali_Crater_Slope_60m.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_Crater_near_Geddes_Crater/MSGR_MDIS_Slope_Crater_near_Geddes_Crater.asset delete mode 100644 data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_Crater_near_Geddes_Crater/MSGR_near_Geddes_Crater_Slope_100m.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_Degas_Crater/MSGR_Degas_Crater_Slope_90m.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_Degas_Crater/MSGR_MDIS_Slope_Degas_Crater.asset delete mode 100644 data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_Kertesz_Crater/MSGR_Kertesz_Crater_Slope_100m.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_Kertesz_Crater/MSGR_MDIS_Slope_Kertesz_Crater.asset delete mode 100644 data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_North-West_of_Degas_Crater/MSGR_MDIS_Slope_North-West_of_Degas_Crater.asset delete mode 100644 data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_North-West_of_Degas_Crater/MSGR_nw_Degas_Crater_Slope_80m.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_Praxiteles_Peak_Ring/MSGR_MDIS_Slope_Praxiteles_Peak_Ring.asset delete mode 100644 data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_Praxiteles_Peak_Ring/MSGR_Praxiteles_Peak_Ring_Slope_60m.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_Raditladi_Crater/MSGR_MDIS_Slope_Raditladi_Crater.asset delete mode 100644 data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_Raditladi_Crater/MSGR_Raditladi_Crater_Slope_120m.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_Sander_Crater/MSGR_MDIS_Slope_Sander_Crater.asset delete mode 100644 data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_Sander_Crater/MSGR_Sander_Crater_Slope_80m.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_Sholem_Aleichem_Crater_Wall/MSGR_MDIS_Slope_Sholem_Aleichem_Crater_Wall.asset delete mode 100644 data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_Sholem_Aleichem_Crater_Wall/MSGR_Sholem_Aleichem_Crater_Wall_Slope_25m.vrt delete mode 100644 data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/all_treks_layers.asset diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Metric_Cam_DEM.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Metric_Cam_DEM.asset new file mode 100644 index 0000000000..964d2edc0e --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Metric_Cam_DEM.asset @@ -0,0 +1,64 @@ +-- This file was automatically generated using a script found at +-- https://github.com/OpenSpace/scripts/treks-to-openspace. See the README.md file +-- in that repository for more information on how to run the script to update these +-- files. In particular in the case of errors, prefer to change that script rather +-- than the individual files + +local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier + +local treks_Apollo15_MetricCam_ClrShade_Global_1024ppd = { + Identifier = "Apollo15_MetricCam_ClrShade_Global_1024ppd", + Name = [[Apollo 15 Metric Cam DEM, ColorHillshade]], + FilePath = asset.localResource("Apollo_15_Metric_Cam_DEM/ColorHillshade.vrt"), + Description = [[]] +} + +local treks_Apollo15_MetricCam_ClrConf_Global_1024ppd = { + Identifier = "Apollo15_MetricCam_ClrConf_Global_1024ppd", + Name = [[Apollo 15 Metric Cam DEM, Colorized Confidence]], + FilePath = asset.localResource("Apollo_15_Metric_Cam_DEM/Colorized_Confidence.vrt"), + Description = [[]] +} + +local treks_Apollo15_MetricCam_Gray_Global_1024ppd = { + Identifier = "Apollo15_MetricCam_Gray_Global_1024ppd", + Name = [[Apollo 15 Metric Cam DEM, Grayscale]], + FilePath = asset.localResource("Apollo_15_Metric_Cam_DEM/Grayscale.vrt"), + Description = [[]] +} + +local treks_Apollo15_MetricCam_Shade_Global_1024ppd = { + Identifier = "Apollo15_MetricCam_Shade_Global_1024ppd", + Name = [[Apollo 15 Metric Cam DEM, Hillshade]], + FilePath = asset.localResource("Apollo_15_Metric_Cam_DEM/Hillshade.vrt"), + Description = [[]] +} + +asset.onInitialize(function() + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_Apollo15_MetricCam_ClrShade_Global_1024ppd) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_Apollo15_MetricCam_ClrConf_Global_1024ppd) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_Apollo15_MetricCam_Gray_Global_1024ppd) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_Apollo15_MetricCam_Shade_Global_1024ppd) +end) + +asset.onDeinitialize(function() + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_Apollo15_MetricCam_ClrShade_Global_1024ppd") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_Apollo15_MetricCam_ClrConf_Global_1024ppd") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_Apollo15_MetricCam_Gray_Global_1024ppd") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_Apollo15_MetricCam_Shade_Global_1024ppd") +end) + +asset.export("Apollo15_MetricCam_ClrShade_Global_1024ppd", treks_Apollo15_MetricCam_ClrShade_Global_1024ppd) +asset.export("Apollo15_MetricCam_ClrConf_Global_1024ppd", treks_Apollo15_MetricCam_ClrConf_Global_1024ppd) +asset.export("Apollo15_MetricCam_Gray_Global_1024ppd", treks_Apollo15_MetricCam_Gray_Global_1024ppd) +asset.export("Apollo15_MetricCam_Shade_Global_1024ppd", treks_Apollo15_MetricCam_Shade_Global_1024ppd) + + +asset.meta = { + Name = [[NASA Treks Layers for Moon Apollo_15_Metric_Cam_DEM], + Version = "1.0", + Author = "NASA/Treks", + URL = "https://trek.nasa.gov/moon", + License = "NASA/Treks", + Description = [[Apollo_15_Metric_Cam_DEM layers from NASA/Treks for Moon]] +} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Metric_Cam_DEM/ColorHillshade.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Metric_Cam_DEM/ColorHillshade.vrt new file mode 100644 index 0000000000..1ee84ef0a0 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Metric_Cam_DEM/ColorHillshade.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.3732910156250000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.3732910156250000e-03 + + 0 + Red + + ColorHillshade.wms + 1 + + + + 0 + + + + 0 + Green + + ColorHillshade.wms + 2 + + + + 0 + + + + 0 + Blue + + ColorHillshade.wms + 3 + + + + 0 + + + + Alpha + + ColorHillshade.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Metric_Cam_DEM_ColorHillshade/Apollo15_MetricCam_ClrShade_Global_1024ppd.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Metric_Cam_DEM/ColorHillshade.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Metric_Cam_DEM_ColorHillshade/Apollo15_MetricCam_ClrShade_Global_1024ppd.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Metric_Cam_DEM/ColorHillshade.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Metric_Cam_DEM/Colorized_Confidence.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Metric_Cam_DEM/Colorized_Confidence.vrt new file mode 100644 index 0000000000..1d594c8bc8 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Metric_Cam_DEM/Colorized_Confidence.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.3732910156250000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.3732910156250000e-03 + + 0 + Red + + Colorized_Confidence.wms + 1 + + + + 0 + + + + 0 + Green + + Colorized_Confidence.wms + 2 + + + + 0 + + + + 0 + Blue + + Colorized_Confidence.wms + 3 + + + + 0 + + + + Alpha + + Colorized_Confidence.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Metric_Cam_DEM_Colorized_Confidence/Apollo15_MetricCam_ClrConf_Global_1024ppd.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Metric_Cam_DEM/Colorized_Confidence.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Metric_Cam_DEM_Colorized_Confidence/Apollo15_MetricCam_ClrConf_Global_1024ppd.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Metric_Cam_DEM/Colorized_Confidence.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Metric_Cam_DEM/Grayscale.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Metric_Cam_DEM/Grayscale.vrt new file mode 100644 index 0000000000..42b63898b1 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Metric_Cam_DEM/Grayscale.vrt @@ -0,0 +1,29 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.3732910156250000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.3732910156250000e-03 + + 0 + Gray + + Grayscale.wms + 1 + + + + 0 + + + + Alpha + + Grayscale.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Metric_Cam_DEM_Grayscale/Apollo15_MetricCam_Gray_Global_1024ppd.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Metric_Cam_DEM/Grayscale.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Metric_Cam_DEM_Grayscale/Apollo15_MetricCam_Gray_Global_1024ppd.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Metric_Cam_DEM/Grayscale.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Metric_Cam_DEM/Hillshade.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Metric_Cam_DEM/Hillshade.vrt new file mode 100644 index 0000000000..98c7fb2397 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Metric_Cam_DEM/Hillshade.vrt @@ -0,0 +1,29 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.3732910156250000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.3732910156250000e-03 + + 0 + Gray + + Hillshade.wms + 1 + + + + 0 + + + + Alpha + + Hillshade.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Metric_Cam_DEM_Hillshade/Apollo15_MetricCam_Shade_Global_1024ppd.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Metric_Cam_DEM/Hillshade.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Metric_Cam_DEM_Hillshade/Apollo15_MetricCam_Shade_Global_1024ppd.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Metric_Cam_DEM/Hillshade.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Metric_Cam_DEM_ColorHillshade/Apollo15_MetricCam_ClrShade_Global_1024ppd.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Metric_Cam_DEM_ColorHillshade/Apollo15_MetricCam_ClrShade_Global_1024ppd.vrt deleted file mode 100644 index aeadaaddaa..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Metric_Cam_DEM_ColorHillshade/Apollo15_MetricCam_ClrShade_Global_1024ppd.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.3732910156250000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.3732910156250000e-03 - - 0 - Red - - Apollo15_MetricCam_ClrShade_Global_1024ppd.wms - 1 - - - - 0 - - - - 0 - Green - - Apollo15_MetricCam_ClrShade_Global_1024ppd.wms - 2 - - - - 0 - - - - 0 - Blue - - Apollo15_MetricCam_ClrShade_Global_1024ppd.wms - 3 - - - - 0 - - - - Alpha - - Apollo15_MetricCam_ClrShade_Global_1024ppd.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Metric_Cam_DEM_ColorHillshade/Apollo_15_Metric_Cam_DEM_ColorHillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Metric_Cam_DEM_ColorHillshade/Apollo_15_Metric_Cam_DEM_ColorHillshade.asset deleted file mode 100644 index bfbfbc4119..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Metric_Cam_DEM_ColorHillshade/Apollo_15_Metric_Cam_DEM_ColorHillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "Apollo15_MetricCam_ClrShade_Global_1024ppd", - Name = [[Apollo 15 Metric Cam DEM, ColorHillshade]], - FilePath = asset.localResource("Apollo15_MetricCam_ClrShade_Global_1024ppd.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Apollo 15 Metric Cam DEM, ColorHillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=Apollo15_MetricCam_ClrShade_Global_1024ppd%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Apollo 15 Metric Cam DEM, ColorHillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Metric_Cam_DEM_Colorized_Confidence/Apollo15_MetricCam_ClrConf_Global_1024ppd.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Metric_Cam_DEM_Colorized_Confidence/Apollo15_MetricCam_ClrConf_Global_1024ppd.vrt deleted file mode 100644 index 0b69dfa24f..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Metric_Cam_DEM_Colorized_Confidence/Apollo15_MetricCam_ClrConf_Global_1024ppd.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.3732910156250000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.3732910156250000e-03 - - 0 - Red - - Apollo15_MetricCam_ClrConf_Global_1024ppd.wms - 1 - - - - 0 - - - - 0 - Green - - Apollo15_MetricCam_ClrConf_Global_1024ppd.wms - 2 - - - - 0 - - - - 0 - Blue - - Apollo15_MetricCam_ClrConf_Global_1024ppd.wms - 3 - - - - 0 - - - - Alpha - - Apollo15_MetricCam_ClrConf_Global_1024ppd.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Metric_Cam_DEM_Colorized_Confidence/Apollo_15_Metric_Cam_DEM_Colorized_Confidence.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Metric_Cam_DEM_Colorized_Confidence/Apollo_15_Metric_Cam_DEM_Colorized_Confidence.asset deleted file mode 100644 index 2d98b6b8b8..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Metric_Cam_DEM_Colorized_Confidence/Apollo_15_Metric_Cam_DEM_Colorized_Confidence.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "Apollo15_MetricCam_ClrConf_Global_1024ppd", - Name = [[Apollo 15 Metric Cam DEM, Colorized Confidence]], - FilePath = asset.localResource("Apollo15_MetricCam_ClrConf_Global_1024ppd.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Apollo 15 Metric Cam DEM, Colorized Confidence]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=Apollo15_MetricCam_ClrConf_Global_1024ppd%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Apollo 15 Metric Cam DEM, Colorized Confidence layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Metric_Cam_DEM_Grayscale/Apollo15_MetricCam_Gray_Global_1024ppd.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Metric_Cam_DEM_Grayscale/Apollo15_MetricCam_Gray_Global_1024ppd.vrt deleted file mode 100644 index b8d26d7743..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Metric_Cam_DEM_Grayscale/Apollo15_MetricCam_Gray_Global_1024ppd.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.3732910156250000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.3732910156250000e-03 - - 0 - Gray - - Apollo15_MetricCam_Gray_Global_1024ppd.wms - 1 - - - - 0 - - - - Alpha - - Apollo15_MetricCam_Gray_Global_1024ppd.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Metric_Cam_DEM_Grayscale/Apollo_15_Metric_Cam_DEM_Grayscale.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Metric_Cam_DEM_Grayscale/Apollo_15_Metric_Cam_DEM_Grayscale.asset deleted file mode 100644 index ad14445a5c..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Metric_Cam_DEM_Grayscale/Apollo_15_Metric_Cam_DEM_Grayscale.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "Apollo15_MetricCam_Gray_Global_1024ppd", - Name = [[Apollo 15 Metric Cam DEM, Grayscale]], - FilePath = asset.localResource("Apollo15_MetricCam_Gray_Global_1024ppd.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Apollo 15 Metric Cam DEM, Grayscale]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=Apollo15_MetricCam_Gray_Global_1024ppd%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Apollo 15 Metric Cam DEM, Grayscale layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Metric_Cam_DEM_Hillshade/Apollo15_MetricCam_Shade_Global_1024ppd.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Metric_Cam_DEM_Hillshade/Apollo15_MetricCam_Shade_Global_1024ppd.vrt deleted file mode 100644 index c214d0cb48..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Metric_Cam_DEM_Hillshade/Apollo15_MetricCam_Shade_Global_1024ppd.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.3732910156250000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.3732910156250000e-03 - - 0 - Gray - - Apollo15_MetricCam_Shade_Global_1024ppd.wms - 1 - - - - 0 - - - - Alpha - - Apollo15_MetricCam_Shade_Global_1024ppd.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Metric_Cam_DEM_Hillshade/Apollo_15_Metric_Cam_DEM_Hillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Metric_Cam_DEM_Hillshade/Apollo_15_Metric_Cam_DEM_Hillshade.asset deleted file mode 100644 index 29de03d0e5..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Metric_Cam_DEM_Hillshade/Apollo_15_Metric_Cam_DEM_Hillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "Apollo15_MetricCam_Shade_Global_1024ppd", - Name = [[Apollo 15 Metric Cam DEM, Hillshade]], - FilePath = asset.localResource("Apollo15_MetricCam_Shade_Global_1024ppd.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Apollo 15 Metric Cam DEM, Hillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=Apollo15_MetricCam_Shade_Global_1024ppd%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Apollo 15 Metric Cam DEM, Hillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Metric_Cam_Image_Mosaic/Apollo15_MetricCam_Mosaic_Global_4096ppd.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Metric_Cam_Image_Mosaic/Apollo15_MetricCam_Mosaic_Global_4096ppd.vrt deleted file mode 100644 index 030b0400e0..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Metric_Cam_Image_Mosaic/Apollo15_MetricCam_Mosaic_Global_4096ppd.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 - - 0 - Gray - - Apollo15_MetricCam_Mosaic_Global_4096ppd.wms - 1 - - - - 0 - - - - Alpha - - Apollo15_MetricCam_Mosaic_Global_4096ppd.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Metric_Cam_Image_Mosaic/Apollo_15_Metric_Cam_Image_Mosaic.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Metric_Cam_Image_Mosaic/Apollo_15_Metric_Cam_Image_Mosaic.asset deleted file mode 100644 index 0f67fcdd2f..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Metric_Cam_Image_Mosaic/Apollo_15_Metric_Cam_Image_Mosaic.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "Apollo15_MetricCam_Mosaic_Global_4096ppd", - Name = [[Apollo 15 Metric Cam Image Mosaic]], - FilePath = asset.localResource("Apollo15_MetricCam_Mosaic_Global_4096ppd.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Apollo 15 Metric Cam Image Mosaic]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=Apollo15_MetricCam_Mosaic_Global_4096ppd%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Apollo 15 Metric Cam Image Mosaic layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM.asset new file mode 100644 index 0000000000..a55c41ca8c --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM.asset @@ -0,0 +1,54 @@ +-- This file was automatically generated using a script found at +-- https://github.com/OpenSpace/scripts/treks-to-openspace. See the README.md file +-- in that repository for more information on how to run the script to update these +-- files. In particular in the case of errors, prefer to change that script rather +-- than the individual files + +local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier + +local treks_Apollo15_PanCam_ClrShade_25N311E_5mp = { + Identifier = "Apollo15_PanCam_ClrShade_25N311E_5mp", + Name = [[Apollo 15 Pan Cam DEM, Aristarchus Plateau 1, ColorHillshade]], + FilePath = asset.localResource("Apollo_15_Pan_Cam_DEM/Aristarchus_Plateau_1.vrt"), + Description = [[]] +} + +local treks_Apollo15_PanCam_ClrShade_28N307E_3mp = { + Identifier = "Apollo15_PanCam_ClrShade_28N307E_3mp", + Name = [[Apollo 15 Pan Cam DEM, Aristarchus Plateau 2, ColorHillshade]], + FilePath = asset.localResource("Apollo_15_Pan_Cam_DEM/Aristarchus_Plateau_2.vrt"), + Description = [[]] +} + +local treks_Apollo15_PanCam_ClrShade_19S129E_5mp = { + Identifier = "Apollo15_PanCam_ClrShade_19S129E_5mp", + Name = [[Apollo 15 Pan Cam DEM, Tsiolkovskiy Crater, ColorHillshade]], + FilePath = asset.localResource("Apollo_15_Pan_Cam_DEM/Tsiolkovskiy_Crater.vrt"), + Description = [[]] +} + +asset.onInitialize(function() + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_Apollo15_PanCam_ClrShade_25N311E_5mp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_Apollo15_PanCam_ClrShade_28N307E_3mp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_Apollo15_PanCam_ClrShade_19S129E_5mp) +end) + +asset.onDeinitialize(function() + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_Apollo15_PanCam_ClrShade_25N311E_5mp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_Apollo15_PanCam_ClrShade_28N307E_3mp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_Apollo15_PanCam_ClrShade_19S129E_5mp") +end) + +asset.export("Apollo15_PanCam_ClrShade_25N311E_5mp", treks_Apollo15_PanCam_ClrShade_25N311E_5mp) +asset.export("Apollo15_PanCam_ClrShade_28N307E_3mp", treks_Apollo15_PanCam_ClrShade_28N307E_3mp) +asset.export("Apollo15_PanCam_ClrShade_19S129E_5mp", treks_Apollo15_PanCam_ClrShade_19S129E_5mp) + + +asset.meta = { + Name = [[NASA Treks Layers for Moon Apollo_15_Pan_Cam_DEM], + Version = "1.0", + Author = "NASA/Treks", + URL = "https://trek.nasa.gov/moon", + License = "NASA/Treks", + Description = [[Apollo_15_Pan_Cam_DEM layers from NASA/Treks for Moon]] +} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM/Aristarchus_Plateau_1.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM/Aristarchus_Plateau_1.vrt new file mode 100644 index 0000000000..60ef1c5c02 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM/Aristarchus_Plateau_1.vrt @@ -0,0 +1,53 @@ + + PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",25],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] + -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 + + 0 + Red + + Aristarchus_Plateau_1.wms + 1 + + + + 0 + + + + 0 + Green + + Aristarchus_Plateau_1.wms + 2 + + + + 0 + + + + 0 + Blue + + Aristarchus_Plateau_1.wms + 3 + + + + 0 + + + + Alpha + + Aristarchus_Plateau_1.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_1_ColorHillshade/Apollo15_PanCam_ClrShade_25N311E_5mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM/Aristarchus_Plateau_1.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_1_ColorHillshade/Apollo15_PanCam_ClrShade_25N311E_5mp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM/Aristarchus_Plateau_1.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM/Aristarchus_Plateau_2.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM/Aristarchus_Plateau_2.vrt new file mode 100644 index 0000000000..a5feb07a1d --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM/Aristarchus_Plateau_2.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 + + 0 + Red + + Aristarchus_Plateau_2.wms + 1 + + + + 0 + + + + 0 + Green + + Aristarchus_Plateau_2.wms + 2 + + + + 0 + + + + 0 + Blue + + Aristarchus_Plateau_2.wms + 3 + + + + 0 + + + + Alpha + + Aristarchus_Plateau_2.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_2_ColorHillshade/Apollo15_PanCam_ClrShade_28N307E_3mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM/Aristarchus_Plateau_2.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_2_ColorHillshade/Apollo15_PanCam_ClrShade_28N307E_3mp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM/Aristarchus_Plateau_2.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM/Tsiolkovskiy_Crater.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM/Tsiolkovskiy_Crater.vrt new file mode 100644 index 0000000000..f917f0e617 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM/Tsiolkovskiy_Crater.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 + + 0 + Red + + Tsiolkovskiy_Crater.wms + 1 + + + + 0 + + + + 0 + Green + + Tsiolkovskiy_Crater.wms + 2 + + + + 0 + + + + 0 + Blue + + Tsiolkovskiy_Crater.wms + 3 + + + + 0 + + + + Alpha + + Tsiolkovskiy_Crater.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Tsiolkovskiy_Crater_ColorHillshade/Apollo15_PanCam_ClrShade_19S129E_5mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM/Tsiolkovskiy_Crater.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Tsiolkovskiy_Crater_ColorHillshade/Apollo15_PanCam_ClrShade_19S129E_5mp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM/Tsiolkovskiy_Crater.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_1_ColorHillshade/Apollo15_PanCam_ClrShade_25N311E_5mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_1_ColorHillshade/Apollo15_PanCam_ClrShade_25N311E_5mp.vrt deleted file mode 100644 index 77878825a1..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_1_ColorHillshade/Apollo15_PanCam_ClrShade_25N311E_5mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",25],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 - - 0 - Red - - Apollo15_PanCam_ClrShade_25N311E_5mp.wms - 1 - - - - 0 - - - - 0 - Green - - Apollo15_PanCam_ClrShade_25N311E_5mp.wms - 2 - - - - 0 - - - - 0 - Blue - - Apollo15_PanCam_ClrShade_25N311E_5mp.wms - 3 - - - - 0 - - - - Alpha - - Apollo15_PanCam_ClrShade_25N311E_5mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_1_ColorHillshade/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_1_ColorHillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_1_ColorHillshade/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_1_ColorHillshade.asset deleted file mode 100644 index e9f6d05e46..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_1_ColorHillshade/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_1_ColorHillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "Apollo15_PanCam_ClrShade_25N311E_5mp", - Name = [[Apollo 15 Pan Cam DEM, Aristarchus Plateau 1, ColorHillshade]], - FilePath = asset.localResource("Apollo15_PanCam_ClrShade_25N311E_5mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Apollo 15 Pan Cam DEM, Aristarchus Plateau 1, ColorHillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=Apollo15_PanCam_ClrShade_25N311E_5mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Apollo 15 Pan Cam DEM, Aristarchus Plateau 1, ColorHillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_1_Colorized_Confidence/Apollo15_PanCam_ClrConf_25N311E_5mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_1_Colorized_Confidence/Apollo15_PanCam_ClrConf_25N311E_5mp.vrt deleted file mode 100644 index 473a07df0d..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_1_Colorized_Confidence/Apollo15_PanCam_ClrConf_25N311E_5mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 - - 0 - Red - - Apollo15_PanCam_ClrConf_25N311E_5mp.wms - 1 - - - - 0 - - - - 0 - Green - - Apollo15_PanCam_ClrConf_25N311E_5mp.wms - 2 - - - - 0 - - - - 0 - Blue - - Apollo15_PanCam_ClrConf_25N311E_5mp.wms - 3 - - - - 0 - - - - Alpha - - Apollo15_PanCam_ClrConf_25N311E_5mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_1_Colorized_Confidence/Apollo15_PanCam_ClrConf_25N311E_5mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_1_Colorized_Confidence/Apollo15_PanCam_ClrConf_25N311E_5mp.wms deleted file mode 100644 index 0fa9d35243..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_1_Colorized_Confidence/Apollo15_PanCam_ClrConf_25N311E_5mp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/Apollo15_PanCam_ClrConf_25N311E_5mp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 12 - top - - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_1_Colorized_Confidence/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_1_Colorized_Confidence.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_1_Colorized_Confidence/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_1_Colorized_Confidence.asset deleted file mode 100644 index bb41d0561d..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_1_Colorized_Confidence/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_1_Colorized_Confidence.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "Apollo15_PanCam_ClrConf_25N311E_5mp", - Name = [[Apollo 15 Pan Cam DEM, Aristarchus Plateau 1, Colorized Confidence]], - FilePath = asset.localResource("Apollo15_PanCam_ClrConf_25N311E_5mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Apollo 15 Pan Cam DEM, Aristarchus Plateau 1, Colorized Confidence]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=Apollo15_PanCam_ClrConf_25N311E_5mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Apollo 15 Pan Cam DEM, Aristarchus Plateau 1, Colorized Confidence layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_1_Colorized_Slope/Apollo15_PanCam_Slope_25N311E_5mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_1_Colorized_Slope/Apollo15_PanCam_Slope_25N311E_5mp.vrt deleted file mode 100644 index 009d525675..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_1_Colorized_Slope/Apollo15_PanCam_Slope_25N311E_5mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",25],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 - - 0 - Red - - Apollo15_PanCam_Slope_25N311E_5mp.wms - 1 - - - - 0 - - - - 0 - Green - - Apollo15_PanCam_Slope_25N311E_5mp.wms - 2 - - - - 0 - - - - 0 - Blue - - Apollo15_PanCam_Slope_25N311E_5mp.wms - 3 - - - - 0 - - - - Alpha - - Apollo15_PanCam_Slope_25N311E_5mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_1_Colorized_Slope/Apollo15_PanCam_Slope_25N311E_5mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_1_Colorized_Slope/Apollo15_PanCam_Slope_25N311E_5mp.wms deleted file mode 100644 index 8a8e291eaa..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_1_Colorized_Slope/Apollo15_PanCam_Slope_25N311E_5mp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/Apollo15_PanCam_Slope_25N311E_5mp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 12 - top - - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",25],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_1_Colorized_Slope/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_1_Colorized_Slope.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_1_Colorized_Slope/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_1_Colorized_Slope.asset deleted file mode 100644 index 52272e5344..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_1_Colorized_Slope/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_1_Colorized_Slope.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "Apollo15_PanCam_Slope_25N311E_5mp", - Name = [[Apollo 15 Pan Cam DEM, Aristarchus Plateau 1, Colorized Slope]], - FilePath = asset.localResource("Apollo15_PanCam_Slope_25N311E_5mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Apollo 15 Pan Cam DEM, Aristarchus Plateau 1, Colorized Slope]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=Apollo15_PanCam_Slope_25N311E_5mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Apollo 15 Pan Cam DEM, Aristarchus Plateau 1, Colorized Slope layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_1_Grayscale/Apollo15_PanCam_Gray_25N311E_5mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_1_Grayscale/Apollo15_PanCam_Gray_25N311E_5mp.vrt deleted file mode 100644 index 3aa10f6b6e..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_1_Grayscale/Apollo15_PanCam_Gray_25N311E_5mp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 - - 0 - Gray - - Apollo15_PanCam_Gray_25N311E_5mp.wms - 1 - - - - 0 - - - - Alpha - - Apollo15_PanCam_Gray_25N311E_5mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_1_Grayscale/Apollo15_PanCam_Gray_25N311E_5mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_1_Grayscale/Apollo15_PanCam_Gray_25N311E_5mp.wms deleted file mode 100644 index ac92167eec..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_1_Grayscale/Apollo15_PanCam_Gray_25N311E_5mp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/Apollo15_PanCam_Gray_25N311E_5mp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 12 - top - - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 1 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_1_Grayscale/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_1_Grayscale.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_1_Grayscale/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_1_Grayscale.asset deleted file mode 100644 index 8d6f29675c..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_1_Grayscale/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_1_Grayscale.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "Apollo15_PanCam_Gray_25N311E_5mp", - Name = [[Apollo 15 Pan Cam DEM, Aristarchus Plateau 1, Grayscale]], - FilePath = asset.localResource("Apollo15_PanCam_Gray_25N311E_5mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Apollo 15 Pan Cam DEM, Aristarchus Plateau 1, Grayscale]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=Apollo15_PanCam_Gray_25N311E_5mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Apollo 15 Pan Cam DEM, Aristarchus Plateau 1, Grayscale layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_1_Hillshade/Apollo15_PanCam_Shade_25N311E_5mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_1_Hillshade/Apollo15_PanCam_Shade_25N311E_5mp.vrt deleted file mode 100644 index fdc58f1c35..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_1_Hillshade/Apollo15_PanCam_Shade_25N311E_5mp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",25],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 - - 0 - Gray - - Apollo15_PanCam_Shade_25N311E_5mp.wms - 1 - - - - 0 - - - - Alpha - - Apollo15_PanCam_Shade_25N311E_5mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_1_Hillshade/Apollo15_PanCam_Shade_25N311E_5mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_1_Hillshade/Apollo15_PanCam_Shade_25N311E_5mp.wms deleted file mode 100644 index 49e71a9ce0..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_1_Hillshade/Apollo15_PanCam_Shade_25N311E_5mp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/Apollo15_PanCam_Shade_25N311E_5mp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 12 - top - - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",25],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 1 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_1_Hillshade/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_1_Hillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_1_Hillshade/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_1_Hillshade.asset deleted file mode 100644 index 9c93c9fb02..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_1_Hillshade/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_1_Hillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "Apollo15_PanCam_Shade_25N311E_5mp", - Name = [[Apollo 15 Pan Cam DEM, Aristarchus Plateau 1, Hillshade]], - FilePath = asset.localResource("Apollo15_PanCam_Shade_25N311E_5mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Apollo 15 Pan Cam DEM, Aristarchus Plateau 1, Hillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=Apollo15_PanCam_Shade_25N311E_5mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Apollo 15 Pan Cam DEM, Aristarchus Plateau 1, Hillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_2_ColorHillshade/Apollo15_PanCam_ClrShade_28N307E_3mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_2_ColorHillshade/Apollo15_PanCam_ClrShade_28N307E_3mp.vrt deleted file mode 100644 index d07d70959c..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_2_ColorHillshade/Apollo15_PanCam_ClrShade_28N307E_3mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - Apollo15_PanCam_ClrShade_28N307E_3mp.wms - 1 - - - - 0 - - - - 0 - Green - - Apollo15_PanCam_ClrShade_28N307E_3mp.wms - 2 - - - - 0 - - - - 0 - Blue - - Apollo15_PanCam_ClrShade_28N307E_3mp.wms - 3 - - - - 0 - - - - Alpha - - Apollo15_PanCam_ClrShade_28N307E_3mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_2_ColorHillshade/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_2_ColorHillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_2_ColorHillshade/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_2_ColorHillshade.asset deleted file mode 100644 index b58ea73971..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_2_ColorHillshade/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_2_ColorHillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "Apollo15_PanCam_ClrShade_28N307E_3mp", - Name = [[Apollo 15 Pan Cam DEM, Aristarchus Plateau 2, ColorHillshade]], - FilePath = asset.localResource("Apollo15_PanCam_ClrShade_28N307E_3mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Apollo 15 Pan Cam DEM, Aristarchus Plateau 2, ColorHillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=Apollo15_PanCam_ClrShade_28N307E_3mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Apollo 15 Pan Cam DEM, Aristarchus Plateau 2, ColorHillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_2_Colorized_Confidence/Apollo15_PanCam_ClrConf_28N307E_3mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_2_Colorized_Confidence/Apollo15_PanCam_ClrConf_28N307E_3mp.vrt deleted file mode 100644 index 3beee2b332..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_2_Colorized_Confidence/Apollo15_PanCam_ClrConf_28N307E_3mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - Apollo15_PanCam_ClrConf_28N307E_3mp.wms - 1 - - - - 0 - - - - 0 - Green - - Apollo15_PanCam_ClrConf_28N307E_3mp.wms - 2 - - - - 0 - - - - 0 - Blue - - Apollo15_PanCam_ClrConf_28N307E_3mp.wms - 3 - - - - 0 - - - - Alpha - - Apollo15_PanCam_ClrConf_28N307E_3mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_2_Colorized_Confidence/Apollo15_PanCam_ClrConf_28N307E_3mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_2_Colorized_Confidence/Apollo15_PanCam_ClrConf_28N307E_3mp.wms deleted file mode 100644 index 0039d86428..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_2_Colorized_Confidence/Apollo15_PanCam_ClrConf_28N307E_3mp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/Apollo15_PanCam_ClrConf_28N307E_3mp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_2_Colorized_Confidence/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_2_Colorized_Confidence.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_2_Colorized_Confidence/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_2_Colorized_Confidence.asset deleted file mode 100644 index f9d7ebf2f8..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_2_Colorized_Confidence/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_2_Colorized_Confidence.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "Apollo15_PanCam_ClrConf_28N307E_3mp", - Name = [[Apollo 15 Pan Cam DEM, Aristarchus Plateau 2, Colorized Confidence]], - FilePath = asset.localResource("Apollo15_PanCam_ClrConf_28N307E_3mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Apollo 15 Pan Cam DEM, Aristarchus Plateau 2, Colorized Confidence]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=Apollo15_PanCam_ClrConf_28N307E_3mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Apollo 15 Pan Cam DEM, Aristarchus Plateau 2, Colorized Confidence layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_2_Colorized_Slope/Apollo15_PanCam_Slope_28N307E_3mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_2_Colorized_Slope/Apollo15_PanCam_Slope_28N307E_3mp.vrt deleted file mode 100644 index ec6a6175b2..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_2_Colorized_Slope/Apollo15_PanCam_Slope_28N307E_3mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",28],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - Apollo15_PanCam_Slope_28N307E_3mp.wms - 1 - - - - 0 - - - - 0 - Green - - Apollo15_PanCam_Slope_28N307E_3mp.wms - 2 - - - - 0 - - - - 0 - Blue - - Apollo15_PanCam_Slope_28N307E_3mp.wms - 3 - - - - 0 - - - - Alpha - - Apollo15_PanCam_Slope_28N307E_3mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_2_Colorized_Slope/Apollo15_PanCam_Slope_28N307E_3mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_2_Colorized_Slope/Apollo15_PanCam_Slope_28N307E_3mp.wms deleted file mode 100644 index c5e6598e89..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_2_Colorized_Slope/Apollo15_PanCam_Slope_28N307E_3mp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/Apollo15_PanCam_Slope_28N307E_3mp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",28],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_2_Colorized_Slope/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_2_Colorized_Slope.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_2_Colorized_Slope/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_2_Colorized_Slope.asset deleted file mode 100644 index 3f09f2d0ca..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_2_Colorized_Slope/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_2_Colorized_Slope.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "Apollo15_PanCam_Slope_28N307E_3mp", - Name = [[Apollo 15 Pan Cam DEM, Aristarchus Plateau 2, Colorized Slope]], - FilePath = asset.localResource("Apollo15_PanCam_Slope_28N307E_3mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Apollo 15 Pan Cam DEM, Aristarchus Plateau 2, Colorized Slope]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=Apollo15_PanCam_Slope_28N307E_3mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Apollo 15 Pan Cam DEM, Aristarchus Plateau 2, Colorized Slope layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_2_Grayscale/Apollo15_PanCam_Gray_28N307E_3mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_2_Grayscale/Apollo15_PanCam_Gray_28N307E_3mp.vrt deleted file mode 100644 index a0dd6a3a1a..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_2_Grayscale/Apollo15_PanCam_Gray_28N307E_3mp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Gray - - Apollo15_PanCam_Gray_28N307E_3mp.wms - 1 - - - - 0 - - - - Alpha - - Apollo15_PanCam_Gray_28N307E_3mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_2_Grayscale/Apollo15_PanCam_Gray_28N307E_3mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_2_Grayscale/Apollo15_PanCam_Gray_28N307E_3mp.wms deleted file mode 100644 index 13f1e01186..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_2_Grayscale/Apollo15_PanCam_Gray_28N307E_3mp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/Apollo15_PanCam_Gray_28N307E_3mp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 1 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_2_Grayscale/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_2_Grayscale.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_2_Grayscale/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_2_Grayscale.asset deleted file mode 100644 index 0b656739bf..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_2_Grayscale/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_2_Grayscale.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "Apollo15_PanCam_Gray_28N307E_3mp", - Name = [[Apollo 15 Pan Cam DEM, Aristarchus Plateau 2, Grayscale]], - FilePath = asset.localResource("Apollo15_PanCam_Gray_28N307E_3mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Apollo 15 Pan Cam DEM, Aristarchus Plateau 2, Grayscale]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=Apollo15_PanCam_Gray_28N307E_3mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Apollo 15 Pan Cam DEM, Aristarchus Plateau 2, Grayscale layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_2_Hillshade/Apollo15_PanCam_Shade_28N307E_3mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_2_Hillshade/Apollo15_PanCam_Shade_28N307E_3mp.vrt deleted file mode 100644 index c58c0a0b2a..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_2_Hillshade/Apollo15_PanCam_Shade_28N307E_3mp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",28],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Gray - - Apollo15_PanCam_Shade_28N307E_3mp.wms - 1 - - - - 0 - - - - Alpha - - Apollo15_PanCam_Shade_28N307E_3mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_2_Hillshade/Apollo15_PanCam_Shade_28N307E_3mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_2_Hillshade/Apollo15_PanCam_Shade_28N307E_3mp.wms deleted file mode 100644 index e13ff0c4a2..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_2_Hillshade/Apollo15_PanCam_Shade_28N307E_3mp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/Apollo15_PanCam_Shade_28N307E_3mp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",28],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 1 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_2_Hillshade/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_2_Hillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_2_Hillshade/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_2_Hillshade.asset deleted file mode 100644 index a3d72bf98e..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_2_Hillshade/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_2_Hillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "Apollo15_PanCam_Shade_28N307E_3mp", - Name = [[Apollo 15 Pan Cam DEM, Aristarchus Plateau 2, Hillshade]], - FilePath = asset.localResource("Apollo15_PanCam_Shade_28N307E_3mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Apollo 15 Pan Cam DEM, Aristarchus Plateau 2, Hillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=Apollo15_PanCam_Shade_28N307E_3mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Apollo 15 Pan Cam DEM, Aristarchus Plateau 2, Hillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Tsiolkovskiy_Crater_ColorHillshade/Apollo15_PanCam_ClrShade_19S129E_5mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Tsiolkovskiy_Crater_ColorHillshade/Apollo15_PanCam_ClrShade_19S129E_5mp.vrt deleted file mode 100644 index 68c7ec8ef7..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Tsiolkovskiy_Crater_ColorHillshade/Apollo15_PanCam_ClrShade_19S129E_5mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 - - 0 - Red - - Apollo15_PanCam_ClrShade_19S129E_5mp.wms - 1 - - - - 0 - - - - 0 - Green - - Apollo15_PanCam_ClrShade_19S129E_5mp.wms - 2 - - - - 0 - - - - 0 - Blue - - Apollo15_PanCam_ClrShade_19S129E_5mp.wms - 3 - - - - 0 - - - - Alpha - - Apollo15_PanCam_ClrShade_19S129E_5mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Tsiolkovskiy_Crater_ColorHillshade/Apollo_15_Pan_Cam_DEM_Tsiolkovskiy_Crater_ColorHillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Tsiolkovskiy_Crater_ColorHillshade/Apollo_15_Pan_Cam_DEM_Tsiolkovskiy_Crater_ColorHillshade.asset deleted file mode 100644 index 49cd6b6100..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Tsiolkovskiy_Crater_ColorHillshade/Apollo_15_Pan_Cam_DEM_Tsiolkovskiy_Crater_ColorHillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "Apollo15_PanCam_ClrShade_19S129E_5mp", - Name = [[Apollo 15 Pan Cam DEM, Tsiolkovskiy Crater, ColorHillshade]], - FilePath = asset.localResource("Apollo15_PanCam_ClrShade_19S129E_5mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Apollo 15 Pan Cam DEM, Tsiolkovskiy Crater, ColorHillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=Apollo15_PanCam_ClrShade_19S129E_5mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Apollo 15 Pan Cam DEM, Tsiolkovskiy Crater, ColorHillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Tsiolkovskiy_Crater_Colorized_Confidence/Apollo15_PanCam_ClrConf_19S129E_5mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Tsiolkovskiy_Crater_Colorized_Confidence/Apollo15_PanCam_ClrConf_19S129E_5mp.vrt deleted file mode 100644 index ff9201ea66..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Tsiolkovskiy_Crater_Colorized_Confidence/Apollo15_PanCam_ClrConf_19S129E_5mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 - - 0 - Red - - Apollo15_PanCam_ClrConf_19S129E_5mp.wms - 1 - - - - 0 - - - - 0 - Green - - Apollo15_PanCam_ClrConf_19S129E_5mp.wms - 2 - - - - 0 - - - - 0 - Blue - - Apollo15_PanCam_ClrConf_19S129E_5mp.wms - 3 - - - - 0 - - - - Alpha - - Apollo15_PanCam_ClrConf_19S129E_5mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Tsiolkovskiy_Crater_Colorized_Confidence/Apollo15_PanCam_ClrConf_19S129E_5mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Tsiolkovskiy_Crater_Colorized_Confidence/Apollo15_PanCam_ClrConf_19S129E_5mp.wms deleted file mode 100644 index 990db768fe..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Tsiolkovskiy_Crater_Colorized_Confidence/Apollo15_PanCam_ClrConf_19S129E_5mp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/Apollo15_PanCam_ClrConf_19S129E_5mp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 12 - top - - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Tsiolkovskiy_Crater_Colorized_Confidence/Apollo_15_Pan_Cam_DEM_Tsiolkovskiy_Crater_Colorized_Confidence.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Tsiolkovskiy_Crater_Colorized_Confidence/Apollo_15_Pan_Cam_DEM_Tsiolkovskiy_Crater_Colorized_Confidence.asset deleted file mode 100644 index 9b7bfa80d0..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Tsiolkovskiy_Crater_Colorized_Confidence/Apollo_15_Pan_Cam_DEM_Tsiolkovskiy_Crater_Colorized_Confidence.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "Apollo15_PanCam_ClrConf_19S129E_5mp", - Name = [[Apollo 15 Pan Cam DEM, Tsiolkovskiy Crater, Colorized Confidence]], - FilePath = asset.localResource("Apollo15_PanCam_ClrConf_19S129E_5mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Apollo 15 Pan Cam DEM, Tsiolkovskiy Crater, Colorized Confidence]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=Apollo15_PanCam_ClrConf_19S129E_5mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Apollo 15 Pan Cam DEM, Tsiolkovskiy Crater, Colorized Confidence layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Tsiolkovskiy_Crater_Colorized_Slope/Apollo15_PanCam_Slope_19S129E_5mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Tsiolkovskiy_Crater_Colorized_Slope/Apollo15_PanCam_Slope_19S129E_5mp.vrt deleted file mode 100644 index 89d03d2907..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Tsiolkovskiy_Crater_Colorized_Slope/Apollo15_PanCam_Slope_19S129E_5mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-19],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 - - 0 - Red - - Apollo15_PanCam_Slope_19S129E_5mp.wms - 1 - - - - 0 - - - - 0 - Green - - Apollo15_PanCam_Slope_19S129E_5mp.wms - 2 - - - - 0 - - - - 0 - Blue - - Apollo15_PanCam_Slope_19S129E_5mp.wms - 3 - - - - 0 - - - - Alpha - - Apollo15_PanCam_Slope_19S129E_5mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Tsiolkovskiy_Crater_Colorized_Slope/Apollo15_PanCam_Slope_19S129E_5mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Tsiolkovskiy_Crater_Colorized_Slope/Apollo15_PanCam_Slope_19S129E_5mp.wms deleted file mode 100644 index 16aaa3bf88..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Tsiolkovskiy_Crater_Colorized_Slope/Apollo15_PanCam_Slope_19S129E_5mp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/Apollo15_PanCam_Slope_19S129E_5mp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 12 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-19],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Tsiolkovskiy_Crater_Colorized_Slope/Apollo_15_Pan_Cam_DEM_Tsiolkovskiy_Crater_Colorized_Slope.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Tsiolkovskiy_Crater_Colorized_Slope/Apollo_15_Pan_Cam_DEM_Tsiolkovskiy_Crater_Colorized_Slope.asset deleted file mode 100644 index cb07d293f3..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Tsiolkovskiy_Crater_Colorized_Slope/Apollo_15_Pan_Cam_DEM_Tsiolkovskiy_Crater_Colorized_Slope.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "Apollo15_PanCam_Slope_19S129E_5mp", - Name = [[Apollo 15 Pan Cam DEM, Tsiolkovskiy Crater, Colorized Slope]], - FilePath = asset.localResource("Apollo15_PanCam_Slope_19S129E_5mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Apollo 15 Pan Cam DEM, Tsiolkovskiy Crater, Colorized Slope]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=Apollo15_PanCam_Slope_19S129E_5mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Apollo 15 Pan Cam DEM, Tsiolkovskiy Crater, Colorized Slope layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Tsiolkovskiy_Crater_Grayscale/Apollo15_PanCam_Gray_19S129E_5mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Tsiolkovskiy_Crater_Grayscale/Apollo15_PanCam_Gray_19S129E_5mp.vrt deleted file mode 100644 index 97b2e0abca..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Tsiolkovskiy_Crater_Grayscale/Apollo15_PanCam_Gray_19S129E_5mp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 - - 0 - Gray - - Apollo15_PanCam_Gray_19S129E_5mp.wms - 1 - - - - 0 - - - - Alpha - - Apollo15_PanCam_Gray_19S129E_5mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Tsiolkovskiy_Crater_Grayscale/Apollo15_PanCam_Gray_19S129E_5mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Tsiolkovskiy_Crater_Grayscale/Apollo15_PanCam_Gray_19S129E_5mp.wms deleted file mode 100644 index 4ec6676139..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Tsiolkovskiy_Crater_Grayscale/Apollo15_PanCam_Gray_19S129E_5mp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/Apollo15_PanCam_Gray_19S129E_5mp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 12 - top - - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 1 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Tsiolkovskiy_Crater_Grayscale/Apollo_15_Pan_Cam_DEM_Tsiolkovskiy_Crater_Grayscale.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Tsiolkovskiy_Crater_Grayscale/Apollo_15_Pan_Cam_DEM_Tsiolkovskiy_Crater_Grayscale.asset deleted file mode 100644 index edfaf9daad..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Tsiolkovskiy_Crater_Grayscale/Apollo_15_Pan_Cam_DEM_Tsiolkovskiy_Crater_Grayscale.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "Apollo15_PanCam_Gray_19S129E_5mp", - Name = [[Apollo 15 Pan Cam DEM, Tsiolkovskiy Crater, Grayscale]], - FilePath = asset.localResource("Apollo15_PanCam_Gray_19S129E_5mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Apollo 15 Pan Cam DEM, Tsiolkovskiy Crater, Grayscale]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=Apollo15_PanCam_Gray_19S129E_5mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Apollo 15 Pan Cam DEM, Tsiolkovskiy Crater, Grayscale layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Tsiolkovskiy_Crater_Hillshade/Apollo15_PanCam_Shade_19S129E_5mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Tsiolkovskiy_Crater_Hillshade/Apollo15_PanCam_Shade_19S129E_5mp.vrt deleted file mode 100644 index 706c5b5042..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Tsiolkovskiy_Crater_Hillshade/Apollo15_PanCam_Shade_19S129E_5mp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 - - 0 - Gray - - Apollo15_PanCam_Shade_19S129E_5mp.wms - 1 - - - - 0 - - - - Alpha - - Apollo15_PanCam_Shade_19S129E_5mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Tsiolkovskiy_Crater_Hillshade/Apollo15_PanCam_Shade_19S129E_5mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Tsiolkovskiy_Crater_Hillshade/Apollo15_PanCam_Shade_19S129E_5mp.wms deleted file mode 100644 index 39ac6b492a..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Tsiolkovskiy_Crater_Hillshade/Apollo15_PanCam_Shade_19S129E_5mp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/Apollo15_PanCam_Shade_19S129E_5mp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 12 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 1 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Tsiolkovskiy_Crater_Hillshade/Apollo_15_Pan_Cam_DEM_Tsiolkovskiy_Crater_Hillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Tsiolkovskiy_Crater_Hillshade/Apollo_15_Pan_Cam_DEM_Tsiolkovskiy_Crater_Hillshade.asset deleted file mode 100644 index 56bc6408cf..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_DEM_Tsiolkovskiy_Crater_Hillshade/Apollo_15_Pan_Cam_DEM_Tsiolkovskiy_Crater_Hillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "Apollo15_PanCam_Shade_19S129E_5mp", - Name = [[Apollo 15 Pan Cam DEM, Tsiolkovskiy Crater, Hillshade]], - FilePath = asset.localResource("Apollo15_PanCam_Shade_19S129E_5mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Apollo 15 Pan Cam DEM, Tsiolkovskiy Crater, Hillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=Apollo15_PanCam_Shade_19S129E_5mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Apollo 15 Pan Cam DEM, Tsiolkovskiy Crater, Hillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_Image_Mosaic.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_Image_Mosaic.asset new file mode 100644 index 0000000000..a85f90fcb7 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_Image_Mosaic.asset @@ -0,0 +1,54 @@ +-- This file was automatically generated using a script found at +-- https://github.com/OpenSpace/scripts/treks-to-openspace. See the README.md file +-- in that repository for more information on how to run the script to update these +-- files. In particular in the case of errors, prefer to change that script rather +-- than the individual files + +local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier + +local treks_Apollo15_PanCam_Mosaic_25N311E_150cmp = { + Identifier = "Apollo15_PanCam_Mosaic_25N311E_150cmp", + Name = [[Apollo 15 Pan Cam Image Mosaic, Aristarchus Plateau 1]], + FilePath = asset.localResource("Apollo_15_Pan_Cam_Image_Mosaic/Aristarchus_Plateau_1.vrt"), + Description = [[]] +} + +local treks_Apollo15_PanCam_Mosaic_28N307E_1mp = { + Identifier = "Apollo15_PanCam_Mosaic_28N307E_1mp", + Name = [[Apollo 15 Pan Cam Image Mosaic, Aristarchus Plateau 2]], + FilePath = asset.localResource("Apollo_15_Pan_Cam_Image_Mosaic/Aristarchus_Plateau_2.vrt"), + Description = [[]] +} + +local treks_Apollo15_PanCam_Mosaic_19S129E_2mp = { + Identifier = "Apollo15_PanCam_Mosaic_19S129E_2mp", + Name = [[Apollo 15 Pan Cam Image Mosaic, Tsiolkovskiy Crater]], + FilePath = asset.localResource("Apollo_15_Pan_Cam_Image_Mosaic/Tsiolkovskiy_Crater.vrt"), + Description = [[]] +} + +asset.onInitialize(function() + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_Apollo15_PanCam_Mosaic_25N311E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_Apollo15_PanCam_Mosaic_28N307E_1mp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_Apollo15_PanCam_Mosaic_19S129E_2mp) +end) + +asset.onDeinitialize(function() + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_Apollo15_PanCam_Mosaic_25N311E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_Apollo15_PanCam_Mosaic_28N307E_1mp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_Apollo15_PanCam_Mosaic_19S129E_2mp") +end) + +asset.export("Apollo15_PanCam_Mosaic_25N311E_150cmp", treks_Apollo15_PanCam_Mosaic_25N311E_150cmp) +asset.export("Apollo15_PanCam_Mosaic_28N307E_1mp", treks_Apollo15_PanCam_Mosaic_28N307E_1mp) +asset.export("Apollo15_PanCam_Mosaic_19S129E_2mp", treks_Apollo15_PanCam_Mosaic_19S129E_2mp) + + +asset.meta = { + Name = [[NASA Treks Layers for Moon Apollo_15_Pan_Cam_Image_Mosaic], + Version = "1.0", + Author = "NASA/Treks", + URL = "https://trek.nasa.gov/moon", + License = "NASA/Treks", + Description = [[Apollo_15_Pan_Cam_Image_Mosaic layers from NASA/Treks for Moon]] +} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_Image_Mosaic/Aristarchus_Plateau_1.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_Image_Mosaic/Aristarchus_Plateau_1.vrt new file mode 100644 index 0000000000..1b7f3979ee --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_Image_Mosaic/Aristarchus_Plateau_1.vrt @@ -0,0 +1,29 @@ + + PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",25],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] + -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 + + 0 + Gray + + Aristarchus_Plateau_1.wms + 1 + + + + 0 + + + + Alpha + + Aristarchus_Plateau_1.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_Image_Mosaic_Aristarchus_Plateau_1/Apollo15_PanCam_Mosaic_25N311E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_Image_Mosaic/Aristarchus_Plateau_1.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_Image_Mosaic_Aristarchus_Plateau_1/Apollo15_PanCam_Mosaic_25N311E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_Image_Mosaic/Aristarchus_Plateau_1.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_Image_Mosaic/Aristarchus_Plateau_2.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_Image_Mosaic/Aristarchus_Plateau_2.vrt new file mode 100644 index 0000000000..7f72fe65e5 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_Image_Mosaic/Aristarchus_Plateau_2.vrt @@ -0,0 +1,29 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 + + 0 + Gray + + Aristarchus_Plateau_2.wms + 1 + + + + 0 + + + + Alpha + + Aristarchus_Plateau_2.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_Image_Mosaic_Aristarchus_Plateau_2/Apollo15_PanCam_Mosaic_28N307E_1mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_Image_Mosaic/Aristarchus_Plateau_2.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_Image_Mosaic_Aristarchus_Plateau_2/Apollo15_PanCam_Mosaic_28N307E_1mp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_Image_Mosaic/Aristarchus_Plateau_2.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_Image_Mosaic/Tsiolkovskiy_Crater.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_Image_Mosaic/Tsiolkovskiy_Crater.vrt new file mode 100644 index 0000000000..39cb9a8573 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_Image_Mosaic/Tsiolkovskiy_Crater.vrt @@ -0,0 +1,29 @@ + + PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-19],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] + -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 + + 0 + Gray + + Tsiolkovskiy_Crater.wms + 1 + + + + 0 + + + + Alpha + + Tsiolkovskiy_Crater.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_Image_Mosaic_Tsiolkovskiy_Crater/Apollo15_PanCam_Mosaic_19S129E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_Image_Mosaic/Tsiolkovskiy_Crater.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_Image_Mosaic_Tsiolkovskiy_Crater/Apollo15_PanCam_Mosaic_19S129E_2mp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_Image_Mosaic/Tsiolkovskiy_Crater.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_Image_Mosaic_Aristarchus_Plateau_1/Apollo15_PanCam_Mosaic_25N311E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_Image_Mosaic_Aristarchus_Plateau_1/Apollo15_PanCam_Mosaic_25N311E_150cmp.vrt deleted file mode 100644 index 2bc6386e0b..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_Image_Mosaic_Aristarchus_Plateau_1/Apollo15_PanCam_Mosaic_25N311E_150cmp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",25],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Gray - - Apollo15_PanCam_Mosaic_25N311E_150cmp.wms - 1 - - - - 0 - - - - Alpha - - Apollo15_PanCam_Mosaic_25N311E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_Image_Mosaic_Aristarchus_Plateau_1/Apollo_15_Pan_Cam_Image_Mosaic_Aristarchus_Plateau_1.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_Image_Mosaic_Aristarchus_Plateau_1/Apollo_15_Pan_Cam_Image_Mosaic_Aristarchus_Plateau_1.asset deleted file mode 100644 index 27b0fec51b..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_Image_Mosaic_Aristarchus_Plateau_1/Apollo_15_Pan_Cam_Image_Mosaic_Aristarchus_Plateau_1.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "Apollo15_PanCam_Mosaic_25N311E_150cmp", - Name = [[Apollo 15 Pan Cam Image Mosaic, Aristarchus Plateau 1]], - FilePath = asset.localResource("Apollo15_PanCam_Mosaic_25N311E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Apollo 15 Pan Cam Image Mosaic, Aristarchus Plateau 1]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=Apollo15_PanCam_Mosaic_25N311E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Apollo 15 Pan Cam Image Mosaic, Aristarchus Plateau 1 layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_Image_Mosaic_Aristarchus_Plateau_2/Apollo15_PanCam_Mosaic_28N307E_1mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_Image_Mosaic_Aristarchus_Plateau_2/Apollo15_PanCam_Mosaic_28N307E_1mp.vrt deleted file mode 100644 index e21d944203..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_Image_Mosaic_Aristarchus_Plateau_2/Apollo15_PanCam_Mosaic_28N307E_1mp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Gray - - Apollo15_PanCam_Mosaic_28N307E_1mp.wms - 1 - - - - 0 - - - - Alpha - - Apollo15_PanCam_Mosaic_28N307E_1mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_Image_Mosaic_Aristarchus_Plateau_2/Apollo_15_Pan_Cam_Image_Mosaic_Aristarchus_Plateau_2.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_Image_Mosaic_Aristarchus_Plateau_2/Apollo_15_Pan_Cam_Image_Mosaic_Aristarchus_Plateau_2.asset deleted file mode 100644 index 245dd71740..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_Image_Mosaic_Aristarchus_Plateau_2/Apollo_15_Pan_Cam_Image_Mosaic_Aristarchus_Plateau_2.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "Apollo15_PanCam_Mosaic_28N307E_1mp", - Name = [[Apollo 15 Pan Cam Image Mosaic, Aristarchus Plateau 2]], - FilePath = asset.localResource("Apollo15_PanCam_Mosaic_28N307E_1mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Apollo 15 Pan Cam Image Mosaic, Aristarchus Plateau 2]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=Apollo15_PanCam_Mosaic_28N307E_1mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Apollo 15 Pan Cam Image Mosaic, Aristarchus Plateau 2 layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_Image_Mosaic_Tsiolkovskiy_Crater/Apollo15_PanCam_Mosaic_19S129E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_Image_Mosaic_Tsiolkovskiy_Crater/Apollo15_PanCam_Mosaic_19S129E_2mp.vrt deleted file mode 100644 index d2ded91a08..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_Image_Mosaic_Tsiolkovskiy_Crater/Apollo15_PanCam_Mosaic_19S129E_2mp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-19],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Gray - - Apollo15_PanCam_Mosaic_19S129E_2mp.wms - 1 - - - - 0 - - - - Alpha - - Apollo15_PanCam_Mosaic_19S129E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_Image_Mosaic_Tsiolkovskiy_Crater/Apollo_15_Pan_Cam_Image_Mosaic_Tsiolkovskiy_Crater.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_Image_Mosaic_Tsiolkovskiy_Crater/Apollo_15_Pan_Cam_Image_Mosaic_Tsiolkovskiy_Crater.asset deleted file mode 100644 index 803ad7d00f..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Pan_Cam_Image_Mosaic_Tsiolkovskiy_Crater/Apollo_15_Pan_Cam_Image_Mosaic_Tsiolkovskiy_Crater.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "Apollo15_PanCam_Mosaic_19S129E_2mp", - Name = [[Apollo 15 Pan Cam Image Mosaic, Tsiolkovskiy Crater]], - FilePath = asset.localResource("Apollo15_PanCam_Mosaic_19S129E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Apollo 15 Pan Cam Image Mosaic, Tsiolkovskiy Crater]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=Apollo15_PanCam_Mosaic_19S129E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Apollo 15 Pan Cam Image Mosaic, Tsiolkovskiy Crater layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_16_Metric_Cam_DEM.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_16_Metric_Cam_DEM.asset new file mode 100644 index 0000000000..fb5b11d029 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_16_Metric_Cam_DEM.asset @@ -0,0 +1,54 @@ +-- This file was automatically generated using a script found at +-- https://github.com/OpenSpace/scripts/treks-to-openspace. See the README.md file +-- in that repository for more information on how to run the script to update these +-- files. In particular in the case of errors, prefer to change that script rather +-- than the individual files + +local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier + +local treks_Apollo16_MetricCam_ClrConf_Global_1024ppd = { + Identifier = "Apollo16_MetricCam_ClrConf_Global_1024ppd", + Name = [[Apollo 16 Metric Cam DEM, Colorized Confidence]], + FilePath = asset.localResource("Apollo_16_Metric_Cam_DEM/Colorized_Confidence.vrt"), + Description = [[]] +} + +local treks_Apollo16_MetricCam_Gray_Global_1024ppd = { + Identifier = "Apollo16_MetricCam_Gray_Global_1024ppd", + Name = [[Apollo 16 Metric Cam DEM, Grayscale]], + FilePath = asset.localResource("Apollo_16_Metric_Cam_DEM/Grayscale.vrt"), + Description = [[]] +} + +local treks_Apollo16_MetricCam_Shade_Global_1024ppd = { + Identifier = "Apollo16_MetricCam_Shade_Global_1024ppd", + Name = [[Apollo 16 Metric Cam DEM, Hillshade]], + FilePath = asset.localResource("Apollo_16_Metric_Cam_DEM/Hillshade.vrt"), + Description = [[]] +} + +asset.onInitialize(function() + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_Apollo16_MetricCam_ClrConf_Global_1024ppd) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_Apollo16_MetricCam_Gray_Global_1024ppd) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_Apollo16_MetricCam_Shade_Global_1024ppd) +end) + +asset.onDeinitialize(function() + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_Apollo16_MetricCam_ClrConf_Global_1024ppd") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_Apollo16_MetricCam_Gray_Global_1024ppd") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_Apollo16_MetricCam_Shade_Global_1024ppd") +end) + +asset.export("Apollo16_MetricCam_ClrConf_Global_1024ppd", treks_Apollo16_MetricCam_ClrConf_Global_1024ppd) +asset.export("Apollo16_MetricCam_Gray_Global_1024ppd", treks_Apollo16_MetricCam_Gray_Global_1024ppd) +asset.export("Apollo16_MetricCam_Shade_Global_1024ppd", treks_Apollo16_MetricCam_Shade_Global_1024ppd) + + +asset.meta = { + Name = [[NASA Treks Layers for Moon Apollo_16_Metric_Cam_DEM], + Version = "1.0", + Author = "NASA/Treks", + URL = "https://trek.nasa.gov/moon", + License = "NASA/Treks", + Description = [[Apollo_16_Metric_Cam_DEM layers from NASA/Treks for Moon]] +} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_16_Metric_Cam_DEM/Colorized_Confidence.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_16_Metric_Cam_DEM/Colorized_Confidence.vrt new file mode 100644 index 0000000000..1d594c8bc8 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_16_Metric_Cam_DEM/Colorized_Confidence.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.3732910156250000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.3732910156250000e-03 + + 0 + Red + + Colorized_Confidence.wms + 1 + + + + 0 + + + + 0 + Green + + Colorized_Confidence.wms + 2 + + + + 0 + + + + 0 + Blue + + Colorized_Confidence.wms + 3 + + + + 0 + + + + Alpha + + Colorized_Confidence.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_16_Metric_Cam_DEM_Colorized_Confidence/Apollo16_MetricCam_ClrConf_Global_1024ppd.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_16_Metric_Cam_DEM/Colorized_Confidence.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_16_Metric_Cam_DEM_Colorized_Confidence/Apollo16_MetricCam_ClrConf_Global_1024ppd.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_16_Metric_Cam_DEM/Colorized_Confidence.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_16_Metric_Cam_DEM/Grayscale.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_16_Metric_Cam_DEM/Grayscale.vrt new file mode 100644 index 0000000000..b9b3c40d1a --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_16_Metric_Cam_DEM/Grayscale.vrt @@ -0,0 +1,29 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.3732910156250000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.3732910156250000e-03 + + 0 + Gray + + Grayscale.wms + 1 + + + + 0 + + + + Alpha + + Grayscale.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_16_Metric_Cam_DEM_Grayscale/Apollo16_MetricCam_Gray_Global_1024ppd.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_16_Metric_Cam_DEM/Grayscale.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_16_Metric_Cam_DEM_Grayscale/Apollo16_MetricCam_Gray_Global_1024ppd.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_16_Metric_Cam_DEM/Grayscale.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_16_Metric_Cam_DEM/Hillshade.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_16_Metric_Cam_DEM/Hillshade.vrt new file mode 100644 index 0000000000..a8708041ee --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_16_Metric_Cam_DEM/Hillshade.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.3732910156250000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.3732910156250000e-03 + + 0 + Red + + Hillshade.wms + 1 + + + + 0 + + + + 0 + Green + + Hillshade.wms + 2 + + + + 0 + + + + 0 + Blue + + Hillshade.wms + 3 + + + + 0 + + + + Alpha + + Hillshade.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_16_Metric_Cam_DEM_Hillshade/Apollo16_MetricCam_Shade_Global_1024ppd.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_16_Metric_Cam_DEM/Hillshade.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_16_Metric_Cam_DEM_Hillshade/Apollo16_MetricCam_Shade_Global_1024ppd.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_16_Metric_Cam_DEM/Hillshade.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_16_Metric_Cam_DEM_Colorized_Confidence/Apollo16_MetricCam_ClrConf_Global_1024ppd.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_16_Metric_Cam_DEM_Colorized_Confidence/Apollo16_MetricCam_ClrConf_Global_1024ppd.vrt deleted file mode 100644 index d97b6c80ef..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_16_Metric_Cam_DEM_Colorized_Confidence/Apollo16_MetricCam_ClrConf_Global_1024ppd.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.3732910156250000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.3732910156250000e-03 - - 0 - Red - - Apollo16_MetricCam_ClrConf_Global_1024ppd.wms - 1 - - - - 0 - - - - 0 - Green - - Apollo16_MetricCam_ClrConf_Global_1024ppd.wms - 2 - - - - 0 - - - - 0 - Blue - - Apollo16_MetricCam_ClrConf_Global_1024ppd.wms - 3 - - - - 0 - - - - Alpha - - Apollo16_MetricCam_ClrConf_Global_1024ppd.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_16_Metric_Cam_DEM_Colorized_Confidence/Apollo_16_Metric_Cam_DEM_Colorized_Confidence.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_16_Metric_Cam_DEM_Colorized_Confidence/Apollo_16_Metric_Cam_DEM_Colorized_Confidence.asset deleted file mode 100644 index 6090c4c335..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_16_Metric_Cam_DEM_Colorized_Confidence/Apollo_16_Metric_Cam_DEM_Colorized_Confidence.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "Apollo16_MetricCam_ClrConf_Global_1024ppd", - Name = [[Apollo 16 Metric Cam DEM, Colorized Confidence]], - FilePath = asset.localResource("Apollo16_MetricCam_ClrConf_Global_1024ppd.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Apollo 16 Metric Cam DEM, Colorized Confidence]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=Apollo16_MetricCam_ClrConf_Global_1024ppd%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Apollo 16 Metric Cam DEM, Colorized Confidence layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_16_Metric_Cam_DEM_Grayscale/Apollo16_MetricCam_Gray_Global_1024ppd.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_16_Metric_Cam_DEM_Grayscale/Apollo16_MetricCam_Gray_Global_1024ppd.vrt deleted file mode 100644 index 779082100b..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_16_Metric_Cam_DEM_Grayscale/Apollo16_MetricCam_Gray_Global_1024ppd.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.3732910156250000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.3732910156250000e-03 - - 0 - Gray - - Apollo16_MetricCam_Gray_Global_1024ppd.wms - 1 - - - - 0 - - - - Alpha - - Apollo16_MetricCam_Gray_Global_1024ppd.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_16_Metric_Cam_DEM_Grayscale/Apollo_16_Metric_Cam_DEM_Grayscale.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_16_Metric_Cam_DEM_Grayscale/Apollo_16_Metric_Cam_DEM_Grayscale.asset deleted file mode 100644 index 5ecbf7e11c..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_16_Metric_Cam_DEM_Grayscale/Apollo_16_Metric_Cam_DEM_Grayscale.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "Apollo16_MetricCam_Gray_Global_1024ppd", - Name = [[Apollo 16 Metric Cam DEM, Grayscale]], - FilePath = asset.localResource("Apollo16_MetricCam_Gray_Global_1024ppd.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Apollo 16 Metric Cam DEM, Grayscale]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=Apollo16_MetricCam_Gray_Global_1024ppd%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Apollo 16 Metric Cam DEM, Grayscale layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_16_Metric_Cam_DEM_Hillshade/Apollo16_MetricCam_Shade_Global_1024ppd.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_16_Metric_Cam_DEM_Hillshade/Apollo16_MetricCam_Shade_Global_1024ppd.vrt deleted file mode 100644 index d7e1e27a3d..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_16_Metric_Cam_DEM_Hillshade/Apollo16_MetricCam_Shade_Global_1024ppd.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.3732910156250000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.3732910156250000e-03 - - 0 - Red - - Apollo16_MetricCam_Shade_Global_1024ppd.wms - 1 - - - - 0 - - - - 0 - Green - - Apollo16_MetricCam_Shade_Global_1024ppd.wms - 2 - - - - 0 - - - - 0 - Blue - - Apollo16_MetricCam_Shade_Global_1024ppd.wms - 3 - - - - 0 - - - - Alpha - - Apollo16_MetricCam_Shade_Global_1024ppd.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_16_Metric_Cam_DEM_Hillshade/Apollo_16_Metric_Cam_DEM_Hillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_16_Metric_Cam_DEM_Hillshade/Apollo_16_Metric_Cam_DEM_Hillshade.asset deleted file mode 100644 index ff45120f9a..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_16_Metric_Cam_DEM_Hillshade/Apollo_16_Metric_Cam_DEM_Hillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "Apollo16_MetricCam_Shade_Global_1024ppd", - Name = [[Apollo 16 Metric Cam DEM, Hillshade]], - FilePath = asset.localResource("Apollo16_MetricCam_Shade_Global_1024ppd.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Apollo 16 Metric Cam DEM, Hillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=Apollo16_MetricCam_Shade_Global_1024ppd%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Apollo 16 Metric Cam DEM, Hillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_17_Metric_Cam_DEM.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_17_Metric_Cam_DEM.asset new file mode 100644 index 0000000000..2bf7517b6e --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_17_Metric_Cam_DEM.asset @@ -0,0 +1,44 @@ +-- This file was automatically generated using a script found at +-- https://github.com/OpenSpace/scripts/treks-to-openspace. See the README.md file +-- in that repository for more information on how to run the script to update these +-- files. In particular in the case of errors, prefer to change that script rather +-- than the individual files + +local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier + +local treks_Apollo17_MetricCam_ClrShade_Global_1024ppd = { + Identifier = "Apollo17_MetricCam_ClrShade_Global_1024ppd", + Name = [[Apollo 17 Metric Cam DEM, ColorHillshade]], + FilePath = asset.localResource("Apollo_17_Metric_Cam_DEM/ColorHillshade.vrt"), + Description = [[]] +} + +local treks_Apollo17_MetricCam_Gray_Global_1024ppd = { + Identifier = "Apollo17_MetricCam_Gray_Global_1024ppd", + Name = [[Apollo 17 Metric Cam DEM, Grayscale]], + FilePath = asset.localResource("Apollo_17_Metric_Cam_DEM/Grayscale.vrt"), + Description = [[]] +} + +asset.onInitialize(function() + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_Apollo17_MetricCam_ClrShade_Global_1024ppd) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_Apollo17_MetricCam_Gray_Global_1024ppd) +end) + +asset.onDeinitialize(function() + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_Apollo17_MetricCam_ClrShade_Global_1024ppd") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_Apollo17_MetricCam_Gray_Global_1024ppd") +end) + +asset.export("Apollo17_MetricCam_ClrShade_Global_1024ppd", treks_Apollo17_MetricCam_ClrShade_Global_1024ppd) +asset.export("Apollo17_MetricCam_Gray_Global_1024ppd", treks_Apollo17_MetricCam_Gray_Global_1024ppd) + + +asset.meta = { + Name = [[NASA Treks Layers for Moon Apollo_17_Metric_Cam_DEM], + Version = "1.0", + Author = "NASA/Treks", + URL = "https://trek.nasa.gov/moon", + License = "NASA/Treks", + Description = [[Apollo_17_Metric_Cam_DEM layers from NASA/Treks for Moon]] +} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_17_Metric_Cam_DEM/ColorHillshade.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_17_Metric_Cam_DEM/ColorHillshade.vrt new file mode 100644 index 0000000000..1ee84ef0a0 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_17_Metric_Cam_DEM/ColorHillshade.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.3732910156250000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.3732910156250000e-03 + + 0 + Red + + ColorHillshade.wms + 1 + + + + 0 + + + + 0 + Green + + ColorHillshade.wms + 2 + + + + 0 + + + + 0 + Blue + + ColorHillshade.wms + 3 + + + + 0 + + + + Alpha + + ColorHillshade.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_17_Metric_Cam_DEM_ColorHillshade/Apollo17_MetricCam_ClrShade_Global_1024ppd.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_17_Metric_Cam_DEM/ColorHillshade.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_17_Metric_Cam_DEM_ColorHillshade/Apollo17_MetricCam_ClrShade_Global_1024ppd.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_17_Metric_Cam_DEM/ColorHillshade.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_17_Metric_Cam_DEM/Grayscale.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_17_Metric_Cam_DEM/Grayscale.vrt new file mode 100644 index 0000000000..42b63898b1 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_17_Metric_Cam_DEM/Grayscale.vrt @@ -0,0 +1,29 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.3732910156250000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.3732910156250000e-03 + + 0 + Gray + + Grayscale.wms + 1 + + + + 0 + + + + Alpha + + Grayscale.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_17_Metric_Cam_DEM_Grayscale/Apollo17_MetricCam_Gray_Global_1024ppd.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_17_Metric_Cam_DEM/Grayscale.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_17_Metric_Cam_DEM_Grayscale/Apollo17_MetricCam_Gray_Global_1024ppd.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_17_Metric_Cam_DEM/Grayscale.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_17_Metric_Cam_DEM_ColorHillshade/Apollo17_MetricCam_ClrShade_Global_1024ppd.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_17_Metric_Cam_DEM_ColorHillshade/Apollo17_MetricCam_ClrShade_Global_1024ppd.vrt deleted file mode 100644 index 6750bc71c9..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_17_Metric_Cam_DEM_ColorHillshade/Apollo17_MetricCam_ClrShade_Global_1024ppd.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.3732910156250000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.3732910156250000e-03 - - 0 - Red - - Apollo17_MetricCam_ClrShade_Global_1024ppd.wms - 1 - - - - 0 - - - - 0 - Green - - Apollo17_MetricCam_ClrShade_Global_1024ppd.wms - 2 - - - - 0 - - - - 0 - Blue - - Apollo17_MetricCam_ClrShade_Global_1024ppd.wms - 3 - - - - 0 - - - - Alpha - - Apollo17_MetricCam_ClrShade_Global_1024ppd.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_17_Metric_Cam_DEM_ColorHillshade/Apollo_17_Metric_Cam_DEM_ColorHillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_17_Metric_Cam_DEM_ColorHillshade/Apollo_17_Metric_Cam_DEM_ColorHillshade.asset deleted file mode 100644 index 0e47d5b529..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_17_Metric_Cam_DEM_ColorHillshade/Apollo_17_Metric_Cam_DEM_ColorHillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "Apollo17_MetricCam_ClrShade_Global_1024ppd", - Name = [[Apollo 17 Metric Cam DEM, ColorHillshade]], - FilePath = asset.localResource("Apollo17_MetricCam_ClrShade_Global_1024ppd.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Apollo 17 Metric Cam DEM, ColorHillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=Apollo17_MetricCam_ClrShade_Global_1024ppd%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Apollo 17 Metric Cam DEM, ColorHillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_17_Metric_Cam_DEM_Grayscale/Apollo17_MetricCam_Gray_Global_1024ppd.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_17_Metric_Cam_DEM_Grayscale/Apollo17_MetricCam_Gray_Global_1024ppd.vrt deleted file mode 100644 index c4860e7432..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_17_Metric_Cam_DEM_Grayscale/Apollo17_MetricCam_Gray_Global_1024ppd.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.3732910156250000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.3732910156250000e-03 - - 0 - Gray - - Apollo17_MetricCam_Gray_Global_1024ppd.wms - 1 - - - - 0 - - - - Alpha - - Apollo17_MetricCam_Gray_Global_1024ppd.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_17_Metric_Cam_DEM_Grayscale/Apollo_17_Metric_Cam_DEM_Grayscale.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_17_Metric_Cam_DEM_Grayscale/Apollo_17_Metric_Cam_DEM_Grayscale.asset deleted file mode 100644 index 6aa2ac9b51..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_17_Metric_Cam_DEM_Grayscale/Apollo_17_Metric_Cam_DEM_Grayscale.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "Apollo17_MetricCam_Gray_Global_1024ppd", - Name = [[Apollo 17 Metric Cam DEM, Grayscale]], - FilePath = asset.localResource("Apollo17_MetricCam_Gray_Global_1024ppd.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Apollo 17 Metric Cam DEM, Grayscale]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=Apollo17_MetricCam_Gray_Global_1024ppd%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Apollo 17 Metric Cam DEM, Grayscale layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_17_Metric_Cam_Image_Mosaic/Apollo17_MetricCam_Mosaic_Global_3033ppd.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_17_Metric_Cam_Image_Mosaic/Apollo17_MetricCam_Mosaic_Global_3033ppd.vrt deleted file mode 100644 index 01f73c9dd9..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_17_Metric_Cam_Image_Mosaic/Apollo17_MetricCam_Mosaic_Global_3033ppd.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["Geographic Coordinate System",DATUM["D_MOON",SPHEROID["MOON",1737400,0]],PRIMEM["Reference Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 3.4332275390625000e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -3.4332275390625000e-04 - - 0 - Gray - - Apollo17_MetricCam_Mosaic_Global_3033ppd.wms - 1 - - - - 0 - - - - Alpha - - Apollo17_MetricCam_Mosaic_Global_3033ppd.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_17_Metric_Cam_Image_Mosaic/Apollo_17_Metric_Cam_Image_Mosaic.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_17_Metric_Cam_Image_Mosaic/Apollo_17_Metric_Cam_Image_Mosaic.asset deleted file mode 100644 index d8b124f9a6..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_17_Metric_Cam_Image_Mosaic/Apollo_17_Metric_Cam_Image_Mosaic.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "Apollo17_MetricCam_Mosaic_Global_3033ppd", - Name = [[Apollo 17 Metric Cam Image Mosaic]], - FilePath = asset.localResource("Apollo17_MetricCam_Mosaic_Global_3033ppd.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Apollo 17 Metric Cam Image Mosaic]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=Apollo17_MetricCam_Mosaic_Global_3033ppd%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Apollo 17 Metric Cam Image Mosaic layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_Zone_Metric_Cam.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_Zone_Metric_Cam.asset new file mode 100644 index 0000000000..0999b62972 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_Zone_Metric_Cam.asset @@ -0,0 +1,34 @@ +-- This file was automatically generated using a script found at +-- https://github.com/OpenSpace/scripts/treks-to-openspace. See the README.md file +-- in that repository for more information on how to run the script to update these +-- files. In particular in the case of errors, prefer to change that script rather +-- than the individual files + +local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier + +local treks_ApolloZone_MetricCam_Shade_Global_1024ppd = { + Identifier = "ApolloZone_MetricCam_Shade_Global_1024ppd", + Name = [[Apollo Zone Metric Cam, Hillshade]], + FilePath = asset.localResource("Apollo_Zone_Metric_Cam/Hillshade.vrt"), + Description = [[]] +} + +asset.onInitialize(function() + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_ApolloZone_MetricCam_Shade_Global_1024ppd) +end) + +asset.onDeinitialize(function() + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_ApolloZone_MetricCam_Shade_Global_1024ppd") +end) + +asset.export("ApolloZone_MetricCam_Shade_Global_1024ppd", treks_ApolloZone_MetricCam_Shade_Global_1024ppd) + + +asset.meta = { + Name = [[NASA Treks Layers for Moon Apollo_Zone_Metric_Cam], + Version = "1.0", + Author = "NASA/Treks", + URL = "https://trek.nasa.gov/moon", + License = "NASA/Treks", + Description = [[Apollo_Zone_Metric_Cam layers from NASA/Treks for Moon]] +} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_Zone_Metric_Cam/Hillshade.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_Zone_Metric_Cam/Hillshade.vrt new file mode 100644 index 0000000000..98c7fb2397 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_Zone_Metric_Cam/Hillshade.vrt @@ -0,0 +1,29 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.3732910156250000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.3732910156250000e-03 + + 0 + Gray + + Hillshade.wms + 1 + + + + 0 + + + + Alpha + + Hillshade.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_Zone_Metric_Cam_Hillshade/ApolloZone_MetricCam_Shade_Global_1024ppd.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_Zone_Metric_Cam/Hillshade.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_Zone_Metric_Cam_Hillshade/ApolloZone_MetricCam_Shade_Global_1024ppd.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_Zone_Metric_Cam/Hillshade.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_Zone_Metric_Cam_DEM.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_Zone_Metric_Cam_DEM.asset new file mode 100644 index 0000000000..bd9c029f1e --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_Zone_Metric_Cam_DEM.asset @@ -0,0 +1,34 @@ +-- This file was automatically generated using a script found at +-- https://github.com/OpenSpace/scripts/treks-to-openspace. See the README.md file +-- in that repository for more information on how to run the script to update these +-- files. In particular in the case of errors, prefer to change that script rather +-- than the individual files + +local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier + +local treks_ApolloZone_MetricCam_ClrShade_Global_1024ppd = { + Identifier = "ApolloZone_MetricCam_ClrShade_Global_1024ppd", + Name = [[Apollo Zone Metric Cam DEM, ColorHillshade]], + FilePath = asset.localResource("Apollo_Zone_Metric_Cam_DEM/ColorHillshade.vrt"), + Description = [[]] +} + +asset.onInitialize(function() + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_ApolloZone_MetricCam_ClrShade_Global_1024ppd) +end) + +asset.onDeinitialize(function() + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_ApolloZone_MetricCam_ClrShade_Global_1024ppd") +end) + +asset.export("ApolloZone_MetricCam_ClrShade_Global_1024ppd", treks_ApolloZone_MetricCam_ClrShade_Global_1024ppd) + + +asset.meta = { + Name = [[NASA Treks Layers for Moon Apollo_Zone_Metric_Cam_DEM], + Version = "1.0", + Author = "NASA/Treks", + URL = "https://trek.nasa.gov/moon", + License = "NASA/Treks", + Description = [[Apollo_Zone_Metric_Cam_DEM layers from NASA/Treks for Moon]] +} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_Zone_Metric_Cam_DEM/ColorHillshade.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_Zone_Metric_Cam_DEM/ColorHillshade.vrt new file mode 100644 index 0000000000..638e89475c --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_Zone_Metric_Cam_DEM/ColorHillshade.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 6.8664550781250000e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -6.8664550781250000e-04 + + 0 + Red + + ColorHillshade.wms + 1 + + + + 0 + + + + 0 + Green + + ColorHillshade.wms + 2 + + + + 0 + + + + 0 + Blue + + ColorHillshade.wms + 3 + + + + 0 + + + + Alpha + + ColorHillshade.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_Zone_Metric_Cam_DEM/ColorHillshade.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_Zone_Metric_Cam_DEM/ColorHillshade.wms new file mode 100644 index 0000000000..526ffb4b30 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_Zone_Metric_Cam_DEM/ColorHillshade.wms @@ -0,0 +1,24 @@ + + + https://trek.nasa.gov/tiles/Moon/EQ/ApolloZone_MetricCam_ClrShade_Global_1024ppd/1.0.0//default/default028mm/${z}/${y}/${x}.png + + + -180 + 90 + 180 + -90 + 2 + 1 + 10 + top + + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + + 256 + 256 + 3 + 10 + + 400 + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_Zone_Metric_Cam_Hillshade/ApolloZone_MetricCam_Shade_Global_1024ppd.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_Zone_Metric_Cam_Hillshade/ApolloZone_MetricCam_Shade_Global_1024ppd.vrt deleted file mode 100644 index c2612e524a..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_Zone_Metric_Cam_Hillshade/ApolloZone_MetricCam_Shade_Global_1024ppd.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.3732910156250000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.3732910156250000e-03 - - 0 - Gray - - ApolloZone_MetricCam_Shade_Global_1024ppd.wms - 1 - - - - 0 - - - - Alpha - - ApolloZone_MetricCam_Shade_Global_1024ppd.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_Zone_Metric_Cam_Hillshade/Apollo_Zone_Metric_Cam_Hillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_Zone_Metric_Cam_Hillshade/Apollo_Zone_Metric_Cam_Hillshade.asset deleted file mode 100644 index 2b88163693..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_Zone_Metric_Cam_Hillshade/Apollo_Zone_Metric_Cam_Hillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "ApolloZone_MetricCam_Shade_Global_1024ppd", - Name = [[Apollo Zone Metric Cam, Hillshade]], - FilePath = asset.localResource("ApolloZone_MetricCam_Shade_Global_1024ppd.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Apollo Zone Metric Cam, Hillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=ApolloZone_MetricCam_Shade_Global_1024ppd%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Apollo Zone Metric Cam, Hillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_Zone_Metric_Cam_Image_Mosaic/ApolloZone_MetricCam_Mosaic_Global_3033ppd.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_Zone_Metric_Cam_Image_Mosaic/ApolloZone_MetricCam_Mosaic_Global_3033ppd.vrt deleted file mode 100644 index 3df2f136d2..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_Zone_Metric_Cam_Image_Mosaic/ApolloZone_MetricCam_Mosaic_Global_3033ppd.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 3.4332275390625000e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -3.4332275390625000e-04 - - 0 - Gray - - ApolloZone_MetricCam_Mosaic_Global_3033ppd.wms - 1 - - - - 0 - - - - Alpha - - ApolloZone_MetricCam_Mosaic_Global_3033ppd.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_Zone_Metric_Cam_Image_Mosaic/Apollo_Zone_Metric_Cam_Image_Mosaic.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_Zone_Metric_Cam_Image_Mosaic/Apollo_Zone_Metric_Cam_Image_Mosaic.asset deleted file mode 100644 index 478ed27852..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_Zone_Metric_Cam_Image_Mosaic/Apollo_Zone_Metric_Cam_Image_Mosaic.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "ApolloZone_MetricCam_Mosaic_Global_3033ppd", - Name = [[Apollo Zone Metric Cam Image Mosaic]], - FilePath = asset.localResource("ApolloZone_MetricCam_Mosaic_Global_3033ppd.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Apollo Zone Metric Cam Image Mosaic]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=ApolloZone_MetricCam_Mosaic_Global_3033ppd%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Apollo Zone Metric Cam Image Mosaic layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Clementine_UVVIS_FeO_Weight_Percent/Clem_UVVIS_FeO_Clr_Global_152ppd.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Clementine_UVVIS_FeO_Weight_Percent/Clem_UVVIS_FeO_Clr_Global_152ppd.vrt deleted file mode 100644 index a09ec18bea..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Clementine_UVVIS_FeO_Weight_Percent/Clem_UVVIS_FeO_Clr_Global_152ppd.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 5.4931640625000000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -5.4931640625000000e-03 - - 0 - Red - - Clem_UVVIS_FeO_Clr_Global_152ppd.wms - 1 - - - - 0 - - - - 0 - Green - - Clem_UVVIS_FeO_Clr_Global_152ppd.wms - 2 - - - - 0 - - - - 0 - Blue - - Clem_UVVIS_FeO_Clr_Global_152ppd.wms - 3 - - - - 0 - - - - Alpha - - Clem_UVVIS_FeO_Clr_Global_152ppd.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Clementine_UVVIS_FeO_Weight_Percent/Clementine_UVVIS_FeO_Weight_Percent.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Clementine_UVVIS_FeO_Weight_Percent/Clementine_UVVIS_FeO_Weight_Percent.asset deleted file mode 100644 index a6a680b017..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Clementine_UVVIS_FeO_Weight_Percent/Clementine_UVVIS_FeO_Weight_Percent.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "Clem_UVVIS_FeO_Clr_Global_152ppd", - Name = [[Clementine UVVIS FeO Weight Percent]], - FilePath = asset.localResource("Clem_UVVIS_FeO_Clr_Global_152ppd.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Clementine UVVIS FeO Weight Percent]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=Clem_UVVIS_FeO_Clr_Global_152ppd%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Clementine UVVIS FeO Weight Percent layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Clementine_UVVIS_Optical_Maturity/Clem_UVVIS_OpticalMaturity_Gray_Global_152ppd.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Clementine_UVVIS_Optical_Maturity/Clem_UVVIS_OpticalMaturity_Gray_Global_152ppd.vrt deleted file mode 100644 index df13af4e8e..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Clementine_UVVIS_Optical_Maturity/Clem_UVVIS_OpticalMaturity_Gray_Global_152ppd.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["unknown",SPHEROID["unnamed",1737400,0]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 5.4931640625000000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -5.4931640625000000e-03 - - 0 - Gray - - Clem_UVVIS_OpticalMaturity_Gray_Global_152ppd.wms - 1 - - - - 0 - - - - Alpha - - Clem_UVVIS_OpticalMaturity_Gray_Global_152ppd.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Clementine_UVVIS_Optical_Maturity/Clementine_UVVIS_Optical_Maturity.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Clementine_UVVIS_Optical_Maturity/Clementine_UVVIS_Optical_Maturity.asset deleted file mode 100644 index 35eca01807..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Clementine_UVVIS_Optical_Maturity/Clementine_UVVIS_Optical_Maturity.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "Clem_UVVIS_OpticalMaturity_Gray_Global_152ppd", - Name = [[Clementine UVVIS Optical Maturity]], - FilePath = asset.localResource("Clem_UVVIS_OpticalMaturity_Gray_Global_152ppd.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Clementine UVVIS Optical Maturity]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=Clem_UVVIS_OpticalMaturity_Gray_Global_152ppd%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Clementine UVVIS Optical Maturity layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Clementine_UVVIS_TiO2_Weight_Percent/Clem_UVVIS_TiO2_Clr_Global_152ppd.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Clementine_UVVIS_TiO2_Weight_Percent/Clem_UVVIS_TiO2_Clr_Global_152ppd.vrt deleted file mode 100644 index f5ec583ad9..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Clementine_UVVIS_TiO2_Weight_Percent/Clem_UVVIS_TiO2_Clr_Global_152ppd.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 5.4931640625000000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -5.4931640625000000e-03 - - 0 - Red - - Clem_UVVIS_TiO2_Clr_Global_152ppd.wms - 1 - - - - 0 - - - - 0 - Green - - Clem_UVVIS_TiO2_Clr_Global_152ppd.wms - 2 - - - - 0 - - - - 0 - Blue - - Clem_UVVIS_TiO2_Clr_Global_152ppd.wms - 3 - - - - 0 - - - - Alpha - - Clem_UVVIS_TiO2_Clr_Global_152ppd.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Clementine_UVVIS_TiO2_Weight_Percent/Clementine_UVVIS_TiO2_Weight_Percent.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Clementine_UVVIS_TiO2_Weight_Percent/Clementine_UVVIS_TiO2_Weight_Percent.asset deleted file mode 100644 index 8f6f6b6920..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Clementine_UVVIS_TiO2_Weight_Percent/Clementine_UVVIS_TiO2_Weight_Percent.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "Clem_UVVIS_TiO2_Clr_Global_152ppd", - Name = [[Clementine UVVIS TiO2 Weight Percent]], - FilePath = asset.localResource("Clem_UVVIS_TiO2_Clr_Global_152ppd.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Clementine UVVIS TiO2 Weight Percent]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=Clem_UVVIS_TiO2_Clr_Global_152ppd%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Clementine UVVIS TiO2 Weight Percent layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Clementine_UVVIS_Warped_Color_Ratio/Clementine_UVVIS_Warped_Color_Ratio.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Clementine_UVVIS_Warped_Color_Ratio/Clementine_UVVIS_Warped_Color_Ratio.asset deleted file mode 100644 index 87e3bfbd66..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Clementine_UVVIS_Warped_Color_Ratio/Clementine_UVVIS_Warped_Color_Ratio.asset +++ /dev/null @@ -1,34 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "Lunar_Clementine_UVVIS_Warp_ClrRatio_Global_200m", - Name = [[Clementine UVVIS Warped Color Ratio]], - FilePath = asset.localResource("Lunar_Clementine_UVVIS_Warp_ClrRatio_Global_200m.vrt"), - Description = [[This base represents the Clementine Ultraviolet/Visible (UVVIS) warped color-ratio mineral map. This was generated from the UVVIS mosaics using three spectral filters (415, 750, and 1000 nm) and which were previously warped (spatially adjusted) to the ULCN2005 control network. The mosaic is a composite in which the ratio of the 750/415nm bands is used for the red-channel brightness, 415/750nm for the blue channel, and the 750/1000nm ratio controls the green channel. Resolution of this mosaic is 200 meters per pixel (m). - -Color interpretations: - -The red channel represents areas that are low in titanium, or high in glass content, the green channel is sensitive to the amount of iron in the surface, and the blue channel reflects the surfaces with high titanium or bright slopes and albedos that are not compensated by using the image ratios. Lunar highlands appear red because they have accumulated glassy agglutinates produced during the bombardment of micrometeorites (maturation). Also red in the false-color image are pyroclastic deposits because of their naturally high-glass content. The yellow-green area in the mare is the combined effect of concentration of mafic minerals (green) and the glass in the soil produced by maturation (red). The blue unit in the mare is relatively higher in titanium compared to the mare unit to its immediate north. - -For more information on how the color ratio was derived, please see Lucy et al., 2000.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Clementine UVVIS Warped Color Ratio]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=Lunar_Clementine_UVVIS_Warp_ClrRatio_Global_200m%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Clementine UVVIS Warped Color Ratio layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Clementine_UVVIS_Warped_Color_Ratio/Lunar_Clementine_UVVIS_Warp_ClrRatio_Global_200m.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Clementine_UVVIS_Warped_Color_Ratio/Lunar_Clementine_UVVIS_Warp_ClrRatio_Global_200m.vrt deleted file mode 100644 index 7d5551b2d7..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Clementine_UVVIS_Warped_Color_Ratio/Lunar_Clementine_UVVIS_Warp_ClrRatio_Global_200m.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["SimpleCylindrical Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",0],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - Lunar_Clementine_UVVIS_Warp_ClrRatio_Global_200m.wms - 1 - - - - 0 - - - - 0 - Green - - Lunar_Clementine_UVVIS_Warp_ClrRatio_Global_200m.wms - 2 - - - - 0 - - - - 0 - Blue - - Lunar_Clementine_UVVIS_Warp_ClrRatio_Global_200m.wms - 3 - - - - 0 - - - - Alpha - - Lunar_Clementine_UVVIS_Warp_ClrRatio_Global_200m.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global.asset new file mode 100644 index 0000000000..382f4693db --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global.asset @@ -0,0 +1,220 @@ +-- This file was automatically generated using a script found at +-- https://github.com/OpenSpace/scripts/treks-to-openspace. See the README.md file +-- in that repository for more information on how to run the script to update these +-- files. In particular in the case of errors, prefer to change that script rather +-- than the individual files + +local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier + +local treks_Apollo15_MetricCam_Mosaic_Global_4096ppd = { + Identifier = "Apollo15_MetricCam_Mosaic_Global_4096ppd", + Name = [[Apollo 15 Metric Cam Image Mosaic]], + FilePath = asset.localResource("Global/Apollo_15_Metric_Cam_Image_Mosaic.vrt"), + Description = [[]] +} + +local treks_Apollo17_MetricCam_Mosaic_Global_3033ppd = { + Identifier = "Apollo17_MetricCam_Mosaic_Global_3033ppd", + Name = [[Apollo 17 Metric Cam Image Mosaic]], + FilePath = asset.localResource("Global/Apollo_17_Metric_Cam_Image_Mosaic.vrt"), + Description = [[]] +} + +local treks_ApolloZone_MetricCam_Mosaic_Global_3033ppd = { + Identifier = "ApolloZone_MetricCam_Mosaic_Global_3033ppd", + Name = [[Apollo Zone Metric Cam Image Mosaic]], + FilePath = asset.localResource("Global/Apollo_Zone_Metric_Cam_Image_Mosaic.vrt"), + Description = [[]] +} + +local treks_Clem_UVVIS_FeO_Clr_Global_152ppd = { + Identifier = "Clem_UVVIS_FeO_Clr_Global_152ppd", + Name = [[Clementine UVVIS FeO Weight Percent]], + FilePath = asset.localResource("Global/Clementine_UVVIS_FeO_Weight_Percent.vrt"), + Description = [[]] +} + +local treks_Clem_UVVIS_OpticalMaturity_Gray_Global_152ppd = { + Identifier = "Clem_UVVIS_OpticalMaturity_Gray_Global_152ppd", + Name = [[Clementine UVVIS Optical Maturity]], + FilePath = asset.localResource("Global/Clementine_UVVIS_Optical_Maturity.vrt"), + Description = [[]] +} + +local treks_Clem_UVVIS_TiO2_Clr_Global_152ppd = { + Identifier = "Clem_UVVIS_TiO2_Clr_Global_152ppd", + Name = [[Clementine UVVIS TiO2 Weight Percent]], + FilePath = asset.localResource("Global/Clementine_UVVIS_TiO2_Weight_Percent.vrt"), + Description = [[]] +} + +local treks_Kaguya_TCortho_Mosaic_Global_4096ppd = { + Identifier = "Kaguya_TCortho_Mosaic_Global_4096ppd", + Name = [[Kaguya TC Ortho Mosaic]], + FilePath = asset.localResource("Global/Kaguya_TC_Ortho_Mosaic.vrt"), + Description = [[]] +} + +local treks_LP_NS_H_Clr_Global_2ppd = { + Identifier = "LP_NS_H_Clr_Global_2ppd", + Name = [[LP NS H Abundance]], + FilePath = asset.localResource("Global/LP_NS_H_Abundance.vrt"), + Description = [[]] +} + +local treks_LRO_Diviner_CF_NoFill_Global_8ppd = { + Identifier = "LRO_Diviner_CF_NoFill_Global_8ppd", + Name = [[LRO Diviner CF Mosaic]], + FilePath = asset.localResource("Global/LRO_Diviner_CF_Mosaic.vrt"), + Description = [[]] +} + +local treks_LRO_WAC_Mosaic_Global_303ppd = { + Identifier = "LRO_WAC_Mosaic_Global_303ppd", + Name = [[LRO LROC WAC Image Mosaic]], + FilePath = asset.localResource("Global/LRO_LROC_WAC_Image_Mosaic.vrt"), + Description = [[]] +} + +local treks_LRO_MiniRF_S1_Gray_Global_128ppd = { + Identifier = "LRO_MiniRF_S1_Gray_Global_128ppd", + Name = [[LRO Mini-RF First Stokes Parameter]], + FilePath = asset.localResource("Global/LRO_Mini-RF_First_Stokes_Parameter.vrt"), + Description = [[]] +} + +local treks_LRO_WAC_Mosaic_Global_303ppd_v02 = { + Identifier = "LRO_WAC_Mosaic_Global_303ppd_v02", + Name = [[LRO WAC Mosaic v2]], + FilePath = asset.localResource("Global/LRO_WAC_Mosaic_v2.vrt"), + Description = [[]] +} + +local treks_SchrodingerCraterMareUnit_50cmV10eq = { + Identifier = "SchrodingerCraterMareUnit_50cmV10eq", + Name = [[LROC NAC Uncontrolled Mosaic of Mare Unit in Schrodinger Crater]], + FilePath = asset.localResource("Global/LROC_NAC_Uncontrolled_Mosaic_of_Mare_Unit_in_Schrodinger_Crater.vrt"), + Description = [[This is a 50cm/px uncontrolled visible image mosaic generated using Lunar Reconnaissance Orbiter Camera (LROC) Narrow Angle Camera (NAC) images from the Lunar Reconnaissance Orbiter mission. Each NAC image was registered horizontally to the LRO's Lunar Orbiter Laser Altimeter (LOLA) global DEM, and then mosaicked together and color balanced. ]] +} + +local treks_SchrodingerCraterMassif_50cmV10eq = { + Identifier = "SchrodingerCraterMassif_50cmV10eq", + Name = [[LROC NAC Uncontrolled Mosaic of Massif in Schrodinger Crater]], + FilePath = asset.localResource("Global/LROC_NAC_Uncontrolled_Mosaic_of_Massif_in_Schrodinger_Crater.vrt"), + Description = [[This is a 50cm/px uncontrolled visible image mosaic generated using Lunar Reconnaissance Orbiter Camera (LROC) Narrow Angle Camera (NAC) images from the Lunar Reconnaissance Orbiter mission. Each NAC image was registered horizontally to the LRO's Lunar Orbiter Laser Altimeter (LOLA) global DEM, and then mosaicked together and color balanced. ]] +} + +local treks_LRO_LOLAKaguya_ClrHillshade_60N60S_512ppd = { + Identifier = "LRO_LOLAKaguya_ClrHillshade_60N60S_512ppd", + Name = [[LRO LOLA and Kaguya TC Color Hillshade 512ppd]], + FilePath = asset.localResource("Global/LRO_LOLA_and_Kaguya_TC_Color_Hillshade_512ppd.vrt"), + Description = [[This is a colorized shaded-relief representation of the Lunar surface generated from the LOLA and Kaguya merged DEM product. The LOLA and Kaguya Teams have created an improved lunar digital elevation model (DEM) covering latitudes within ±60°, at a horizontal resolution of 512 pixels per degree (∼59 m at the equator) and a typical vertical accuracy ∼3 to 4 m. This DEM is constructed from ∼4.5×109 geodetically-accurate topographic heights from the Lunar Orbiter Laser Altimeter (LOLA) onboard the Lunar Reconnaissance Orbiter, to which we co-registered 43,200 stereo-derived DEMs (each 1×1 degree) from the SELENE Terrain Camera (TC) (∼1010 pixels total). After co-registration, approximately 90% of the TC DEMs show root-mean-square vertical residuals with the LOLA data of <5 m compared to ∼50% prior to co-registration. We use the co-registered TC data to estimate and correct orbital and pointing geolocation errors from the LOLA altimetric profiles (typically amounting to <10 m horizontally and <1 m vertically). By combining both co-registered datasets, we obtain a near-global DEM with high geodetic accuracy, and without the need for surface interpolation. We evaluate the resulting LOLA + TC merged DEM (designated as “SLDEM2015”) with particular attention to quantifying seams and crossover errors. The legend coveys the mapping colors to elevation values (meters) and map values are referred to a radius of 1737400 m.]] +} + +local treks_LRO_LOLAKaguya_Hillshade_60N60S_512ppd = { + Identifier = "LRO_LOLAKaguya_Hillshade_60N60S_512ppd", + Name = [[LRO LOLA and Kaguya TC Hillshade 512ppd]], + FilePath = asset.localResource("Global/LRO_LOLA_and_Kaguya_TC_Hillshade_512ppd.vrt"), + Description = [[This is a shaded-relief representation of the Lunar surface generated from the LOLA and Kaguya merged DEM product. The LOLA and Kaguya Teams have created an improved lunar digital elevation model (DEM) covering latitudes within ±60°, at a horizontal resolution of 512 pixels per degree (∼59 m at the equator) and a typical vertical accuracy ∼3 to 4 m. This DEM is constructed from ∼4.5×109 geodetically-accurate topographic heights from the Lunar Orbiter Laser Altimeter (LOLA) onboard the Lunar Reconnaissance Orbiter, to which we co-registered 43,200 stereo-derived DEMs (each 1×1 degree) from the SELENE Terrain Camera (TC) (∼1010 pixels total). After co-registration, approximately 90% of the TC DEMs show root-mean-square vertical residuals with the LOLA data of <5 m compared to ∼50% prior to co-registration. We use the co-registered TC data to estimate and correct orbital and pointing geolocation errors from the LOLA altimetric profiles (typically amounting to <10 m horizontally and <1 m vertically). By combining both co-registered datasets, we obtain a near-global DEM with high geodetic accuracy, and without the need for surface interpolation. We evaluate the resulting LOLA + TC merged DEM (designated as “SLDEM2015”) with particular attention to quantifying seams and crossover errors. Elevation values are in meters and map values are referred to a radius of 1737400 m.]] +} + +local treks_Lunar_Clementine_UVVIS_Warp_ClrRatio_Global_200m = { + Identifier = "Lunar_Clementine_UVVIS_Warp_ClrRatio_Global_200m", + Name = [[Clementine UVVIS Warped Color Ratio]], + FilePath = asset.localResource("Global/Clementine_UVVIS_Warped_Color_Ratio.vrt"), + Description = [[This base represents the Clementine Ultraviolet/Visible (UVVIS) warped color-ratio mineral map. This was generated from the UVVIS mosaics using three spectral filters (415, 750, and 1000 nm) and which were previously warped (spatially adjusted) to the ULCN2005 control network. The mosaic is a composite in which the ratio of the 750/415nm bands is used for the red-channel brightness, 415/750nm for the blue channel, and the 750/1000nm ratio controls the green channel. Resolution of this mosaic is 200 meters per pixel (m). + +Color interpretations: + +The red channel represents areas that are low in titanium, or high in glass content, the green channel is sensitive to the amount of iron in the surface, and the blue channel reflects the surfaces with high titanium or bright slopes and albedos that are not compensated by using the image ratios. Lunar highlands appear red because they have accumulated glassy agglutinates produced during the bombardment of micrometeorites (maturation). Also red in the false-color image are pyroclastic deposits because of their naturally high-glass content. The yellow-green area in the mare is the combined effect of concentration of mafic minerals (green) and the glass in the soil produced by maturation (red). The blue unit in the mare is relatively higher in titanium compared to the mare unit to its immediate north. + +For more information on how the color ratio was derived, please see Lucy et al., 2000.]] +} + +local treks_LRO_LOLA_Illumination_NPole65N_240m_EQ = { + Identifier = "LRO_LOLA_Illumination_NPole65N_240m_EQ", + Name = [[LOLA Permanently Shadowed Regions Northpole 240m]], + FilePath = asset.localResource("Global/LOLA_Permanently_Shadowed_Regions_Northpole_240m.vrt"), + Description = [[This data product is a map of the permanently shadowed regions (PSRs) in the lunar North Pole. The map resolution is 240m/pix by 240m/pix, true at the pole in polar stereographic (spherical) projection. The calculations are based on the LOLA elevation map LDEM_75N_240M and are described in. The values are binary, indicating whether a pixel is in permanent shadow (1) or not (0, NoDATA).]] +} + +local treks_LRO_LOLA_Illumination_SPole65S_240m_EQ = { + Identifier = "LRO_LOLA_Illumination_SPole65S_240m_EQ", + Name = [[LOLA Permanently Shadowed Regions Southpole 240m]], + FilePath = asset.localResource("Global/LOLA_Permanently_Shadowed_Regions_Southpole_240m.vrt"), + Description = [[This data product is a map of the permanently shadowed regions (PSRs) in the lunar South Pole. The map resolution is 240m/pix by 240m/pix, true at the pole in polar stereographic (spherical) projection. The calculations are based on the LOLA elevation map LDEM_75S_240M and are described in. The values are binary, indicating whether a pixel is in permanent shadow (1) or not (0, NoDATA).]] +} + +asset.onInitialize(function() + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_Apollo15_MetricCam_Mosaic_Global_4096ppd) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_Apollo17_MetricCam_Mosaic_Global_3033ppd) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_ApolloZone_MetricCam_Mosaic_Global_3033ppd) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_Clem_UVVIS_FeO_Clr_Global_152ppd) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_Clem_UVVIS_OpticalMaturity_Gray_Global_152ppd) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_Clem_UVVIS_TiO2_Clr_Global_152ppd) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_Kaguya_TCortho_Mosaic_Global_4096ppd) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LP_NS_H_Clr_Global_2ppd) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_Diviner_CF_NoFill_Global_8ppd) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_WAC_Mosaic_Global_303ppd) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_MiniRF_S1_Gray_Global_128ppd) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_WAC_Mosaic_Global_303ppd_v02) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_SchrodingerCraterMareUnit_50cmV10eq) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_SchrodingerCraterMassif_50cmV10eq) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_LOLAKaguya_ClrHillshade_60N60S_512ppd) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_LOLAKaguya_Hillshade_60N60S_512ppd) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_Lunar_Clementine_UVVIS_Warp_ClrRatio_Global_200m) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_LOLA_Illumination_NPole65N_240m_EQ) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_LOLA_Illumination_SPole65S_240m_EQ) +end) + +asset.onDeinitialize(function() + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_Apollo15_MetricCam_Mosaic_Global_4096ppd") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_Apollo17_MetricCam_Mosaic_Global_3033ppd") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_ApolloZone_MetricCam_Mosaic_Global_3033ppd") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_Clem_UVVIS_FeO_Clr_Global_152ppd") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_Clem_UVVIS_OpticalMaturity_Gray_Global_152ppd") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_Clem_UVVIS_TiO2_Clr_Global_152ppd") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_Kaguya_TCortho_Mosaic_Global_4096ppd") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LP_NS_H_Clr_Global_2ppd") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_Diviner_CF_NoFill_Global_8ppd") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_WAC_Mosaic_Global_303ppd") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_MiniRF_S1_Gray_Global_128ppd") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_WAC_Mosaic_Global_303ppd_v02") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_SchrodingerCraterMareUnit_50cmV10eq") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_SchrodingerCraterMassif_50cmV10eq") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_LOLAKaguya_ClrHillshade_60N60S_512ppd") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_LOLAKaguya_Hillshade_60N60S_512ppd") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_Lunar_Clementine_UVVIS_Warp_ClrRatio_Global_200m") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_LOLA_Illumination_NPole65N_240m_EQ") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_LOLA_Illumination_SPole65S_240m_EQ") +end) + +asset.export("Apollo15_MetricCam_Mosaic_Global_4096ppd", treks_Apollo15_MetricCam_Mosaic_Global_4096ppd) +asset.export("Apollo17_MetricCam_Mosaic_Global_3033ppd", treks_Apollo17_MetricCam_Mosaic_Global_3033ppd) +asset.export("ApolloZone_MetricCam_Mosaic_Global_3033ppd", treks_ApolloZone_MetricCam_Mosaic_Global_3033ppd) +asset.export("Clem_UVVIS_FeO_Clr_Global_152ppd", treks_Clem_UVVIS_FeO_Clr_Global_152ppd) +asset.export("Clem_UVVIS_OpticalMaturity_Gray_Global_152ppd", treks_Clem_UVVIS_OpticalMaturity_Gray_Global_152ppd) +asset.export("Clem_UVVIS_TiO2_Clr_Global_152ppd", treks_Clem_UVVIS_TiO2_Clr_Global_152ppd) +asset.export("Kaguya_TCortho_Mosaic_Global_4096ppd", treks_Kaguya_TCortho_Mosaic_Global_4096ppd) +asset.export("LP_NS_H_Clr_Global_2ppd", treks_LP_NS_H_Clr_Global_2ppd) +asset.export("LRO_Diviner_CF_NoFill_Global_8ppd", treks_LRO_Diviner_CF_NoFill_Global_8ppd) +asset.export("LRO_WAC_Mosaic_Global_303ppd", treks_LRO_WAC_Mosaic_Global_303ppd) +asset.export("LRO_MiniRF_S1_Gray_Global_128ppd", treks_LRO_MiniRF_S1_Gray_Global_128ppd) +asset.export("LRO_WAC_Mosaic_Global_303ppd_v02", treks_LRO_WAC_Mosaic_Global_303ppd_v02) +asset.export("SchrodingerCraterMareUnit_50cmV10eq", treks_SchrodingerCraterMareUnit_50cmV10eq) +asset.export("SchrodingerCraterMassif_50cmV10eq", treks_SchrodingerCraterMassif_50cmV10eq) +asset.export("LRO_LOLAKaguya_ClrHillshade_60N60S_512ppd", treks_LRO_LOLAKaguya_ClrHillshade_60N60S_512ppd) +asset.export("LRO_LOLAKaguya_Hillshade_60N60S_512ppd", treks_LRO_LOLAKaguya_Hillshade_60N60S_512ppd) +asset.export("Lunar_Clementine_UVVIS_Warp_ClrRatio_Global_200m", treks_Lunar_Clementine_UVVIS_Warp_ClrRatio_Global_200m) +asset.export("LRO_LOLA_Illumination_NPole65N_240m_EQ", treks_LRO_LOLA_Illumination_NPole65N_240m_EQ) +asset.export("LRO_LOLA_Illumination_SPole65S_240m_EQ", treks_LRO_LOLA_Illumination_SPole65S_240m_EQ) + + +asset.meta = { + Name = [[NASA Treks Layers for Moon Global], + Version = "1.0", + Author = "NASA/Treks", + URL = "https://trek.nasa.gov/moon", + License = "NASA/Treks", + Description = [[Global layers from NASA/Treks for Moon]] +} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/Apollo_15_Metric_Cam_Image_Mosaic.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/Apollo_15_Metric_Cam_Image_Mosaic.vrt new file mode 100644 index 0000000000..fff869099c --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/Apollo_15_Metric_Cam_Image_Mosaic.vrt @@ -0,0 +1,29 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 + + 0 + Gray + + Apollo_15_Metric_Cam_Image_Mosaic.wms + 1 + + + + 0 + + + + Alpha + + Apollo_15_Metric_Cam_Image_Mosaic.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Metric_Cam_Image_Mosaic/Apollo15_MetricCam_Mosaic_Global_4096ppd.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/Apollo_15_Metric_Cam_Image_Mosaic.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_15_Metric_Cam_Image_Mosaic/Apollo15_MetricCam_Mosaic_Global_4096ppd.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/Apollo_15_Metric_Cam_Image_Mosaic.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/Apollo_17_Metric_Cam_Image_Mosaic.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/Apollo_17_Metric_Cam_Image_Mosaic.vrt new file mode 100644 index 0000000000..62f66a1784 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/Apollo_17_Metric_Cam_Image_Mosaic.vrt @@ -0,0 +1,29 @@ + + GEOGCS["Geographic Coordinate System",DATUM["D_MOON",SPHEROID["MOON",1737400,0]],PRIMEM["Reference Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 3.4332275390625000e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -3.4332275390625000e-04 + + 0 + Gray + + Apollo_17_Metric_Cam_Image_Mosaic.wms + 1 + + + + 0 + + + + Alpha + + Apollo_17_Metric_Cam_Image_Mosaic.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_17_Metric_Cam_Image_Mosaic/Apollo17_MetricCam_Mosaic_Global_3033ppd.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/Apollo_17_Metric_Cam_Image_Mosaic.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_17_Metric_Cam_Image_Mosaic/Apollo17_MetricCam_Mosaic_Global_3033ppd.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/Apollo_17_Metric_Cam_Image_Mosaic.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/Apollo_Zone_Metric_Cam_Image_Mosaic.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/Apollo_Zone_Metric_Cam_Image_Mosaic.vrt new file mode 100644 index 0000000000..e173ac8808 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/Apollo_Zone_Metric_Cam_Image_Mosaic.vrt @@ -0,0 +1,29 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 3.4332275390625000e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -3.4332275390625000e-04 + + 0 + Gray + + Apollo_Zone_Metric_Cam_Image_Mosaic.wms + 1 + + + + 0 + + + + Alpha + + Apollo_Zone_Metric_Cam_Image_Mosaic.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_Zone_Metric_Cam_Image_Mosaic/ApolloZone_MetricCam_Mosaic_Global_3033ppd.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/Apollo_Zone_Metric_Cam_Image_Mosaic.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Apollo_Zone_Metric_Cam_Image_Mosaic/ApolloZone_MetricCam_Mosaic_Global_3033ppd.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/Apollo_Zone_Metric_Cam_Image_Mosaic.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/Clementine_UVVIS_FeO_Weight_Percent.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/Clementine_UVVIS_FeO_Weight_Percent.vrt new file mode 100644 index 0000000000..31d8aaa39c --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/Clementine_UVVIS_FeO_Weight_Percent.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 5.4931640625000000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -5.4931640625000000e-03 + + 0 + Red + + Clementine_UVVIS_FeO_Weight_Percent.wms + 1 + + + + 0 + + + + 0 + Green + + Clementine_UVVIS_FeO_Weight_Percent.wms + 2 + + + + 0 + + + + 0 + Blue + + Clementine_UVVIS_FeO_Weight_Percent.wms + 3 + + + + 0 + + + + Alpha + + Clementine_UVVIS_FeO_Weight_Percent.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Clementine_UVVIS_FeO_Weight_Percent/Clem_UVVIS_FeO_Clr_Global_152ppd.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/Clementine_UVVIS_FeO_Weight_Percent.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Clementine_UVVIS_FeO_Weight_Percent/Clem_UVVIS_FeO_Clr_Global_152ppd.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/Clementine_UVVIS_FeO_Weight_Percent.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/Clementine_UVVIS_Optical_Maturity.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/Clementine_UVVIS_Optical_Maturity.vrt new file mode 100644 index 0000000000..7eb4cf13c8 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/Clementine_UVVIS_Optical_Maturity.vrt @@ -0,0 +1,29 @@ + + GEOGCS["GCS_Moon_2000",DATUM["unknown",SPHEROID["unnamed",1737400,0]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 5.4931640625000000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -5.4931640625000000e-03 + + 0 + Gray + + Clementine_UVVIS_Optical_Maturity.wms + 1 + + + + 0 + + + + Alpha + + Clementine_UVVIS_Optical_Maturity.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Clementine_UVVIS_Optical_Maturity/Clem_UVVIS_OpticalMaturity_Gray_Global_152ppd.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/Clementine_UVVIS_Optical_Maturity.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Clementine_UVVIS_Optical_Maturity/Clem_UVVIS_OpticalMaturity_Gray_Global_152ppd.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/Clementine_UVVIS_Optical_Maturity.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/Clementine_UVVIS_TiO2_Weight_Percent.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/Clementine_UVVIS_TiO2_Weight_Percent.vrt new file mode 100644 index 0000000000..efb04f9dd4 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/Clementine_UVVIS_TiO2_Weight_Percent.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 5.4931640625000000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -5.4931640625000000e-03 + + 0 + Red + + Clementine_UVVIS_TiO2_Weight_Percent.wms + 1 + + + + 0 + + + + 0 + Green + + Clementine_UVVIS_TiO2_Weight_Percent.wms + 2 + + + + 0 + + + + 0 + Blue + + Clementine_UVVIS_TiO2_Weight_Percent.wms + 3 + + + + 0 + + + + Alpha + + Clementine_UVVIS_TiO2_Weight_Percent.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Clementine_UVVIS_TiO2_Weight_Percent/Clem_UVVIS_TiO2_Clr_Global_152ppd.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/Clementine_UVVIS_TiO2_Weight_Percent.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Clementine_UVVIS_TiO2_Weight_Percent/Clem_UVVIS_TiO2_Clr_Global_152ppd.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/Clementine_UVVIS_TiO2_Weight_Percent.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/Clementine_UVVIS_Warped_Color_Ratio.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/Clementine_UVVIS_Warped_Color_Ratio.vrt new file mode 100644 index 0000000000..c1949ebb69 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/Clementine_UVVIS_Warped_Color_Ratio.vrt @@ -0,0 +1,53 @@ + + PROJCS["SimpleCylindrical Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",0],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Clementine_UVVIS_Warped_Color_Ratio.wms + 1 + + + + 0 + + + + 0 + Green + + Clementine_UVVIS_Warped_Color_Ratio.wms + 2 + + + + 0 + + + + 0 + Blue + + Clementine_UVVIS_Warped_Color_Ratio.wms + 3 + + + + 0 + + + + Alpha + + Clementine_UVVIS_Warped_Color_Ratio.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Clementine_UVVIS_Warped_Color_Ratio/Lunar_Clementine_UVVIS_Warp_ClrRatio_Global_200m.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/Clementine_UVVIS_Warped_Color_Ratio.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Clementine_UVVIS_Warped_Color_Ratio/Lunar_Clementine_UVVIS_Warp_ClrRatio_Global_200m.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/Clementine_UVVIS_Warped_Color_Ratio.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/Kaguya_TC_Ortho_Mosaic.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/Kaguya_TC_Ortho_Mosaic.vrt new file mode 100644 index 0000000000..4950b810d9 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/Kaguya_TC_Ortho_Mosaic.vrt @@ -0,0 +1,29 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 3.4332275390625000e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -3.4332275390625000e-04 + + 0 + Gray + + Kaguya_TC_Ortho_Mosaic.wms + 1 + + + + 0 + + + + Alpha + + Kaguya_TC_Ortho_Mosaic.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Kaguya_TC_Ortho_Mosaic/Kaguya_TCortho_Mosaic_Global_4096ppd.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/Kaguya_TC_Ortho_Mosaic.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Kaguya_TC_Ortho_Mosaic/Kaguya_TCortho_Mosaic_Global_4096ppd.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/Kaguya_TC_Ortho_Mosaic.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/LOLA_Permanently_Shadowed_Regions_Northpole_240m.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/LOLA_Permanently_Shadowed_Regions_Northpole_240m.vrt new file mode 100644 index 0000000000..ba336db86d --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/LOLA_Permanently_Shadowed_Regions_Northpole_240m.vrt @@ -0,0 +1,29 @@ + + GEOGCS["GCS_Moon",DATUM["Moon",SPHEROID["Moon",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.0986328125000000e-02, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.0986328125000000e-02 + + 0 + Gray + + LOLA_Permanently_Shadowed_Regions_Northpole_240m.wms + 1 + + + + 0 + + + + Alpha + + LOLA_Permanently_Shadowed_Regions_Northpole_240m.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_Permanently_Shadowed_Regions_Northpole_240m/LRO_LOLA_Illumination_NPole65N_240m_EQ.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/LOLA_Permanently_Shadowed_Regions_Northpole_240m.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_Permanently_Shadowed_Regions_Northpole_240m/LRO_LOLA_Illumination_NPole65N_240m_EQ.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/LOLA_Permanently_Shadowed_Regions_Northpole_240m.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/LOLA_Permanently_Shadowed_Regions_Southpole_240m.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/LOLA_Permanently_Shadowed_Regions_Southpole_240m.vrt new file mode 100644 index 0000000000..33a73bae1a --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/LOLA_Permanently_Shadowed_Regions_Southpole_240m.vrt @@ -0,0 +1,29 @@ + + GEOGCS["GCS_Moon",DATUM["Moon",SPHEROID["Moon",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.0986328125000000e-02, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.0986328125000000e-02 + + 0 + Gray + + LOLA_Permanently_Shadowed_Regions_Southpole_240m.wms + 1 + + + + 0 + + + + Alpha + + LOLA_Permanently_Shadowed_Regions_Southpole_240m.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_Permanently_Shadowed_Regions_Southpole_240m/LRO_LOLA_Illumination_SPole65S_240m_EQ.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/LOLA_Permanently_Shadowed_Regions_Southpole_240m.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_Permanently_Shadowed_Regions_Southpole_240m/LRO_LOLA_Illumination_SPole65S_240m_EQ.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/LOLA_Permanently_Shadowed_Regions_Southpole_240m.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/LP_NS_H_Abundance.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/LP_NS_H_Abundance.vrt new file mode 100644 index 0000000000..4e1b8995ed --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/LP_NS_H_Abundance.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.7578125000000000e-01, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7578125000000000e-01 + + 0 + Red + + LP_NS_H_Abundance.wms + 1 + + + + 0 + + + + 0 + Green + + LP_NS_H_Abundance.wms + 2 + + + + 0 + + + + 0 + Blue + + LP_NS_H_Abundance.wms + 3 + + + + 0 + + + + Alpha + + LP_NS_H_Abundance.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LP_NS_H_Abundance/LP_NS_H_Clr_Global_2ppd.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/LP_NS_H_Abundance.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LP_NS_H_Abundance/LP_NS_H_Clr_Global_2ppd.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/LP_NS_H_Abundance.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/LROC_NAC_Uncontrolled_Mosaic_of_Mare_Unit_in_Schrodinger_Crater.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/LROC_NAC_Uncontrolled_Mosaic_of_Mare_Unit_in_Schrodinger_Crater.vrt new file mode 100644 index 0000000000..f9315062e3 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/LROC_NAC_Uncontrolled_Mosaic_of_Mare_Unit_in_Schrodinger_Crater.vrt @@ -0,0 +1,29 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.1457672119140625e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.1457672119140625e-05 + + 0 + Gray + + LROC_NAC_Uncontrolled_Mosaic_of_Mare_Unit_in_Schrodinger_Crater.wms + 1 + + + + 0 + + + + Alpha + + LROC_NAC_Uncontrolled_Mosaic_of_Mare_Unit_in_Schrodinger_Crater.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LROC_NAC_Uncontrolled_Mosaic_of_Mare_Unit_in_Schrodinger_Crater/SchrodingerCraterMareUnit_50cmV1.0.eq.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/LROC_NAC_Uncontrolled_Mosaic_of_Mare_Unit_in_Schrodinger_Crater.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LROC_NAC_Uncontrolled_Mosaic_of_Mare_Unit_in_Schrodinger_Crater/SchrodingerCraterMareUnit_50cmV1.0.eq.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/LROC_NAC_Uncontrolled_Mosaic_of_Mare_Unit_in_Schrodinger_Crater.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/LROC_NAC_Uncontrolled_Mosaic_of_Massif_in_Schrodinger_Crater.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/LROC_NAC_Uncontrolled_Mosaic_of_Massif_in_Schrodinger_Crater.vrt new file mode 100644 index 0000000000..3a65fa6ff9 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/LROC_NAC_Uncontrolled_Mosaic_of_Massif_in_Schrodinger_Crater.vrt @@ -0,0 +1,29 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.1457672119140625e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.1457672119140625e-05 + + 0 + Gray + + LROC_NAC_Uncontrolled_Mosaic_of_Massif_in_Schrodinger_Crater.wms + 1 + + + + 0 + + + + Alpha + + LROC_NAC_Uncontrolled_Mosaic_of_Massif_in_Schrodinger_Crater.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LROC_NAC_Uncontrolled_Mosaic_of_Massif_in_Schrodinger_Crater/SchrodingerCraterMassif_50cmV1.0.eq.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/LROC_NAC_Uncontrolled_Mosaic_of_Massif_in_Schrodinger_Crater.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LROC_NAC_Uncontrolled_Mosaic_of_Massif_in_Schrodinger_Crater/SchrodingerCraterMassif_50cmV1.0.eq.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/LROC_NAC_Uncontrolled_Mosaic_of_Massif_in_Schrodinger_Crater.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/LRO_Diviner_CF_Mosaic.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/LRO_Diviner_CF_Mosaic.vrt new file mode 100644 index 0000000000..4ba66d2c6b --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/LRO_Diviner_CF_Mosaic.vrt @@ -0,0 +1,53 @@ + + GEOGCS["Moon 2000",DATUM["Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 8.7890625000000000e-02, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.7890625000000000e-02 + + 0 + Red + + LRO_Diviner_CF_Mosaic.wms + 1 + + + + 0 + + + + 0 + Green + + LRO_Diviner_CF_Mosaic.wms + 2 + + + + 0 + + + + 0 + Blue + + LRO_Diviner_CF_Mosaic.wms + 3 + + + + 0 + + + + Alpha + + LRO_Diviner_CF_Mosaic.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_CF_Mosaic/LRO_Diviner_CF_NoFill_Global_8ppd.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/LRO_Diviner_CF_Mosaic.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_CF_Mosaic/LRO_Diviner_CF_NoFill_Global_8ppd.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/LRO_Diviner_CF_Mosaic.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/LRO_LOLA_and_Kaguya_TC_Color_Hillshade_512ppd.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/LRO_LOLA_and_Kaguya_TC_Color_Hillshade_512ppd.vrt new file mode 100644 index 0000000000..3b3febc448 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/LRO_LOLA_and_Kaguya_TC_Color_Hillshade_512ppd.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 3.4332275390625000e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -3.4332275390625000e-04 + + 0 + Red + + LRO_LOLA_and_Kaguya_TC_Color_Hillshade_512ppd.wms + 1 + + + + 0 + + + + 0 + Green + + LRO_LOLA_and_Kaguya_TC_Color_Hillshade_512ppd.wms + 2 + + + + 0 + + + + 0 + Blue + + LRO_LOLA_and_Kaguya_TC_Color_Hillshade_512ppd.wms + 3 + + + + 0 + + + + Alpha + + LRO_LOLA_and_Kaguya_TC_Color_Hillshade_512ppd.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_and_Kaguya_TC_Color_Hillshade_512ppd/LRO_LOLAKaguya_ClrHillshade_60N60S_512ppd.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/LRO_LOLA_and_Kaguya_TC_Color_Hillshade_512ppd.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_and_Kaguya_TC_Color_Hillshade_512ppd/LRO_LOLAKaguya_ClrHillshade_60N60S_512ppd.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/LRO_LOLA_and_Kaguya_TC_Color_Hillshade_512ppd.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/LRO_LOLA_and_Kaguya_TC_Hillshade_512ppd.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/LRO_LOLA_and_Kaguya_TC_Hillshade_512ppd.vrt new file mode 100644 index 0000000000..c945bbec3a --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/LRO_LOLA_and_Kaguya_TC_Hillshade_512ppd.vrt @@ -0,0 +1,29 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 3.4332275390625000e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -3.4332275390625000e-04 + + 0 + Gray + + LRO_LOLA_and_Kaguya_TC_Hillshade_512ppd.wms + 1 + + + + 0 + + + + Alpha + + LRO_LOLA_and_Kaguya_TC_Hillshade_512ppd.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_and_Kaguya_TC_Hillshade_512ppd/LRO_LOLAKaguya_Hillshade_60N60S_512ppd.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/LRO_LOLA_and_Kaguya_TC_Hillshade_512ppd.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_and_Kaguya_TC_Hillshade_512ppd/LRO_LOLAKaguya_Hillshade_60N60S_512ppd.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/LRO_LOLA_and_Kaguya_TC_Hillshade_512ppd.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/LRO_LROC_WAC_Image_Mosaic.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/LRO_LROC_WAC_Image_Mosaic.vrt new file mode 100644 index 0000000000..c9c2f288fc --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/LRO_LROC_WAC_Image_Mosaic.vrt @@ -0,0 +1,29 @@ + + GEOGCS["GCS_Moon_2000",DATUM["Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Gray + + LRO_LROC_WAC_Image_Mosaic.wms + 1 + + + + 0 + + + + Alpha + + LRO_LROC_WAC_Image_Mosaic.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_WAC_Image_Mosaic/LRO_WAC_Mosaic_Global_303ppd.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/LRO_LROC_WAC_Image_Mosaic.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_WAC_Image_Mosaic/LRO_WAC_Mosaic_Global_303ppd.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/LRO_LROC_WAC_Image_Mosaic.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/LRO_Mini-RF_First_Stokes_Parameter.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/LRO_Mini-RF_First_Stokes_Parameter.vrt new file mode 100644 index 0000000000..86a2e72418 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/LRO_Mini-RF_First_Stokes_Parameter.vrt @@ -0,0 +1,29 @@ + + GEOGCS["GCS_Moon_2000",DATUM["Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.0986328125000000e-02, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.0986328125000000e-02 + + 0 + Gray + + LRO_Mini-RF_First_Stokes_Parameter.wms + 1 + + + + 0 + + + + Alpha + + LRO_Mini-RF_First_Stokes_Parameter.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Mini-RF_First_Stokes_Parameter/LRO_MiniRF_S1_Gray_Global_128ppd.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/LRO_Mini-RF_First_Stokes_Parameter.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Mini-RF_First_Stokes_Parameter/LRO_MiniRF_S1_Gray_Global_128ppd.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/LRO_Mini-RF_First_Stokes_Parameter.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/LRO_WAC_Mosaic_v2.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/LRO_WAC_Mosaic_v2.vrt new file mode 100644 index 0000000000..bc2db7ed77 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/LRO_WAC_Mosaic_v2.vrt @@ -0,0 +1,29 @@ + + GEOGCS["GCS_Moon",DATUM["Moon",SPHEROID["Moon",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.3732910156250000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.3732910156250000e-03 + + 0 + Gray + + LRO_WAC_Mosaic_v2.wms + 1 + + + + 0 + + + + Alpha + + LRO_WAC_Mosaic_v2.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_WAC_Mosaic_v2/LRO_WAC_Mosaic_Global_303ppd_v02.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/LRO_WAC_Mosaic_v2.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_WAC_Mosaic_v2/LRO_WAC_Mosaic_Global_303ppd_v02.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Global/LRO_WAC_Mosaic_v2.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Kaguya_LGM2011_Freeair_Gravity.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Kaguya_LGM2011_Freeair_Gravity.asset new file mode 100644 index 0000000000..2042128903 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Kaguya_LGM2011_Freeair_Gravity.asset @@ -0,0 +1,44 @@ +-- This file was automatically generated using a script found at +-- https://github.com/OpenSpace/scripts/treks-to-openspace. See the README.md file +-- in that repository for more information on how to run the script to update these +-- files. In particular in the case of errors, prefer to change that script rather +-- than the individual files + +local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier + +local treks_Kaguya_LGM2011_FreeairGravity_Colorized_Global_mgal3m_20ppd = { + Identifier = "Kaguya_LGM2011_FreeairGravity_Colorized_Global_mgal3m_20ppd", + Name = [[Kaguya LGM2011 Freeair Gravity, Colorized]], + FilePath = asset.localResource("Kaguya_LGM2011_Freeair_Gravity/Colorized.vrt"), + Description = [[]] +} + +local treks_Kaguya_LGM2011_FreeairGravity_Gray_Global_mgal3m_20ppd = { + Identifier = "Kaguya_LGM2011_FreeairGravity_Gray_Global_mgal3m_20ppd", + Name = [[Kaguya LGM2011 Freeair Gravity, Greyscale]], + FilePath = asset.localResource("Kaguya_LGM2011_Freeair_Gravity/Greyscale.vrt"), + Description = [[]] +} + +asset.onInitialize(function() + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_Kaguya_LGM2011_FreeairGravity_Colorized_Global_mgal3m_20ppd) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_Kaguya_LGM2011_FreeairGravity_Gray_Global_mgal3m_20ppd) +end) + +asset.onDeinitialize(function() + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_Kaguya_LGM2011_FreeairGravity_Colorized_Global_mgal3m_20ppd") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_Kaguya_LGM2011_FreeairGravity_Gray_Global_mgal3m_20ppd") +end) + +asset.export("Kaguya_LGM2011_FreeairGravity_Colorized_Global_mgal3m_20ppd", treks_Kaguya_LGM2011_FreeairGravity_Colorized_Global_mgal3m_20ppd) +asset.export("Kaguya_LGM2011_FreeairGravity_Gray_Global_mgal3m_20ppd", treks_Kaguya_LGM2011_FreeairGravity_Gray_Global_mgal3m_20ppd) + + +asset.meta = { + Name = [[NASA Treks Layers for Moon Kaguya_LGM2011_Freeair_Gravity], + Version = "1.0", + Author = "NASA/Treks", + URL = "https://trek.nasa.gov/moon", + License = "NASA/Treks", + Description = [[Kaguya_LGM2011_Freeair_Gravity layers from NASA/Treks for Moon]] +} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Kaguya_LGM2011_Freeair_Gravity/Colorized.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Kaguya_LGM2011_Freeair_Gravity/Colorized.vrt new file mode 100644 index 0000000000..7b890a2474 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Kaguya_LGM2011_Freeair_Gravity/Colorized.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 4.3945312500000000e-02, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.3945312500000000e-02 + + 0 + Red + + Colorized.wms + 1 + + + + 0 + + + + 0 + Green + + Colorized.wms + 2 + + + + 0 + + + + 0 + Blue + + Colorized.wms + 3 + + + + 0 + + + + Alpha + + Colorized.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Kaguya_LGM2011_Freeair_Gravity_Colorized/Kaguya_LGM2011_FreeairGravity_Colorized_Global_mgal3m_20ppd.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Kaguya_LGM2011_Freeair_Gravity/Colorized.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Kaguya_LGM2011_Freeair_Gravity_Colorized/Kaguya_LGM2011_FreeairGravity_Colorized_Global_mgal3m_20ppd.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Kaguya_LGM2011_Freeair_Gravity/Colorized.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Kaguya_LGM2011_Freeair_Gravity/Greyscale.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Kaguya_LGM2011_Freeair_Gravity/Greyscale.vrt new file mode 100644 index 0000000000..7a2552ac76 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Kaguya_LGM2011_Freeair_Gravity/Greyscale.vrt @@ -0,0 +1,29 @@ + + GEOGCS["GCS_Moon_2000",DATUM["Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 4.3945312500000000e-02, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.3945312500000000e-02 + + 0 + Gray + + Greyscale.wms + 1 + + + + 0 + + + + Alpha + + Greyscale.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Kaguya_LGM2011_Freeair_Gravity_Greyscale/Kaguya_LGM2011_FreeairGravity_Gray_Global_mgal3m_20ppd.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Kaguya_LGM2011_Freeair_Gravity/Greyscale.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Kaguya_LGM2011_Freeair_Gravity_Greyscale/Kaguya_LGM2011_FreeairGravity_Gray_Global_mgal3m_20ppd.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Kaguya_LGM2011_Freeair_Gravity/Greyscale.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Kaguya_LGM2011_Freeair_Gravity_Colorized/Kaguya_LGM2011_FreeairGravity_Colorized_Global_mgal3m_20ppd.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Kaguya_LGM2011_Freeair_Gravity_Colorized/Kaguya_LGM2011_FreeairGravity_Colorized_Global_mgal3m_20ppd.vrt deleted file mode 100644 index 2e00bf3ba0..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Kaguya_LGM2011_Freeair_Gravity_Colorized/Kaguya_LGM2011_FreeairGravity_Colorized_Global_mgal3m_20ppd.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.3945312500000000e-02, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.3945312500000000e-02 - - 0 - Red - - Kaguya_LGM2011_FreeairGravity_Colorized_Global_mgal3m_20ppd.wms - 1 - - - - 0 - - - - 0 - Green - - Kaguya_LGM2011_FreeairGravity_Colorized_Global_mgal3m_20ppd.wms - 2 - - - - 0 - - - - 0 - Blue - - Kaguya_LGM2011_FreeairGravity_Colorized_Global_mgal3m_20ppd.wms - 3 - - - - 0 - - - - Alpha - - Kaguya_LGM2011_FreeairGravity_Colorized_Global_mgal3m_20ppd.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Kaguya_LGM2011_Freeair_Gravity_Colorized/Kaguya_LGM2011_Freeair_Gravity_Colorized.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Kaguya_LGM2011_Freeair_Gravity_Colorized/Kaguya_LGM2011_Freeair_Gravity_Colorized.asset deleted file mode 100644 index e8963fe20b..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Kaguya_LGM2011_Freeair_Gravity_Colorized/Kaguya_LGM2011_Freeair_Gravity_Colorized.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "Kaguya_LGM2011_FreeairGravity_Colorized_Global_mgal3m_20ppd", - Name = [[Kaguya LGM2011 Freeair Gravity, Colorized]], - FilePath = asset.localResource("Kaguya_LGM2011_FreeairGravity_Colorized_Global_mgal3m_20ppd.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Kaguya LGM2011 Freeair Gravity, Colorized]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=Kaguya_LGM2011_FreeairGravity_Colorized_Global_mgal3m_20ppd%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Kaguya LGM2011 Freeair Gravity, Colorized layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Kaguya_LGM2011_Freeair_Gravity_Greyscale/Kaguya_LGM2011_FreeairGravity_Gray_Global_mgal3m_20ppd.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Kaguya_LGM2011_Freeair_Gravity_Greyscale/Kaguya_LGM2011_FreeairGravity_Gray_Global_mgal3m_20ppd.vrt deleted file mode 100644 index d789939d89..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Kaguya_LGM2011_Freeair_Gravity_Greyscale/Kaguya_LGM2011_FreeairGravity_Gray_Global_mgal3m_20ppd.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.3945312500000000e-02, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.3945312500000000e-02 - - 0 - Gray - - Kaguya_LGM2011_FreeairGravity_Gray_Global_mgal3m_20ppd.wms - 1 - - - - 0 - - - - Alpha - - Kaguya_LGM2011_FreeairGravity_Gray_Global_mgal3m_20ppd.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Kaguya_LGM2011_Freeair_Gravity_Greyscale/Kaguya_LGM2011_Freeair_Gravity_Greyscale.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Kaguya_LGM2011_Freeair_Gravity_Greyscale/Kaguya_LGM2011_Freeair_Gravity_Greyscale.asset deleted file mode 100644 index fe80fed293..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Kaguya_LGM2011_Freeair_Gravity_Greyscale/Kaguya_LGM2011_Freeair_Gravity_Greyscale.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "Kaguya_LGM2011_FreeairGravity_Gray_Global_mgal3m_20ppd", - Name = [[Kaguya LGM2011 Freeair Gravity, Greyscale]], - FilePath = asset.localResource("Kaguya_LGM2011_FreeairGravity_Gray_Global_mgal3m_20ppd.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Kaguya LGM2011 Freeair Gravity, Greyscale]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=Kaguya_LGM2011_FreeairGravity_Gray_Global_mgal3m_20ppd%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Kaguya LGM2011 Freeair Gravity, Greyscale layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Kaguya_LGM2011_Surface_Gravity.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Kaguya_LGM2011_Surface_Gravity.asset new file mode 100644 index 0000000000..0fa16b1f6c --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Kaguya_LGM2011_Surface_Gravity.asset @@ -0,0 +1,44 @@ +-- This file was automatically generated using a script found at +-- https://github.com/OpenSpace/scripts/treks-to-openspace. See the README.md file +-- in that repository for more information on how to run the script to update these +-- files. In particular in the case of errors, prefer to change that script rather +-- than the individual files + +local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier + +local treks_Kaguya_LGM2011_SurfaceGravity_Colorized_Global_mgal3m_20ppd = { + Identifier = "Kaguya_LGM2011_SurfaceGravity_Colorized_Global_mgal3m_20ppd", + Name = [[Kaguya LGM2011 Surface Gravity, Colorized]], + FilePath = asset.localResource("Kaguya_LGM2011_Surface_Gravity/Colorized.vrt"), + Description = [[]] +} + +local treks_Kaguya_LGM2011_SurfaceGravity_Gray_Global_mgal3m_20ppd = { + Identifier = "Kaguya_LGM2011_SurfaceGravity_Gray_Global_mgal3m_20ppd", + Name = [[Kaguya LGM2011 Surface Gravity, Greyscale]], + FilePath = asset.localResource("Kaguya_LGM2011_Surface_Gravity/Greyscale.vrt"), + Description = [[]] +} + +asset.onInitialize(function() + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_Kaguya_LGM2011_SurfaceGravity_Colorized_Global_mgal3m_20ppd) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_Kaguya_LGM2011_SurfaceGravity_Gray_Global_mgal3m_20ppd) +end) + +asset.onDeinitialize(function() + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_Kaguya_LGM2011_SurfaceGravity_Colorized_Global_mgal3m_20ppd") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_Kaguya_LGM2011_SurfaceGravity_Gray_Global_mgal3m_20ppd") +end) + +asset.export("Kaguya_LGM2011_SurfaceGravity_Colorized_Global_mgal3m_20ppd", treks_Kaguya_LGM2011_SurfaceGravity_Colorized_Global_mgal3m_20ppd) +asset.export("Kaguya_LGM2011_SurfaceGravity_Gray_Global_mgal3m_20ppd", treks_Kaguya_LGM2011_SurfaceGravity_Gray_Global_mgal3m_20ppd) + + +asset.meta = { + Name = [[NASA Treks Layers for Moon Kaguya_LGM2011_Surface_Gravity], + Version = "1.0", + Author = "NASA/Treks", + URL = "https://trek.nasa.gov/moon", + License = "NASA/Treks", + Description = [[Kaguya_LGM2011_Surface_Gravity layers from NASA/Treks for Moon]] +} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Kaguya_LGM2011_Surface_Gravity/Colorized.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Kaguya_LGM2011_Surface_Gravity/Colorized.vrt new file mode 100644 index 0000000000..7b890a2474 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Kaguya_LGM2011_Surface_Gravity/Colorized.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 4.3945312500000000e-02, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.3945312500000000e-02 + + 0 + Red + + Colorized.wms + 1 + + + + 0 + + + + 0 + Green + + Colorized.wms + 2 + + + + 0 + + + + 0 + Blue + + Colorized.wms + 3 + + + + 0 + + + + Alpha + + Colorized.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Kaguya_LGM2011_Surface_Gravity_Colorized/Kaguya_LGM2011_SurfaceGravity_Colorized_Global_mgal3m_20ppd.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Kaguya_LGM2011_Surface_Gravity/Colorized.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Kaguya_LGM2011_Surface_Gravity_Colorized/Kaguya_LGM2011_SurfaceGravity_Colorized_Global_mgal3m_20ppd.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Kaguya_LGM2011_Surface_Gravity/Colorized.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Kaguya_LGM2011_Surface_Gravity/Greyscale.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Kaguya_LGM2011_Surface_Gravity/Greyscale.vrt new file mode 100644 index 0000000000..fe00f2a5bd --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Kaguya_LGM2011_Surface_Gravity/Greyscale.vrt @@ -0,0 +1,29 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 4.3945312500000000e-02, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.3945312500000000e-02 + + 0 + Gray + + Greyscale.wms + 1 + + + + 0 + + + + Alpha + + Greyscale.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Kaguya_LGM2011_Surface_Gravity_Greyscale/Kaguya_LGM2011_SurfaceGravity_Gray_Global_mgal3m_20ppd.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Kaguya_LGM2011_Surface_Gravity/Greyscale.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Kaguya_LGM2011_Surface_Gravity_Greyscale/Kaguya_LGM2011_SurfaceGravity_Gray_Global_mgal3m_20ppd.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Kaguya_LGM2011_Surface_Gravity/Greyscale.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Kaguya_LGM2011_Surface_Gravity_Colorized/Kaguya_LGM2011_SurfaceGravity_Colorized_Global_mgal3m_20ppd.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Kaguya_LGM2011_Surface_Gravity_Colorized/Kaguya_LGM2011_SurfaceGravity_Colorized_Global_mgal3m_20ppd.vrt deleted file mode 100644 index d0d6f9cf9b..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Kaguya_LGM2011_Surface_Gravity_Colorized/Kaguya_LGM2011_SurfaceGravity_Colorized_Global_mgal3m_20ppd.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.3945312500000000e-02, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.3945312500000000e-02 - - 0 - Red - - Kaguya_LGM2011_SurfaceGravity_Colorized_Global_mgal3m_20ppd.wms - 1 - - - - 0 - - - - 0 - Green - - Kaguya_LGM2011_SurfaceGravity_Colorized_Global_mgal3m_20ppd.wms - 2 - - - - 0 - - - - 0 - Blue - - Kaguya_LGM2011_SurfaceGravity_Colorized_Global_mgal3m_20ppd.wms - 3 - - - - 0 - - - - Alpha - - Kaguya_LGM2011_SurfaceGravity_Colorized_Global_mgal3m_20ppd.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Kaguya_LGM2011_Surface_Gravity_Colorized/Kaguya_LGM2011_Surface_Gravity_Colorized.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Kaguya_LGM2011_Surface_Gravity_Colorized/Kaguya_LGM2011_Surface_Gravity_Colorized.asset deleted file mode 100644 index 99cb851c10..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Kaguya_LGM2011_Surface_Gravity_Colorized/Kaguya_LGM2011_Surface_Gravity_Colorized.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "Kaguya_LGM2011_SurfaceGravity_Colorized_Global_mgal3m_20ppd", - Name = [[Kaguya LGM2011 Surface Gravity, Colorized]], - FilePath = asset.localResource("Kaguya_LGM2011_SurfaceGravity_Colorized_Global_mgal3m_20ppd.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Kaguya LGM2011 Surface Gravity, Colorized]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=Kaguya_LGM2011_SurfaceGravity_Colorized_Global_mgal3m_20ppd%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Kaguya LGM2011 Surface Gravity, Colorized layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Kaguya_LGM2011_Surface_Gravity_Greyscale/Kaguya_LGM2011_SurfaceGravity_Gray_Global_mgal3m_20ppd.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Kaguya_LGM2011_Surface_Gravity_Greyscale/Kaguya_LGM2011_SurfaceGravity_Gray_Global_mgal3m_20ppd.vrt deleted file mode 100644 index dea13e8e6f..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Kaguya_LGM2011_Surface_Gravity_Greyscale/Kaguya_LGM2011_SurfaceGravity_Gray_Global_mgal3m_20ppd.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.3945312500000000e-02, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.3945312500000000e-02 - - 0 - Gray - - Kaguya_LGM2011_SurfaceGravity_Gray_Global_mgal3m_20ppd.wms - 1 - - - - 0 - - - - Alpha - - Kaguya_LGM2011_SurfaceGravity_Gray_Global_mgal3m_20ppd.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Kaguya_LGM2011_Surface_Gravity_Greyscale/Kaguya_LGM2011_Surface_Gravity_Greyscale.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Kaguya_LGM2011_Surface_Gravity_Greyscale/Kaguya_LGM2011_Surface_Gravity_Greyscale.asset deleted file mode 100644 index c97ba4bb26..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Kaguya_LGM2011_Surface_Gravity_Greyscale/Kaguya_LGM2011_Surface_Gravity_Greyscale.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "Kaguya_LGM2011_SurfaceGravity_Gray_Global_mgal3m_20ppd", - Name = [[Kaguya LGM2011 Surface Gravity, Greyscale]], - FilePath = asset.localResource("Kaguya_LGM2011_SurfaceGravity_Gray_Global_mgal3m_20ppd.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Kaguya LGM2011 Surface Gravity, Greyscale]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=Kaguya_LGM2011_SurfaceGravity_Gray_Global_mgal3m_20ppd%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Kaguya LGM2011 Surface Gravity, Greyscale layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Kaguya_TC_Ortho_Mosaic/Kaguya_TC_Ortho_Mosaic.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Kaguya_TC_Ortho_Mosaic/Kaguya_TC_Ortho_Mosaic.asset deleted file mode 100644 index c2f428cc81..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Kaguya_TC_Ortho_Mosaic/Kaguya_TC_Ortho_Mosaic.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "Kaguya_TCortho_Mosaic_Global_4096ppd", - Name = [[Kaguya TC Ortho Mosaic]], - FilePath = asset.localResource("Kaguya_TCortho_Mosaic_Global_4096ppd.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Kaguya TC Ortho Mosaic]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=Kaguya_TCortho_Mosaic_Global_4096ppd%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Kaguya TC Ortho Mosaic layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Kaguya_TC_Ortho_Mosaic/Kaguya_TCortho_Mosaic_Global_4096ppd.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Kaguya_TC_Ortho_Mosaic/Kaguya_TCortho_Mosaic_Global_4096ppd.vrt deleted file mode 100644 index 06b29bb238..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/Kaguya_TC_Ortho_Mosaic/Kaguya_TCortho_Mosaic_Global_4096ppd.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 3.4332275390625000e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -3.4332275390625000e-04 - - 0 - Gray - - Kaguya_TCortho_Mosaic_Global_4096ppd.wms - 1 - - - - 0 - - - - Alpha - - Kaguya_TCortho_Mosaic_Global_4096ppd.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_Permanently_Shadowed_Regions_Northpole_240m/LOLA_Permanently_Shadowed_Regions_Northpole_240m.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_Permanently_Shadowed_Regions_Northpole_240m/LOLA_Permanently_Shadowed_Regions_Northpole_240m.asset deleted file mode 100644 index 57dc3c24d9..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_Permanently_Shadowed_Regions_Northpole_240m/LOLA_Permanently_Shadowed_Regions_Northpole_240m.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_LOLA_Illumination_NPole65N_240m_EQ", - Name = [[LOLA Permanently Shadowed Regions Northpole 240m]], - FilePath = asset.localResource("LRO_LOLA_Illumination_NPole65N_240m_EQ.vrt"), - Description = [[This data product is a map of the permanently shadowed regions (PSRs) in the lunar North Pole. The map resolution is 240m/pix by 240m/pix, true at the pole in polar stereographic (spherical) projection. The calculations are based on the LOLA elevation map LDEM_75N_240M and are described in. The values are binary, indicating whether a pixel is in permanent shadow (1) or not (0, NoDATA).]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LOLA Permanently Shadowed Regions Northpole 240m]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_LOLA_Illumination_NPole65N_240m_EQ%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LOLA Permanently Shadowed Regions Northpole 240m layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_Permanently_Shadowed_Regions_Northpole_240m/LRO_LOLA_Illumination_NPole65N_240m_EQ.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_Permanently_Shadowed_Regions_Northpole_240m/LRO_LOLA_Illumination_NPole65N_240m_EQ.vrt deleted file mode 100644 index ae956c7fc6..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_Permanently_Shadowed_Regions_Northpole_240m/LRO_LOLA_Illumination_NPole65N_240m_EQ.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon",DATUM["Moon",SPHEROID["Moon",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.0986328125000000e-02, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.0986328125000000e-02 - - 0 - Gray - - LRO_LOLA_Illumination_NPole65N_240m_EQ.wms - 1 - - - - 0 - - - - Alpha - - LRO_LOLA_Illumination_NPole65N_240m_EQ.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_Permanently_Shadowed_Regions_Southpole_240m/LOLA_Permanently_Shadowed_Regions_Southpole_240m.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_Permanently_Shadowed_Regions_Southpole_240m/LOLA_Permanently_Shadowed_Regions_Southpole_240m.asset deleted file mode 100644 index 58c8258e30..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_Permanently_Shadowed_Regions_Southpole_240m/LOLA_Permanently_Shadowed_Regions_Southpole_240m.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_LOLA_Illumination_SPole65S_240m_EQ", - Name = [[LOLA Permanently Shadowed Regions Southpole 240m]], - FilePath = asset.localResource("LRO_LOLA_Illumination_SPole65S_240m_EQ.vrt"), - Description = [[This data product is a map of the permanently shadowed regions (PSRs) in the lunar South Pole. The map resolution is 240m/pix by 240m/pix, true at the pole in polar stereographic (spherical) projection. The calculations are based on the LOLA elevation map LDEM_75S_240M and are described in. The values are binary, indicating whether a pixel is in permanent shadow (1) or not (0, NoDATA).]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LOLA Permanently Shadowed Regions Southpole 240m]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_LOLA_Illumination_SPole65S_240m_EQ%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LOLA Permanently Shadowed Regions Southpole 240m layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_Permanently_Shadowed_Regions_Southpole_240m/LRO_LOLA_Illumination_SPole65S_240m_EQ.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_Permanently_Shadowed_Regions_Southpole_240m/LRO_LOLA_Illumination_SPole65S_240m_EQ.vrt deleted file mode 100644 index 380fbdbe0c..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_Permanently_Shadowed_Regions_Southpole_240m/LRO_LOLA_Illumination_SPole65S_240m_EQ.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon",DATUM["Moon",SPHEROID["Moon",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.0986328125000000e-02, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.0986328125000000e-02 - - 0 - Gray - - LRO_LOLA_Illumination_SPole65S_240m_EQ.wms - 1 - - - - 0 - - - - Alpha - - LRO_LOLA_Illumination_SPole65S_240m_EQ.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_Roughness_16ppd.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_Roughness_16ppd.asset new file mode 100644 index 0000000000..e78e82d395 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_Roughness_16ppd.asset @@ -0,0 +1,34 @@ +-- This file was automatically generated using a script found at +-- https://github.com/OpenSpace/scripts/treks-to-openspace. See the README.md file +-- in that repository for more information on how to run the script to update these +-- files. In particular in the case of errors, prefer to change that script rather +-- than the individual files + +local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier + +local treks_LRO_LOLA_ClrRoughness_Global_16ppd = { + Identifier = "LRO_LOLA_ClrRoughness_Global_16ppd", + Name = [[LOLA Roughness 16ppd, Colorized]], + FilePath = asset.localResource("LOLA_Roughness_16ppd/Colorized.vrt"), + Description = [[]] +} + +asset.onInitialize(function() + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_LOLA_ClrRoughness_Global_16ppd) +end) + +asset.onDeinitialize(function() + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_LOLA_ClrRoughness_Global_16ppd") +end) + +asset.export("LRO_LOLA_ClrRoughness_Global_16ppd", treks_LRO_LOLA_ClrRoughness_Global_16ppd) + + +asset.meta = { + Name = [[NASA Treks Layers for Moon LOLA_Roughness_16ppd], + Version = "1.0", + Author = "NASA/Treks", + URL = "https://trek.nasa.gov/moon", + License = "NASA/Treks", + Description = [[LOLA_Roughness_16ppd layers from NASA/Treks for Moon]] +} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_Roughness_16ppd/Colorized.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_Roughness_16ppd/Colorized.vrt new file mode 100644 index 0000000000..0a7c1c09a9 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_Roughness_16ppd/Colorized.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 8.7890625000000000e-02, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.7890625000000000e-02 + + 0 + Red + + Colorized.wms + 1 + + + + 0 + + + + 0 + Green + + Colorized.wms + 2 + + + + 0 + + + + 0 + Blue + + Colorized.wms + 3 + + + + 0 + + + + Alpha + + Colorized.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_Roughness_16ppd_Colorized/LRO_LOLA_ClrRoughness_Global_16ppd.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_Roughness_16ppd/Colorized.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_Roughness_16ppd_Colorized/LRO_LOLA_ClrRoughness_Global_16ppd.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_Roughness_16ppd/Colorized.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_Roughness_16ppd_Colorized/LOLA_Roughness_16ppd_Colorized.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_Roughness_16ppd_Colorized/LOLA_Roughness_16ppd_Colorized.asset deleted file mode 100644 index 30d54247e4..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_Roughness_16ppd_Colorized/LOLA_Roughness_16ppd_Colorized.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_LOLA_ClrRoughness_Global_16ppd", - Name = [[LOLA Roughness 16ppd, Colorized]], - FilePath = asset.localResource("LRO_LOLA_ClrRoughness_Global_16ppd.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LOLA Roughness 16ppd, Colorized]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_LOLA_ClrRoughness_Global_16ppd%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LOLA Roughness 16ppd, Colorized layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_Roughness_16ppd_Colorized/LRO_LOLA_ClrRoughness_Global_16ppd.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_Roughness_16ppd_Colorized/LRO_LOLA_ClrRoughness_Global_16ppd.vrt deleted file mode 100644 index 4c3ce06d75..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_Roughness_16ppd_Colorized/LRO_LOLA_ClrRoughness_Global_16ppd.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.7890625000000000e-02, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.7890625000000000e-02 - - 0 - Red - - LRO_LOLA_ClrRoughness_Global_16ppd.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_LOLA_ClrRoughness_Global_16ppd.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_LOLA_ClrRoughness_Global_16ppd.wms - 3 - - - - 0 - - - - Alpha - - LRO_LOLA_ClrRoughness_Global_16ppd.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_Slope_16ppd.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_Slope_16ppd.asset new file mode 100644 index 0000000000..341af32a88 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_Slope_16ppd.asset @@ -0,0 +1,34 @@ +-- This file was automatically generated using a script found at +-- https://github.com/OpenSpace/scripts/treks-to-openspace. See the README.md file +-- in that repository for more information on how to run the script to update these +-- files. In particular in the case of errors, prefer to change that script rather +-- than the individual files + +local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier + +local treks_LRO_LOLA_ClrSlope_Global_16ppd = { + Identifier = "LRO_LOLA_ClrSlope_Global_16ppd", + Name = [[LOLA Slope 16ppd, Colorized]], + FilePath = asset.localResource("LOLA_Slope_16ppd/Colorized.vrt"), + Description = [[]] +} + +asset.onInitialize(function() + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_LOLA_ClrSlope_Global_16ppd) +end) + +asset.onDeinitialize(function() + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_LOLA_ClrSlope_Global_16ppd") +end) + +asset.export("LRO_LOLA_ClrSlope_Global_16ppd", treks_LRO_LOLA_ClrSlope_Global_16ppd) + + +asset.meta = { + Name = [[NASA Treks Layers for Moon LOLA_Slope_16ppd], + Version = "1.0", + Author = "NASA/Treks", + URL = "https://trek.nasa.gov/moon", + License = "NASA/Treks", + Description = [[LOLA_Slope_16ppd layers from NASA/Treks for Moon]] +} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_Slope_16ppd/Colorized.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_Slope_16ppd/Colorized.vrt new file mode 100644 index 0000000000..0a7c1c09a9 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_Slope_16ppd/Colorized.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 8.7890625000000000e-02, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.7890625000000000e-02 + + 0 + Red + + Colorized.wms + 1 + + + + 0 + + + + 0 + Green + + Colorized.wms + 2 + + + + 0 + + + + 0 + Blue + + Colorized.wms + 3 + + + + 0 + + + + Alpha + + Colorized.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_Slope_16ppd_Colorized/LRO_LOLA_ClrSlope_Global_16ppd.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_Slope_16ppd/Colorized.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_Slope_16ppd_Colorized/LRO_LOLA_ClrSlope_Global_16ppd.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_Slope_16ppd/Colorized.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_Slope_16ppd_Colorized/LOLA_Slope_16ppd_Colorized.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_Slope_16ppd_Colorized/LOLA_Slope_16ppd_Colorized.asset deleted file mode 100644 index 636479a050..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_Slope_16ppd_Colorized/LOLA_Slope_16ppd_Colorized.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_LOLA_ClrSlope_Global_16ppd", - Name = [[LOLA Slope 16ppd, Colorized]], - FilePath = asset.localResource("LRO_LOLA_ClrSlope_Global_16ppd.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LOLA Slope 16ppd, Colorized]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_LOLA_ClrSlope_Global_16ppd%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LOLA Slope 16ppd, Colorized layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_Slope_16ppd_Colorized/LRO_LOLA_ClrSlope_Global_16ppd.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_Slope_16ppd_Colorized/LRO_LOLA_ClrSlope_Global_16ppd.vrt deleted file mode 100644 index e33c3f5973..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_Slope_16ppd_Colorized/LRO_LOLA_ClrSlope_Global_16ppd.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.7890625000000000e-02, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.7890625000000000e-02 - - 0 - Red - - LRO_LOLA_ClrSlope_Global_16ppd.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_LOLA_ClrSlope_Global_16ppd.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_LOLA_ClrSlope_Global_16ppd.wms - 3 - - - - 0 - - - - Alpha - - LRO_LOLA_ClrSlope_Global_16ppd.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_Slope_Northpole_120m.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_Slope_Northpole_120m.asset new file mode 100644 index 0000000000..5404d41424 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_Slope_Northpole_120m.asset @@ -0,0 +1,34 @@ +-- This file was automatically generated using a script found at +-- https://github.com/OpenSpace/scripts/treks-to-openspace. See the README.md file +-- in that repository for more information on how to run the script to update these +-- files. In particular in the case of errors, prefer to change that script rather +-- than the individual files + +local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier + +local treks_LRO_LOLA_ClrSlope_NPole75N_120m_EQ = { + Identifier = "LRO_LOLA_ClrSlope_NPole75N_120m_EQ", + Name = [[LOLA Slope Northpole 120m, Colorized]], + FilePath = asset.localResource("LOLA_Slope_Northpole_120m/Colorized.vrt"), + Description = [[This is a colorized map of the original north polar surface slope of the Moon at a resolution of 16 m/pix by 16 m/pix, based on altimetry data acquired by the LOLA instrument. The LOLA Laser 1 and 2 data through mission phase LRO_SM_17 are the source for this data set. The bi-directional slope was calculated from a plane fit to three successive laser shots requiring n=5 to 15 profile returns. Depending on orbital velocity, probability of detection, and spacecraft altitude, the slope baseline may vary from 30 to 120 meters.]] +} + +asset.onInitialize(function() + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_LOLA_ClrSlope_NPole75N_120m_EQ) +end) + +asset.onDeinitialize(function() + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_LOLA_ClrSlope_NPole75N_120m_EQ") +end) + +asset.export("LRO_LOLA_ClrSlope_NPole75N_120m_EQ", treks_LRO_LOLA_ClrSlope_NPole75N_120m_EQ) + + +asset.meta = { + Name = [[NASA Treks Layers for Moon LOLA_Slope_Northpole_120m], + Version = "1.0", + Author = "NASA/Treks", + URL = "https://trek.nasa.gov/moon", + License = "NASA/Treks", + Description = [[LOLA_Slope_Northpole_120m layers from NASA/Treks for Moon]] +} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_Slope_Northpole_120m/Colorized.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_Slope_Northpole_120m/Colorized.vrt new file mode 100644 index 0000000000..9ebb1fb1a6 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_Slope_Northpole_120m/Colorized.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon",DATUM["Moon",SPHEROID["Moon",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 5.4931640625000000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -5.4931640625000000e-03 + + 0 + Red + + Colorized.wms + 1 + + + + 0 + + + + 0 + Green + + Colorized.wms + 2 + + + + 0 + + + + 0 + Blue + + Colorized.wms + 3 + + + + 0 + + + + Alpha + + Colorized.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_Slope_Northpole_120m_Colorized/LRO_LOLA_ClrSlope_NPole75N_120m_EQ.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_Slope_Northpole_120m/Colorized.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_Slope_Northpole_120m_Colorized/LRO_LOLA_ClrSlope_NPole75N_120m_EQ.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_Slope_Northpole_120m/Colorized.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_Slope_Northpole_120m_Colorized/LOLA_Slope_Northpole_120m_Colorized.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_Slope_Northpole_120m_Colorized/LOLA_Slope_Northpole_120m_Colorized.asset deleted file mode 100644 index c60575c63b..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_Slope_Northpole_120m_Colorized/LOLA_Slope_Northpole_120m_Colorized.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_LOLA_ClrSlope_NPole75N_120m_EQ", - Name = [[LOLA Slope Northpole 120m, Colorized]], - FilePath = asset.localResource("LRO_LOLA_ClrSlope_NPole75N_120m_EQ.vrt"), - Description = [[This is a colorized map of the original north polar surface slope of the Moon at a resolution of 16 m/pix by 16 m/pix, based on altimetry data acquired by the LOLA instrument. The LOLA Laser 1 and 2 data through mission phase LRO_SM_17 are the source for this data set. The bi-directional slope was calculated from a plane fit to three successive laser shots requiring n=5 to 15 profile returns. Depending on orbital velocity, probability of detection, and spacecraft altitude, the slope baseline may vary from 30 to 120 meters.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LOLA Slope Northpole 120m, Colorized]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_LOLA_ClrSlope_NPole75N_120m_EQ%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LOLA Slope Northpole 120m, Colorized layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_Slope_Northpole_120m_Colorized/LRO_LOLA_ClrSlope_NPole75N_120m_EQ.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_Slope_Northpole_120m_Colorized/LRO_LOLA_ClrSlope_NPole75N_120m_EQ.vrt deleted file mode 100644 index f2f780f6be..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_Slope_Northpole_120m_Colorized/LRO_LOLA_ClrSlope_NPole75N_120m_EQ.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon",DATUM["Moon",SPHEROID["Moon",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 5.4931640625000000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -5.4931640625000000e-03 - - 0 - Red - - LRO_LOLA_ClrSlope_NPole75N_120m_EQ.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_LOLA_ClrSlope_NPole75N_120m_EQ.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_LOLA_ClrSlope_NPole75N_120m_EQ.wms - 3 - - - - 0 - - - - Alpha - - LRO_LOLA_ClrSlope_NPole75N_120m_EQ.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_Slope_Southpole_120m.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_Slope_Southpole_120m.asset new file mode 100644 index 0000000000..1087cf1b52 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_Slope_Southpole_120m.asset @@ -0,0 +1,34 @@ +-- This file was automatically generated using a script found at +-- https://github.com/OpenSpace/scripts/treks-to-openspace. See the README.md file +-- in that repository for more information on how to run the script to update these +-- files. In particular in the case of errors, prefer to change that script rather +-- than the individual files + +local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier + +local treks_LRO_LOLA_ClrSlope_SPole75S_120m_EQ = { + Identifier = "LRO_LOLA_ClrSlope_SPole75S_120m_EQ", + Name = [[LOLA Slope Southpole 120m, Colorized]], + FilePath = asset.localResource("LOLA_Slope_Southpole_120m/Colorized.vrt"), + Description = [[This is a colorized map of the original south polar surface slope of the Moon at a resolution of 16 m/pix by 16 m/pix, based on altimetry data acquired by the LOLA instrument. The LOLA Laser 1 and 2 data through mission phase LRO_SM_17 are the source for this data set. The bi-directional slope was calculated from a plane fit to three successive laser shots requiring n=5 to 15 profile returns. Depending on orbital velocity, probability of detection, and spacecraft altitude, the slope baseline may vary from 30 to 120 meters.]] +} + +asset.onInitialize(function() + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_LOLA_ClrSlope_SPole75S_120m_EQ) +end) + +asset.onDeinitialize(function() + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_LOLA_ClrSlope_SPole75S_120m_EQ") +end) + +asset.export("LRO_LOLA_ClrSlope_SPole75S_120m_EQ", treks_LRO_LOLA_ClrSlope_SPole75S_120m_EQ) + + +asset.meta = { + Name = [[NASA Treks Layers for Moon LOLA_Slope_Southpole_120m], + Version = "1.0", + Author = "NASA/Treks", + URL = "https://trek.nasa.gov/moon", + License = "NASA/Treks", + Description = [[LOLA_Slope_Southpole_120m layers from NASA/Treks for Moon]] +} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_Slope_Southpole_120m/Colorized.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_Slope_Southpole_120m/Colorized.vrt new file mode 100644 index 0000000000..9ebb1fb1a6 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_Slope_Southpole_120m/Colorized.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon",DATUM["Moon",SPHEROID["Moon",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 5.4931640625000000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -5.4931640625000000e-03 + + 0 + Red + + Colorized.wms + 1 + + + + 0 + + + + 0 + Green + + Colorized.wms + 2 + + + + 0 + + + + 0 + Blue + + Colorized.wms + 3 + + + + 0 + + + + Alpha + + Colorized.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_Slope_Southpole_120m_Colorized/LRO_LOLA_ClrSlope_SPole75S_120m_EQ.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_Slope_Southpole_120m/Colorized.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_Slope_Southpole_120m_Colorized/LRO_LOLA_ClrSlope_SPole75S_120m_EQ.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_Slope_Southpole_120m/Colorized.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_Slope_Southpole_120m_Colorized/LOLA_Slope_Southpole_120m_Colorized.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_Slope_Southpole_120m_Colorized/LOLA_Slope_Southpole_120m_Colorized.asset deleted file mode 100644 index 1a60cc8694..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_Slope_Southpole_120m_Colorized/LOLA_Slope_Southpole_120m_Colorized.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_LOLA_ClrSlope_SPole75S_120m_EQ", - Name = [[LOLA Slope Southpole 120m, Colorized]], - FilePath = asset.localResource("LRO_LOLA_ClrSlope_SPole75S_120m_EQ.vrt"), - Description = [[This is a colorized map of the original south polar surface slope of the Moon at a resolution of 16 m/pix by 16 m/pix, based on altimetry data acquired by the LOLA instrument. The LOLA Laser 1 and 2 data through mission phase LRO_SM_17 are the source for this data set. The bi-directional slope was calculated from a plane fit to three successive laser shots requiring n=5 to 15 profile returns. Depending on orbital velocity, probability of detection, and spacecraft altitude, the slope baseline may vary from 30 to 120 meters.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LOLA Slope Southpole 120m, Colorized]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_LOLA_ClrSlope_SPole75S_120m_EQ%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LOLA Slope Southpole 120m, Colorized layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_Slope_Southpole_120m_Colorized/LRO_LOLA_ClrSlope_SPole75S_120m_EQ.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_Slope_Southpole_120m_Colorized/LRO_LOLA_ClrSlope_SPole75S_120m_EQ.vrt deleted file mode 100644 index d37933684e..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_Slope_Southpole_120m_Colorized/LRO_LOLA_ClrSlope_SPole75S_120m_EQ.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon",DATUM["Moon",SPHEROID["Moon",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 5.4931640625000000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -5.4931640625000000e-03 - - 0 - Red - - LRO_LOLA_ClrSlope_SPole75S_120m_EQ.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_LOLA_ClrSlope_SPole75S_120m_EQ.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_LOLA_ClrSlope_SPole75S_120m_EQ.wms - 3 - - - - 0 - - - - Alpha - - LRO_LOLA_ClrSlope_SPole75S_120m_EQ.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_and_TC_Stereo_DEM_Merge_512ppd.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_and_TC_Stereo_DEM_Merge_512ppd.asset new file mode 100644 index 0000000000..fea4021887 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_and_TC_Stereo_DEM_Merge_512ppd.asset @@ -0,0 +1,34 @@ +-- This file was automatically generated using a script found at +-- https://github.com/OpenSpace/scripts/treks-to-openspace. See the README.md file +-- in that repository for more information on how to run the script to update these +-- files. In particular in the case of errors, prefer to change that script rather +-- than the individual files + +local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier + +local treks_LRO_LrocKaguya_Shade_60N60S_512ppd = { + Identifier = "LRO_LrocKaguya_Shade_60N60S_512ppd", + Name = [[LOLA and TC Stereo DEM Merge 512ppd, Shade]], + FilePath = asset.localResource("LOLA_and_TC_Stereo_DEM_Merge_512ppd/Shade.vrt"), + Description = [[]] +} + +asset.onInitialize(function() + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_LrocKaguya_Shade_60N60S_512ppd) +end) + +asset.onDeinitialize(function() + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_LrocKaguya_Shade_60N60S_512ppd") +end) + +asset.export("LRO_LrocKaguya_Shade_60N60S_512ppd", treks_LRO_LrocKaguya_Shade_60N60S_512ppd) + + +asset.meta = { + Name = [[NASA Treks Layers for Moon LOLA_and_TC_Stereo_DEM_Merge_512ppd], + Version = "1.0", + Author = "NASA/Treks", + URL = "https://trek.nasa.gov/moon", + License = "NASA/Treks", + Description = [[LOLA_and_TC_Stereo_DEM_Merge_512ppd layers from NASA/Treks for Moon]] +} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_and_TC_Stereo_DEM_Merge_512ppd/Shade.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_and_TC_Stereo_DEM_Merge_512ppd/Shade.vrt new file mode 100644 index 0000000000..244fa65a9c --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_and_TC_Stereo_DEM_Merge_512ppd/Shade.vrt @@ -0,0 +1,29 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 6.8664550781250000e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -6.8664550781250000e-04 + + 0 + Gray + + Shade.wms + 1 + + + + 0 + + + + Alpha + + Shade.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_and_TC_Stereo_DEM_Merge_512ppd_Shade/LRO_LrocKaguya_Shade_60N60S_512ppd.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_and_TC_Stereo_DEM_Merge_512ppd/Shade.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_and_TC_Stereo_DEM_Merge_512ppd_Shade/LRO_LrocKaguya_Shade_60N60S_512ppd.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_and_TC_Stereo_DEM_Merge_512ppd/Shade.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_and_TC_Stereo_DEM_Merge_512ppd_Shade/LOLA_and_TC_Stereo_DEM_Merge_512ppd_Shade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_and_TC_Stereo_DEM_Merge_512ppd_Shade/LOLA_and_TC_Stereo_DEM_Merge_512ppd_Shade.asset deleted file mode 100644 index 1b651a3b9a..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_and_TC_Stereo_DEM_Merge_512ppd_Shade/LOLA_and_TC_Stereo_DEM_Merge_512ppd_Shade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_LrocKaguya_Shade_60N60S_512ppd", - Name = [[LOLA and TC Stereo DEM Merge 512ppd, Shade]], - FilePath = asset.localResource("LRO_LrocKaguya_Shade_60N60S_512ppd.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LOLA and TC Stereo DEM Merge 512ppd, Shade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_LrocKaguya_Shade_60N60S_512ppd%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LOLA and TC Stereo DEM Merge 512ppd, Shade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_and_TC_Stereo_DEM_Merge_512ppd_Shade/LRO_LrocKaguya_Shade_60N60S_512ppd.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_and_TC_Stereo_DEM_Merge_512ppd_Shade/LRO_LrocKaguya_Shade_60N60S_512ppd.vrt deleted file mode 100644 index ffc461545b..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LOLA_and_TC_Stereo_DEM_Merge_512ppd_Shade/LRO_LrocKaguya_Shade_60N60S_512ppd.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 6.8664550781250000e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -6.8664550781250000e-04 - - 0 - Gray - - LRO_LrocKaguya_Shade_60N60S_512ppd.wms - 1 - - - - 0 - - - - Alpha - - LRO_LrocKaguya_Shade_60N60S_512ppd.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LP_NS_H_Abundance/LP_NS_H_Abundance.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LP_NS_H_Abundance/LP_NS_H_Abundance.asset deleted file mode 100644 index ba1ab08980..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LP_NS_H_Abundance/LP_NS_H_Abundance.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LP_NS_H_Clr_Global_2ppd", - Name = [[LP NS H Abundance]], - FilePath = asset.localResource("LP_NS_H_Clr_Global_2ppd.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LP NS H Abundance]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LP_NS_H_Clr_Global_2ppd%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LP NS H Abundance layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LP_NS_H_Abundance/LP_NS_H_Clr_Global_2ppd.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LP_NS_H_Abundance/LP_NS_H_Clr_Global_2ppd.vrt deleted file mode 100644 index bf42dc6169..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LP_NS_H_Abundance/LP_NS_H_Clr_Global_2ppd.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.7578125000000000e-01, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7578125000000000e-01 - - 0 - Red - - LP_NS_H_Clr_Global_2ppd.wms - 1 - - - - 0 - - - - 0 - Green - - LP_NS_H_Clr_Global_2ppd.wms - 2 - - - - 0 - - - - 0 - Blue - - LP_NS_H_Clr_Global_2ppd.wms - 3 - - - - 0 - - - - Alpha - - LP_NS_H_Clr_Global_2ppd.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LROC_NAC_Uncontrolled_Mosaic_of_Mare_Unit_in_Schrodinger_Crater/LROC_NAC_Uncontrolled_Mosaic_of_Mare_Unit_in_Schrodinger_Crater.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LROC_NAC_Uncontrolled_Mosaic_of_Mare_Unit_in_Schrodinger_Crater/LROC_NAC_Uncontrolled_Mosaic_of_Mare_Unit_in_Schrodinger_Crater.asset deleted file mode 100644 index dd55a801dc..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LROC_NAC_Uncontrolled_Mosaic_of_Mare_Unit_in_Schrodinger_Crater/LROC_NAC_Uncontrolled_Mosaic_of_Mare_Unit_in_Schrodinger_Crater.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "SchrodingerCraterMareUnit_50cmV10eq", - Name = [[LROC NAC Uncontrolled Mosaic of Mare Unit in Schrodinger Crater]], - FilePath = asset.localResource("SchrodingerCraterMareUnit_50cmV1.0.eq.vrt"), - Description = [[This is a 50cm/px uncontrolled visible image mosaic generated using Lunar Reconnaissance Orbiter Camera (LROC) Narrow Angle Camera (NAC) images from the Lunar Reconnaissance Orbiter mission. Each NAC image was registered horizontally to the LRO's Lunar Orbiter Laser Altimeter (LOLA) global DEM, and then mosaicked together and color balanced. ]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LROC NAC Uncontrolled Mosaic of Mare Unit in Schrodinger Crater]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=SchrodingerCraterMareUnit_50cmV1.0.eq%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LROC NAC Uncontrolled Mosaic of Mare Unit in Schrodinger Crater layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LROC_NAC_Uncontrolled_Mosaic_of_Mare_Unit_in_Schrodinger_Crater/SchrodingerCraterMareUnit_50cmV1.0.eq.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LROC_NAC_Uncontrolled_Mosaic_of_Mare_Unit_in_Schrodinger_Crater/SchrodingerCraterMareUnit_50cmV1.0.eq.vrt deleted file mode 100644 index fdd9f47cdb..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LROC_NAC_Uncontrolled_Mosaic_of_Mare_Unit_in_Schrodinger_Crater/SchrodingerCraterMareUnit_50cmV1.0.eq.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.1457672119140625e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.1457672119140625e-05 - - 0 - Gray - - SchrodingerCraterMareUnit_50cmV1.0.eq.wms - 1 - - - - 0 - - - - Alpha - - SchrodingerCraterMareUnit_50cmV1.0.eq.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LROC_NAC_Uncontrolled_Mosaic_of_Massif_in_Schrodinger_Crater/LROC_NAC_Uncontrolled_Mosaic_of_Massif_in_Schrodinger_Crater.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LROC_NAC_Uncontrolled_Mosaic_of_Massif_in_Schrodinger_Crater/LROC_NAC_Uncontrolled_Mosaic_of_Massif_in_Schrodinger_Crater.asset deleted file mode 100644 index be16e9d712..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LROC_NAC_Uncontrolled_Mosaic_of_Massif_in_Schrodinger_Crater/LROC_NAC_Uncontrolled_Mosaic_of_Massif_in_Schrodinger_Crater.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "SchrodingerCraterMassif_50cmV10eq", - Name = [[LROC NAC Uncontrolled Mosaic of Massif in Schrodinger Crater]], - FilePath = asset.localResource("SchrodingerCraterMassif_50cmV1.0.eq.vrt"), - Description = [[This is a 50cm/px uncontrolled visible image mosaic generated using Lunar Reconnaissance Orbiter Camera (LROC) Narrow Angle Camera (NAC) images from the Lunar Reconnaissance Orbiter mission. Each NAC image was registered horizontally to the LRO's Lunar Orbiter Laser Altimeter (LOLA) global DEM, and then mosaicked together and color balanced. ]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LROC NAC Uncontrolled Mosaic of Massif in Schrodinger Crater]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=SchrodingerCraterMassif_50cmV1.0.eq%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LROC NAC Uncontrolled Mosaic of Massif in Schrodinger Crater layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LROC_NAC_Uncontrolled_Mosaic_of_Massif_in_Schrodinger_Crater/SchrodingerCraterMassif_50cmV1.0.eq.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LROC_NAC_Uncontrolled_Mosaic_of_Massif_in_Schrodinger_Crater/SchrodingerCraterMassif_50cmV1.0.eq.vrt deleted file mode 100644 index 53f8294786..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LROC_NAC_Uncontrolled_Mosaic_of_Massif_in_Schrodinger_Crater/SchrodingerCraterMassif_50cmV1.0.eq.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.1457672119140625e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.1457672119140625e-05 - - 0 - Gray - - SchrodingerCraterMassif_50cmV1.0.eq.wms - 1 - - - - 0 - - - - Alpha - - SchrodingerCraterMassif_50cmV1.0.eq.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LROC_NAC_Uncontrolled_Mosaic_of_Region_Inside_Schrodinger_Crater.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LROC_NAC_Uncontrolled_Mosaic_of_Region_Inside_Schrodinger_Crater.asset new file mode 100644 index 0000000000..9d6a545c91 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LROC_NAC_Uncontrolled_Mosaic_of_Region_Inside_Schrodinger_Crater.asset @@ -0,0 +1,34 @@ +-- This file was automatically generated using a script found at +-- https://github.com/OpenSpace/scripts/treks-to-openspace. See the README.md file +-- in that repository for more information on how to run the script to update these +-- files. In particular in the case of errors, prefer to change that script rather +-- than the individual files + +local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier + +local treks_SchrodingerMareNortheq = { + Identifier = "SchrodingerMareNortheq", + Name = [[LROC NAC Uncontrolled Mosaic of Region Inside Schrodinger Crater, 50cm/px]], + FilePath = asset.localResource("LROC_NAC_Uncontrolled_Mosaic_of_Region_Inside_Schrodinger_Crater/50cmpx.vrt"), + Description = [[This is a 50cm/px uncontrolled visible image mosaic generated using Lunar Reconnaissance Orbiter Camera (LROC) Narrow Angle Camera (NAC) images from the Lunar Reconnaissance Orbiter mission. Each NAC image was registered horizontally to the LRO's Lunar Orbiter Laser Altimeter (LOLA) global DEM, and then mosaicked together and color balanced.]] +} + +asset.onInitialize(function() + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_SchrodingerMareNortheq) +end) + +asset.onDeinitialize(function() + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_SchrodingerMareNortheq") +end) + +asset.export("SchrodingerMareNortheq", treks_SchrodingerMareNortheq) + + +asset.meta = { + Name = [[NASA Treks Layers for Moon LROC_NAC_Uncontrolled_Mosaic_of_Region_Inside_Schrodinger_Crater], + Version = "1.0", + Author = "NASA/Treks", + URL = "https://trek.nasa.gov/moon", + License = "NASA/Treks", + Description = [[LROC_NAC_Uncontrolled_Mosaic_of_Region_Inside_Schrodinger_Crater layers from NASA/Treks for Moon]] +} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LROC_NAC_Uncontrolled_Mosaic_of_Region_Inside_Schrodinger_Crater/50cmpx.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LROC_NAC_Uncontrolled_Mosaic_of_Region_Inside_Schrodinger_Crater/50cmpx.vrt new file mode 100644 index 0000000000..a80f59a28f --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LROC_NAC_Uncontrolled_Mosaic_of_Region_Inside_Schrodinger_Crater/50cmpx.vrt @@ -0,0 +1,29 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.1457672119140625e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.1457672119140625e-05 + + 0 + Gray + + 50cmpx.wms + 1 + + + + 0 + + + + Alpha + + 50cmpx.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LROC_NAC_Uncontrolled_Mosaic_of_Region_Inside_Schrodinger_Crater_50cmpx/SchrodingerMareNorth.eq.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LROC_NAC_Uncontrolled_Mosaic_of_Region_Inside_Schrodinger_Crater/50cmpx.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LROC_NAC_Uncontrolled_Mosaic_of_Region_Inside_Schrodinger_Crater_50cmpx/SchrodingerMareNorth.eq.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LROC_NAC_Uncontrolled_Mosaic_of_Region_Inside_Schrodinger_Crater/50cmpx.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LROC_NAC_Uncontrolled_Mosaic_of_Region_Inside_Schrodinger_Crater_50cmpx/LROC_NAC_Uncontrolled_Mosaic_of_Region_Inside_Schrodinger_Crater_50cmpx.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LROC_NAC_Uncontrolled_Mosaic_of_Region_Inside_Schrodinger_Crater_50cmpx/LROC_NAC_Uncontrolled_Mosaic_of_Region_Inside_Schrodinger_Crater_50cmpx.asset deleted file mode 100644 index cf20842c17..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LROC_NAC_Uncontrolled_Mosaic_of_Region_Inside_Schrodinger_Crater_50cmpx/LROC_NAC_Uncontrolled_Mosaic_of_Region_Inside_Schrodinger_Crater_50cmpx.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "SchrodingerMareNortheq", - Name = [[LROC NAC Uncontrolled Mosaic of Region Inside Schrodinger Crater, 50cm/px]], - FilePath = asset.localResource("SchrodingerMareNorth.eq.vrt"), - Description = [[This is a 50cm/px uncontrolled visible image mosaic generated using Lunar Reconnaissance Orbiter Camera (LROC) Narrow Angle Camera (NAC) images from the Lunar Reconnaissance Orbiter mission. Each NAC image was registered horizontally to the LRO's Lunar Orbiter Laser Altimeter (LOLA) global DEM, and then mosaicked together and color balanced.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LROC NAC Uncontrolled Mosaic of Region Inside Schrodinger Crater, 50cm/px]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=SchrodingerMareNorth.eq%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LROC NAC Uncontrolled Mosaic of Region Inside Schrodinger Crater, 50cm/px layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LROC_NAC_Uncontrolled_Mosaic_of_Region_Inside_Schrodinger_Crater_50cmpx/SchrodingerMareNorth.eq.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LROC_NAC_Uncontrolled_Mosaic_of_Region_Inside_Schrodinger_Crater_50cmpx/SchrodingerMareNorth.eq.vrt deleted file mode 100644 index 26d72ef612..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LROC_NAC_Uncontrolled_Mosaic_of_Region_Inside_Schrodinger_Crater_50cmpx/SchrodingerMareNorth.eq.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.1457672119140625e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.1457672119140625e-05 - - 0 - Gray - - SchrodingerMareNorth.eq.wms - 1 - - - - 0 - - - - Alpha - - SchrodingerMareNorth.eq.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LROC_NAC_Uncontrolled_Mosaic_of_Schrodinger_Crater.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LROC_NAC_Uncontrolled_Mosaic_of_Schrodinger_Crater.asset new file mode 100644 index 0000000000..8dff440d2c --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LROC_NAC_Uncontrolled_Mosaic_of_Schrodinger_Crater.asset @@ -0,0 +1,34 @@ +-- This file was automatically generated using a script found at +-- https://github.com/OpenSpace/scripts/treks-to-openspace. See the README.md file +-- in that repository for more information on how to run the script to update these +-- files. In particular in the case of errors, prefer to change that script rather +-- than the individual files + +local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier + +local treks_allSchrodinger_10mV10eq = { + Identifier = "allSchrodinger_10mV10eq", + Name = [[LROC NAC Uncontrolled Mosaic of Schrodinger Crater, 10m/px]], + FilePath = asset.localResource("LROC_NAC_Uncontrolled_Mosaic_of_Schrodinger_Crater/10mpx.vrt"), + Description = [[This is a 10m/px uncontrolled visible image mosaic generated using Lunar Reconnaissance Orbiter Camera (LROC) Narrow Angle Camera (NAC) images from the Lunar Reconnaissance Orbiter mission. Each NAC image was registered horizontally to the LRO's Lunar Orbiter Laser Altimeter (LOLA) global DEM, and then mosaicked together and color balanced.]] +} + +asset.onInitialize(function() + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_allSchrodinger_10mV10eq) +end) + +asset.onDeinitialize(function() + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_allSchrodinger_10mV10eq") +end) + +asset.export("allSchrodinger_10mV10eq", treks_allSchrodinger_10mV10eq) + + +asset.meta = { + Name = [[NASA Treks Layers for Moon LROC_NAC_Uncontrolled_Mosaic_of_Schrodinger_Crater], + Version = "1.0", + Author = "NASA/Treks", + URL = "https://trek.nasa.gov/moon", + License = "NASA/Treks", + Description = [[LROC_NAC_Uncontrolled_Mosaic_of_Schrodinger_Crater layers from NASA/Treks for Moon]] +} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LROC_NAC_Uncontrolled_Mosaic_of_Schrodinger_Crater/10mpx.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LROC_NAC_Uncontrolled_Mosaic_of_Schrodinger_Crater/10mpx.vrt new file mode 100644 index 0000000000..073afea102 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LROC_NAC_Uncontrolled_Mosaic_of_Schrodinger_Crater/10mpx.vrt @@ -0,0 +1,29 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 3.4332275390625000e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -3.4332275390625000e-04 + + 0 + Gray + + 10mpx.wms + 1 + + + + 0 + + + + Alpha + + 10mpx.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LROC_NAC_Uncontrolled_Mosaic_of_Schrodinger_Crater_10mpx/allSchrodinger_10mV1.0.eq.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LROC_NAC_Uncontrolled_Mosaic_of_Schrodinger_Crater/10mpx.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LROC_NAC_Uncontrolled_Mosaic_of_Schrodinger_Crater_10mpx/allSchrodinger_10mV1.0.eq.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LROC_NAC_Uncontrolled_Mosaic_of_Schrodinger_Crater/10mpx.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LROC_NAC_Uncontrolled_Mosaic_of_Schrodinger_Crater_10mpx/LROC_NAC_Uncontrolled_Mosaic_of_Schrodinger_Crater_10mpx.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LROC_NAC_Uncontrolled_Mosaic_of_Schrodinger_Crater_10mpx/LROC_NAC_Uncontrolled_Mosaic_of_Schrodinger_Crater_10mpx.asset deleted file mode 100644 index a7d7b52622..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LROC_NAC_Uncontrolled_Mosaic_of_Schrodinger_Crater_10mpx/LROC_NAC_Uncontrolled_Mosaic_of_Schrodinger_Crater_10mpx.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "allSchrodinger_10mV10eq", - Name = [[LROC NAC Uncontrolled Mosaic of Schrodinger Crater, 10m/px]], - FilePath = asset.localResource("allSchrodinger_10mV1.0.eq.vrt"), - Description = [[This is a 10m/px uncontrolled visible image mosaic generated using Lunar Reconnaissance Orbiter Camera (LROC) Narrow Angle Camera (NAC) images from the Lunar Reconnaissance Orbiter mission. Each NAC image was registered horizontally to the LRO's Lunar Orbiter Laser Altimeter (LOLA) global DEM, and then mosaicked together and color balanced.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LROC NAC Uncontrolled Mosaic of Schrodinger Crater, 10m/px]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=allSchrodinger_10mV1.0.eq%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LROC NAC Uncontrolled Mosaic of Schrodinger Crater, 10m/px layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LROC_NAC_Uncontrolled_Mosaic_of_Schrodinger_Crater_10mpx/allSchrodinger_10mV1.0.eq.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LROC_NAC_Uncontrolled_Mosaic_of_Schrodinger_Crater_10mpx/allSchrodinger_10mV1.0.eq.vrt deleted file mode 100644 index c05cc6f8cb..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LROC_NAC_Uncontrolled_Mosaic_of_Schrodinger_Crater_10mpx/allSchrodinger_10mV1.0.eq.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 3.4332275390625000e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -3.4332275390625000e-04 - - 0 - Gray - - allSchrodinger_10mV1.0.eq.wms - 1 - - - - 0 - - - - Alpha - - allSchrodinger_10mV1.0.eq.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_CF_Mosaic.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_CF_Mosaic.asset new file mode 100644 index 0000000000..0a622dadbd --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_CF_Mosaic.asset @@ -0,0 +1,34 @@ +-- This file was automatically generated using a script found at +-- https://github.com/OpenSpace/scripts/treks-to-openspace. See the README.md file +-- in that repository for more information on how to run the script to update these +-- files. In particular in the case of errors, prefer to change that script rather +-- than the individual files + +local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier + +local treks_LRO_Diviner_CF_Filled_Global_8ppd = { + Identifier = "LRO_Diviner_CF_Filled_Global_8ppd", + Name = [[LRO Diviner CF Mosaic, Filled]], + FilePath = asset.localResource("LRO_Diviner_CF_Mosaic/Filled.vrt"), + Description = [[]] +} + +asset.onInitialize(function() + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_Diviner_CF_Filled_Global_8ppd) +end) + +asset.onDeinitialize(function() + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_Diviner_CF_Filled_Global_8ppd") +end) + +asset.export("LRO_Diviner_CF_Filled_Global_8ppd", treks_LRO_Diviner_CF_Filled_Global_8ppd) + + +asset.meta = { + Name = [[NASA Treks Layers for Moon LRO_Diviner_CF_Mosaic], + Version = "1.0", + Author = "NASA/Treks", + URL = "https://trek.nasa.gov/moon", + License = "NASA/Treks", + Description = [[LRO_Diviner_CF_Mosaic layers from NASA/Treks for Moon]] +} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_CF_Mosaic/Filled.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_CF_Mosaic/Filled.vrt new file mode 100644 index 0000000000..fc27e90751 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_CF_Mosaic/Filled.vrt @@ -0,0 +1,53 @@ + + GEOGCS["Moon 2000",DATUM["Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 8.7890625000000000e-02, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.7890625000000000e-02 + + 0 + Red + + Filled.wms + 1 + + + + 0 + + + + 0 + Green + + Filled.wms + 2 + + + + 0 + + + + 0 + Blue + + Filled.wms + 3 + + + + 0 + + + + Alpha + + Filled.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_CF_Mosaic_Filled/LRO_Diviner_CF_Filled_Global_8ppd.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_CF_Mosaic/Filled.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_CF_Mosaic_Filled/LRO_Diviner_CF_Filled_Global_8ppd.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_CF_Mosaic/Filled.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_CF_Mosaic/LRO_Diviner_CF_Mosaic.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_CF_Mosaic/LRO_Diviner_CF_Mosaic.asset deleted file mode 100644 index f493a96d1a..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_CF_Mosaic/LRO_Diviner_CF_Mosaic.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_Diviner_CF_NoFill_Global_8ppd", - Name = [[LRO Diviner CF Mosaic]], - FilePath = asset.localResource("LRO_Diviner_CF_NoFill_Global_8ppd.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO Diviner CF Mosaic]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_Diviner_CF_NoFill_Global_8ppd%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO Diviner CF Mosaic layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_CF_Mosaic/LRO_Diviner_CF_NoFill_Global_8ppd.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_CF_Mosaic/LRO_Diviner_CF_NoFill_Global_8ppd.vrt deleted file mode 100644 index 82231bda35..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_CF_Mosaic/LRO_Diviner_CF_NoFill_Global_8ppd.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["Moon 2000",DATUM["Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.7890625000000000e-02, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.7890625000000000e-02 - - 0 - Red - - LRO_Diviner_CF_NoFill_Global_8ppd.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_Diviner_CF_NoFill_Global_8ppd.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_Diviner_CF_NoFill_Global_8ppd.wms - 3 - - - - 0 - - - - Alpha - - LRO_Diviner_CF_NoFill_Global_8ppd.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_CF_Mosaic_128ppd.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_CF_Mosaic_128ppd.asset new file mode 100644 index 0000000000..303f210ab2 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_CF_Mosaic_128ppd.asset @@ -0,0 +1,34 @@ +-- This file was automatically generated using a script found at +-- https://github.com/OpenSpace/scripts/treks-to-openspace. See the README.md file +-- in that repository for more information on how to run the script to update these +-- files. In particular in the case of errors, prefer to change that script rather +-- than the individual files + +local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier + +local treks_LRO_DIVINER_ClrCF_Global_128ppd = { + Identifier = "LRO_DIVINER_ClrCF_Global_128ppd", + Name = [[LRO Diviner CF Mosaic 128ppd, Colorized]], + FilePath = asset.localResource("LRO_Diviner_CF_Mosaic_128ppd/Colorized.vrt"), + Description = [[]] +} + +asset.onInitialize(function() + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_DIVINER_ClrCF_Global_128ppd) +end) + +asset.onDeinitialize(function() + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_DIVINER_ClrCF_Global_128ppd") +end) + +asset.export("LRO_DIVINER_ClrCF_Global_128ppd", treks_LRO_DIVINER_ClrCF_Global_128ppd) + + +asset.meta = { + Name = [[NASA Treks Layers for Moon LRO_Diviner_CF_Mosaic_128ppd], + Version = "1.0", + Author = "NASA/Treks", + URL = "https://trek.nasa.gov/moon", + License = "NASA/Treks", + Description = [[LRO_Diviner_CF_Mosaic_128ppd layers from NASA/Treks for Moon]] +} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_CF_Mosaic_128ppd/Colorized.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_CF_Mosaic_128ppd/Colorized.vrt new file mode 100644 index 0000000000..956549a2c9 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_CF_Mosaic_128ppd/Colorized.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 5.4931640625000000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -5.4931640625000000e-03 + + 0 + Red + + Colorized.wms + 1 + + + + 0 + + + + 0 + Green + + Colorized.wms + 2 + + + + 0 + + + + 0 + Blue + + Colorized.wms + 3 + + + + 0 + + + + Alpha + + Colorized.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_CF_Mosaic_128ppd_Colorized/LRO_DIVINER_ClrCF_Global_128ppd.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_CF_Mosaic_128ppd/Colorized.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_CF_Mosaic_128ppd_Colorized/LRO_DIVINER_ClrCF_Global_128ppd.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_CF_Mosaic_128ppd/Colorized.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_CF_Mosaic_128ppd_Colorized/LRO_DIVINER_ClrCF_Global_128ppd.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_CF_Mosaic_128ppd_Colorized/LRO_DIVINER_ClrCF_Global_128ppd.vrt deleted file mode 100644 index 402efbc9cd..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_CF_Mosaic_128ppd_Colorized/LRO_DIVINER_ClrCF_Global_128ppd.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 5.4931640625000000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -5.4931640625000000e-03 - - 0 - Red - - LRO_DIVINER_ClrCF_Global_128ppd.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_DIVINER_ClrCF_Global_128ppd.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_DIVINER_ClrCF_Global_128ppd.wms - 3 - - - - 0 - - - - Alpha - - LRO_DIVINER_ClrCF_Global_128ppd.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_CF_Mosaic_128ppd_Colorized/LRO_Diviner_CF_Mosaic_128ppd_Colorized.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_CF_Mosaic_128ppd_Colorized/LRO_Diviner_CF_Mosaic_128ppd_Colorized.asset deleted file mode 100644 index b979613742..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_CF_Mosaic_128ppd_Colorized/LRO_Diviner_CF_Mosaic_128ppd_Colorized.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_DIVINER_ClrCF_Global_128ppd", - Name = [[LRO Diviner CF Mosaic 128ppd, Colorized]], - FilePath = asset.localResource("LRO_DIVINER_ClrCF_Global_128ppd.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO Diviner CF Mosaic 128ppd, Colorized]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_DIVINER_ClrCF_Global_128ppd%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO Diviner CF Mosaic 128ppd, Colorized layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_CF_Mosaic_Filled/LRO_Diviner_CF_Filled_Global_8ppd.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_CF_Mosaic_Filled/LRO_Diviner_CF_Filled_Global_8ppd.vrt deleted file mode 100644 index 551c192289..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_CF_Mosaic_Filled/LRO_Diviner_CF_Filled_Global_8ppd.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["Moon 2000",DATUM["Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.7890625000000000e-02, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.7890625000000000e-02 - - 0 - Red - - LRO_Diviner_CF_Filled_Global_8ppd.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_Diviner_CF_Filled_Global_8ppd.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_Diviner_CF_Filled_Global_8ppd.wms - 3 - - - - 0 - - - - Alpha - - LRO_Diviner_CF_Filled_Global_8ppd.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_CF_Mosaic_Filled/LRO_Diviner_CF_Mosaic_Filled.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_CF_Mosaic_Filled/LRO_Diviner_CF_Mosaic_Filled.asset deleted file mode 100644 index 7b885eda09..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_CF_Mosaic_Filled/LRO_Diviner_CF_Mosaic_Filled.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_Diviner_CF_Filled_Global_8ppd", - Name = [[LRO Diviner CF Mosaic, Filled]], - FilePath = asset.localResource("LRO_Diviner_CF_Filled_Global_8ppd.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO Diviner CF Mosaic, Filled]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_Diviner_CF_Filled_Global_8ppd%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO Diviner CF Mosaic, Filled layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_Surface_Temp_Avg.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_Surface_Temp_Avg.asset new file mode 100644 index 0000000000..9d9c1c917d --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_Surface_Temp_Avg.asset @@ -0,0 +1,34 @@ +-- This file was automatically generated using a script found at +-- https://github.com/OpenSpace/scripts/treks-to-openspace. See the README.md file +-- in that repository for more information on how to run the script to update these +-- files. In particular in the case of errors, prefer to change that script rather +-- than the individual files + +local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier + +local treks_LRO_Diviner_ST_Avg_Clr_Global_32ppd = { + Identifier = "LRO_Diviner_ST_Avg_Clr_Global_32ppd", + Name = [[LRO Diviner Surface Temp Avg, Color]], + FilePath = asset.localResource("LRO_Diviner_Surface_Temp_Avg/Color.vrt"), + Description = [[]] +} + +asset.onInitialize(function() + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_Diviner_ST_Avg_Clr_Global_32ppd) +end) + +asset.onDeinitialize(function() + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_Diviner_ST_Avg_Clr_Global_32ppd") +end) + +asset.export("LRO_Diviner_ST_Avg_Clr_Global_32ppd", treks_LRO_Diviner_ST_Avg_Clr_Global_32ppd) + + +asset.meta = { + Name = [[NASA Treks Layers for Moon LRO_Diviner_Surface_Temp_Avg], + Version = "1.0", + Author = "NASA/Treks", + URL = "https://trek.nasa.gov/moon", + License = "NASA/Treks", + Description = [[LRO_Diviner_Surface_Temp_Avg layers from NASA/Treks for Moon]] +} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_Surface_Temp_Avg/Color.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_Surface_Temp_Avg/Color.vrt new file mode 100644 index 0000000000..f3f6436fad --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_Surface_Temp_Avg/Color.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 4.3945312500000000e-02, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.3945312500000000e-02 + + 0 + Red + + Color.wms + 1 + + + + 0 + + + + 0 + Green + + Color.wms + 2 + + + + 0 + + + + 0 + Blue + + Color.wms + 3 + + + + 0 + + + + Alpha + + Color.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_Surface_Temp_Avg_Color/LRO_Diviner_ST_Avg_Clr_Global_32ppd.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_Surface_Temp_Avg/Color.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_Surface_Temp_Avg_Color/LRO_Diviner_ST_Avg_Clr_Global_32ppd.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_Surface_Temp_Avg/Color.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_Surface_Temp_Avg_Color/LRO_Diviner_ST_Avg_Clr_Global_32ppd.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_Surface_Temp_Avg_Color/LRO_Diviner_ST_Avg_Clr_Global_32ppd.vrt deleted file mode 100644 index c1e091ef51..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_Surface_Temp_Avg_Color/LRO_Diviner_ST_Avg_Clr_Global_32ppd.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.3945312500000000e-02, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.3945312500000000e-02 - - 0 - Red - - LRO_Diviner_ST_Avg_Clr_Global_32ppd.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_Diviner_ST_Avg_Clr_Global_32ppd.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_Diviner_ST_Avg_Clr_Global_32ppd.wms - 3 - - - - 0 - - - - Alpha - - LRO_Diviner_ST_Avg_Clr_Global_32ppd.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_Surface_Temp_Avg_Color/LRO_Diviner_Surface_Temp_Avg_Color.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_Surface_Temp_Avg_Color/LRO_Diviner_Surface_Temp_Avg_Color.asset deleted file mode 100644 index 94463a3b21..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_Surface_Temp_Avg_Color/LRO_Diviner_Surface_Temp_Avg_Color.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_Diviner_ST_Avg_Clr_Global_32ppd", - Name = [[LRO Diviner Surface Temp Avg, Color]], - FilePath = asset.localResource("LRO_Diviner_ST_Avg_Clr_Global_32ppd.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO Diviner Surface Temp Avg, Color]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_Diviner_ST_Avg_Clr_Global_32ppd%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO Diviner Surface Temp Avg, Color layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_Surface_Temp_Normal_Avg.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_Surface_Temp_Normal_Avg.asset new file mode 100644 index 0000000000..65a8a1fc58 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_Surface_Temp_Normal_Avg.asset @@ -0,0 +1,34 @@ +-- This file was automatically generated using a script found at +-- https://github.com/OpenSpace/scripts/treks-to-openspace. See the README.md file +-- in that repository for more information on how to run the script to update these +-- files. In particular in the case of errors, prefer to change that script rather +-- than the individual files + +local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier + +local treks_LRO_Diviner_STN_Avg_Clr_Global_32ppd = { + Identifier = "LRO_Diviner_STN_Avg_Clr_Global_32ppd", + Name = [[LRO Diviner Surface Temp Normal Avg, Color]], + FilePath = asset.localResource("LRO_Diviner_Surface_Temp_Normal_Avg/Color.vrt"), + Description = [[]] +} + +asset.onInitialize(function() + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_Diviner_STN_Avg_Clr_Global_32ppd) +end) + +asset.onDeinitialize(function() + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_Diviner_STN_Avg_Clr_Global_32ppd") +end) + +asset.export("LRO_Diviner_STN_Avg_Clr_Global_32ppd", treks_LRO_Diviner_STN_Avg_Clr_Global_32ppd) + + +asset.meta = { + Name = [[NASA Treks Layers for Moon LRO_Diviner_Surface_Temp_Normal_Avg], + Version = "1.0", + Author = "NASA/Treks", + URL = "https://trek.nasa.gov/moon", + License = "NASA/Treks", + Description = [[LRO_Diviner_Surface_Temp_Normal_Avg layers from NASA/Treks for Moon]] +} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_Surface_Temp_Normal_Avg/Color.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_Surface_Temp_Normal_Avg/Color.vrt new file mode 100644 index 0000000000..f3f6436fad --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_Surface_Temp_Normal_Avg/Color.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 4.3945312500000000e-02, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.3945312500000000e-02 + + 0 + Red + + Color.wms + 1 + + + + 0 + + + + 0 + Green + + Color.wms + 2 + + + + 0 + + + + 0 + Blue + + Color.wms + 3 + + + + 0 + + + + Alpha + + Color.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_Surface_Temp_Normal_Avg_Color/LRO_Diviner_STN_Avg_Clr_Global_32ppd.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_Surface_Temp_Normal_Avg/Color.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_Surface_Temp_Normal_Avg_Color/LRO_Diviner_STN_Avg_Clr_Global_32ppd.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_Surface_Temp_Normal_Avg/Color.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_Surface_Temp_Normal_Avg_Color/LRO_Diviner_STN_Avg_Clr_Global_32ppd.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_Surface_Temp_Normal_Avg_Color/LRO_Diviner_STN_Avg_Clr_Global_32ppd.vrt deleted file mode 100644 index db9652fdd9..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_Surface_Temp_Normal_Avg_Color/LRO_Diviner_STN_Avg_Clr_Global_32ppd.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.3945312500000000e-02, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.3945312500000000e-02 - - 0 - Red - - LRO_Diviner_STN_Avg_Clr_Global_32ppd.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_Diviner_STN_Avg_Clr_Global_32ppd.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_Diviner_STN_Avg_Clr_Global_32ppd.wms - 3 - - - - 0 - - - - Alpha - - LRO_Diviner_STN_Avg_Clr_Global_32ppd.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_Surface_Temp_Normal_Avg_Color/LRO_Diviner_Surface_Temp_Normal_Avg_Color.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_Surface_Temp_Normal_Avg_Color/LRO_Diviner_Surface_Temp_Normal_Avg_Color.asset deleted file mode 100644 index 3e7f076cbe..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_Surface_Temp_Normal_Avg_Color/LRO_Diviner_Surface_Temp_Normal_Avg_Color.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_Diviner_STN_Avg_Clr_Global_32ppd", - Name = [[LRO Diviner Surface Temp Normal Avg, Color]], - FilePath = asset.localResource("LRO_Diviner_STN_Avg_Clr_Global_32ppd.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO Diviner Surface Temp Normal Avg, Color]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_Diviner_STN_Avg_Clr_Global_32ppd%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO Diviner Surface Temp Normal Avg, Color layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_Surface_Temperature_Mosaic_128ppd.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_Surface_Temperature_Mosaic_128ppd.asset new file mode 100644 index 0000000000..fe69bd1bb0 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_Surface_Temperature_Mosaic_128ppd.asset @@ -0,0 +1,34 @@ +-- This file was automatically generated using a script found at +-- https://github.com/OpenSpace/scripts/treks-to-openspace. See the README.md file +-- in that repository for more information on how to run the script to update these +-- files. In particular in the case of errors, prefer to change that script rather +-- than the individual files + +local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier + +local treks_LRO_DIVINER_ClrRockFreeSurfaceTemp_Global_128ppd = { + Identifier = "LRO_DIVINER_ClrRockFreeSurfaceTemp_Global_128ppd", + Name = [[LRO Diviner Surface Temperature Mosaic 128ppd, Colorized]], + FilePath = asset.localResource("LRO_Diviner_Surface_Temperature_Mosaic_128ppd/Colorized.vrt"), + Description = [[]] +} + +asset.onInitialize(function() + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_DIVINER_ClrRockFreeSurfaceTemp_Global_128ppd) +end) + +asset.onDeinitialize(function() + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_DIVINER_ClrRockFreeSurfaceTemp_Global_128ppd") +end) + +asset.export("LRO_DIVINER_ClrRockFreeSurfaceTemp_Global_128ppd", treks_LRO_DIVINER_ClrRockFreeSurfaceTemp_Global_128ppd) + + +asset.meta = { + Name = [[NASA Treks Layers for Moon LRO_Diviner_Surface_Temperature_Mosaic_128ppd], + Version = "1.0", + Author = "NASA/Treks", + URL = "https://trek.nasa.gov/moon", + License = "NASA/Treks", + Description = [[LRO_Diviner_Surface_Temperature_Mosaic_128ppd layers from NASA/Treks for Moon]] +} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_Surface_Temperature_Mosaic_128ppd/Colorized.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_Surface_Temperature_Mosaic_128ppd/Colorized.vrt new file mode 100644 index 0000000000..956549a2c9 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_Surface_Temperature_Mosaic_128ppd/Colorized.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 5.4931640625000000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -5.4931640625000000e-03 + + 0 + Red + + Colorized.wms + 1 + + + + 0 + + + + 0 + Green + + Colorized.wms + 2 + + + + 0 + + + + 0 + Blue + + Colorized.wms + 3 + + + + 0 + + + + Alpha + + Colorized.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_Surface_Temperature_Mosaic_128ppd_Colorized/LRO_DIVINER_ClrRockFreeSurfaceTemp_Global_128ppd.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_Surface_Temperature_Mosaic_128ppd/Colorized.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_Surface_Temperature_Mosaic_128ppd_Colorized/LRO_DIVINER_ClrRockFreeSurfaceTemp_Global_128ppd.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_Surface_Temperature_Mosaic_128ppd/Colorized.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_Surface_Temperature_Mosaic_128ppd_Colorized/LRO_DIVINER_ClrRockFreeSurfaceTemp_Global_128ppd.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_Surface_Temperature_Mosaic_128ppd_Colorized/LRO_DIVINER_ClrRockFreeSurfaceTemp_Global_128ppd.vrt deleted file mode 100644 index 31516468bb..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_Surface_Temperature_Mosaic_128ppd_Colorized/LRO_DIVINER_ClrRockFreeSurfaceTemp_Global_128ppd.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 5.4931640625000000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -5.4931640625000000e-03 - - 0 - Red - - LRO_DIVINER_ClrRockFreeSurfaceTemp_Global_128ppd.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_DIVINER_ClrRockFreeSurfaceTemp_Global_128ppd.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_DIVINER_ClrRockFreeSurfaceTemp_Global_128ppd.wms - 3 - - - - 0 - - - - Alpha - - LRO_DIVINER_ClrRockFreeSurfaceTemp_Global_128ppd.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_Surface_Temperature_Mosaic_128ppd_Colorized/LRO_Diviner_Surface_Temperature_Mosaic_128ppd_Colorized.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_Surface_Temperature_Mosaic_128ppd_Colorized/LRO_Diviner_Surface_Temperature_Mosaic_128ppd_Colorized.asset deleted file mode 100644 index 6f5ed76cc2..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Diviner_Surface_Temperature_Mosaic_128ppd_Colorized/LRO_Diviner_Surface_Temperature_Mosaic_128ppd_Colorized.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_DIVINER_ClrRockFreeSurfaceTemp_Global_128ppd", - Name = [[LRO Diviner Surface Temperature Mosaic 128ppd, Colorized]], - FilePath = asset.localResource("LRO_DIVINER_ClrRockFreeSurfaceTemp_Global_128ppd.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO Diviner Surface Temperature Mosaic 128ppd, Colorized]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_DIVINER_ClrRockFreeSurfaceTemp_Global_128ppd%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO Diviner Surface Temperature Mosaic 128ppd, Colorized layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM.asset new file mode 100644 index 0000000000..b55b87c24c --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM.asset @@ -0,0 +1,94 @@ +-- This file was automatically generated using a script found at +-- https://github.com/OpenSpace/scripts/treks-to-openspace. See the README.md file +-- in that repository for more information on how to run the script to update these +-- files. In particular in the case of errors, prefer to change that script rather +-- than the individual files + +local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier + +local treks_LRO_LOLA_ClrShade_Global_128ppd_v04 = { + Identifier = "LRO_LOLA_ClrShade_Global_128ppd_v04", + Name = [[LRO LOLA DEM, ColorHillshade]], + FilePath = asset.localResource("LRO_LOLA_DEM/ColorHillshade.vrt"), + Description = [[]] +} + +local treks_LRO_LOLA_ClrShade_Global_256ppd_v06 = { + Identifier = "LRO_LOLA_ClrShade_Global_256ppd_v06", + Name = [[LRO LOLA DEM, ColorHillshade v6]], + FilePath = asset.localResource("LRO_LOLA_DEM/ColorHillshade_v6.vrt"), + Description = [[]] +} + +local treks_LRO_LOLA_Coverage_Global_128ppd_v04 = { + Identifier = "LRO_LOLA_Coverage_Global_128ppd_v04", + Name = [[LRO LOLA DEM, Coverage]], + FilePath = asset.localResource("LRO_LOLA_DEM/Coverage.vrt"), + Description = [[]] +} + +local treks_LRO_LOLA_Shade_Global_256ppd_v06 = { + Identifier = "LRO_LOLA_Shade_Global_256ppd_v06", + Name = [[LRO LOLA DEM, Hillshade]], + FilePath = asset.localResource("LRO_LOLA_DEM/Hillshade.vrt"), + Description = [[]] +} + +local treks_LRO_LOLA_NoDataMask_Global_128ppd_v04 = { + Identifier = "LRO_LOLA_NoDataMask_Global_128ppd_v04", + Name = [[LRO LOLA DEM, No Data Mask]], + FilePath = asset.localResource("LRO_LOLA_DEM/No_Data_Mask.vrt"), + Description = [[]] +} + +local treks_LRO_LOLA_ClrShade_NPole875_5mp_v04_EQ = { + Identifier = "LRO_LOLA_ClrShade_NPole875_5mp_v04_EQ", + Name = [[LRO LOLA DEM, N Pole, 87.5 deg, ColorHillshade]], + FilePath = asset.localResource("LRO_LOLA_DEM/N_Pole.vrt"), + Description = [[This is version 4 of the LRO LOLA North Pole 87.5 deg DEM, ColorHillshade. This is a colorized shaded-relief of a original polar LOLA Digital Elevation Model (DEM). The DEM is a shape map (radius) of the Moon at a resolution 100 meters per pixel, based on altimetry data acquired through Spetember 2011 by the LOLA instrument. The ground tracks were interpolated using the Generic Mapping Tools programs "surface" and "grdblend". Map values are referred to a radius of 1737400 m.]] +} + +local treks_LRO_LOLA_ClrShade_SPole875_5mp_v04_EQ = { + Identifier = "LRO_LOLA_ClrShade_SPole875_5mp_v04_EQ", + Name = [[LRO LOLA DEM, S Pole, 87.5 deg, ColorHillshade]], + FilePath = asset.localResource("LRO_LOLA_DEM/S_Pole.vrt"), + Description = [[This is version 4 of the LRO LOLA South Pole 87.5 deg DEM, ColorHillshade. This is a colorized shaded-relief of a original polar LOLA Digital Elevation Model (DEM). The DEM is a shape map (radius) of the Moon at a resolution 100 meters per pixel, based on altimetry data acquired through Spetember 2011 by the LOLA instrument. The ground tracks were interpolated using the Generic Mapping Tools programs "surface" and "grdblend". Map values are referred to a radius of 1737400 m.]] +} + +asset.onInitialize(function() + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_LOLA_ClrShade_Global_128ppd_v04) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_LOLA_ClrShade_Global_256ppd_v06) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_LOLA_Coverage_Global_128ppd_v04) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_LOLA_Shade_Global_256ppd_v06) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_LOLA_NoDataMask_Global_128ppd_v04) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_LOLA_ClrShade_NPole875_5mp_v04_EQ) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_LOLA_ClrShade_SPole875_5mp_v04_EQ) +end) + +asset.onDeinitialize(function() + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_LOLA_ClrShade_Global_128ppd_v04") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_LOLA_ClrShade_Global_256ppd_v06") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_LOLA_Coverage_Global_128ppd_v04") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_LOLA_Shade_Global_256ppd_v06") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_LOLA_NoDataMask_Global_128ppd_v04") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_LOLA_ClrShade_NPole875_5mp_v04_EQ") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_LOLA_ClrShade_SPole875_5mp_v04_EQ") +end) + +asset.export("LRO_LOLA_ClrShade_Global_128ppd_v04", treks_LRO_LOLA_ClrShade_Global_128ppd_v04) +asset.export("LRO_LOLA_ClrShade_Global_256ppd_v06", treks_LRO_LOLA_ClrShade_Global_256ppd_v06) +asset.export("LRO_LOLA_Coverage_Global_128ppd_v04", treks_LRO_LOLA_Coverage_Global_128ppd_v04) +asset.export("LRO_LOLA_Shade_Global_256ppd_v06", treks_LRO_LOLA_Shade_Global_256ppd_v06) +asset.export("LRO_LOLA_NoDataMask_Global_128ppd_v04", treks_LRO_LOLA_NoDataMask_Global_128ppd_v04) +asset.export("LRO_LOLA_ClrShade_NPole875_5mp_v04_EQ", treks_LRO_LOLA_ClrShade_NPole875_5mp_v04_EQ) +asset.export("LRO_LOLA_ClrShade_SPole875_5mp_v04_EQ", treks_LRO_LOLA_ClrShade_SPole875_5mp_v04_EQ) + + +asset.meta = { + Name = [[NASA Treks Layers for Moon LRO_LOLA_DEM], + Version = "1.0", + Author = "NASA/Treks", + URL = "https://trek.nasa.gov/moon", + License = "NASA/Treks", + Description = [[LRO_LOLA_DEM layers from NASA/Treks for Moon]] +} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM/ColorHillshade.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM/ColorHillshade.vrt new file mode 100644 index 0000000000..80d56adfaa --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM/ColorHillshade.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.0986328125000000e-02, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.0986328125000000e-02 + + 0 + Red + + ColorHillshade.wms + 1 + + + + 0 + + + + 0 + Green + + ColorHillshade.wms + 2 + + + + 0 + + + + 0 + Blue + + ColorHillshade.wms + 3 + + + + 0 + + + + Alpha + + ColorHillshade.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_ColorHillshade/LRO_LOLA_ClrShade_Global_128ppd_v04.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM/ColorHillshade.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_ColorHillshade/LRO_LOLA_ClrShade_Global_128ppd_v04.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM/ColorHillshade.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM/ColorHillshade_v6.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM/ColorHillshade_v6.vrt new file mode 100644 index 0000000000..825cb9c585 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM/ColorHillshade_v6.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_2000",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 5.4931640625000000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -5.4931640625000000e-03 + + 0 + Red + + ColorHillshade_v6.wms + 1 + + + + 0 + + + + 0 + Green + + ColorHillshade_v6.wms + 2 + + + + 0 + + + + 0 + Blue + + ColorHillshade_v6.wms + 3 + + + + 0 + + + + Alpha + + ColorHillshade_v6.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_ColorHillshade_v6/LRO_LOLA_ClrShade_Global_256ppd_v06.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM/ColorHillshade_v6.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_ColorHillshade_v6/LRO_LOLA_ClrShade_Global_256ppd_v06.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM/ColorHillshade_v6.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM/Coverage.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM/Coverage.vrt new file mode 100644 index 0000000000..2f49cb3f47 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM/Coverage.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.0986328125000000e-02, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.0986328125000000e-02 + + 0 + Red + + Coverage.wms + 1 + + + + 0 + + + + 0 + Green + + Coverage.wms + 2 + + + + 0 + + + + 0 + Blue + + Coverage.wms + 3 + + + + 0 + + + + Alpha + + Coverage.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_Coverage/LRO_LOLA_Coverage_Global_128ppd_v04.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM/Coverage.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_Coverage/LRO_LOLA_Coverage_Global_128ppd_v04.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM/Coverage.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM/Hillshade.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM/Hillshade.vrt new file mode 100644 index 0000000000..025306d592 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM/Hillshade.vrt @@ -0,0 +1,29 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 5.4931640625000000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -5.4931640625000000e-03 + + 0 + Gray + + Hillshade.wms + 1 + + + + 0 + + + + Alpha + + Hillshade.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_Hillshade/LRO_LOLA_Shade_Global_256ppd_v06.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM/Hillshade.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_Hillshade/LRO_LOLA_Shade_Global_256ppd_v06.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM/Hillshade.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM/N_Pole.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM/N_Pole.vrt new file mode 100644 index 0000000000..516da9909d --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM/N_Pole.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon",DATUM["Moon",SPHEROID["Moon",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 6.8664550781250000e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -6.8664550781250000e-04 + + 0 + Red + + N_Pole.wms + 1 + + + + 0 + + + + 0 + Green + + N_Pole.wms + 2 + + + + 0 + + + + 0 + Blue + + N_Pole.wms + 3 + + + + 0 + + + + Alpha + + N_Pole.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_N_Pole_87.5_deg_ColorHillshade/LRO_LOLA_ClrShade_NPole875_5mp_v04_EQ.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM/N_Pole.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_N_Pole_87.5_deg_ColorHillshade/LRO_LOLA_ClrShade_NPole875_5mp_v04_EQ.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM/N_Pole.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM/No_Data_Mask.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM/No_Data_Mask.vrt new file mode 100644 index 0000000000..f48aae88f9 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM/No_Data_Mask.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.0986328125000000e-02, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.0986328125000000e-02 + + 0 + Red + + No_Data_Mask.wms + 1 + + + + 0 + + + + 0 + Green + + No_Data_Mask.wms + 2 + + + + 0 + + + + 0 + Blue + + No_Data_Mask.wms + 3 + + + + 0 + + + + Alpha + + No_Data_Mask.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_No_Data_Mask/LRO_LOLA_NoDataMask_Global_128ppd_v04.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM/No_Data_Mask.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_No_Data_Mask/LRO_LOLA_NoDataMask_Global_128ppd_v04.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM/No_Data_Mask.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM/S_Pole.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM/S_Pole.vrt new file mode 100644 index 0000000000..07cbc5daa7 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM/S_Pole.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon",DATUM["Moon",SPHEROID["Moon",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 6.8664550781250000e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -6.8664550781250000e-04 + + 0 + Red + + S_Pole.wms + 1 + + + + 0 + + + + 0 + Green + + S_Pole.wms + 2 + + + + 0 + + + + 0 + Blue + + S_Pole.wms + 3 + + + + 0 + + + + Alpha + + S_Pole.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_S_Pole_87.5_deg_ColorHillshade/LRO_LOLA_ClrShade_SPole875_5mp_v04_EQ.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM/S_Pole.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_S_Pole_87.5_deg_ColorHillshade/LRO_LOLA_ClrShade_SPole875_5mp_v04_EQ.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM/S_Pole.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_ColorHillshade/LRO_LOLA_ClrShade_Global_128ppd_v04.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_ColorHillshade/LRO_LOLA_ClrShade_Global_128ppd_v04.vrt deleted file mode 100644 index 8dd19b6865..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_ColorHillshade/LRO_LOLA_ClrShade_Global_128ppd_v04.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.0986328125000000e-02, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.0986328125000000e-02 - - 0 - Red - - LRO_LOLA_ClrShade_Global_128ppd_v04.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_LOLA_ClrShade_Global_128ppd_v04.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_LOLA_ClrShade_Global_128ppd_v04.wms - 3 - - - - 0 - - - - Alpha - - LRO_LOLA_ClrShade_Global_128ppd_v04.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_ColorHillshade/LRO_LOLA_DEM_ColorHillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_ColorHillshade/LRO_LOLA_DEM_ColorHillshade.asset deleted file mode 100644 index b1a1de4492..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_ColorHillshade/LRO_LOLA_DEM_ColorHillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_LOLA_ClrShade_Global_128ppd_v04", - Name = [[LRO LOLA DEM, ColorHillshade]], - FilePath = asset.localResource("LRO_LOLA_ClrShade_Global_128ppd_v04.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LOLA DEM, ColorHillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_LOLA_ClrShade_Global_128ppd_v04%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LOLA DEM, ColorHillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_ColorHillshade_v6/LRO_LOLA_ClrShade_Global_256ppd_v06.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_ColorHillshade_v6/LRO_LOLA_ClrShade_Global_256ppd_v06.vrt deleted file mode 100644 index 75916b6cf3..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_ColorHillshade_v6/LRO_LOLA_ClrShade_Global_256ppd_v06.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_2000",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 5.4931640625000000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -5.4931640625000000e-03 - - 0 - Red - - LRO_LOLA_ClrShade_Global_256ppd_v06.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_LOLA_ClrShade_Global_256ppd_v06.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_LOLA_ClrShade_Global_256ppd_v06.wms - 3 - - - - 0 - - - - Alpha - - LRO_LOLA_ClrShade_Global_256ppd_v06.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_ColorHillshade_v6/LRO_LOLA_DEM_ColorHillshade_v6.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_ColorHillshade_v6/LRO_LOLA_DEM_ColorHillshade_v6.asset deleted file mode 100644 index 74b2df5ffa..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_ColorHillshade_v6/LRO_LOLA_DEM_ColorHillshade_v6.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_LOLA_ClrShade_Global_256ppd_v06", - Name = [[LRO LOLA DEM, ColorHillshade v6]], - FilePath = asset.localResource("LRO_LOLA_ClrShade_Global_256ppd_v06.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LOLA DEM, ColorHillshade v6]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_LOLA_ClrShade_Global_256ppd_v06%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LOLA DEM, ColorHillshade v6 layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_Coverage/LRO_LOLA_Coverage_Global_128ppd_v04.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_Coverage/LRO_LOLA_Coverage_Global_128ppd_v04.vrt deleted file mode 100644 index 5a381630d5..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_Coverage/LRO_LOLA_Coverage_Global_128ppd_v04.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.0986328125000000e-02, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.0986328125000000e-02 - - 0 - Red - - LRO_LOLA_Coverage_Global_128ppd_v04.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_LOLA_Coverage_Global_128ppd_v04.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_LOLA_Coverage_Global_128ppd_v04.wms - 3 - - - - 0 - - - - Alpha - - LRO_LOLA_Coverage_Global_128ppd_v04.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_Coverage/LRO_LOLA_DEM_Coverage.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_Coverage/LRO_LOLA_DEM_Coverage.asset deleted file mode 100644 index 61689709e0..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_Coverage/LRO_LOLA_DEM_Coverage.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_LOLA_Coverage_Global_128ppd_v04", - Name = [[LRO LOLA DEM, Coverage]], - FilePath = asset.localResource("LRO_LOLA_Coverage_Global_128ppd_v04.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LOLA DEM, Coverage]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_LOLA_Coverage_Global_128ppd_v04%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LOLA DEM, Coverage layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_Hillshade/LRO_LOLA_DEM_Hillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_Hillshade/LRO_LOLA_DEM_Hillshade.asset deleted file mode 100644 index c3ff5f5fb2..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_Hillshade/LRO_LOLA_DEM_Hillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_LOLA_Shade_Global_256ppd_v06", - Name = [[LRO LOLA DEM, Hillshade]], - FilePath = asset.localResource("LRO_LOLA_Shade_Global_256ppd_v06.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LOLA DEM, Hillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_LOLA_Shade_Global_256ppd_v06%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LOLA DEM, Hillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_Hillshade/LRO_LOLA_Shade_Global_128ppd_v04.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_Hillshade/LRO_LOLA_Shade_Global_128ppd_v04.vrt deleted file mode 100644 index 692b6f511f..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_Hillshade/LRO_LOLA_Shade_Global_128ppd_v04.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.0986328125000000e-02, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.0986328125000000e-02 - - 0 - Gray - - LRO_LOLA_Shade_Global_128ppd_v04.wms - 1 - - - - 0 - - - - Alpha - - LRO_LOLA_Shade_Global_128ppd_v04.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_Hillshade/LRO_LOLA_Shade_Global_128ppd_v04.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_Hillshade/LRO_LOLA_Shade_Global_128ppd_v04.wms deleted file mode 100644 index c177b1a7d2..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_Hillshade/LRO_LOLA_Shade_Global_128ppd_v04.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_LOLA_Shade_Global_128ppd_v04/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 6 - top - - - GEOGCS["GCS_Moon_2000",DATUM["Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - - 256 - 256 - 1 - 10 - - 400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_Hillshade/LRO_LOLA_Shade_Global_256ppd_v06.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_Hillshade/LRO_LOLA_Shade_Global_256ppd_v06.vrt deleted file mode 100644 index 69ce25ad05..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_Hillshade/LRO_LOLA_Shade_Global_256ppd_v06.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 5.4931640625000000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -5.4931640625000000e-03 - - 0 - Gray - - LRO_LOLA_Shade_Global_256ppd_v06.wms - 1 - - - - 0 - - - - Alpha - - LRO_LOLA_Shade_Global_256ppd_v06.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_N_Pole_75_deg_ColorHillshade/LRO_LOLA_ClrShade_NPole75_30mp_v04_EQ.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_N_Pole_75_deg_ColorHillshade/LRO_LOLA_ClrShade_NPole75_30mp_v04_EQ.vrt deleted file mode 100644 index c4f8bd9431..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_N_Pole_75_deg_ColorHillshade/LRO_LOLA_ClrShade_NPole75_30mp_v04_EQ.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon",DATUM["Moon",SPHEROID["Moon",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.3732910156250000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.3732910156250000e-03 - - 0 - Red - - LRO_LOLA_ClrShade_NPole75_30mp_v04_EQ.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_LOLA_ClrShade_NPole75_30mp_v04_EQ.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_LOLA_ClrShade_NPole75_30mp_v04_EQ.wms - 3 - - - - 0 - - - - Alpha - - LRO_LOLA_ClrShade_NPole75_30mp_v04_EQ.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_N_Pole_75_deg_ColorHillshade/LRO_LOLA_ClrShade_NPole75_30mp_v04_EQ.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_N_Pole_75_deg_ColorHillshade/LRO_LOLA_ClrShade_NPole75_30mp_v04_EQ.wms deleted file mode 100644 index 0af51bce75..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_N_Pole_75_deg_ColorHillshade/LRO_LOLA_ClrShade_NPole75_30mp_v04_EQ.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_LOLA_ClrShade_NPole75_30mp_v04_EQ/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 9 - top - - - GEOGCS["GCS_Moon",DATUM["Moon",SPHEROID["Moon",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_N_Pole_75_deg_ColorHillshade/LRO_LOLA_DEM_N_Pole_75_deg_ColorHillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_N_Pole_75_deg_ColorHillshade/LRO_LOLA_DEM_N_Pole_75_deg_ColorHillshade.asset deleted file mode 100644 index 190ec482e5..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_N_Pole_75_deg_ColorHillshade/LRO_LOLA_DEM_N_Pole_75_deg_ColorHillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_LOLA_ClrShade_NPole75_30mp_v04_EQ", - Name = [[LRO LOLA DEM, N Pole, 75 deg, ColorHillshade]], - FilePath = asset.localResource("LRO_LOLA_ClrShade_NPole75_30mp_v04_EQ.vrt"), - Description = [[This is version 4 of the LRO LOLA North Pole 75 deg DEM, ColorHillshade. This is a colorized shaded-relief of a original polar LOLA Digital Elevation Model (DEM). The DEM is a shape map (radius) of the Moon at a resolution 100 meters per pixel, based on altimetry data acquired through Spetember 2011 by the LOLA instrument. The ground tracks were interpolated using the Generic Mapping Tools programs "surface" and "grdblend". Map values are referred to a radius of 1737400 m.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LOLA DEM, N Pole, 75 deg, ColorHillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_LOLA_ClrShade_NPole75_30mp_v04_EQ%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LOLA DEM, N Pole, 75 deg, ColorHillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_N_Pole_75_deg_Hillshade/LRO_LOLA_DEM_N_Pole_75_deg_Hillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_N_Pole_75_deg_Hillshade/LRO_LOLA_DEM_N_Pole_75_deg_Hillshade.asset deleted file mode 100644 index 0cdb0b3de8..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_N_Pole_75_deg_Hillshade/LRO_LOLA_DEM_N_Pole_75_deg_Hillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_LOLA_Shade_NPole75_30mp_v04_EQ", - Name = [[LRO LOLA DEM, N Pole, 75 deg, Hillshade]], - FilePath = asset.localResource("LRO_LOLA_Shade_NPole75_30mp_v04_EQ.vrt"), - Description = [[This is version 4 of the LRO LOLA DEM, N Pole, 75 deg, Hillshade. This is a shaded-relief of a original polar LOLA Digital Elevation Model (DEM). The DEM is a shape map (radius) of the Moon at a resolution 100 meters per pixel, based on altimetry data acquired through Spetember 2011 by the LOLA instrument. The ground tracks were interpolated using the Generic Mapping Tools programs "surface" and "grdblend". Map values are referred to a radius of 1737400 m.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LOLA DEM, N Pole, 75 deg, Hillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_LOLA_Shade_NPole75_30mp_v04_EQ%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LOLA DEM, N Pole, 75 deg, Hillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_N_Pole_75_deg_Hillshade/LRO_LOLA_Shade_NPole75_30mp_v04_EQ.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_N_Pole_75_deg_Hillshade/LRO_LOLA_Shade_NPole75_30mp_v04_EQ.vrt deleted file mode 100644 index 98960d309b..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_N_Pole_75_deg_Hillshade/LRO_LOLA_Shade_NPole75_30mp_v04_EQ.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon",DATUM["Moon",SPHEROID["Moon",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.3732910156250000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.3732910156250000e-03 - - 0 - Gray - - LRO_LOLA_Shade_NPole75_30mp_v04_EQ.wms - 1 - - - - 0 - - - - Alpha - - LRO_LOLA_Shade_NPole75_30mp_v04_EQ.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_N_Pole_75_deg_Hillshade/LRO_LOLA_Shade_NPole75_30mp_v04_EQ.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_N_Pole_75_deg_Hillshade/LRO_LOLA_Shade_NPole75_30mp_v04_EQ.wms deleted file mode 100644 index 6a6bd78dbe..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_N_Pole_75_deg_Hillshade/LRO_LOLA_Shade_NPole75_30mp_v04_EQ.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_LOLA_Shade_NPole75_30mp_v04_EQ/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 9 - top - - - GEOGCS["GCS_Moon",DATUM["Moon",SPHEROID["Moon",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - - 256 - 256 - 1 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_N_Pole_87.5_deg_ColorHillshade/LRO_LOLA_ClrShade_NPole875_5mp_v04_EQ.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_N_Pole_87.5_deg_ColorHillshade/LRO_LOLA_ClrShade_NPole875_5mp_v04_EQ.vrt deleted file mode 100644 index 53968bba90..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_N_Pole_87.5_deg_ColorHillshade/LRO_LOLA_ClrShade_NPole875_5mp_v04_EQ.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon",DATUM["Moon",SPHEROID["Moon",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 6.8664550781250000e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -6.8664550781250000e-04 - - 0 - Red - - LRO_LOLA_ClrShade_NPole875_5mp_v04_EQ.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_LOLA_ClrShade_NPole875_5mp_v04_EQ.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_LOLA_ClrShade_NPole875_5mp_v04_EQ.wms - 3 - - - - 0 - - - - Alpha - - LRO_LOLA_ClrShade_NPole875_5mp_v04_EQ.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_N_Pole_87.5_deg_ColorHillshade/LRO_LOLA_DEM_N_Pole_87.5_deg_ColorHillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_N_Pole_87.5_deg_ColorHillshade/LRO_LOLA_DEM_N_Pole_87.5_deg_ColorHillshade.asset deleted file mode 100644 index 288a16b166..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_N_Pole_87.5_deg_ColorHillshade/LRO_LOLA_DEM_N_Pole_87.5_deg_ColorHillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_LOLA_ClrShade_NPole875_5mp_v04_EQ", - Name = [[LRO LOLA DEM, N Pole, 87.5 deg, ColorHillshade]], - FilePath = asset.localResource("LRO_LOLA_ClrShade_NPole875_5mp_v04_EQ.vrt"), - Description = [[This is version 4 of the LRO LOLA North Pole 87.5 deg DEM, ColorHillshade. This is a colorized shaded-relief of a original polar LOLA Digital Elevation Model (DEM). The DEM is a shape map (radius) of the Moon at a resolution 100 meters per pixel, based on altimetry data acquired through Spetember 2011 by the LOLA instrument. The ground tracks were interpolated using the Generic Mapping Tools programs "surface" and "grdblend". Map values are referred to a radius of 1737400 m.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LOLA DEM, N Pole, 87.5 deg, ColorHillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_LOLA_ClrShade_NPole875_5mp_v04_EQ%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LOLA DEM, N Pole, 87.5 deg, ColorHillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_N_Pole_87.5_deg_Hillshade/LRO_LOLA_DEM_N_Pole_87.5_deg_Hillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_N_Pole_87.5_deg_Hillshade/LRO_LOLA_DEM_N_Pole_87.5_deg_Hillshade.asset deleted file mode 100644 index f3da903247..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_N_Pole_87.5_deg_Hillshade/LRO_LOLA_DEM_N_Pole_87.5_deg_Hillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_LOLA_Shade_NPole875_5mp_v04_EQ", - Name = [[LRO LOLA DEM, N Pole, 87.5 deg, Hillshade]], - FilePath = asset.localResource("LRO_LOLA_Shade_NPole875_5mp_v04_EQ.vrt"), - Description = [[This is version 4 of the LRO LOLA DEM, N Pole, 87.5 deg, Hillshade. This is a shaded-relief of a original polar LOLA Digital Elevation Model (DEM). The DEM is a shape map (radius) of the Moon at a resolution 100 meters per pixel, based on altimetry data acquired through Spetember 2011 by the LOLA instrument. The ground tracks were interpolated using the Generic Mapping Tools programs "surface" and "grdblend". Map values are referred to a radius of 1737400 m.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LOLA DEM, N Pole, 87.5 deg, Hillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_LOLA_Shade_NPole875_5mp_v04_EQ%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LOLA DEM, N Pole, 87.5 deg, Hillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_N_Pole_87.5_deg_Hillshade/LRO_LOLA_Shade_NPole875_5mp_v04_EQ.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_N_Pole_87.5_deg_Hillshade/LRO_LOLA_Shade_NPole875_5mp_v04_EQ.vrt deleted file mode 100644 index 4605a5dcfb..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_N_Pole_87.5_deg_Hillshade/LRO_LOLA_Shade_NPole875_5mp_v04_EQ.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon",DATUM["Moon",SPHEROID["Moon",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 6.8664550781250000e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -6.8664550781250000e-04 - - 0 - Gray - - LRO_LOLA_Shade_NPole875_5mp_v04_EQ.wms - 1 - - - - 0 - - - - Alpha - - LRO_LOLA_Shade_NPole875_5mp_v04_EQ.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_N_Pole_87.5_deg_Hillshade/LRO_LOLA_Shade_NPole875_5mp_v04_EQ.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_N_Pole_87.5_deg_Hillshade/LRO_LOLA_Shade_NPole875_5mp_v04_EQ.wms deleted file mode 100644 index 6d3b2cb40e..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_N_Pole_87.5_deg_Hillshade/LRO_LOLA_Shade_NPole875_5mp_v04_EQ.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_LOLA_Shade_NPole875_5mp_v04_EQ/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 10 - top - - - GEOGCS["GCS_Moon",DATUM["Moon",SPHEROID["Moon",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - - 256 - 256 - 1 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_No_Data_Mask/LRO_LOLA_DEM_No_Data_Mask.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_No_Data_Mask/LRO_LOLA_DEM_No_Data_Mask.asset deleted file mode 100644 index 796262dc2a..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_No_Data_Mask/LRO_LOLA_DEM_No_Data_Mask.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_LOLA_NoDataMask_Global_128ppd_v04", - Name = [[LRO LOLA DEM, No Data Mask]], - FilePath = asset.localResource("LRO_LOLA_NoDataMask_Global_128ppd_v04.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LOLA DEM, No Data Mask]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_LOLA_NoDataMask_Global_128ppd_v04%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LOLA DEM, No Data Mask layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_No_Data_Mask/LRO_LOLA_NoDataMask_Global_128ppd_v04.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_No_Data_Mask/LRO_LOLA_NoDataMask_Global_128ppd_v04.vrt deleted file mode 100644 index 331f40683f..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_No_Data_Mask/LRO_LOLA_NoDataMask_Global_128ppd_v04.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.0986328125000000e-02, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.0986328125000000e-02 - - 0 - Red - - LRO_LOLA_NoDataMask_Global_128ppd_v04.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_LOLA_NoDataMask_Global_128ppd_v04.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_LOLA_NoDataMask_Global_128ppd_v04.wms - 3 - - - - 0 - - - - Alpha - - LRO_LOLA_NoDataMask_Global_128ppd_v04.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_S_Pole_75_deg_ColorHillshade/LRO_LOLA_ClrShade_SPole75_30mp_v04_EQ.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_S_Pole_75_deg_ColorHillshade/LRO_LOLA_ClrShade_SPole75_30mp_v04_EQ.vrt deleted file mode 100644 index 1c6341dbaf..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_S_Pole_75_deg_ColorHillshade/LRO_LOLA_ClrShade_SPole75_30mp_v04_EQ.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon",DATUM["Moon",SPHEROID["Moon",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.3732910156250000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.3732910156250000e-03 - - 0 - Red - - LRO_LOLA_ClrShade_SPole75_30mp_v04_EQ.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_LOLA_ClrShade_SPole75_30mp_v04_EQ.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_LOLA_ClrShade_SPole75_30mp_v04_EQ.wms - 3 - - - - 0 - - - - Alpha - - LRO_LOLA_ClrShade_SPole75_30mp_v04_EQ.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_S_Pole_75_deg_ColorHillshade/LRO_LOLA_ClrShade_SPole75_30mp_v04_EQ.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_S_Pole_75_deg_ColorHillshade/LRO_LOLA_ClrShade_SPole75_30mp_v04_EQ.wms deleted file mode 100644 index c624e01562..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_S_Pole_75_deg_ColorHillshade/LRO_LOLA_ClrShade_SPole75_30mp_v04_EQ.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_LOLA_ClrShade_SPole75_30mp_v04_EQ/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 9 - top - - - GEOGCS["GCS_Moon",DATUM["Moon",SPHEROID["Moon",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_S_Pole_75_deg_ColorHillshade/LRO_LOLA_DEM_S_Pole_75_deg_ColorHillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_S_Pole_75_deg_ColorHillshade/LRO_LOLA_DEM_S_Pole_75_deg_ColorHillshade.asset deleted file mode 100644 index d551ddd5be..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_S_Pole_75_deg_ColorHillshade/LRO_LOLA_DEM_S_Pole_75_deg_ColorHillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_LOLA_ClrShade_SPole75_30mp_v04_EQ", - Name = [[LRO LOLA DEM, S Pole, 75 deg, ColorHillshade]], - FilePath = asset.localResource("LRO_LOLA_ClrShade_SPole75_30mp_v04_EQ.vrt"), - Description = [[This is version 4 of the LRO LOLA South Pole 75 deg DEM, ColorHillshade. This is a colorized shaded-relief of a original polar LOLA Digital Elevation Model (DEM). The DEM is a shape map (radius) of the Moon at a resolution 100 meters per pixel, based on altimetry data acquired through Spetember 2011 by the LOLA instrument. The ground tracks were interpolated using the Generic Mapping Tools programs "surface" and "grdblend". Map values are referred to a radius of 1737400 m.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LOLA DEM, S Pole, 75 deg, ColorHillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_LOLA_ClrShade_SPole75_30mp_v04_EQ%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LOLA DEM, S Pole, 75 deg, ColorHillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_S_Pole_75_deg_Hillshade/LRO_LOLA_DEM_S_Pole_75_deg_Hillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_S_Pole_75_deg_Hillshade/LRO_LOLA_DEM_S_Pole_75_deg_Hillshade.asset deleted file mode 100644 index 0e2d42d1e8..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_S_Pole_75_deg_Hillshade/LRO_LOLA_DEM_S_Pole_75_deg_Hillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_LOLA_Shade_SPole75_30mp_v04_EQ", - Name = [[LRO LOLA DEM, S Pole, 75 deg, Hillshade]], - FilePath = asset.localResource("LRO_LOLA_Shade_SPole75_30mp_v04_EQ.vrt"), - Description = [[This is version 4 of the LRO LOLA DEM, S Pole, 75 deg, Hillshade. This is a shaded-relief of a original polar LOLA Digital Elevation Model (DEM). The DEM is a shape map (radius) of the Moon at a resolution 100 meters per pixel, based on altimetry data acquired through Spetember 2011 by the LOLA instrument. The ground tracks were interpolated using the Generic Mapping Tools programs "surface" and "grdblend". Map values are referred to a radius of 1737400 m.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LOLA DEM, S Pole, 75 deg, Hillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_LOLA_Shade_SPole75_30mp_v04_EQ%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LOLA DEM, S Pole, 75 deg, Hillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_S_Pole_75_deg_Hillshade/LRO_LOLA_Shade_SPole75_30mp_v04_EQ.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_S_Pole_75_deg_Hillshade/LRO_LOLA_Shade_SPole75_30mp_v04_EQ.vrt deleted file mode 100644 index f54c8e7793..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_S_Pole_75_deg_Hillshade/LRO_LOLA_Shade_SPole75_30mp_v04_EQ.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon",DATUM["Moon",SPHEROID["Moon",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.3732910156250000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.3732910156250000e-03 - - 0 - Gray - - LRO_LOLA_Shade_SPole75_30mp_v04_EQ.wms - 1 - - - - 0 - - - - Alpha - - LRO_LOLA_Shade_SPole75_30mp_v04_EQ.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_S_Pole_75_deg_Hillshade/LRO_LOLA_Shade_SPole75_30mp_v04_EQ.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_S_Pole_75_deg_Hillshade/LRO_LOLA_Shade_SPole75_30mp_v04_EQ.wms deleted file mode 100644 index cfe310463a..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_S_Pole_75_deg_Hillshade/LRO_LOLA_Shade_SPole75_30mp_v04_EQ.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_LOLA_Shade_SPole75_30mp_v04_EQ/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 9 - top - - - GEOGCS["GCS_Moon",DATUM["Moon",SPHEROID["Moon",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - - 256 - 256 - 1 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_S_Pole_87.5_deg_ColorHillshade/LRO_LOLA_ClrShade_SPole875_5mp_v04_EQ.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_S_Pole_87.5_deg_ColorHillshade/LRO_LOLA_ClrShade_SPole875_5mp_v04_EQ.vrt deleted file mode 100644 index 077e539580..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_S_Pole_87.5_deg_ColorHillshade/LRO_LOLA_ClrShade_SPole875_5mp_v04_EQ.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon",DATUM["Moon",SPHEROID["Moon",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 6.8664550781250000e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -6.8664550781250000e-04 - - 0 - Red - - LRO_LOLA_ClrShade_SPole875_5mp_v04_EQ.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_LOLA_ClrShade_SPole875_5mp_v04_EQ.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_LOLA_ClrShade_SPole875_5mp_v04_EQ.wms - 3 - - - - 0 - - - - Alpha - - LRO_LOLA_ClrShade_SPole875_5mp_v04_EQ.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_S_Pole_87.5_deg_ColorHillshade/LRO_LOLA_DEM_S_Pole_87.5_deg_ColorHillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_S_Pole_87.5_deg_ColorHillshade/LRO_LOLA_DEM_S_Pole_87.5_deg_ColorHillshade.asset deleted file mode 100644 index dd828c1e8e..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_S_Pole_87.5_deg_ColorHillshade/LRO_LOLA_DEM_S_Pole_87.5_deg_ColorHillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_LOLA_ClrShade_SPole875_5mp_v04_EQ", - Name = [[LRO LOLA DEM, S Pole, 87.5 deg, ColorHillshade]], - FilePath = asset.localResource("LRO_LOLA_ClrShade_SPole875_5mp_v04_EQ.vrt"), - Description = [[This is version 4 of the LRO LOLA South Pole 87.5 deg DEM, ColorHillshade. This is a colorized shaded-relief of a original polar LOLA Digital Elevation Model (DEM). The DEM is a shape map (radius) of the Moon at a resolution 100 meters per pixel, based on altimetry data acquired through Spetember 2011 by the LOLA instrument. The ground tracks were interpolated using the Generic Mapping Tools programs "surface" and "grdblend". Map values are referred to a radius of 1737400 m.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LOLA DEM, S Pole, 87.5 deg, ColorHillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_LOLA_ClrShade_SPole875_5mp_v04_EQ%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LOLA DEM, S Pole, 87.5 deg, ColorHillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_S_Pole_87.5_deg_Hillshade/LRO_LOLA_DEM_S_Pole_87.5_deg_Hillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_S_Pole_87.5_deg_Hillshade/LRO_LOLA_DEM_S_Pole_87.5_deg_Hillshade.asset deleted file mode 100644 index c8a42d9a75..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_S_Pole_87.5_deg_Hillshade/LRO_LOLA_DEM_S_Pole_87.5_deg_Hillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_LOLA_Shade_SPole875_5mp_v04_EQ", - Name = [[LRO LOLA DEM, S Pole, 87.5 deg, Hillshade]], - FilePath = asset.localResource("LRO_LOLA_Shade_SPole875_5mp_v04_EQ.vrt"), - Description = [[This is version 4 of the LRO LOLA DEM, S Pole, 87.5 deg, Hillshade. This is a shaded-relief of a original polar LOLA Digital Elevation Model (DEM). The DEM is a shape map (radius) of the Moon at a resolution 100 meters per pixel, based on altimetry data acquired through Spetember 2011 by the LOLA instrument. The ground tracks were interpolated using the Generic Mapping Tools programs "surface" and "grdblend". Map values are referred to a radius of 1737400 m.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LOLA DEM, S Pole, 87.5 deg, Hillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_LOLA_Shade_SPole875_5mp_v04_EQ%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LOLA DEM, S Pole, 87.5 deg, Hillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_S_Pole_87.5_deg_Hillshade/LRO_LOLA_Shade_SPole875_5mp_v04_EQ.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_S_Pole_87.5_deg_Hillshade/LRO_LOLA_Shade_SPole875_5mp_v04_EQ.vrt deleted file mode 100644 index d3f6590984..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_S_Pole_87.5_deg_Hillshade/LRO_LOLA_Shade_SPole875_5mp_v04_EQ.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon",DATUM["Moon",SPHEROID["Moon",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 6.8664550781250000e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -6.8664550781250000e-04 - - 0 - Gray - - LRO_LOLA_Shade_SPole875_5mp_v04_EQ.wms - 1 - - - - 0 - - - - Alpha - - LRO_LOLA_Shade_SPole875_5mp_v04_EQ.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_S_Pole_87.5_deg_Hillshade/LRO_LOLA_Shade_SPole875_5mp_v04_EQ.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_S_Pole_87.5_deg_Hillshade/LRO_LOLA_Shade_SPole875_5mp_v04_EQ.wms deleted file mode 100644 index 358215735a..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_DEM_S_Pole_87.5_deg_Hillshade/LRO_LOLA_Shade_SPole875_5mp_v04_EQ.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_LOLA_Shade_SPole875_5mp_v04_EQ/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 10 - top - - - GEOGCS["GCS_Moon",DATUM["Moon",SPHEROID["Moon",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - - 256 - 256 - 1 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_and_Kaguya_TC_Color_Hillshade_512ppd/LRO_LOLAKaguya_ClrHillshade_60N60S_512ppd.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_and_Kaguya_TC_Color_Hillshade_512ppd/LRO_LOLAKaguya_ClrHillshade_60N60S_512ppd.vrt deleted file mode 100644 index a33cf5ed91..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_and_Kaguya_TC_Color_Hillshade_512ppd/LRO_LOLAKaguya_ClrHillshade_60N60S_512ppd.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 3.4332275390625000e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -3.4332275390625000e-04 - - 0 - Red - - LRO_LOLAKaguya_ClrHillshade_60N60S_512ppd.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_LOLAKaguya_ClrHillshade_60N60S_512ppd.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_LOLAKaguya_ClrHillshade_60N60S_512ppd.wms - 3 - - - - 0 - - - - Alpha - - LRO_LOLAKaguya_ClrHillshade_60N60S_512ppd.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_and_Kaguya_TC_Color_Hillshade_512ppd/LRO_LOLA_and_Kaguya_TC_Color_Hillshade_512ppd.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_and_Kaguya_TC_Color_Hillshade_512ppd/LRO_LOLA_and_Kaguya_TC_Color_Hillshade_512ppd.asset deleted file mode 100644 index 90177d15f5..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_and_Kaguya_TC_Color_Hillshade_512ppd/LRO_LOLA_and_Kaguya_TC_Color_Hillshade_512ppd.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_LOLAKaguya_ClrHillshade_60N60S_512ppd", - Name = [[LRO LOLA and Kaguya TC Color Hillshade 512ppd]], - FilePath = asset.localResource("LRO_LOLAKaguya_ClrHillshade_60N60S_512ppd.vrt"), - Description = [[This is a colorized shaded-relief representation of the Lunar surface generated from the LOLA and Kaguya merged DEM product. The LOLA and Kaguya Teams have created an improved lunar digital elevation model (DEM) covering latitudes within ±60°, at a horizontal resolution of 512 pixels per degree (∼59 m at the equator) and a typical vertical accuracy ∼3 to 4 m. This DEM is constructed from ∼4.5×109 geodetically-accurate topographic heights from the Lunar Orbiter Laser Altimeter (LOLA) onboard the Lunar Reconnaissance Orbiter, to which we co-registered 43,200 stereo-derived DEMs (each 1×1 degree) from the SELENE Terrain Camera (TC) (∼1010 pixels total). After co-registration, approximately 90% of the TC DEMs show root-mean-square vertical residuals with the LOLA data of <5 m compared to ∼50% prior to co-registration. We use the co-registered TC data to estimate and correct orbital and pointing geolocation errors from the LOLA altimetric profiles (typically amounting to <10 m horizontally and <1 m vertically). By combining both co-registered datasets, we obtain a near-global DEM with high geodetic accuracy, and without the need for surface interpolation. We evaluate the resulting LOLA + TC merged DEM (designated as “SLDEM2015”) with particular attention to quantifying seams and crossover errors. The legend coveys the mapping colors to elevation values (meters) and map values are referred to a radius of 1737400 m.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LOLA and Kaguya TC Color Hillshade 512ppd]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_LOLAKaguya_ClrHillshade_60N60S_512ppd%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LOLA and Kaguya TC Color Hillshade 512ppd layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_and_Kaguya_TC_Hillshade_512ppd/LRO_LOLAKaguya_Hillshade_60N60S_512ppd.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_and_Kaguya_TC_Hillshade_512ppd/LRO_LOLAKaguya_Hillshade_60N60S_512ppd.vrt deleted file mode 100644 index 48be4d4687..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_and_Kaguya_TC_Hillshade_512ppd/LRO_LOLAKaguya_Hillshade_60N60S_512ppd.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 3.4332275390625000e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -3.4332275390625000e-04 - - 0 - Gray - - LRO_LOLAKaguya_Hillshade_60N60S_512ppd.wms - 1 - - - - 0 - - - - Alpha - - LRO_LOLAKaguya_Hillshade_60N60S_512ppd.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_and_Kaguya_TC_Hillshade_512ppd/LRO_LOLA_and_Kaguya_TC_Hillshade_512ppd.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_and_Kaguya_TC_Hillshade_512ppd/LRO_LOLA_and_Kaguya_TC_Hillshade_512ppd.asset deleted file mode 100644 index 138c928850..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LOLA_and_Kaguya_TC_Hillshade_512ppd/LRO_LOLA_and_Kaguya_TC_Hillshade_512ppd.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_LOLAKaguya_Hillshade_60N60S_512ppd", - Name = [[LRO LOLA and Kaguya TC Hillshade 512ppd]], - FilePath = asset.localResource("LRO_LOLAKaguya_Hillshade_60N60S_512ppd.vrt"), - Description = [[This is a shaded-relief representation of the Lunar surface generated from the LOLA and Kaguya merged DEM product. The LOLA and Kaguya Teams have created an improved lunar digital elevation model (DEM) covering latitudes within ±60°, at a horizontal resolution of 512 pixels per degree (∼59 m at the equator) and a typical vertical accuracy ∼3 to 4 m. This DEM is constructed from ∼4.5×109 geodetically-accurate topographic heights from the Lunar Orbiter Laser Altimeter (LOLA) onboard the Lunar Reconnaissance Orbiter, to which we co-registered 43,200 stereo-derived DEMs (each 1×1 degree) from the SELENE Terrain Camera (TC) (∼1010 pixels total). After co-registration, approximately 90% of the TC DEMs show root-mean-square vertical residuals with the LOLA data of <5 m compared to ∼50% prior to co-registration. We use the co-registered TC data to estimate and correct orbital and pointing geolocation errors from the LOLA altimetric profiles (typically amounting to <10 m horizontally and <1 m vertically). By combining both co-registered datasets, we obtain a near-global DEM with high geodetic accuracy, and without the need for surface interpolation. We evaluate the resulting LOLA + TC merged DEM (designated as “SLDEM2015”) with particular attention to quantifying seams and crossover errors. Elevation values are in meters and map values are referred to a radius of 1737400 m.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LOLA and Kaguya TC Hillshade 512ppd]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_LOLAKaguya_Hillshade_60N60S_512ppd%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LOLA and Kaguya TC Hillshade 512ppd layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance.asset new file mode 100644 index 0000000000..162ed62c7f --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance.asset @@ -0,0 +1,254 @@ +-- This file was automatically generated using a script found at +-- https://github.com/OpenSpace/scripts/treks-to-openspace. See the README.md file +-- in that repository for more information on how to run the script to update these +-- files. In particular in the case of errors, prefer to change that script rather +-- than the individual files + +local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier + +local treks_LRO_NAC_CratAbnd_17S173E_150cmp = { + Identifier = "LRO_NAC_CratAbnd_17S173E_150cmp", + Name = [[LRO LROC Crater Abundance, Aitken Crater]], + FilePath = asset.localResource("LRO_LROC_Crater_Abundance/Aitken_Crater.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_CratAbnd_13S358E_2mp = { + Identifier = "LRO_NAC_CratAbnd_13S358E_2mp", + Name = [[LRO LROC Crater Abundance, Alphonsus Crater]], + FilePath = asset.localResource("LRO_LROC_Crater_Abundance/Alphonsus_Crater.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_CratAbnd_73N350E_150cmp = { + Identifier = "LRO_NAC_CratAbnd_73N350E_150cmp", + Name = [[LRO LROC Crater Abundance, Anaxagoras Crater]], + FilePath = asset.localResource("LRO_LROC_Crater_Abundance/Anaxagoras_Crater.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_CratAbnd_26N004E_150cmp = { + Identifier = "LRO_NAC_CratAbnd_26N004E_150cmp", + Name = [[LRO LROC Crater Abundance, Apollo 15]], + FilePath = asset.localResource("LRO_LROC_Crater_Abundance/Apollo_15.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_CratAbnd_09S015E_150cmp = { + Identifier = "LRO_NAC_CratAbnd_09S015E_150cmp", + Name = [[LRO LROC Crater Abundance, Apollo 16]], + FilePath = asset.localResource("LRO_LROC_Crater_Abundance/Apollo_16.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_CratAbnd_37S206E_150cmp = { + Identifier = "LRO_NAC_CratAbnd_37S206E_150cmp", + Name = [[LRO LROC Crater Abundance, Apollo Basin]], + FilePath = asset.localResource("LRO_LROC_Crater_Abundance/Apollo_Basin.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_CratAbnd_25N311E_2mp = { + Identifier = "LRO_NAC_CratAbnd_25N311E_2mp", + Name = [[LRO LROC Crater Abundance, Aristarchus 1]], + FilePath = asset.localResource("LRO_LROC_Crater_Abundance/Aristarchus_1.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_CratAbnd_28N307E_150cmp = { + Identifier = "LRO_NAC_CratAbnd_28N307E_150cmp", + Name = [[LRO LROC Crater Abundance, Aristarchus 2]], + FilePath = asset.localResource("LRO_LROC_Crater_Abundance/Aristarchus_2.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_CratAbnd_19S070E_150cmp = { + Identifier = "LRO_NAC_CratAbnd_19S070E_150cmp", + Name = [[LRO LROC Crater Abundance, Balmer Basin]], + FilePath = asset.localResource("LRO_LROC_Crater_Abundance/Balmer_Basin.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_CratAbnd_20S337E_400cmp = { + Identifier = "LRO_NAC_CratAbnd_20S337E_400cmp", + Name = [[LRO LROC Crater Abundance, Bullialdus Crater]], + FilePath = asset.localResource("LRO_LROC_Crater_Abundance/Bullialdus_Crater.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_CratAbnd_36N320E_2mp = { + Identifier = "LRO_NAC_CratAbnd_36N320E_2mp", + Name = [[LRO LROC Crater Abundance, Gruithuisen Domes]], + FilePath = asset.localResource("LRO_LROC_Crater_Abundance/Gruithuisen_Domes.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_CratAbnd_00N234E_150cmp = { + Identifier = "LRO_NAC_CratAbnd_00N234E_150cmp", + Name = [[LRO LROC Crater Abundance, Hertzsprung]], + FilePath = asset.localResource("LRO_LROC_Crater_Abundance/Hertzsprung.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_CratAbnd_08N332E_2mp = { + Identifier = "LRO_NAC_CratAbnd_08N332E_2mp", + Name = [[LRO LROC Crater Abundance, Hortensius Domes]], + FilePath = asset.localResource("LRO_LROC_Crater_Abundance/Hortensius_Domes.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_CratAbnd_06N120E_200cmp = { + Identifier = "LRO_NAC_CratAbnd_06N120E_200cmp", + Name = [[LRO LROC Crater Abundance, King Crater]], + FilePath = asset.localResource("LRO_LROC_Crater_Abundance/King_Crater.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_CratAbnd_32N292E_2mp = { + Identifier = "LRO_NAC_CratAbnd_32N292E_2mp", + Name = [[LRO LROC Crater Abundance, Lichtenberg Crater]], + FilePath = asset.localResource("LRO_LROC_Crater_Abundance/Lichtenberg_Crater.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_CratAbnd_10N058E_150cmp = { + Identifier = "LRO_NAC_CratAbnd_10N058E_150cmp", + Name = [[LRO LROC Crater Abundance, Mare Crisium]], + FilePath = asset.localResource("LRO_LROC_Crater_Abundance/Mare_Crisium.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_CratAbnd_16S041E_150cmp = { + Identifier = "LRO_NAC_CratAbnd_16S041E_150cmp", + Name = [[LRO LROC Crater Abundance, Montes Pyrenaeus]], + FilePath = asset.localResource("LRO_LROC_Crater_Abundance/Montes_Pyrenaeus.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_CratAbnd_26S265E_200cmp = { + Identifier = "LRO_NAC_CratAbnd_26S265E_200cmp", + Name = [[LRO LROC Crater Abundance, Orientale 1]], + FilePath = asset.localResource("LRO_LROC_Crater_Abundance/Orientale_1.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_CratAbnd_53N354E_150cmp = { + Identifier = "LRO_NAC_CratAbnd_53N354E_150cmp", + Name = [[LRO LROC Crater Abundance, Plato Ejecta]], + FilePath = asset.localResource("LRO_LROC_Crater_Abundance/Plato_Ejecta.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_CratAbnd_60S200E_150cmp = { + Identifier = "LRO_NAC_CratAbnd_60S200E_150cmp", + Name = [[LRO LROC Crater Abundance, South Pole-Aitken Basin Interior]], + FilePath = asset.localResource("LRO_LROC_Crater_Abundance/South_Pole-Aitken_Basin_Interior.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_CratAbnd_02S167E_150cmp = { + Identifier = "LRO_NAC_CratAbnd_02S167E_150cmp", + Name = [[LRO LROC Crater Abundance, Stratton (Dewar) High Fe Anomaly]], + FilePath = asset.localResource("LRO_LROC_Crater_Abundance/Stratton_Dewar_High_Fe_Anomaly.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_CratAbnd_20N010E_2mp = { + Identifier = "LRO_NAC_CratAbnd_20N010E_2mp", + Name = [[LRO LROC Crater Abundance, Sulpicius Gallus]], + FilePath = asset.localResource("LRO_LROC_Crater_Abundance/Sulpicius_Gallus.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_CratAbnd_43S349E_150cmp = { + Identifier = "LRO_NAC_CratAbnd_43S349E_150cmp", + Name = [[LRO LROC Crater Abundance, Tycho Crater]], + FilePath = asset.localResource("LRO_LROC_Crater_Abundance/Tycho_Crater.vrt"), + Description = [[]] +} + +asset.onInitialize(function() + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_CratAbnd_17S173E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_CratAbnd_13S358E_2mp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_CratAbnd_73N350E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_CratAbnd_26N004E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_CratAbnd_09S015E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_CratAbnd_37S206E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_CratAbnd_25N311E_2mp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_CratAbnd_28N307E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_CratAbnd_19S070E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_CratAbnd_20S337E_400cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_CratAbnd_36N320E_2mp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_CratAbnd_00N234E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_CratAbnd_08N332E_2mp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_CratAbnd_06N120E_200cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_CratAbnd_32N292E_2mp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_CratAbnd_10N058E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_CratAbnd_16S041E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_CratAbnd_26S265E_200cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_CratAbnd_53N354E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_CratAbnd_60S200E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_CratAbnd_02S167E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_CratAbnd_20N010E_2mp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_CratAbnd_43S349E_150cmp) +end) + +asset.onDeinitialize(function() + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_CratAbnd_17S173E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_CratAbnd_13S358E_2mp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_CratAbnd_73N350E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_CratAbnd_26N004E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_CratAbnd_09S015E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_CratAbnd_37S206E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_CratAbnd_25N311E_2mp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_CratAbnd_28N307E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_CratAbnd_19S070E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_CratAbnd_20S337E_400cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_CratAbnd_36N320E_2mp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_CratAbnd_00N234E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_CratAbnd_08N332E_2mp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_CratAbnd_06N120E_200cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_CratAbnd_32N292E_2mp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_CratAbnd_10N058E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_CratAbnd_16S041E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_CratAbnd_26S265E_200cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_CratAbnd_53N354E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_CratAbnd_60S200E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_CratAbnd_02S167E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_CratAbnd_20N010E_2mp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_CratAbnd_43S349E_150cmp") +end) + +asset.export("LRO_NAC_CratAbnd_17S173E_150cmp", treks_LRO_NAC_CratAbnd_17S173E_150cmp) +asset.export("LRO_NAC_CratAbnd_13S358E_2mp", treks_LRO_NAC_CratAbnd_13S358E_2mp) +asset.export("LRO_NAC_CratAbnd_73N350E_150cmp", treks_LRO_NAC_CratAbnd_73N350E_150cmp) +asset.export("LRO_NAC_CratAbnd_26N004E_150cmp", treks_LRO_NAC_CratAbnd_26N004E_150cmp) +asset.export("LRO_NAC_CratAbnd_09S015E_150cmp", treks_LRO_NAC_CratAbnd_09S015E_150cmp) +asset.export("LRO_NAC_CratAbnd_37S206E_150cmp", treks_LRO_NAC_CratAbnd_37S206E_150cmp) +asset.export("LRO_NAC_CratAbnd_25N311E_2mp", treks_LRO_NAC_CratAbnd_25N311E_2mp) +asset.export("LRO_NAC_CratAbnd_28N307E_150cmp", treks_LRO_NAC_CratAbnd_28N307E_150cmp) +asset.export("LRO_NAC_CratAbnd_19S070E_150cmp", treks_LRO_NAC_CratAbnd_19S070E_150cmp) +asset.export("LRO_NAC_CratAbnd_20S337E_400cmp", treks_LRO_NAC_CratAbnd_20S337E_400cmp) +asset.export("LRO_NAC_CratAbnd_36N320E_2mp", treks_LRO_NAC_CratAbnd_36N320E_2mp) +asset.export("LRO_NAC_CratAbnd_00N234E_150cmp", treks_LRO_NAC_CratAbnd_00N234E_150cmp) +asset.export("LRO_NAC_CratAbnd_08N332E_2mp", treks_LRO_NAC_CratAbnd_08N332E_2mp) +asset.export("LRO_NAC_CratAbnd_06N120E_200cmp", treks_LRO_NAC_CratAbnd_06N120E_200cmp) +asset.export("LRO_NAC_CratAbnd_32N292E_2mp", treks_LRO_NAC_CratAbnd_32N292E_2mp) +asset.export("LRO_NAC_CratAbnd_10N058E_150cmp", treks_LRO_NAC_CratAbnd_10N058E_150cmp) +asset.export("LRO_NAC_CratAbnd_16S041E_150cmp", treks_LRO_NAC_CratAbnd_16S041E_150cmp) +asset.export("LRO_NAC_CratAbnd_26S265E_200cmp", treks_LRO_NAC_CratAbnd_26S265E_200cmp) +asset.export("LRO_NAC_CratAbnd_53N354E_150cmp", treks_LRO_NAC_CratAbnd_53N354E_150cmp) +asset.export("LRO_NAC_CratAbnd_60S200E_150cmp", treks_LRO_NAC_CratAbnd_60S200E_150cmp) +asset.export("LRO_NAC_CratAbnd_02S167E_150cmp", treks_LRO_NAC_CratAbnd_02S167E_150cmp) +asset.export("LRO_NAC_CratAbnd_20N010E_2mp", treks_LRO_NAC_CratAbnd_20N010E_2mp) +asset.export("LRO_NAC_CratAbnd_43S349E_150cmp", treks_LRO_NAC_CratAbnd_43S349E_150cmp) + + +asset.meta = { + Name = [[NASA Treks Layers for Moon LRO_LROC_Crater_Abundance], + Version = "1.0", + Author = "NASA/Treks", + URL = "https://trek.nasa.gov/moon", + License = "NASA/Treks", + Description = [[LRO_LROC_Crater_Abundance layers from NASA/Treks for Moon]] +} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Aitken_Crater.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Aitken_Crater.vrt new file mode 100644 index 0000000000..9d7c54508c --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Aitken_Crater.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Aitken_Crater.wms + 1 + + + + 0 + + + + 0 + Green + + Aitken_Crater.wms + 2 + + + + 0 + + + + 0 + Blue + + Aitken_Crater.wms + 3 + + + + 0 + + + + Alpha + + Aitken_Crater.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Aitken_Crater/LRO_NAC_CratAbnd_17S173E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Aitken_Crater.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Aitken_Crater/LRO_NAC_CratAbnd_17S173E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Aitken_Crater.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Alphonsus_Crater.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Alphonsus_Crater.vrt new file mode 100644 index 0000000000..d045a2621c --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Alphonsus_Crater.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Alphonsus_Crater.wms + 1 + + + + 0 + + + + 0 + Green + + Alphonsus_Crater.wms + 2 + + + + 0 + + + + 0 + Blue + + Alphonsus_Crater.wms + 3 + + + + 0 + + + + Alpha + + Alphonsus_Crater.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Alphonsus_Crater/LRO_NAC_CratAbnd_13S358E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Alphonsus_Crater.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Alphonsus_Crater/LRO_NAC_CratAbnd_13S358E_2mp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Alphonsus_Crater.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Anaxagoras_Crater.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Anaxagoras_Crater.vrt new file mode 100644 index 0000000000..235a71373e --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Anaxagoras_Crater.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Anaxagoras_Crater.wms + 1 + + + + 0 + + + + 0 + Green + + Anaxagoras_Crater.wms + 2 + + + + 0 + + + + 0 + Blue + + Anaxagoras_Crater.wms + 3 + + + + 0 + + + + Alpha + + Anaxagoras_Crater.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Anaxagoras_Crater/LRO_NAC_CratAbnd_73N350E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Anaxagoras_Crater.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Anaxagoras_Crater/LRO_NAC_CratAbnd_73N350E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Anaxagoras_Crater.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Apollo_15.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Apollo_15.vrt new file mode 100644 index 0000000000..c328339b62 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Apollo_15.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Apollo_15.wms + 1 + + + + 0 + + + + 0 + Green + + Apollo_15.wms + 2 + + + + 0 + + + + 0 + Blue + + Apollo_15.wms + 3 + + + + 0 + + + + Alpha + + Apollo_15.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Apollo_15/LRO_NAC_CratAbnd_26N004E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Apollo_15.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Apollo_15/LRO_NAC_CratAbnd_26N004E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Apollo_15.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Apollo_16.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Apollo_16.vrt new file mode 100644 index 0000000000..4437127cc8 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Apollo_16.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Apollo_16.wms + 1 + + + + 0 + + + + 0 + Green + + Apollo_16.wms + 2 + + + + 0 + + + + 0 + Blue + + Apollo_16.wms + 3 + + + + 0 + + + + Alpha + + Apollo_16.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Apollo_16/LRO_NAC_CratAbnd_09S015E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Apollo_16.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Apollo_16/LRO_NAC_CratAbnd_09S015E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Apollo_16.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Apollo_Basin.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Apollo_Basin.vrt new file mode 100644 index 0000000000..f655105be7 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Apollo_Basin.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Apollo_Basin.wms + 1 + + + + 0 + + + + 0 + Green + + Apollo_Basin.wms + 2 + + + + 0 + + + + 0 + Blue + + Apollo_Basin.wms + 3 + + + + 0 + + + + Alpha + + Apollo_Basin.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Apollo_Basin/LRO_NAC_CratAbnd_37S206E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Apollo_Basin.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Apollo_Basin/LRO_NAC_CratAbnd_37S206E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Apollo_Basin.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Aristarchus_1.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Aristarchus_1.vrt new file mode 100644 index 0000000000..7796863a5c --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Aristarchus_1.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Aristarchus_1.wms + 1 + + + + 0 + + + + 0 + Green + + Aristarchus_1.wms + 2 + + + + 0 + + + + 0 + Blue + + Aristarchus_1.wms + 3 + + + + 0 + + + + Alpha + + Aristarchus_1.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Aristarchus_1/LRO_NAC_CratAbnd_25N311E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Aristarchus_1.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Aristarchus_1/LRO_NAC_CratAbnd_25N311E_2mp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Aristarchus_1.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Aristarchus_2.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Aristarchus_2.vrt new file mode 100644 index 0000000000..93d6a7dd6d --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Aristarchus_2.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Aristarchus_2.wms + 1 + + + + 0 + + + + 0 + Green + + Aristarchus_2.wms + 2 + + + + 0 + + + + 0 + Blue + + Aristarchus_2.wms + 3 + + + + 0 + + + + Alpha + + Aristarchus_2.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Aristarchus_2/LRO_NAC_CratAbnd_28N307E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Aristarchus_2.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Aristarchus_2/LRO_NAC_CratAbnd_28N307E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Aristarchus_2.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Balmer_Basin.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Balmer_Basin.vrt new file mode 100644 index 0000000000..df36adefb6 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Balmer_Basin.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Balmer_Basin.wms + 1 + + + + 0 + + + + 0 + Green + + Balmer_Basin.wms + 2 + + + + 0 + + + + 0 + Blue + + Balmer_Basin.wms + 3 + + + + 0 + + + + Alpha + + Balmer_Basin.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Balmer_Basin/LRO_NAC_CratAbnd_19S070E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Balmer_Basin.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Balmer_Basin/LRO_NAC_CratAbnd_19S070E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Balmer_Basin.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Bullialdus_Crater.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Bullialdus_Crater.vrt new file mode 100644 index 0000000000..678722ae68 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Bullialdus_Crater.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Bullialdus_Crater.wms + 1 + + + + 0 + + + + 0 + Green + + Bullialdus_Crater.wms + 2 + + + + 0 + + + + 0 + Blue + + Bullialdus_Crater.wms + 3 + + + + 0 + + + + Alpha + + Bullialdus_Crater.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Bullialdus_Crater/LRO_NAC_CratAbnd_20S337E_400cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Bullialdus_Crater.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Bullialdus_Crater/LRO_NAC_CratAbnd_20S337E_400cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Bullialdus_Crater.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Gruithuisen_Domes.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Gruithuisen_Domes.vrt new file mode 100644 index 0000000000..0ab681bccf --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Gruithuisen_Domes.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Gruithuisen_Domes.wms + 1 + + + + 0 + + + + 0 + Green + + Gruithuisen_Domes.wms + 2 + + + + 0 + + + + 0 + Blue + + Gruithuisen_Domes.wms + 3 + + + + 0 + + + + Alpha + + Gruithuisen_Domes.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Gruithuisen_Domes/LRO_NAC_CratAbnd_36N320E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Gruithuisen_Domes.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Gruithuisen_Domes/LRO_NAC_CratAbnd_36N320E_2mp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Gruithuisen_Domes.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Hertzsprung.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Hertzsprung.vrt new file mode 100644 index 0000000000..ad731212e4 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Hertzsprung.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Hertzsprung.wms + 1 + + + + 0 + + + + 0 + Green + + Hertzsprung.wms + 2 + + + + 0 + + + + 0 + Blue + + Hertzsprung.wms + 3 + + + + 0 + + + + Alpha + + Hertzsprung.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hertzsprung/LRO_NAC_CratAbnd_00N234E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Hertzsprung.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hertzsprung/LRO_NAC_CratAbnd_00N234E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Hertzsprung.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Hortensius_Domes.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Hortensius_Domes.vrt new file mode 100644 index 0000000000..19f2fa78ca --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Hortensius_Domes.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Hortensius_Domes.wms + 1 + + + + 0 + + + + 0 + Green + + Hortensius_Domes.wms + 2 + + + + 0 + + + + 0 + Blue + + Hortensius_Domes.wms + 3 + + + + 0 + + + + Alpha + + Hortensius_Domes.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hortensius_Domes/LRO_NAC_CratAbnd_08N332E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Hortensius_Domes.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hortensius_Domes/LRO_NAC_CratAbnd_08N332E_2mp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Hortensius_Domes.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/King_Crater.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/King_Crater.vrt new file mode 100644 index 0000000000..91c2894c94 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/King_Crater.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + King_Crater.wms + 1 + + + + 0 + + + + 0 + Green + + King_Crater.wms + 2 + + + + 0 + + + + 0 + Blue + + King_Crater.wms + 3 + + + + 0 + + + + Alpha + + King_Crater.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_King_Crater/LRO_NAC_CratAbnd_06N120E_200cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/King_Crater.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_King_Crater/LRO_NAC_CratAbnd_06N120E_200cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/King_Crater.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Lichtenberg_Crater.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Lichtenberg_Crater.vrt new file mode 100644 index 0000000000..8584f2c304 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Lichtenberg_Crater.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Lichtenberg_Crater.wms + 1 + + + + 0 + + + + 0 + Green + + Lichtenberg_Crater.wms + 2 + + + + 0 + + + + 0 + Blue + + Lichtenberg_Crater.wms + 3 + + + + 0 + + + + Alpha + + Lichtenberg_Crater.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Lichtenberg_Crater/LRO_NAC_CratAbnd_32N292E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Lichtenberg_Crater.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Lichtenberg_Crater/LRO_NAC_CratAbnd_32N292E_2mp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Lichtenberg_Crater.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Mare_Crisium.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Mare_Crisium.vrt new file mode 100644 index 0000000000..7d6e778cc9 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Mare_Crisium.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Mare_Crisium.wms + 1 + + + + 0 + + + + 0 + Green + + Mare_Crisium.wms + 2 + + + + 0 + + + + 0 + Blue + + Mare_Crisium.wms + 3 + + + + 0 + + + + Alpha + + Mare_Crisium.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Mare_Crisium/LRO_NAC_CratAbnd_10N058E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Mare_Crisium.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Mare_Crisium/LRO_NAC_CratAbnd_10N058E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Mare_Crisium.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Montes_Pyrenaeus.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Montes_Pyrenaeus.vrt new file mode 100644 index 0000000000..f515ff3f8e --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Montes_Pyrenaeus.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Montes_Pyrenaeus.wms + 1 + + + + 0 + + + + 0 + Green + + Montes_Pyrenaeus.wms + 2 + + + + 0 + + + + 0 + Blue + + Montes_Pyrenaeus.wms + 3 + + + + 0 + + + + Alpha + + Montes_Pyrenaeus.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Montes_Pyrenaeus/LRO_NAC_CratAbnd_16S041E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Montes_Pyrenaeus.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Montes_Pyrenaeus/LRO_NAC_CratAbnd_16S041E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Montes_Pyrenaeus.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Orientale_1.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Orientale_1.vrt new file mode 100644 index 0000000000..7828a2e6b2 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Orientale_1.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Orientale_1.wms + 1 + + + + 0 + + + + 0 + Green + + Orientale_1.wms + 2 + + + + 0 + + + + 0 + Blue + + Orientale_1.wms + 3 + + + + 0 + + + + Alpha + + Orientale_1.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Orientale_1/LRO_NAC_CratAbnd_26S265E_200cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Orientale_1.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Orientale_1/LRO_NAC_CratAbnd_26S265E_200cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Orientale_1.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Plato_Ejecta.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Plato_Ejecta.vrt new file mode 100644 index 0000000000..a031a2e962 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Plato_Ejecta.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Plato_Ejecta.wms + 1 + + + + 0 + + + + 0 + Green + + Plato_Ejecta.wms + 2 + + + + 0 + + + + 0 + Blue + + Plato_Ejecta.wms + 3 + + + + 0 + + + + Alpha + + Plato_Ejecta.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Plato_Ejecta/LRO_NAC_CratAbnd_53N354E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Plato_Ejecta.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Plato_Ejecta/LRO_NAC_CratAbnd_53N354E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Plato_Ejecta.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/South_Pole-Aitken_Basin_Interior.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/South_Pole-Aitken_Basin_Interior.vrt new file mode 100644 index 0000000000..2d8cdd4e12 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/South_Pole-Aitken_Basin_Interior.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + South_Pole-Aitken_Basin_Interior.wms + 1 + + + + 0 + + + + 0 + Green + + South_Pole-Aitken_Basin_Interior.wms + 2 + + + + 0 + + + + 0 + Blue + + South_Pole-Aitken_Basin_Interior.wms + 3 + + + + 0 + + + + Alpha + + South_Pole-Aitken_Basin_Interior.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_South_Pole-Aitken_Basin_Interior/LRO_NAC_CratAbnd_60S200E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/South_Pole-Aitken_Basin_Interior.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_South_Pole-Aitken_Basin_Interior/LRO_NAC_CratAbnd_60S200E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/South_Pole-Aitken_Basin_Interior.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Stratton_Dewar_High_Fe_Anomaly.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Stratton_Dewar_High_Fe_Anomaly.vrt new file mode 100644 index 0000000000..9ea8239472 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Stratton_Dewar_High_Fe_Anomaly.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Stratton_Dewar_High_Fe_Anomaly.wms + 1 + + + + 0 + + + + 0 + Green + + Stratton_Dewar_High_Fe_Anomaly.wms + 2 + + + + 0 + + + + 0 + Blue + + Stratton_Dewar_High_Fe_Anomaly.wms + 3 + + + + 0 + + + + Alpha + + Stratton_Dewar_High_Fe_Anomaly.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Stratton_(Dewar)_High_Fe_Anomaly/LRO_NAC_CratAbnd_02S167E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Stratton_Dewar_High_Fe_Anomaly.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Stratton_(Dewar)_High_Fe_Anomaly/LRO_NAC_CratAbnd_02S167E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Stratton_Dewar_High_Fe_Anomaly.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Sulpicius_Gallus.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Sulpicius_Gallus.vrt new file mode 100644 index 0000000000..a13f1c4a0a --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Sulpicius_Gallus.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Sulpicius_Gallus.wms + 1 + + + + 0 + + + + 0 + Green + + Sulpicius_Gallus.wms + 2 + + + + 0 + + + + 0 + Blue + + Sulpicius_Gallus.wms + 3 + + + + 0 + + + + Alpha + + Sulpicius_Gallus.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Sulpicius_Gallus/LRO_NAC_CratAbnd_20N010E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Sulpicius_Gallus.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Sulpicius_Gallus/LRO_NAC_CratAbnd_20N010E_2mp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Sulpicius_Gallus.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Tycho_Crater.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Tycho_Crater.vrt new file mode 100644 index 0000000000..201800be96 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Tycho_Crater.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Tycho_Crater.wms + 1 + + + + 0 + + + + 0 + Green + + Tycho_Crater.wms + 2 + + + + 0 + + + + 0 + Blue + + Tycho_Crater.wms + 3 + + + + 0 + + + + Alpha + + Tycho_Crater.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Tycho_Crater/LRO_NAC_CratAbnd_43S349E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Tycho_Crater.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Tycho_Crater/LRO_NAC_CratAbnd_43S349E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance/Tycho_Crater.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Aitken_Crater/LRO_LROC_Crater_Abundance_Aitken_Crater.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Aitken_Crater/LRO_LROC_Crater_Abundance_Aitken_Crater.asset deleted file mode 100644 index f8926e87df..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Aitken_Crater/LRO_LROC_Crater_Abundance_Aitken_Crater.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_CratAbnd_17S173E_150cmp", - Name = [[LRO LROC Crater Abundance, Aitken Crater]], - FilePath = asset.localResource("LRO_NAC_CratAbnd_17S173E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Crater Abundance, Aitken Crater]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_CratAbnd_17S173E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Crater Abundance, Aitken Crater layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Aitken_Crater/LRO_NAC_CratAbnd_17S173E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Aitken_Crater/LRO_NAC_CratAbnd_17S173E_150cmp.vrt deleted file mode 100644 index 7bf8c53cf3..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Aitken_Crater/LRO_NAC_CratAbnd_17S173E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_CratAbnd_17S173E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_CratAbnd_17S173E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_CratAbnd_17S173E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_CratAbnd_17S173E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Alphonsus_Crater/LRO_LROC_Crater_Abundance_Alphonsus_Crater.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Alphonsus_Crater/LRO_LROC_Crater_Abundance_Alphonsus_Crater.asset deleted file mode 100644 index 2ecaad3082..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Alphonsus_Crater/LRO_LROC_Crater_Abundance_Alphonsus_Crater.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_CratAbnd_13S358E_2mp", - Name = [[LRO LROC Crater Abundance, Alphonsus Crater]], - FilePath = asset.localResource("LRO_NAC_CratAbnd_13S358E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Crater Abundance, Alphonsus Crater]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_CratAbnd_13S358E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Crater Abundance, Alphonsus Crater layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Alphonsus_Crater/LRO_NAC_CratAbnd_13S358E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Alphonsus_Crater/LRO_NAC_CratAbnd_13S358E_2mp.vrt deleted file mode 100644 index f07606e7fa..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Alphonsus_Crater/LRO_NAC_CratAbnd_13S358E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_CratAbnd_13S358E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_CratAbnd_13S358E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_CratAbnd_13S358E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_CratAbnd_13S358E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Anaxagoras_Crater/LRO_LROC_Crater_Abundance_Anaxagoras_Crater.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Anaxagoras_Crater/LRO_LROC_Crater_Abundance_Anaxagoras_Crater.asset deleted file mode 100644 index ad0d47cad3..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Anaxagoras_Crater/LRO_LROC_Crater_Abundance_Anaxagoras_Crater.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_CratAbnd_73N350E_150cmp", - Name = [[LRO LROC Crater Abundance, Anaxagoras Crater]], - FilePath = asset.localResource("LRO_NAC_CratAbnd_73N350E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Crater Abundance, Anaxagoras Crater]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_CratAbnd_73N350E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Crater Abundance, Anaxagoras Crater layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Anaxagoras_Crater/LRO_NAC_CratAbnd_73N350E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Anaxagoras_Crater/LRO_NAC_CratAbnd_73N350E_150cmp.vrt deleted file mode 100644 index f4a4cba9cf..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Anaxagoras_Crater/LRO_NAC_CratAbnd_73N350E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_CratAbnd_73N350E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_CratAbnd_73N350E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_CratAbnd_73N350E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_CratAbnd_73N350E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Apollo_15/LRO_LROC_Crater_Abundance_Apollo_15.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Apollo_15/LRO_LROC_Crater_Abundance_Apollo_15.asset deleted file mode 100644 index f5caa34e3f..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Apollo_15/LRO_LROC_Crater_Abundance_Apollo_15.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_CratAbnd_26N004E_150cmp", - Name = [[LRO LROC Crater Abundance, Apollo 15]], - FilePath = asset.localResource("LRO_NAC_CratAbnd_26N004E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Crater Abundance, Apollo 15]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_CratAbnd_26N004E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Crater Abundance, Apollo 15 layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Apollo_15/LRO_NAC_CratAbnd_26N004E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Apollo_15/LRO_NAC_CratAbnd_26N004E_150cmp.vrt deleted file mode 100644 index b075cb6ce5..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Apollo_15/LRO_NAC_CratAbnd_26N004E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_CratAbnd_26N004E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_CratAbnd_26N004E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_CratAbnd_26N004E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_CratAbnd_26N004E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Apollo_16/LRO_LROC_Crater_Abundance_Apollo_16.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Apollo_16/LRO_LROC_Crater_Abundance_Apollo_16.asset deleted file mode 100644 index 487bfcc7ca..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Apollo_16/LRO_LROC_Crater_Abundance_Apollo_16.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_CratAbnd_09S015E_150cmp", - Name = [[LRO LROC Crater Abundance, Apollo 16]], - FilePath = asset.localResource("LRO_NAC_CratAbnd_09S015E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Crater Abundance, Apollo 16]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_CratAbnd_09S015E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Crater Abundance, Apollo 16 layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Apollo_16/LRO_NAC_CratAbnd_09S015E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Apollo_16/LRO_NAC_CratAbnd_09S015E_150cmp.vrt deleted file mode 100644 index 0d3651d1d5..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Apollo_16/LRO_NAC_CratAbnd_09S015E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_CratAbnd_09S015E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_CratAbnd_09S015E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_CratAbnd_09S015E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_CratAbnd_09S015E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Apollo_Basin/LRO_LROC_Crater_Abundance_Apollo_Basin.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Apollo_Basin/LRO_LROC_Crater_Abundance_Apollo_Basin.asset deleted file mode 100644 index 0fd6a74361..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Apollo_Basin/LRO_LROC_Crater_Abundance_Apollo_Basin.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_CratAbnd_37S206E_150cmp", - Name = [[LRO LROC Crater Abundance, Apollo Basin]], - FilePath = asset.localResource("LRO_NAC_CratAbnd_37S206E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Crater Abundance, Apollo Basin]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_CratAbnd_37S206E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Crater Abundance, Apollo Basin layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Apollo_Basin/LRO_NAC_CratAbnd_37S206E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Apollo_Basin/LRO_NAC_CratAbnd_37S206E_150cmp.vrt deleted file mode 100644 index a4704d73b2..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Apollo_Basin/LRO_NAC_CratAbnd_37S206E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_CratAbnd_37S206E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_CratAbnd_37S206E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_CratAbnd_37S206E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_CratAbnd_37S206E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Aristarchus_1/LRO_LROC_Crater_Abundance_Aristarchus_1.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Aristarchus_1/LRO_LROC_Crater_Abundance_Aristarchus_1.asset deleted file mode 100644 index d580773c2a..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Aristarchus_1/LRO_LROC_Crater_Abundance_Aristarchus_1.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_CratAbnd_25N311E_2mp", - Name = [[LRO LROC Crater Abundance, Aristarchus 1]], - FilePath = asset.localResource("LRO_NAC_CratAbnd_25N311E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Crater Abundance, Aristarchus 1]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_CratAbnd_25N311E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Crater Abundance, Aristarchus 1 layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Aristarchus_1/LRO_NAC_CratAbnd_25N311E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Aristarchus_1/LRO_NAC_CratAbnd_25N311E_2mp.vrt deleted file mode 100644 index 62918f7cb7..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Aristarchus_1/LRO_NAC_CratAbnd_25N311E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_CratAbnd_25N311E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_CratAbnd_25N311E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_CratAbnd_25N311E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_CratAbnd_25N311E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Aristarchus_2/LRO_LROC_Crater_Abundance_Aristarchus_2.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Aristarchus_2/LRO_LROC_Crater_Abundance_Aristarchus_2.asset deleted file mode 100644 index 20ed424e54..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Aristarchus_2/LRO_LROC_Crater_Abundance_Aristarchus_2.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_CratAbnd_28N307E_150cmp", - Name = [[LRO LROC Crater Abundance, Aristarchus 2]], - FilePath = asset.localResource("LRO_NAC_CratAbnd_28N307E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Crater Abundance, Aristarchus 2]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_CratAbnd_28N307E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Crater Abundance, Aristarchus 2 layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Aristarchus_2/LRO_NAC_CratAbnd_28N307E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Aristarchus_2/LRO_NAC_CratAbnd_28N307E_150cmp.vrt deleted file mode 100644 index b27760a202..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Aristarchus_2/LRO_NAC_CratAbnd_28N307E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_CratAbnd_28N307E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_CratAbnd_28N307E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_CratAbnd_28N307E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_CratAbnd_28N307E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Balmer_Basin/LRO_LROC_Crater_Abundance_Balmer_Basin.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Balmer_Basin/LRO_LROC_Crater_Abundance_Balmer_Basin.asset deleted file mode 100644 index 0ad77323ac..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Balmer_Basin/LRO_LROC_Crater_Abundance_Balmer_Basin.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_CratAbnd_19S070E_150cmp", - Name = [[LRO LROC Crater Abundance, Balmer Basin]], - FilePath = asset.localResource("LRO_NAC_CratAbnd_19S070E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Crater Abundance, Balmer Basin]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_CratAbnd_19S070E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Crater Abundance, Balmer Basin layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Balmer_Basin/LRO_NAC_CratAbnd_19S070E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Balmer_Basin/LRO_NAC_CratAbnd_19S070E_150cmp.vrt deleted file mode 100644 index a22953f844..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Balmer_Basin/LRO_NAC_CratAbnd_19S070E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_CratAbnd_19S070E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_CratAbnd_19S070E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_CratAbnd_19S070E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_CratAbnd_19S070E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Bullialdus_Crater/LRO_LROC_Crater_Abundance_Bullialdus_Crater.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Bullialdus_Crater/LRO_LROC_Crater_Abundance_Bullialdus_Crater.asset deleted file mode 100644 index cf1fd16231..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Bullialdus_Crater/LRO_LROC_Crater_Abundance_Bullialdus_Crater.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_CratAbnd_20S337E_400cmp", - Name = [[LRO LROC Crater Abundance, Bullialdus Crater]], - FilePath = asset.localResource("LRO_NAC_CratAbnd_20S337E_400cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Crater Abundance, Bullialdus Crater]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_CratAbnd_20S337E_400cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Crater Abundance, Bullialdus Crater layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Bullialdus_Crater/LRO_NAC_CratAbnd_20S337E_400cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Bullialdus_Crater/LRO_NAC_CratAbnd_20S337E_400cmp.vrt deleted file mode 100644 index 29eea90ae9..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Bullialdus_Crater/LRO_NAC_CratAbnd_20S337E_400cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_CratAbnd_20S337E_400cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_CratAbnd_20S337E_400cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_CratAbnd_20S337E_400cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_CratAbnd_20S337E_400cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Gruithuisen_Domes/LRO_LROC_Crater_Abundance_Gruithuisen_Domes.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Gruithuisen_Domes/LRO_LROC_Crater_Abundance_Gruithuisen_Domes.asset deleted file mode 100644 index baf1de709f..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Gruithuisen_Domes/LRO_LROC_Crater_Abundance_Gruithuisen_Domes.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_CratAbnd_36N320E_2mp", - Name = [[LRO LROC Crater Abundance, Gruithuisen Domes]], - FilePath = asset.localResource("LRO_NAC_CratAbnd_36N320E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Crater Abundance, Gruithuisen Domes]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_CratAbnd_36N320E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Crater Abundance, Gruithuisen Domes layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Gruithuisen_Domes/LRO_NAC_CratAbnd_36N320E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Gruithuisen_Domes/LRO_NAC_CratAbnd_36N320E_2mp.vrt deleted file mode 100644 index f672f8fee8..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Gruithuisen_Domes/LRO_NAC_CratAbnd_36N320E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_CratAbnd_36N320E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_CratAbnd_36N320E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_CratAbnd_36N320E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_CratAbnd_36N320E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard.asset new file mode 100644 index 0000000000..5e7ada8659 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard.asset @@ -0,0 +1,254 @@ +-- This file was automatically generated using a script found at +-- https://github.com/OpenSpace/scripts/treks-to-openspace. See the README.md file +-- in that repository for more information on how to run the script to update these +-- files. In particular in the case of errors, prefer to change that script rather +-- than the individual files + +local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier + +local treks_LRO_NAC_CratAbndHaz_17S173E_150cmp = { + Identifier = "LRO_NAC_CratAbndHaz_17S173E_150cmp", + Name = [[LRO LROC Crater Abundance Hazard, Aitken Crater]], + FilePath = asset.localResource("LRO_LROC_Crater_Abundance_Hazard/Aitken_Crater.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_CratAbndHaz_13S358E_2mp = { + Identifier = "LRO_NAC_CratAbndHaz_13S358E_2mp", + Name = [[LRO LROC Crater Abundance Hazard, Alphonsus Crater]], + FilePath = asset.localResource("LRO_LROC_Crater_Abundance_Hazard/Alphonsus_Crater.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_CratAbndHaz_73N350E_150cmp = { + Identifier = "LRO_NAC_CratAbndHaz_73N350E_150cmp", + Name = [[LRO LROC Crater Abundance Hazard, Anaxagoras Crater]], + FilePath = asset.localResource("LRO_LROC_Crater_Abundance_Hazard/Anaxagoras_Crater.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_CratAbndHaz_26N004E_150cmp = { + Identifier = "LRO_NAC_CratAbndHaz_26N004E_150cmp", + Name = [[LRO LROC Crater Abundance Hazard, Apollo 15]], + FilePath = asset.localResource("LRO_LROC_Crater_Abundance_Hazard/Apollo_15.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_CratAbndHaz_09S015E_150cmp = { + Identifier = "LRO_NAC_CratAbndHaz_09S015E_150cmp", + Name = [[LRO LROC Crater Abundance Hazard, Apollo 16]], + FilePath = asset.localResource("LRO_LROC_Crater_Abundance_Hazard/Apollo_16.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_CratAbndHaz_37S206E_150cmp = { + Identifier = "LRO_NAC_CratAbndHaz_37S206E_150cmp", + Name = [[LRO LROC Crater Abundance Hazard, Apollo Basin]], + FilePath = asset.localResource("LRO_LROC_Crater_Abundance_Hazard/Apollo_Basin.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_CratAbndHaz_25N311E_2mp = { + Identifier = "LRO_NAC_CratAbndHaz_25N311E_2mp", + Name = [[LRO LROC Crater Abundance Hazard, Aristarchus 1]], + FilePath = asset.localResource("LRO_LROC_Crater_Abundance_Hazard/Aristarchus_1.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_CratAbndHaz_28N307E_150cmp = { + Identifier = "LRO_NAC_CratAbndHaz_28N307E_150cmp", + Name = [[LRO LROC Crater Abundance Hazard, Aristarchus 2]], + FilePath = asset.localResource("LRO_LROC_Crater_Abundance_Hazard/Aristarchus_2.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_CratAbndHaz_19S070E_150cmp = { + Identifier = "LRO_NAC_CratAbndHaz_19S070E_150cmp", + Name = [[LRO LROC Crater Abundance Hazard, Balmer Basin]], + FilePath = asset.localResource("LRO_LROC_Crater_Abundance_Hazard/Balmer_Basin.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_CratAbndHaz_20S337E_400cmp = { + Identifier = "LRO_NAC_CratAbndHaz_20S337E_400cmp", + Name = [[LRO LROC Crater Abundance Hazard, Bullialdus Crater]], + FilePath = asset.localResource("LRO_LROC_Crater_Abundance_Hazard/Bullialdus_Crater.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_CratAbndHaz_36N320E_2mp = { + Identifier = "LRO_NAC_CratAbndHaz_36N320E_2mp", + Name = [[LRO LROC Crater Abundance Hazard, Gruithuisen Domes]], + FilePath = asset.localResource("LRO_LROC_Crater_Abundance_Hazard/Gruithuisen_Domes.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_CratAbndHaz_00N234E_150cmp = { + Identifier = "LRO_NAC_CratAbndHaz_00N234E_150cmp", + Name = [[LRO LROC Crater Abundance Hazard, Hertzsprung]], + FilePath = asset.localResource("LRO_LROC_Crater_Abundance_Hazard/Hertzsprung.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_CratAbndHaz_08N332E_2mp = { + Identifier = "LRO_NAC_CratAbndHaz_08N332E_2mp", + Name = [[LRO LROC Crater Abundance Hazard, Hortensius Domes]], + FilePath = asset.localResource("LRO_LROC_Crater_Abundance_Hazard/Hortensius_Domes.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_CratAbndHaz_06N120E_200cmp = { + Identifier = "LRO_NAC_CratAbndHaz_06N120E_200cmp", + Name = [[LRO LROC Crater Abundance Hazard, King Crater]], + FilePath = asset.localResource("LRO_LROC_Crater_Abundance_Hazard/King_Crater.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_CratAbndHaz_32N292E_2mp = { + Identifier = "LRO_NAC_CratAbndHaz_32N292E_2mp", + Name = [[LRO LROC Crater Abundance Hazard, Lichtenberg Crater]], + FilePath = asset.localResource("LRO_LROC_Crater_Abundance_Hazard/Lichtenberg_Crater.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_CratAbndHaz_10N058E_150cmp = { + Identifier = "LRO_NAC_CratAbndHaz_10N058E_150cmp", + Name = [[LRO LROC Crater Abundance Hazard, Mare Crisium]], + FilePath = asset.localResource("LRO_LROC_Crater_Abundance_Hazard/Mare_Crisium.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_CratAbndHaz_16S041E_150cmp = { + Identifier = "LRO_NAC_CratAbndHaz_16S041E_150cmp", + Name = [[LRO LROC Crater Abundance Hazard, Montes Pyrenaeus]], + FilePath = asset.localResource("LRO_LROC_Crater_Abundance_Hazard/Montes_Pyrenaeus.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_CratAbndHaz_26S265E_200cmp = { + Identifier = "LRO_NAC_CratAbndHaz_26S265E_200cmp", + Name = [[LRO LROC Crater Abundance Hazard, Orientale 1]], + FilePath = asset.localResource("LRO_LROC_Crater_Abundance_Hazard/Orientale_1.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_CratAbndHaz_53N354E_150cmp = { + Identifier = "LRO_NAC_CratAbndHaz_53N354E_150cmp", + Name = [[LRO LROC Crater Abundance Hazard, Plato Ejecta]], + FilePath = asset.localResource("LRO_LROC_Crater_Abundance_Hazard/Plato_Ejecta.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_CratAbndHaz_60S200E_150cmp = { + Identifier = "LRO_NAC_CratAbndHaz_60S200E_150cmp", + Name = [[LRO LROC Crater Abundance Hazard, South Pole-Aitken Basin Interior]], + FilePath = asset.localResource("LRO_LROC_Crater_Abundance_Hazard/South_Pole-Aitken_Basin_Interior.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_CratAbndHaz_02S167E_150cmp = { + Identifier = "LRO_NAC_CratAbndHaz_02S167E_150cmp", + Name = [[LRO LROC Crater Abundance Hazard, Stratton (Dewar) High Fe Anomaly]], + FilePath = asset.localResource("LRO_LROC_Crater_Abundance_Hazard/Stratton_Dewar_High_Fe_Anomaly.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_CratAbndHaz_20N010E_2mp = { + Identifier = "LRO_NAC_CratAbndHaz_20N010E_2mp", + Name = [[LRO LROC Crater Abundance Hazard, Sulpicius Gallus]], + FilePath = asset.localResource("LRO_LROC_Crater_Abundance_Hazard/Sulpicius_Gallus.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_CratAbndHaz_43S349E_150cmp = { + Identifier = "LRO_NAC_CratAbndHaz_43S349E_150cmp", + Name = [[LRO LROC Crater Abundance Hazard, Tycho Crater]], + FilePath = asset.localResource("LRO_LROC_Crater_Abundance_Hazard/Tycho_Crater.vrt"), + Description = [[]] +} + +asset.onInitialize(function() + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_CratAbndHaz_17S173E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_CratAbndHaz_13S358E_2mp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_CratAbndHaz_73N350E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_CratAbndHaz_26N004E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_CratAbndHaz_09S015E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_CratAbndHaz_37S206E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_CratAbndHaz_25N311E_2mp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_CratAbndHaz_28N307E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_CratAbndHaz_19S070E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_CratAbndHaz_20S337E_400cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_CratAbndHaz_36N320E_2mp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_CratAbndHaz_00N234E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_CratAbndHaz_08N332E_2mp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_CratAbndHaz_06N120E_200cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_CratAbndHaz_32N292E_2mp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_CratAbndHaz_10N058E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_CratAbndHaz_16S041E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_CratAbndHaz_26S265E_200cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_CratAbndHaz_53N354E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_CratAbndHaz_60S200E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_CratAbndHaz_02S167E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_CratAbndHaz_20N010E_2mp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_CratAbndHaz_43S349E_150cmp) +end) + +asset.onDeinitialize(function() + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_CratAbndHaz_17S173E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_CratAbndHaz_13S358E_2mp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_CratAbndHaz_73N350E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_CratAbndHaz_26N004E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_CratAbndHaz_09S015E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_CratAbndHaz_37S206E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_CratAbndHaz_25N311E_2mp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_CratAbndHaz_28N307E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_CratAbndHaz_19S070E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_CratAbndHaz_20S337E_400cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_CratAbndHaz_36N320E_2mp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_CratAbndHaz_00N234E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_CratAbndHaz_08N332E_2mp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_CratAbndHaz_06N120E_200cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_CratAbndHaz_32N292E_2mp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_CratAbndHaz_10N058E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_CratAbndHaz_16S041E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_CratAbndHaz_26S265E_200cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_CratAbndHaz_53N354E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_CratAbndHaz_60S200E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_CratAbndHaz_02S167E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_CratAbndHaz_20N010E_2mp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_CratAbndHaz_43S349E_150cmp") +end) + +asset.export("LRO_NAC_CratAbndHaz_17S173E_150cmp", treks_LRO_NAC_CratAbndHaz_17S173E_150cmp) +asset.export("LRO_NAC_CratAbndHaz_13S358E_2mp", treks_LRO_NAC_CratAbndHaz_13S358E_2mp) +asset.export("LRO_NAC_CratAbndHaz_73N350E_150cmp", treks_LRO_NAC_CratAbndHaz_73N350E_150cmp) +asset.export("LRO_NAC_CratAbndHaz_26N004E_150cmp", treks_LRO_NAC_CratAbndHaz_26N004E_150cmp) +asset.export("LRO_NAC_CratAbndHaz_09S015E_150cmp", treks_LRO_NAC_CratAbndHaz_09S015E_150cmp) +asset.export("LRO_NAC_CratAbndHaz_37S206E_150cmp", treks_LRO_NAC_CratAbndHaz_37S206E_150cmp) +asset.export("LRO_NAC_CratAbndHaz_25N311E_2mp", treks_LRO_NAC_CratAbndHaz_25N311E_2mp) +asset.export("LRO_NAC_CratAbndHaz_28N307E_150cmp", treks_LRO_NAC_CratAbndHaz_28N307E_150cmp) +asset.export("LRO_NAC_CratAbndHaz_19S070E_150cmp", treks_LRO_NAC_CratAbndHaz_19S070E_150cmp) +asset.export("LRO_NAC_CratAbndHaz_20S337E_400cmp", treks_LRO_NAC_CratAbndHaz_20S337E_400cmp) +asset.export("LRO_NAC_CratAbndHaz_36N320E_2mp", treks_LRO_NAC_CratAbndHaz_36N320E_2mp) +asset.export("LRO_NAC_CratAbndHaz_00N234E_150cmp", treks_LRO_NAC_CratAbndHaz_00N234E_150cmp) +asset.export("LRO_NAC_CratAbndHaz_08N332E_2mp", treks_LRO_NAC_CratAbndHaz_08N332E_2mp) +asset.export("LRO_NAC_CratAbndHaz_06N120E_200cmp", treks_LRO_NAC_CratAbndHaz_06N120E_200cmp) +asset.export("LRO_NAC_CratAbndHaz_32N292E_2mp", treks_LRO_NAC_CratAbndHaz_32N292E_2mp) +asset.export("LRO_NAC_CratAbndHaz_10N058E_150cmp", treks_LRO_NAC_CratAbndHaz_10N058E_150cmp) +asset.export("LRO_NAC_CratAbndHaz_16S041E_150cmp", treks_LRO_NAC_CratAbndHaz_16S041E_150cmp) +asset.export("LRO_NAC_CratAbndHaz_26S265E_200cmp", treks_LRO_NAC_CratAbndHaz_26S265E_200cmp) +asset.export("LRO_NAC_CratAbndHaz_53N354E_150cmp", treks_LRO_NAC_CratAbndHaz_53N354E_150cmp) +asset.export("LRO_NAC_CratAbndHaz_60S200E_150cmp", treks_LRO_NAC_CratAbndHaz_60S200E_150cmp) +asset.export("LRO_NAC_CratAbndHaz_02S167E_150cmp", treks_LRO_NAC_CratAbndHaz_02S167E_150cmp) +asset.export("LRO_NAC_CratAbndHaz_20N010E_2mp", treks_LRO_NAC_CratAbndHaz_20N010E_2mp) +asset.export("LRO_NAC_CratAbndHaz_43S349E_150cmp", treks_LRO_NAC_CratAbndHaz_43S349E_150cmp) + + +asset.meta = { + Name = [[NASA Treks Layers for Moon LRO_LROC_Crater_Abundance_Hazard], + Version = "1.0", + Author = "NASA/Treks", + URL = "https://trek.nasa.gov/moon", + License = "NASA/Treks", + Description = [[LRO_LROC_Crater_Abundance_Hazard layers from NASA/Treks for Moon]] +} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Aitken_Crater.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Aitken_Crater.vrt new file mode 100644 index 0000000000..edeb7a3350 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Aitken_Crater.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Aitken_Crater.wms + 1 + + + + 0 + + + + 0 + Green + + Aitken_Crater.wms + 2 + + + + 0 + + + + 0 + Blue + + Aitken_Crater.wms + 3 + + + + 0 + + + + Alpha + + Aitken_Crater.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Aitken_Crater/LRO_NAC_CratAbndHaz_17S173E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Aitken_Crater.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Aitken_Crater/LRO_NAC_CratAbndHaz_17S173E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Aitken_Crater.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Alphonsus_Crater.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Alphonsus_Crater.vrt new file mode 100644 index 0000000000..d045a2621c --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Alphonsus_Crater.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Alphonsus_Crater.wms + 1 + + + + 0 + + + + 0 + Green + + Alphonsus_Crater.wms + 2 + + + + 0 + + + + 0 + Blue + + Alphonsus_Crater.wms + 3 + + + + 0 + + + + Alpha + + Alphonsus_Crater.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Alphonsus_Crater/LRO_NAC_CratAbndHaz_13S358E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Alphonsus_Crater.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Alphonsus_Crater/LRO_NAC_CratAbndHaz_13S358E_2mp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Alphonsus_Crater.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Anaxagoras_Crater.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Anaxagoras_Crater.vrt new file mode 100644 index 0000000000..235a71373e --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Anaxagoras_Crater.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Anaxagoras_Crater.wms + 1 + + + + 0 + + + + 0 + Green + + Anaxagoras_Crater.wms + 2 + + + + 0 + + + + 0 + Blue + + Anaxagoras_Crater.wms + 3 + + + + 0 + + + + Alpha + + Anaxagoras_Crater.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Anaxagoras_Crater/LRO_NAC_CratAbndHaz_73N350E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Anaxagoras_Crater.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Anaxagoras_Crater/LRO_NAC_CratAbndHaz_73N350E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Anaxagoras_Crater.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Apollo_15.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Apollo_15.vrt new file mode 100644 index 0000000000..c328339b62 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Apollo_15.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Apollo_15.wms + 1 + + + + 0 + + + + 0 + Green + + Apollo_15.wms + 2 + + + + 0 + + + + 0 + Blue + + Apollo_15.wms + 3 + + + + 0 + + + + Alpha + + Apollo_15.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Apollo_15/LRO_NAC_CratAbndHaz_26N004E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Apollo_15.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Apollo_15/LRO_NAC_CratAbndHaz_26N004E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Apollo_15.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Apollo_16.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Apollo_16.vrt new file mode 100644 index 0000000000..1c9a6bfbde --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Apollo_16.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Apollo_16.wms + 1 + + + + 0 + + + + 0 + Green + + Apollo_16.wms + 2 + + + + 0 + + + + 0 + Blue + + Apollo_16.wms + 3 + + + + 0 + + + + Alpha + + Apollo_16.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Apollo_16/LRO_NAC_CratAbndHaz_09S015E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Apollo_16.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Apollo_16/LRO_NAC_CratAbndHaz_09S015E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Apollo_16.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Apollo_Basin.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Apollo_Basin.vrt new file mode 100644 index 0000000000..f9b40f9c51 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Apollo_Basin.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Apollo_Basin.wms + 1 + + + + 0 + + + + 0 + Green + + Apollo_Basin.wms + 2 + + + + 0 + + + + 0 + Blue + + Apollo_Basin.wms + 3 + + + + 0 + + + + Alpha + + Apollo_Basin.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Apollo_Basin/LRO_NAC_CratAbndHaz_37S206E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Apollo_Basin.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Apollo_Basin/LRO_NAC_CratAbndHaz_37S206E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Apollo_Basin.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Aristarchus_1.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Aristarchus_1.vrt new file mode 100644 index 0000000000..0c36807db3 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Aristarchus_1.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.3732910156250000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.3732910156250000e-03 + + 0 + Red + + Aristarchus_1.wms + 1 + + + + 0 + + + + 0 + Green + + Aristarchus_1.wms + 2 + + + + 0 + + + + 0 + Blue + + Aristarchus_1.wms + 3 + + + + 0 + + + + Alpha + + Aristarchus_1.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Aristarchus_1/LRO_NAC_CratAbndHaz_25N311E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Aristarchus_1.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Aristarchus_1/LRO_NAC_CratAbndHaz_25N311E_2mp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Aristarchus_1.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Aristarchus_2.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Aristarchus_2.vrt new file mode 100644 index 0000000000..93d6a7dd6d --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Aristarchus_2.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Aristarchus_2.wms + 1 + + + + 0 + + + + 0 + Green + + Aristarchus_2.wms + 2 + + + + 0 + + + + 0 + Blue + + Aristarchus_2.wms + 3 + + + + 0 + + + + Alpha + + Aristarchus_2.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Aristarchus_2/LRO_NAC_CratAbndHaz_28N307E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Aristarchus_2.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Aristarchus_2/LRO_NAC_CratAbndHaz_28N307E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Aristarchus_2.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Balmer_Basin.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Balmer_Basin.vrt new file mode 100644 index 0000000000..df36adefb6 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Balmer_Basin.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Balmer_Basin.wms + 1 + + + + 0 + + + + 0 + Green + + Balmer_Basin.wms + 2 + + + + 0 + + + + 0 + Blue + + Balmer_Basin.wms + 3 + + + + 0 + + + + Alpha + + Balmer_Basin.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Balmer_Basin/LRO_NAC_CratAbndHaz_19S070E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Balmer_Basin.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Balmer_Basin/LRO_NAC_CratAbndHaz_19S070E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Balmer_Basin.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Bullialdus_Crater.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Bullialdus_Crater.vrt new file mode 100644 index 0000000000..15eb2de7e7 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Bullialdus_Crater.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Bullialdus_Crater.wms + 1 + + + + 0 + + + + 0 + Green + + Bullialdus_Crater.wms + 2 + + + + 0 + + + + 0 + Blue + + Bullialdus_Crater.wms + 3 + + + + 0 + + + + Alpha + + Bullialdus_Crater.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Bullialdus_Crater/LRO_NAC_CratAbndHaz_20S337E_400cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Bullialdus_Crater.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Bullialdus_Crater/LRO_NAC_CratAbndHaz_20S337E_400cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Bullialdus_Crater.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Gruithuisen_Domes.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Gruithuisen_Domes.vrt new file mode 100644 index 0000000000..5142f02aea --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Gruithuisen_Domes.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Gruithuisen_Domes.wms + 1 + + + + 0 + + + + 0 + Green + + Gruithuisen_Domes.wms + 2 + + + + 0 + + + + 0 + Blue + + Gruithuisen_Domes.wms + 3 + + + + 0 + + + + Alpha + + Gruithuisen_Domes.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Gruithuisen_Domes/LRO_NAC_CratAbndHaz_36N320E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Gruithuisen_Domes.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Gruithuisen_Domes/LRO_NAC_CratAbndHaz_36N320E_2mp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Gruithuisen_Domes.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Hertzsprung.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Hertzsprung.vrt new file mode 100644 index 0000000000..ad731212e4 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Hertzsprung.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Hertzsprung.wms + 1 + + + + 0 + + + + 0 + Green + + Hertzsprung.wms + 2 + + + + 0 + + + + 0 + Blue + + Hertzsprung.wms + 3 + + + + 0 + + + + Alpha + + Hertzsprung.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Hertzsprung/LRO_NAC_CratAbndHaz_00N234E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Hertzsprung.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Hertzsprung/LRO_NAC_CratAbndHaz_00N234E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Hertzsprung.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Hortensius_Domes.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Hortensius_Domes.vrt new file mode 100644 index 0000000000..348c2f9215 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Hortensius_Domes.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Hortensius_Domes.wms + 1 + + + + 0 + + + + 0 + Green + + Hortensius_Domes.wms + 2 + + + + 0 + + + + 0 + Blue + + Hortensius_Domes.wms + 3 + + + + 0 + + + + Alpha + + Hortensius_Domes.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Hortensius_Domes/LRO_NAC_CratAbndHaz_08N332E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Hortensius_Domes.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Hortensius_Domes/LRO_NAC_CratAbndHaz_08N332E_2mp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Hortensius_Domes.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/King_Crater.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/King_Crater.vrt new file mode 100644 index 0000000000..ffb4db9833 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/King_Crater.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + King_Crater.wms + 1 + + + + 0 + + + + 0 + Green + + King_Crater.wms + 2 + + + + 0 + + + + 0 + Blue + + King_Crater.wms + 3 + + + + 0 + + + + Alpha + + King_Crater.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_King_Crater/LRO_NAC_CratAbndHaz_06N120E_200cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/King_Crater.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_King_Crater/LRO_NAC_CratAbndHaz_06N120E_200cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/King_Crater.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Lichtenberg_Crater.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Lichtenberg_Crater.vrt new file mode 100644 index 0000000000..8584f2c304 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Lichtenberg_Crater.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Lichtenberg_Crater.wms + 1 + + + + 0 + + + + 0 + Green + + Lichtenberg_Crater.wms + 2 + + + + 0 + + + + 0 + Blue + + Lichtenberg_Crater.wms + 3 + + + + 0 + + + + Alpha + + Lichtenberg_Crater.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Lichtenberg_Crater/LRO_NAC_CratAbndHaz_32N292E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Lichtenberg_Crater.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Lichtenberg_Crater/LRO_NAC_CratAbndHaz_32N292E_2mp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Lichtenberg_Crater.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Mare_Crisium.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Mare_Crisium.vrt new file mode 100644 index 0000000000..d6a7df281a --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Mare_Crisium.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Mare_Crisium.wms + 1 + + + + 0 + + + + 0 + Green + + Mare_Crisium.wms + 2 + + + + 0 + + + + 0 + Blue + + Mare_Crisium.wms + 3 + + + + 0 + + + + Alpha + + Mare_Crisium.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Mare_Crisium/LRO_NAC_CratAbndHaz_10N058E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Mare_Crisium.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Mare_Crisium/LRO_NAC_CratAbndHaz_10N058E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Mare_Crisium.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Montes_Pyrenaeus.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Montes_Pyrenaeus.vrt new file mode 100644 index 0000000000..f515ff3f8e --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Montes_Pyrenaeus.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Montes_Pyrenaeus.wms + 1 + + + + 0 + + + + 0 + Green + + Montes_Pyrenaeus.wms + 2 + + + + 0 + + + + 0 + Blue + + Montes_Pyrenaeus.wms + 3 + + + + 0 + + + + Alpha + + Montes_Pyrenaeus.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Montes_Pyrenaeus/LRO_NAC_CratAbndHaz_16S041E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Montes_Pyrenaeus.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Montes_Pyrenaeus/LRO_NAC_CratAbndHaz_16S041E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Montes_Pyrenaeus.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Orientale_1.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Orientale_1.vrt new file mode 100644 index 0000000000..080fd3bb80 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Orientale_1.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Orientale_1.wms + 1 + + + + 0 + + + + 0 + Green + + Orientale_1.wms + 2 + + + + 0 + + + + 0 + Blue + + Orientale_1.wms + 3 + + + + 0 + + + + Alpha + + Orientale_1.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Orientale_1/LRO_NAC_CratAbndHaz_26S265E_200cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Orientale_1.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Orientale_1/LRO_NAC_CratAbndHaz_26S265E_200cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Orientale_1.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Plato_Ejecta.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Plato_Ejecta.vrt new file mode 100644 index 0000000000..a031a2e962 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Plato_Ejecta.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Plato_Ejecta.wms + 1 + + + + 0 + + + + 0 + Green + + Plato_Ejecta.wms + 2 + + + + 0 + + + + 0 + Blue + + Plato_Ejecta.wms + 3 + + + + 0 + + + + Alpha + + Plato_Ejecta.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Plato_Ejecta/LRO_NAC_CratAbndHaz_53N354E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Plato_Ejecta.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Plato_Ejecta/LRO_NAC_CratAbndHaz_53N354E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Plato_Ejecta.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/South_Pole-Aitken_Basin_Interior.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/South_Pole-Aitken_Basin_Interior.vrt new file mode 100644 index 0000000000..63d096530c --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/South_Pole-Aitken_Basin_Interior.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + South_Pole-Aitken_Basin_Interior.wms + 1 + + + + 0 + + + + 0 + Green + + South_Pole-Aitken_Basin_Interior.wms + 2 + + + + 0 + + + + 0 + Blue + + South_Pole-Aitken_Basin_Interior.wms + 3 + + + + 0 + + + + Alpha + + South_Pole-Aitken_Basin_Interior.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_South_Pole-Aitken_Basin_Interior/LRO_NAC_CratAbndHaz_60S200E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/South_Pole-Aitken_Basin_Interior.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_South_Pole-Aitken_Basin_Interior/LRO_NAC_CratAbndHaz_60S200E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/South_Pole-Aitken_Basin_Interior.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Stratton_Dewar_High_Fe_Anomaly.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Stratton_Dewar_High_Fe_Anomaly.vrt new file mode 100644 index 0000000000..9ea8239472 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Stratton_Dewar_High_Fe_Anomaly.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Stratton_Dewar_High_Fe_Anomaly.wms + 1 + + + + 0 + + + + 0 + Green + + Stratton_Dewar_High_Fe_Anomaly.wms + 2 + + + + 0 + + + + 0 + Blue + + Stratton_Dewar_High_Fe_Anomaly.wms + 3 + + + + 0 + + + + Alpha + + Stratton_Dewar_High_Fe_Anomaly.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Stratton_(Dewar)_High_Fe_Anomaly/LRO_NAC_CratAbndHaz_02S167E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Stratton_Dewar_High_Fe_Anomaly.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Stratton_(Dewar)_High_Fe_Anomaly/LRO_NAC_CratAbndHaz_02S167E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Stratton_Dewar_High_Fe_Anomaly.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Sulpicius_Gallus.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Sulpicius_Gallus.vrt new file mode 100644 index 0000000000..a13f1c4a0a --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Sulpicius_Gallus.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Sulpicius_Gallus.wms + 1 + + + + 0 + + + + 0 + Green + + Sulpicius_Gallus.wms + 2 + + + + 0 + + + + 0 + Blue + + Sulpicius_Gallus.wms + 3 + + + + 0 + + + + Alpha + + Sulpicius_Gallus.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Sulpicius_Gallus/LRO_NAC_CratAbndHaz_20N010E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Sulpicius_Gallus.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Sulpicius_Gallus/LRO_NAC_CratAbndHaz_20N010E_2mp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Sulpicius_Gallus.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Tycho_Crater.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Tycho_Crater.vrt new file mode 100644 index 0000000000..60bed90160 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Tycho_Crater.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Tycho_Crater.wms + 1 + + + + 0 + + + + 0 + Green + + Tycho_Crater.wms + 2 + + + + 0 + + + + 0 + Blue + + Tycho_Crater.wms + 3 + + + + 0 + + + + Alpha + + Tycho_Crater.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Tycho_Crater/LRO_NAC_CratAbndHaz_43S349E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Tycho_Crater.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Tycho_Crater/LRO_NAC_CratAbndHaz_43S349E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard/Tycho_Crater.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Aitken_Crater/LRO_LROC_Crater_Abundance_Hazard_Aitken_Crater.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Aitken_Crater/LRO_LROC_Crater_Abundance_Hazard_Aitken_Crater.asset deleted file mode 100644 index bbbe55ef26..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Aitken_Crater/LRO_LROC_Crater_Abundance_Hazard_Aitken_Crater.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_CratAbndHaz_17S173E_150cmp", - Name = [[LRO LROC Crater Abundance Hazard, Aitken Crater]], - FilePath = asset.localResource("LRO_NAC_CratAbndHaz_17S173E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Crater Abundance Hazard, Aitken Crater]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_CratAbndHaz_17S173E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Crater Abundance Hazard, Aitken Crater layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Aitken_Crater/LRO_NAC_CratAbndHaz_17S173E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Aitken_Crater/LRO_NAC_CratAbndHaz_17S173E_150cmp.vrt deleted file mode 100644 index 62f5d8f372..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Aitken_Crater/LRO_NAC_CratAbndHaz_17S173E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_CratAbndHaz_17S173E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_CratAbndHaz_17S173E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_CratAbndHaz_17S173E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_CratAbndHaz_17S173E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Alphonsus_Crater/LRO_LROC_Crater_Abundance_Hazard_Alphonsus_Crater.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Alphonsus_Crater/LRO_LROC_Crater_Abundance_Hazard_Alphonsus_Crater.asset deleted file mode 100644 index 8dc249a2b9..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Alphonsus_Crater/LRO_LROC_Crater_Abundance_Hazard_Alphonsus_Crater.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_CratAbndHaz_13S358E_2mp", - Name = [[LRO LROC Crater Abundance Hazard, Alphonsus Crater]], - FilePath = asset.localResource("LRO_NAC_CratAbndHaz_13S358E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Crater Abundance Hazard, Alphonsus Crater]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_CratAbndHaz_13S358E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Crater Abundance Hazard, Alphonsus Crater layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Alphonsus_Crater/LRO_NAC_CratAbndHaz_13S358E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Alphonsus_Crater/LRO_NAC_CratAbndHaz_13S358E_2mp.vrt deleted file mode 100644 index 162a2e3335..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Alphonsus_Crater/LRO_NAC_CratAbndHaz_13S358E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_CratAbndHaz_13S358E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_CratAbndHaz_13S358E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_CratAbndHaz_13S358E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_CratAbndHaz_13S358E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Anaxagoras_Crater/LRO_LROC_Crater_Abundance_Hazard_Anaxagoras_Crater.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Anaxagoras_Crater/LRO_LROC_Crater_Abundance_Hazard_Anaxagoras_Crater.asset deleted file mode 100644 index 63ff44a009..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Anaxagoras_Crater/LRO_LROC_Crater_Abundance_Hazard_Anaxagoras_Crater.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_CratAbndHaz_73N350E_150cmp", - Name = [[LRO LROC Crater Abundance Hazard, Anaxagoras Crater]], - FilePath = asset.localResource("LRO_NAC_CratAbndHaz_73N350E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Crater Abundance Hazard, Anaxagoras Crater]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_CratAbndHaz_73N350E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Crater Abundance Hazard, Anaxagoras Crater layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Anaxagoras_Crater/LRO_NAC_CratAbndHaz_73N350E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Anaxagoras_Crater/LRO_NAC_CratAbndHaz_73N350E_150cmp.vrt deleted file mode 100644 index 26d6076e0e..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Anaxagoras_Crater/LRO_NAC_CratAbndHaz_73N350E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_CratAbndHaz_73N350E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_CratAbndHaz_73N350E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_CratAbndHaz_73N350E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_CratAbndHaz_73N350E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Apollo_15/LRO_LROC_Crater_Abundance_Hazard_Apollo_15.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Apollo_15/LRO_LROC_Crater_Abundance_Hazard_Apollo_15.asset deleted file mode 100644 index 9277c07533..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Apollo_15/LRO_LROC_Crater_Abundance_Hazard_Apollo_15.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_CratAbndHaz_26N004E_150cmp", - Name = [[LRO LROC Crater Abundance Hazard, Apollo 15]], - FilePath = asset.localResource("LRO_NAC_CratAbndHaz_26N004E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Crater Abundance Hazard, Apollo 15]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_CratAbndHaz_26N004E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Crater Abundance Hazard, Apollo 15 layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Apollo_15/LRO_NAC_CratAbndHaz_26N004E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Apollo_15/LRO_NAC_CratAbndHaz_26N004E_150cmp.vrt deleted file mode 100644 index 2cfcdd9dd4..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Apollo_15/LRO_NAC_CratAbndHaz_26N004E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_CratAbndHaz_26N004E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_CratAbndHaz_26N004E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_CratAbndHaz_26N004E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_CratAbndHaz_26N004E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Apollo_16/LRO_LROC_Crater_Abundance_Hazard_Apollo_16.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Apollo_16/LRO_LROC_Crater_Abundance_Hazard_Apollo_16.asset deleted file mode 100644 index 19b255c178..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Apollo_16/LRO_LROC_Crater_Abundance_Hazard_Apollo_16.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_CratAbndHaz_09S015E_150cmp", - Name = [[LRO LROC Crater Abundance Hazard, Apollo 16]], - FilePath = asset.localResource("LRO_NAC_CratAbndHaz_09S015E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Crater Abundance Hazard, Apollo 16]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_CratAbndHaz_09S015E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Crater Abundance Hazard, Apollo 16 layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Apollo_16/LRO_NAC_CratAbndHaz_09S015E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Apollo_16/LRO_NAC_CratAbndHaz_09S015E_150cmp.vrt deleted file mode 100644 index 67e3003629..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Apollo_16/LRO_NAC_CratAbndHaz_09S015E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_CratAbndHaz_09S015E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_CratAbndHaz_09S015E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_CratAbndHaz_09S015E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_CratAbndHaz_09S015E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Apollo_Basin/LRO_LROC_Crater_Abundance_Hazard_Apollo_Basin.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Apollo_Basin/LRO_LROC_Crater_Abundance_Hazard_Apollo_Basin.asset deleted file mode 100644 index 74b709d5ed..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Apollo_Basin/LRO_LROC_Crater_Abundance_Hazard_Apollo_Basin.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_CratAbndHaz_37S206E_150cmp", - Name = [[LRO LROC Crater Abundance Hazard, Apollo Basin]], - FilePath = asset.localResource("LRO_NAC_CratAbndHaz_37S206E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Crater Abundance Hazard, Apollo Basin]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_CratAbndHaz_37S206E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Crater Abundance Hazard, Apollo Basin layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Apollo_Basin/LRO_NAC_CratAbndHaz_37S206E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Apollo_Basin/LRO_NAC_CratAbndHaz_37S206E_150cmp.vrt deleted file mode 100644 index f04341704c..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Apollo_Basin/LRO_NAC_CratAbndHaz_37S206E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_CratAbndHaz_37S206E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_CratAbndHaz_37S206E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_CratAbndHaz_37S206E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_CratAbndHaz_37S206E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Aristarchus_1/LRO_LROC_Crater_Abundance_Hazard_Aristarchus_1.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Aristarchus_1/LRO_LROC_Crater_Abundance_Hazard_Aristarchus_1.asset deleted file mode 100644 index b498899ebe..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Aristarchus_1/LRO_LROC_Crater_Abundance_Hazard_Aristarchus_1.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_CratAbndHaz_25N311E_2mp", - Name = [[LRO LROC Crater Abundance Hazard, Aristarchus 1]], - FilePath = asset.localResource("LRO_NAC_CratAbndHaz_25N311E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Crater Abundance Hazard, Aristarchus 1]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_CratAbndHaz_25N311E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Crater Abundance Hazard, Aristarchus 1 layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Aristarchus_1/LRO_NAC_CratAbndHaz_25N311E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Aristarchus_1/LRO_NAC_CratAbndHaz_25N311E_2mp.vrt deleted file mode 100644 index 094a1fde2a..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Aristarchus_1/LRO_NAC_CratAbndHaz_25N311E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.3732910156250000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.3732910156250000e-03 - - 0 - Red - - LRO_NAC_CratAbndHaz_25N311E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_CratAbndHaz_25N311E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_CratAbndHaz_25N311E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_CratAbndHaz_25N311E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Aristarchus_2/LRO_LROC_Crater_Abundance_Hazard_Aristarchus_2.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Aristarchus_2/LRO_LROC_Crater_Abundance_Hazard_Aristarchus_2.asset deleted file mode 100644 index 095c7a9ed3..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Aristarchus_2/LRO_LROC_Crater_Abundance_Hazard_Aristarchus_2.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_CratAbndHaz_28N307E_150cmp", - Name = [[LRO LROC Crater Abundance Hazard, Aristarchus 2]], - FilePath = asset.localResource("LRO_NAC_CratAbndHaz_28N307E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Crater Abundance Hazard, Aristarchus 2]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_CratAbndHaz_28N307E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Crater Abundance Hazard, Aristarchus 2 layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Aristarchus_2/LRO_NAC_CratAbndHaz_28N307E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Aristarchus_2/LRO_NAC_CratAbndHaz_28N307E_150cmp.vrt deleted file mode 100644 index 8528fc8687..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Aristarchus_2/LRO_NAC_CratAbndHaz_28N307E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_CratAbndHaz_28N307E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_CratAbndHaz_28N307E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_CratAbndHaz_28N307E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_CratAbndHaz_28N307E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Balmer_Basin/LRO_LROC_Crater_Abundance_Hazard_Balmer_Basin.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Balmer_Basin/LRO_LROC_Crater_Abundance_Hazard_Balmer_Basin.asset deleted file mode 100644 index 12f12378c7..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Balmer_Basin/LRO_LROC_Crater_Abundance_Hazard_Balmer_Basin.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_CratAbndHaz_19S070E_150cmp", - Name = [[LRO LROC Crater Abundance Hazard, Balmer Basin]], - FilePath = asset.localResource("LRO_NAC_CratAbndHaz_19S070E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Crater Abundance Hazard, Balmer Basin]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_CratAbndHaz_19S070E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Crater Abundance Hazard, Balmer Basin layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Balmer_Basin/LRO_NAC_CratAbndHaz_19S070E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Balmer_Basin/LRO_NAC_CratAbndHaz_19S070E_150cmp.vrt deleted file mode 100644 index abe9ca4b2c..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Balmer_Basin/LRO_NAC_CratAbndHaz_19S070E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_CratAbndHaz_19S070E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_CratAbndHaz_19S070E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_CratAbndHaz_19S070E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_CratAbndHaz_19S070E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Bullialdus_Crater/LRO_LROC_Crater_Abundance_Hazard_Bullialdus_Crater.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Bullialdus_Crater/LRO_LROC_Crater_Abundance_Hazard_Bullialdus_Crater.asset deleted file mode 100644 index d39dfd0565..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Bullialdus_Crater/LRO_LROC_Crater_Abundance_Hazard_Bullialdus_Crater.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_CratAbndHaz_20S337E_400cmp", - Name = [[LRO LROC Crater Abundance Hazard, Bullialdus Crater]], - FilePath = asset.localResource("LRO_NAC_CratAbndHaz_20S337E_400cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Crater Abundance Hazard, Bullialdus Crater]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_CratAbndHaz_20S337E_400cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Crater Abundance Hazard, Bullialdus Crater layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Bullialdus_Crater/LRO_NAC_CratAbndHaz_20S337E_400cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Bullialdus_Crater/LRO_NAC_CratAbndHaz_20S337E_400cmp.vrt deleted file mode 100644 index 0ef010b351..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Bullialdus_Crater/LRO_NAC_CratAbndHaz_20S337E_400cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_CratAbndHaz_20S337E_400cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_CratAbndHaz_20S337E_400cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_CratAbndHaz_20S337E_400cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_CratAbndHaz_20S337E_400cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Gruithuisen_Domes/LRO_LROC_Crater_Abundance_Hazard_Gruithuisen_Domes.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Gruithuisen_Domes/LRO_LROC_Crater_Abundance_Hazard_Gruithuisen_Domes.asset deleted file mode 100644 index a74588353c..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Gruithuisen_Domes/LRO_LROC_Crater_Abundance_Hazard_Gruithuisen_Domes.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_CratAbndHaz_36N320E_2mp", - Name = [[LRO LROC Crater Abundance Hazard, Gruithuisen Domes]], - FilePath = asset.localResource("LRO_NAC_CratAbndHaz_36N320E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Crater Abundance Hazard, Gruithuisen Domes]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_CratAbndHaz_36N320E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Crater Abundance Hazard, Gruithuisen Domes layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Gruithuisen_Domes/LRO_NAC_CratAbndHaz_36N320E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Gruithuisen_Domes/LRO_NAC_CratAbndHaz_36N320E_2mp.vrt deleted file mode 100644 index a9278e47a4..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Gruithuisen_Domes/LRO_NAC_CratAbndHaz_36N320E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_CratAbndHaz_36N320E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_CratAbndHaz_36N320E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_CratAbndHaz_36N320E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_CratAbndHaz_36N320E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Hertzsprung/LRO_LROC_Crater_Abundance_Hazard_Hertzsprung.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Hertzsprung/LRO_LROC_Crater_Abundance_Hazard_Hertzsprung.asset deleted file mode 100644 index d6f92ed262..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Hertzsprung/LRO_LROC_Crater_Abundance_Hazard_Hertzsprung.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_CratAbndHaz_00N234E_150cmp", - Name = [[LRO LROC Crater Abundance Hazard, Hertzsprung]], - FilePath = asset.localResource("LRO_NAC_CratAbndHaz_00N234E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Crater Abundance Hazard, Hertzsprung]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_CratAbndHaz_00N234E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Crater Abundance Hazard, Hertzsprung layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Hertzsprung/LRO_NAC_CratAbndHaz_00N234E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Hertzsprung/LRO_NAC_CratAbndHaz_00N234E_150cmp.vrt deleted file mode 100644 index 281e053b70..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Hertzsprung/LRO_NAC_CratAbndHaz_00N234E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_CratAbndHaz_00N234E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_CratAbndHaz_00N234E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_CratAbndHaz_00N234E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_CratAbndHaz_00N234E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Hortensius_Domes/LRO_LROC_Crater_Abundance_Hazard_Hortensius_Domes.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Hortensius_Domes/LRO_LROC_Crater_Abundance_Hazard_Hortensius_Domes.asset deleted file mode 100644 index 53a5c900ea..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Hortensius_Domes/LRO_LROC_Crater_Abundance_Hazard_Hortensius_Domes.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_CratAbndHaz_08N332E_2mp", - Name = [[LRO LROC Crater Abundance Hazard, Hortensius Domes]], - FilePath = asset.localResource("LRO_NAC_CratAbndHaz_08N332E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Crater Abundance Hazard, Hortensius Domes]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_CratAbndHaz_08N332E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Crater Abundance Hazard, Hortensius Domes layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Hortensius_Domes/LRO_NAC_CratAbndHaz_08N332E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Hortensius_Domes/LRO_NAC_CratAbndHaz_08N332E_2mp.vrt deleted file mode 100644 index c020d0987c..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Hortensius_Domes/LRO_NAC_CratAbndHaz_08N332E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_CratAbndHaz_08N332E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_CratAbndHaz_08N332E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_CratAbndHaz_08N332E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_CratAbndHaz_08N332E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_King_Crater/LRO_LROC_Crater_Abundance_Hazard_King_Crater.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_King_Crater/LRO_LROC_Crater_Abundance_Hazard_King_Crater.asset deleted file mode 100644 index 845fdc3bf4..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_King_Crater/LRO_LROC_Crater_Abundance_Hazard_King_Crater.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_CratAbndHaz_06N120E_200cmp", - Name = [[LRO LROC Crater Abundance Hazard, King Crater]], - FilePath = asset.localResource("LRO_NAC_CratAbndHaz_06N120E_200cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Crater Abundance Hazard, King Crater]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_CratAbndHaz_06N120E_200cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Crater Abundance Hazard, King Crater layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_King_Crater/LRO_NAC_CratAbndHaz_06N120E_200cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_King_Crater/LRO_NAC_CratAbndHaz_06N120E_200cmp.vrt deleted file mode 100644 index 3bf3e0b83c..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_King_Crater/LRO_NAC_CratAbndHaz_06N120E_200cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_CratAbndHaz_06N120E_200cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_CratAbndHaz_06N120E_200cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_CratAbndHaz_06N120E_200cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_CratAbndHaz_06N120E_200cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Lichtenberg_Crater/LRO_LROC_Crater_Abundance_Hazard_Lichtenberg_Crater.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Lichtenberg_Crater/LRO_LROC_Crater_Abundance_Hazard_Lichtenberg_Crater.asset deleted file mode 100644 index b11922f20d..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Lichtenberg_Crater/LRO_LROC_Crater_Abundance_Hazard_Lichtenberg_Crater.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_CratAbndHaz_32N292E_2mp", - Name = [[LRO LROC Crater Abundance Hazard, Lichtenberg Crater]], - FilePath = asset.localResource("LRO_NAC_CratAbndHaz_32N292E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Crater Abundance Hazard, Lichtenberg Crater]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_CratAbndHaz_32N292E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Crater Abundance Hazard, Lichtenberg Crater layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Lichtenberg_Crater/LRO_NAC_CratAbndHaz_32N292E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Lichtenberg_Crater/LRO_NAC_CratAbndHaz_32N292E_2mp.vrt deleted file mode 100644 index 6dae0e18f6..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Lichtenberg_Crater/LRO_NAC_CratAbndHaz_32N292E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_CratAbndHaz_32N292E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_CratAbndHaz_32N292E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_CratAbndHaz_32N292E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_CratAbndHaz_32N292E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Mare_Crisium/LRO_LROC_Crater_Abundance_Hazard_Mare_Crisium.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Mare_Crisium/LRO_LROC_Crater_Abundance_Hazard_Mare_Crisium.asset deleted file mode 100644 index ac862a69f2..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Mare_Crisium/LRO_LROC_Crater_Abundance_Hazard_Mare_Crisium.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_CratAbndHaz_10N058E_150cmp", - Name = [[LRO LROC Crater Abundance Hazard, Mare Crisium]], - FilePath = asset.localResource("LRO_NAC_CratAbndHaz_10N058E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Crater Abundance Hazard, Mare Crisium]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_CratAbndHaz_10N058E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Crater Abundance Hazard, Mare Crisium layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Mare_Crisium/LRO_NAC_CratAbndHaz_10N058E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Mare_Crisium/LRO_NAC_CratAbndHaz_10N058E_150cmp.vrt deleted file mode 100644 index 2a70ee4838..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Mare_Crisium/LRO_NAC_CratAbndHaz_10N058E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_CratAbndHaz_10N058E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_CratAbndHaz_10N058E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_CratAbndHaz_10N058E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_CratAbndHaz_10N058E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Montes_Pyrenaeus/LRO_LROC_Crater_Abundance_Hazard_Montes_Pyrenaeus.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Montes_Pyrenaeus/LRO_LROC_Crater_Abundance_Hazard_Montes_Pyrenaeus.asset deleted file mode 100644 index 186c4398fe..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Montes_Pyrenaeus/LRO_LROC_Crater_Abundance_Hazard_Montes_Pyrenaeus.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_CratAbndHaz_16S041E_150cmp", - Name = [[LRO LROC Crater Abundance Hazard, Montes Pyrenaeus]], - FilePath = asset.localResource("LRO_NAC_CratAbndHaz_16S041E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Crater Abundance Hazard, Montes Pyrenaeus]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_CratAbndHaz_16S041E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Crater Abundance Hazard, Montes Pyrenaeus layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Montes_Pyrenaeus/LRO_NAC_CratAbndHaz_16S041E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Montes_Pyrenaeus/LRO_NAC_CratAbndHaz_16S041E_150cmp.vrt deleted file mode 100644 index 93270fb029..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Montes_Pyrenaeus/LRO_NAC_CratAbndHaz_16S041E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_CratAbndHaz_16S041E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_CratAbndHaz_16S041E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_CratAbndHaz_16S041E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_CratAbndHaz_16S041E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Orientale_1/LRO_LROC_Crater_Abundance_Hazard_Orientale_1.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Orientale_1/LRO_LROC_Crater_Abundance_Hazard_Orientale_1.asset deleted file mode 100644 index 775a22380c..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Orientale_1/LRO_LROC_Crater_Abundance_Hazard_Orientale_1.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_CratAbndHaz_26S265E_200cmp", - Name = [[LRO LROC Crater Abundance Hazard, Orientale 1]], - FilePath = asset.localResource("LRO_NAC_CratAbndHaz_26S265E_200cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Crater Abundance Hazard, Orientale 1]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_CratAbndHaz_26S265E_200cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Crater Abundance Hazard, Orientale 1 layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Orientale_1/LRO_NAC_CratAbndHaz_26S265E_200cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Orientale_1/LRO_NAC_CratAbndHaz_26S265E_200cmp.vrt deleted file mode 100644 index 9c7d8ee18d..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Orientale_1/LRO_NAC_CratAbndHaz_26S265E_200cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_CratAbndHaz_26S265E_200cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_CratAbndHaz_26S265E_200cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_CratAbndHaz_26S265E_200cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_CratAbndHaz_26S265E_200cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Plato_Ejecta/LRO_LROC_Crater_Abundance_Hazard_Plato_Ejecta.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Plato_Ejecta/LRO_LROC_Crater_Abundance_Hazard_Plato_Ejecta.asset deleted file mode 100644 index 166577d7ff..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Plato_Ejecta/LRO_LROC_Crater_Abundance_Hazard_Plato_Ejecta.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_CratAbndHaz_53N354E_150cmp", - Name = [[LRO LROC Crater Abundance Hazard, Plato Ejecta]], - FilePath = asset.localResource("LRO_NAC_CratAbndHaz_53N354E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Crater Abundance Hazard, Plato Ejecta]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_CratAbndHaz_53N354E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Crater Abundance Hazard, Plato Ejecta layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Plato_Ejecta/LRO_NAC_CratAbndHaz_53N354E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Plato_Ejecta/LRO_NAC_CratAbndHaz_53N354E_150cmp.vrt deleted file mode 100644 index 386eda69a1..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Plato_Ejecta/LRO_NAC_CratAbndHaz_53N354E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_CratAbndHaz_53N354E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_CratAbndHaz_53N354E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_CratAbndHaz_53N354E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_CratAbndHaz_53N354E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_South_Pole-Aitken_Basin_Interior/LRO_LROC_Crater_Abundance_Hazard_South_Pole-Aitken_Basin_Interior.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_South_Pole-Aitken_Basin_Interior/LRO_LROC_Crater_Abundance_Hazard_South_Pole-Aitken_Basin_Interior.asset deleted file mode 100644 index badcf58da6..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_South_Pole-Aitken_Basin_Interior/LRO_LROC_Crater_Abundance_Hazard_South_Pole-Aitken_Basin_Interior.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_CratAbndHaz_60S200E_150cmp", - Name = [[LRO LROC Crater Abundance Hazard, South Pole-Aitken Basin Interior]], - FilePath = asset.localResource("LRO_NAC_CratAbndHaz_60S200E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Crater Abundance Hazard, South Pole-Aitken Basin Interior]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_CratAbndHaz_60S200E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Crater Abundance Hazard, South Pole-Aitken Basin Interior layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_South_Pole-Aitken_Basin_Interior/LRO_NAC_CratAbndHaz_60S200E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_South_Pole-Aitken_Basin_Interior/LRO_NAC_CratAbndHaz_60S200E_150cmp.vrt deleted file mode 100644 index 5508fd3482..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_South_Pole-Aitken_Basin_Interior/LRO_NAC_CratAbndHaz_60S200E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_CratAbndHaz_60S200E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_CratAbndHaz_60S200E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_CratAbndHaz_60S200E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_CratAbndHaz_60S200E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Stratton_(Dewar)_High_Fe_Anomaly/LRO_LROC_Crater_Abundance_Hazard_Stratton_(Dewar)_High_Fe_Anomaly.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Stratton_(Dewar)_High_Fe_Anomaly/LRO_LROC_Crater_Abundance_Hazard_Stratton_(Dewar)_High_Fe_Anomaly.asset deleted file mode 100644 index 6daab977b8..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Stratton_(Dewar)_High_Fe_Anomaly/LRO_LROC_Crater_Abundance_Hazard_Stratton_(Dewar)_High_Fe_Anomaly.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_CratAbndHaz_02S167E_150cmp", - Name = [[LRO LROC Crater Abundance Hazard, Stratton (Dewar) High Fe Anomaly]], - FilePath = asset.localResource("LRO_NAC_CratAbndHaz_02S167E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Crater Abundance Hazard, Stratton (Dewar) High Fe Anomaly]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_CratAbndHaz_02S167E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Crater Abundance Hazard, Stratton (Dewar) High Fe Anomaly layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Stratton_(Dewar)_High_Fe_Anomaly/LRO_NAC_CratAbndHaz_02S167E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Stratton_(Dewar)_High_Fe_Anomaly/LRO_NAC_CratAbndHaz_02S167E_150cmp.vrt deleted file mode 100644 index 94f3bc89f6..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Stratton_(Dewar)_High_Fe_Anomaly/LRO_NAC_CratAbndHaz_02S167E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_CratAbndHaz_02S167E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_CratAbndHaz_02S167E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_CratAbndHaz_02S167E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_CratAbndHaz_02S167E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Sulpicius_Gallus/LRO_LROC_Crater_Abundance_Hazard_Sulpicius_Gallus.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Sulpicius_Gallus/LRO_LROC_Crater_Abundance_Hazard_Sulpicius_Gallus.asset deleted file mode 100644 index 6ae06acf4f..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Sulpicius_Gallus/LRO_LROC_Crater_Abundance_Hazard_Sulpicius_Gallus.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_CratAbndHaz_20N010E_2mp", - Name = [[LRO LROC Crater Abundance Hazard, Sulpicius Gallus]], - FilePath = asset.localResource("LRO_NAC_CratAbndHaz_20N010E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Crater Abundance Hazard, Sulpicius Gallus]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_CratAbndHaz_20N010E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Crater Abundance Hazard, Sulpicius Gallus layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Sulpicius_Gallus/LRO_NAC_CratAbndHaz_20N010E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Sulpicius_Gallus/LRO_NAC_CratAbndHaz_20N010E_2mp.vrt deleted file mode 100644 index ad6028d56d..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Sulpicius_Gallus/LRO_NAC_CratAbndHaz_20N010E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_CratAbndHaz_20N010E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_CratAbndHaz_20N010E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_CratAbndHaz_20N010E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_CratAbndHaz_20N010E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Tycho_Crater/LRO_LROC_Crater_Abundance_Hazard_Tycho_Crater.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Tycho_Crater/LRO_LROC_Crater_Abundance_Hazard_Tycho_Crater.asset deleted file mode 100644 index 5f03083f5b..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Tycho_Crater/LRO_LROC_Crater_Abundance_Hazard_Tycho_Crater.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_CratAbndHaz_43S349E_150cmp", - Name = [[LRO LROC Crater Abundance Hazard, Tycho Crater]], - FilePath = asset.localResource("LRO_NAC_CratAbndHaz_43S349E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Crater Abundance Hazard, Tycho Crater]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_CratAbndHaz_43S349E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Crater Abundance Hazard, Tycho Crater layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Tycho_Crater/LRO_NAC_CratAbndHaz_43S349E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Tycho_Crater/LRO_NAC_CratAbndHaz_43S349E_150cmp.vrt deleted file mode 100644 index 4f16309cee..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hazard_Tycho_Crater/LRO_NAC_CratAbndHaz_43S349E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_CratAbndHaz_43S349E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_CratAbndHaz_43S349E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_CratAbndHaz_43S349E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_CratAbndHaz_43S349E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hertzsprung/LRO_LROC_Crater_Abundance_Hertzsprung.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hertzsprung/LRO_LROC_Crater_Abundance_Hertzsprung.asset deleted file mode 100644 index 91fd2a7078..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hertzsprung/LRO_LROC_Crater_Abundance_Hertzsprung.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_CratAbnd_00N234E_150cmp", - Name = [[LRO LROC Crater Abundance, Hertzsprung]], - FilePath = asset.localResource("LRO_NAC_CratAbnd_00N234E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Crater Abundance, Hertzsprung]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_CratAbnd_00N234E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Crater Abundance, Hertzsprung layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hertzsprung/LRO_NAC_CratAbnd_00N234E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hertzsprung/LRO_NAC_CratAbnd_00N234E_150cmp.vrt deleted file mode 100644 index d001edfbdc..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hertzsprung/LRO_NAC_CratAbnd_00N234E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_CratAbnd_00N234E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_CratAbnd_00N234E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_CratAbnd_00N234E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_CratAbnd_00N234E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hortensius_Domes/LRO_LROC_Crater_Abundance_Hortensius_Domes.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hortensius_Domes/LRO_LROC_Crater_Abundance_Hortensius_Domes.asset deleted file mode 100644 index 708f28c9fe..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hortensius_Domes/LRO_LROC_Crater_Abundance_Hortensius_Domes.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_CratAbnd_08N332E_2mp", - Name = [[LRO LROC Crater Abundance, Hortensius Domes]], - FilePath = asset.localResource("LRO_NAC_CratAbnd_08N332E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Crater Abundance, Hortensius Domes]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_CratAbnd_08N332E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Crater Abundance, Hortensius Domes layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hortensius_Domes/LRO_NAC_CratAbnd_08N332E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hortensius_Domes/LRO_NAC_CratAbnd_08N332E_2mp.vrt deleted file mode 100644 index 3782fb1cae..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Hortensius_Domes/LRO_NAC_CratAbnd_08N332E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_CratAbnd_08N332E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_CratAbnd_08N332E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_CratAbnd_08N332E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_CratAbnd_08N332E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_King_Crater/LRO_LROC_Crater_Abundance_King_Crater.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_King_Crater/LRO_LROC_Crater_Abundance_King_Crater.asset deleted file mode 100644 index cff66dd429..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_King_Crater/LRO_LROC_Crater_Abundance_King_Crater.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_CratAbnd_06N120E_200cmp", - Name = [[LRO LROC Crater Abundance, King Crater]], - FilePath = asset.localResource("LRO_NAC_CratAbnd_06N120E_200cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Crater Abundance, King Crater]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_CratAbnd_06N120E_200cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Crater Abundance, King Crater layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_King_Crater/LRO_NAC_CratAbnd_06N120E_200cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_King_Crater/LRO_NAC_CratAbnd_06N120E_200cmp.vrt deleted file mode 100644 index 0cbc2641fa..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_King_Crater/LRO_NAC_CratAbnd_06N120E_200cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_CratAbnd_06N120E_200cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_CratAbnd_06N120E_200cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_CratAbnd_06N120E_200cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_CratAbnd_06N120E_200cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Lichtenberg_Crater/LRO_LROC_Crater_Abundance_Lichtenberg_Crater.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Lichtenberg_Crater/LRO_LROC_Crater_Abundance_Lichtenberg_Crater.asset deleted file mode 100644 index d101bb5a55..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Lichtenberg_Crater/LRO_LROC_Crater_Abundance_Lichtenberg_Crater.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_CratAbnd_32N292E_2mp", - Name = [[LRO LROC Crater Abundance, Lichtenberg Crater]], - FilePath = asset.localResource("LRO_NAC_CratAbnd_32N292E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Crater Abundance, Lichtenberg Crater]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_CratAbnd_32N292E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Crater Abundance, Lichtenberg Crater layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Lichtenberg_Crater/LRO_NAC_CratAbnd_32N292E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Lichtenberg_Crater/LRO_NAC_CratAbnd_32N292E_2mp.vrt deleted file mode 100644 index ac97001a29..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Lichtenberg_Crater/LRO_NAC_CratAbnd_32N292E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_CratAbnd_32N292E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_CratAbnd_32N292E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_CratAbnd_32N292E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_CratAbnd_32N292E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Mare_Crisium/LRO_LROC_Crater_Abundance_Mare_Crisium.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Mare_Crisium/LRO_LROC_Crater_Abundance_Mare_Crisium.asset deleted file mode 100644 index 381b496367..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Mare_Crisium/LRO_LROC_Crater_Abundance_Mare_Crisium.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_CratAbnd_10N058E_150cmp", - Name = [[LRO LROC Crater Abundance, Mare Crisium]], - FilePath = asset.localResource("LRO_NAC_CratAbnd_10N058E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Crater Abundance, Mare Crisium]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_CratAbnd_10N058E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Crater Abundance, Mare Crisium layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Mare_Crisium/LRO_NAC_CratAbnd_10N058E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Mare_Crisium/LRO_NAC_CratAbnd_10N058E_150cmp.vrt deleted file mode 100644 index dc1d9ea9a1..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Mare_Crisium/LRO_NAC_CratAbnd_10N058E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_CratAbnd_10N058E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_CratAbnd_10N058E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_CratAbnd_10N058E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_CratAbnd_10N058E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Montes_Pyrenaeus/LRO_LROC_Crater_Abundance_Montes_Pyrenaeus.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Montes_Pyrenaeus/LRO_LROC_Crater_Abundance_Montes_Pyrenaeus.asset deleted file mode 100644 index 3267d3452e..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Montes_Pyrenaeus/LRO_LROC_Crater_Abundance_Montes_Pyrenaeus.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_CratAbnd_16S041E_150cmp", - Name = [[LRO LROC Crater Abundance, Montes Pyrenaeus]], - FilePath = asset.localResource("LRO_NAC_CratAbnd_16S041E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Crater Abundance, Montes Pyrenaeus]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_CratAbnd_16S041E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Crater Abundance, Montes Pyrenaeus layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Montes_Pyrenaeus/LRO_NAC_CratAbnd_16S041E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Montes_Pyrenaeus/LRO_NAC_CratAbnd_16S041E_150cmp.vrt deleted file mode 100644 index 368ee700c0..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Montes_Pyrenaeus/LRO_NAC_CratAbnd_16S041E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_CratAbnd_16S041E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_CratAbnd_16S041E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_CratAbnd_16S041E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_CratAbnd_16S041E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Orientale_1/LRO_LROC_Crater_Abundance_Orientale_1.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Orientale_1/LRO_LROC_Crater_Abundance_Orientale_1.asset deleted file mode 100644 index a9e4d806c1..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Orientale_1/LRO_LROC_Crater_Abundance_Orientale_1.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_CratAbnd_26S265E_200cmp", - Name = [[LRO LROC Crater Abundance, Orientale 1]], - FilePath = asset.localResource("LRO_NAC_CratAbnd_26S265E_200cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Crater Abundance, Orientale 1]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_CratAbnd_26S265E_200cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Crater Abundance, Orientale 1 layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Orientale_1/LRO_NAC_CratAbnd_26S265E_200cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Orientale_1/LRO_NAC_CratAbnd_26S265E_200cmp.vrt deleted file mode 100644 index b777111f50..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Orientale_1/LRO_NAC_CratAbnd_26S265E_200cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_CratAbnd_26S265E_200cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_CratAbnd_26S265E_200cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_CratAbnd_26S265E_200cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_CratAbnd_26S265E_200cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Plato_Ejecta/LRO_LROC_Crater_Abundance_Plato_Ejecta.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Plato_Ejecta/LRO_LROC_Crater_Abundance_Plato_Ejecta.asset deleted file mode 100644 index dee73ea349..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Plato_Ejecta/LRO_LROC_Crater_Abundance_Plato_Ejecta.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_CratAbnd_53N354E_150cmp", - Name = [[LRO LROC Crater Abundance, Plato Ejecta]], - FilePath = asset.localResource("LRO_NAC_CratAbnd_53N354E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Crater Abundance, Plato Ejecta]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_CratAbnd_53N354E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Crater Abundance, Plato Ejecta layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Plato_Ejecta/LRO_NAC_CratAbnd_53N354E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Plato_Ejecta/LRO_NAC_CratAbnd_53N354E_150cmp.vrt deleted file mode 100644 index 746e8239b8..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Plato_Ejecta/LRO_NAC_CratAbnd_53N354E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_CratAbnd_53N354E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_CratAbnd_53N354E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_CratAbnd_53N354E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_CratAbnd_53N354E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_South_Pole-Aitken_Basin_Interior/LRO_LROC_Crater_Abundance_South_Pole-Aitken_Basin_Interior.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_South_Pole-Aitken_Basin_Interior/LRO_LROC_Crater_Abundance_South_Pole-Aitken_Basin_Interior.asset deleted file mode 100644 index bba4cd0384..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_South_Pole-Aitken_Basin_Interior/LRO_LROC_Crater_Abundance_South_Pole-Aitken_Basin_Interior.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_CratAbnd_60S200E_150cmp", - Name = [[LRO LROC Crater Abundance, South Pole-Aitken Basin Interior]], - FilePath = asset.localResource("LRO_NAC_CratAbnd_60S200E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Crater Abundance, South Pole-Aitken Basin Interior]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_CratAbnd_60S200E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Crater Abundance, South Pole-Aitken Basin Interior layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_South_Pole-Aitken_Basin_Interior/LRO_NAC_CratAbnd_60S200E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_South_Pole-Aitken_Basin_Interior/LRO_NAC_CratAbnd_60S200E_150cmp.vrt deleted file mode 100644 index 6ccdaae3c0..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_South_Pole-Aitken_Basin_Interior/LRO_NAC_CratAbnd_60S200E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_CratAbnd_60S200E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_CratAbnd_60S200E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_CratAbnd_60S200E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_CratAbnd_60S200E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Stratton_(Dewar)_High_Fe_Anomaly/LRO_LROC_Crater_Abundance_Stratton_(Dewar)_High_Fe_Anomaly.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Stratton_(Dewar)_High_Fe_Anomaly/LRO_LROC_Crater_Abundance_Stratton_(Dewar)_High_Fe_Anomaly.asset deleted file mode 100644 index 97148f8273..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Stratton_(Dewar)_High_Fe_Anomaly/LRO_LROC_Crater_Abundance_Stratton_(Dewar)_High_Fe_Anomaly.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_CratAbnd_02S167E_150cmp", - Name = [[LRO LROC Crater Abundance, Stratton (Dewar) High Fe Anomaly]], - FilePath = asset.localResource("LRO_NAC_CratAbnd_02S167E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Crater Abundance, Stratton (Dewar) High Fe Anomaly]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_CratAbnd_02S167E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Crater Abundance, Stratton (Dewar) High Fe Anomaly layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Stratton_(Dewar)_High_Fe_Anomaly/LRO_NAC_CratAbnd_02S167E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Stratton_(Dewar)_High_Fe_Anomaly/LRO_NAC_CratAbnd_02S167E_150cmp.vrt deleted file mode 100644 index 97a37b2d98..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Stratton_(Dewar)_High_Fe_Anomaly/LRO_NAC_CratAbnd_02S167E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_CratAbnd_02S167E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_CratAbnd_02S167E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_CratAbnd_02S167E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_CratAbnd_02S167E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Sulpicius_Gallus/LRO_LROC_Crater_Abundance_Sulpicius_Gallus.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Sulpicius_Gallus/LRO_LROC_Crater_Abundance_Sulpicius_Gallus.asset deleted file mode 100644 index 90feb49aad..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Sulpicius_Gallus/LRO_LROC_Crater_Abundance_Sulpicius_Gallus.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_CratAbnd_20N010E_2mp", - Name = [[LRO LROC Crater Abundance, Sulpicius Gallus]], - FilePath = asset.localResource("LRO_NAC_CratAbnd_20N010E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Crater Abundance, Sulpicius Gallus]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_CratAbnd_20N010E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Crater Abundance, Sulpicius Gallus layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Sulpicius_Gallus/LRO_NAC_CratAbnd_20N010E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Sulpicius_Gallus/LRO_NAC_CratAbnd_20N010E_2mp.vrt deleted file mode 100644 index 8e96d0251a..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Sulpicius_Gallus/LRO_NAC_CratAbnd_20N010E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_CratAbnd_20N010E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_CratAbnd_20N010E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_CratAbnd_20N010E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_CratAbnd_20N010E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Tycho_Crater/LRO_LROC_Crater_Abundance_Tycho_Crater.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Tycho_Crater/LRO_LROC_Crater_Abundance_Tycho_Crater.asset deleted file mode 100644 index c4054bb7e3..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Tycho_Crater/LRO_LROC_Crater_Abundance_Tycho_Crater.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_CratAbnd_43S349E_150cmp", - Name = [[LRO LROC Crater Abundance, Tycho Crater]], - FilePath = asset.localResource("LRO_NAC_CratAbnd_43S349E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Crater Abundance, Tycho Crater]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_CratAbnd_43S349E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Crater Abundance, Tycho Crater layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Tycho_Crater/LRO_NAC_CratAbnd_43S349E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Tycho_Crater/LRO_NAC_CratAbnd_43S349E_150cmp.vrt deleted file mode 100644 index a783493a96..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Abundance_Tycho_Crater/LRO_NAC_CratAbnd_43S349E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_CratAbnd_43S349E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_CratAbnd_43S349E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_CratAbnd_43S349E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_CratAbnd_43S349E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density.asset new file mode 100644 index 0000000000..db4800754b --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density.asset @@ -0,0 +1,254 @@ +-- This file was automatically generated using a script found at +-- https://github.com/OpenSpace/scripts/treks-to-openspace. See the README.md file +-- in that repository for more information on how to run the script to update these +-- files. In particular in the case of errors, prefer to change that script rather +-- than the individual files + +local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier + +local treks_LRO_NAC_CratDen_17S173E_150cmp = { + Identifier = "LRO_NAC_CratDen_17S173E_150cmp", + Name = [[LRO LROC Crater Density, Aitken Crater]], + FilePath = asset.localResource("LRO_LROC_Crater_Density/Aitken_Crater.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_CratDen_13S358E_2mp = { + Identifier = "LRO_NAC_CratDen_13S358E_2mp", + Name = [[LRO LROC Crater Density, Alphonsus Crater]], + FilePath = asset.localResource("LRO_LROC_Crater_Density/Alphonsus_Crater.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_CratDen_73N350E_150cmp = { + Identifier = "LRO_NAC_CratDen_73N350E_150cmp", + Name = [[LRO LROC Crater Density, Anaxagoras Crater]], + FilePath = asset.localResource("LRO_LROC_Crater_Density/Anaxagoras_Crater.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_CratDen_26N004E_150cmp = { + Identifier = "LRO_NAC_CratDen_26N004E_150cmp", + Name = [[LRO LROC Crater Density, Apollo 15]], + FilePath = asset.localResource("LRO_LROC_Crater_Density/Apollo_15.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_CratDen_09S015E_150cmp = { + Identifier = "LRO_NAC_CratDen_09S015E_150cmp", + Name = [[LRO LROC Crater Density, Apollo 16]], + FilePath = asset.localResource("LRO_LROC_Crater_Density/Apollo_16.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_CratDen_37S206E_150cmp = { + Identifier = "LRO_NAC_CratDen_37S206E_150cmp", + Name = [[LRO LROC Crater Density, Apollo Basin]], + FilePath = asset.localResource("LRO_LROC_Crater_Density/Apollo_Basin.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_CratDen_25N311E_2mp = { + Identifier = "LRO_NAC_CratDen_25N311E_2mp", + Name = [[LRO LROC Crater Density, Aristarchus 1]], + FilePath = asset.localResource("LRO_LROC_Crater_Density/Aristarchus_1.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_CratDen_28N307E_150cmp = { + Identifier = "LRO_NAC_CratDen_28N307E_150cmp", + Name = [[LRO LROC Crater Density, Aristarchus 2]], + FilePath = asset.localResource("LRO_LROC_Crater_Density/Aristarchus_2.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_CratDen_19S070E_150cmp = { + Identifier = "LRO_NAC_CratDen_19S070E_150cmp", + Name = [[LRO LROC Crater Density, Balmer Basin]], + FilePath = asset.localResource("LRO_LROC_Crater_Density/Balmer_Basin.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_CratDen_20S337E_400cmp = { + Identifier = "LRO_NAC_CratDen_20S337E_400cmp", + Name = [[LRO LROC Crater Density, Bullialdus Crater]], + FilePath = asset.localResource("LRO_LROC_Crater_Density/Bullialdus_Crater.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_CratDen_36N320E_2mp = { + Identifier = "LRO_NAC_CratDen_36N320E_2mp", + Name = [[LRO LROC Crater Density, Gruithuisen Domes]], + FilePath = asset.localResource("LRO_LROC_Crater_Density/Gruithuisen_Domes.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_CratDen_00N234E_150cmp = { + Identifier = "LRO_NAC_CratDen_00N234E_150cmp", + Name = [[LRO LROC Crater Density, Hertzsprung]], + FilePath = asset.localResource("LRO_LROC_Crater_Density/Hertzsprung.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_CratDen_08N332E_2mp = { + Identifier = "LRO_NAC_CratDen_08N332E_2mp", + Name = [[LRO LROC Crater Density, Hortensius Domes]], + FilePath = asset.localResource("LRO_LROC_Crater_Density/Hortensius_Domes.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_CratDen_06N120E_200cmp = { + Identifier = "LRO_NAC_CratDen_06N120E_200cmp", + Name = [[LRO LROC Crater Density, King Crater]], + FilePath = asset.localResource("LRO_LROC_Crater_Density/King_Crater.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_CratDen_32N292E_2mp = { + Identifier = "LRO_NAC_CratDen_32N292E_2mp", + Name = [[LRO LROC Crater Density, Lichtenberg Crater]], + FilePath = asset.localResource("LRO_LROC_Crater_Density/Lichtenberg_Crater.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_CratDen_10N058E_150cmp = { + Identifier = "LRO_NAC_CratDen_10N058E_150cmp", + Name = [[LRO LROC Crater Density, Mare Crisium]], + FilePath = asset.localResource("LRO_LROC_Crater_Density/Mare_Crisium.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_CratDen_16S041E_150cmp = { + Identifier = "LRO_NAC_CratDen_16S041E_150cmp", + Name = [[LRO LROC Crater Density, Montes Pyrenaeus]], + FilePath = asset.localResource("LRO_LROC_Crater_Density/Montes_Pyrenaeus.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_CratDen_26S265E_200cmp = { + Identifier = "LRO_NAC_CratDen_26S265E_200cmp", + Name = [[LRO LROC Crater Density, Orientale 1]], + FilePath = asset.localResource("LRO_LROC_Crater_Density/Orientale_1.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_CratDen_53N354E_150cmp = { + Identifier = "LRO_NAC_CratDen_53N354E_150cmp", + Name = [[LRO LROC Crater Density, Plato Ejecta]], + FilePath = asset.localResource("LRO_LROC_Crater_Density/Plato_Ejecta.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_CratDen_60S200E_150cmp = { + Identifier = "LRO_NAC_CratDen_60S200E_150cmp", + Name = [[LRO LROC Crater Density, South Pole-Aitken Basin Interior]], + FilePath = asset.localResource("LRO_LROC_Crater_Density/South_Pole-Aitken_Basin_Interior.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_CratDen_02S167E_150cmp = { + Identifier = "LRO_NAC_CratDen_02S167E_150cmp", + Name = [[LRO LROC Crater Density, Stratton (Dewar) High Fe Anomaly]], + FilePath = asset.localResource("LRO_LROC_Crater_Density/Stratton_Dewar_High_Fe_Anomaly.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_CratDen_20N010E_2mp = { + Identifier = "LRO_NAC_CratDen_20N010E_2mp", + Name = [[LRO LROC Crater Density, Sulpicius Gallus]], + FilePath = asset.localResource("LRO_LROC_Crater_Density/Sulpicius_Gallus.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_CratDen_43S349E_150cmp = { + Identifier = "LRO_NAC_CratDen_43S349E_150cmp", + Name = [[LRO LROC Crater Density, Tycho Crater]], + FilePath = asset.localResource("LRO_LROC_Crater_Density/Tycho_Crater.vrt"), + Description = [[]] +} + +asset.onInitialize(function() + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_CratDen_17S173E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_CratDen_13S358E_2mp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_CratDen_73N350E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_CratDen_26N004E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_CratDen_09S015E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_CratDen_37S206E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_CratDen_25N311E_2mp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_CratDen_28N307E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_CratDen_19S070E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_CratDen_20S337E_400cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_CratDen_36N320E_2mp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_CratDen_00N234E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_CratDen_08N332E_2mp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_CratDen_06N120E_200cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_CratDen_32N292E_2mp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_CratDen_10N058E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_CratDen_16S041E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_CratDen_26S265E_200cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_CratDen_53N354E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_CratDen_60S200E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_CratDen_02S167E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_CratDen_20N010E_2mp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_CratDen_43S349E_150cmp) +end) + +asset.onDeinitialize(function() + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_CratDen_17S173E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_CratDen_13S358E_2mp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_CratDen_73N350E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_CratDen_26N004E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_CratDen_09S015E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_CratDen_37S206E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_CratDen_25N311E_2mp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_CratDen_28N307E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_CratDen_19S070E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_CratDen_20S337E_400cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_CratDen_36N320E_2mp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_CratDen_00N234E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_CratDen_08N332E_2mp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_CratDen_06N120E_200cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_CratDen_32N292E_2mp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_CratDen_10N058E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_CratDen_16S041E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_CratDen_26S265E_200cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_CratDen_53N354E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_CratDen_60S200E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_CratDen_02S167E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_CratDen_20N010E_2mp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_CratDen_43S349E_150cmp") +end) + +asset.export("LRO_NAC_CratDen_17S173E_150cmp", treks_LRO_NAC_CratDen_17S173E_150cmp) +asset.export("LRO_NAC_CratDen_13S358E_2mp", treks_LRO_NAC_CratDen_13S358E_2mp) +asset.export("LRO_NAC_CratDen_73N350E_150cmp", treks_LRO_NAC_CratDen_73N350E_150cmp) +asset.export("LRO_NAC_CratDen_26N004E_150cmp", treks_LRO_NAC_CratDen_26N004E_150cmp) +asset.export("LRO_NAC_CratDen_09S015E_150cmp", treks_LRO_NAC_CratDen_09S015E_150cmp) +asset.export("LRO_NAC_CratDen_37S206E_150cmp", treks_LRO_NAC_CratDen_37S206E_150cmp) +asset.export("LRO_NAC_CratDen_25N311E_2mp", treks_LRO_NAC_CratDen_25N311E_2mp) +asset.export("LRO_NAC_CratDen_28N307E_150cmp", treks_LRO_NAC_CratDen_28N307E_150cmp) +asset.export("LRO_NAC_CratDen_19S070E_150cmp", treks_LRO_NAC_CratDen_19S070E_150cmp) +asset.export("LRO_NAC_CratDen_20S337E_400cmp", treks_LRO_NAC_CratDen_20S337E_400cmp) +asset.export("LRO_NAC_CratDen_36N320E_2mp", treks_LRO_NAC_CratDen_36N320E_2mp) +asset.export("LRO_NAC_CratDen_00N234E_150cmp", treks_LRO_NAC_CratDen_00N234E_150cmp) +asset.export("LRO_NAC_CratDen_08N332E_2mp", treks_LRO_NAC_CratDen_08N332E_2mp) +asset.export("LRO_NAC_CratDen_06N120E_200cmp", treks_LRO_NAC_CratDen_06N120E_200cmp) +asset.export("LRO_NAC_CratDen_32N292E_2mp", treks_LRO_NAC_CratDen_32N292E_2mp) +asset.export("LRO_NAC_CratDen_10N058E_150cmp", treks_LRO_NAC_CratDen_10N058E_150cmp) +asset.export("LRO_NAC_CratDen_16S041E_150cmp", treks_LRO_NAC_CratDen_16S041E_150cmp) +asset.export("LRO_NAC_CratDen_26S265E_200cmp", treks_LRO_NAC_CratDen_26S265E_200cmp) +asset.export("LRO_NAC_CratDen_53N354E_150cmp", treks_LRO_NAC_CratDen_53N354E_150cmp) +asset.export("LRO_NAC_CratDen_60S200E_150cmp", treks_LRO_NAC_CratDen_60S200E_150cmp) +asset.export("LRO_NAC_CratDen_02S167E_150cmp", treks_LRO_NAC_CratDen_02S167E_150cmp) +asset.export("LRO_NAC_CratDen_20N010E_2mp", treks_LRO_NAC_CratDen_20N010E_2mp) +asset.export("LRO_NAC_CratDen_43S349E_150cmp", treks_LRO_NAC_CratDen_43S349E_150cmp) + + +asset.meta = { + Name = [[NASA Treks Layers for Moon LRO_LROC_Crater_Density], + Version = "1.0", + Author = "NASA/Treks", + URL = "https://trek.nasa.gov/moon", + License = "NASA/Treks", + Description = [[LRO_LROC_Crater_Density layers from NASA/Treks for Moon]] +} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Aitken_Crater.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Aitken_Crater.vrt new file mode 100644 index 0000000000..9d7c54508c --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Aitken_Crater.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Aitken_Crater.wms + 1 + + + + 0 + + + + 0 + Green + + Aitken_Crater.wms + 2 + + + + 0 + + + + 0 + Blue + + Aitken_Crater.wms + 3 + + + + 0 + + + + Alpha + + Aitken_Crater.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Aitken_Crater/LRO_NAC_CratDen_17S173E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Aitken_Crater.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Aitken_Crater/LRO_NAC_CratDen_17S173E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Aitken_Crater.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Alphonsus_Crater.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Alphonsus_Crater.vrt new file mode 100644 index 0000000000..68c69740ca --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Alphonsus_Crater.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Alphonsus_Crater.wms + 1 + + + + 0 + + + + 0 + Green + + Alphonsus_Crater.wms + 2 + + + + 0 + + + + 0 + Blue + + Alphonsus_Crater.wms + 3 + + + + 0 + + + + Alpha + + Alphonsus_Crater.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Alphonsus_Crater/LRO_NAC_CratDen_13S358E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Alphonsus_Crater.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Alphonsus_Crater/LRO_NAC_CratDen_13S358E_2mp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Alphonsus_Crater.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Anaxagoras_Crater.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Anaxagoras_Crater.vrt new file mode 100644 index 0000000000..83bd2e4edf --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Anaxagoras_Crater.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Anaxagoras_Crater.wms + 1 + + + + 0 + + + + 0 + Green + + Anaxagoras_Crater.wms + 2 + + + + 0 + + + + 0 + Blue + + Anaxagoras_Crater.wms + 3 + + + + 0 + + + + Alpha + + Anaxagoras_Crater.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Anaxagoras_Crater/LRO_NAC_CratDen_73N350E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Anaxagoras_Crater.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Anaxagoras_Crater/LRO_NAC_CratDen_73N350E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Anaxagoras_Crater.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Apollo_15.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Apollo_15.vrt new file mode 100644 index 0000000000..c328339b62 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Apollo_15.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Apollo_15.wms + 1 + + + + 0 + + + + 0 + Green + + Apollo_15.wms + 2 + + + + 0 + + + + 0 + Blue + + Apollo_15.wms + 3 + + + + 0 + + + + Alpha + + Apollo_15.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Apollo_15/LRO_NAC_CratDen_26N004E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Apollo_15.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Apollo_15/LRO_NAC_CratDen_26N004E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Apollo_15.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Apollo_16.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Apollo_16.vrt new file mode 100644 index 0000000000..1c9a6bfbde --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Apollo_16.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Apollo_16.wms + 1 + + + + 0 + + + + 0 + Green + + Apollo_16.wms + 2 + + + + 0 + + + + 0 + Blue + + Apollo_16.wms + 3 + + + + 0 + + + + Alpha + + Apollo_16.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Apollo_16/LRO_NAC_CratDen_09S015E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Apollo_16.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Apollo_16/LRO_NAC_CratDen_09S015E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Apollo_16.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Apollo_Basin.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Apollo_Basin.vrt new file mode 100644 index 0000000000..f9b40f9c51 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Apollo_Basin.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Apollo_Basin.wms + 1 + + + + 0 + + + + 0 + Green + + Apollo_Basin.wms + 2 + + + + 0 + + + + 0 + Blue + + Apollo_Basin.wms + 3 + + + + 0 + + + + Alpha + + Apollo_Basin.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Apollo_Basin/LRO_NAC_CratDen_37S206E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Apollo_Basin.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Apollo_Basin/LRO_NAC_CratDen_37S206E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Apollo_Basin.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Aristarchus_1.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Aristarchus_1.vrt new file mode 100644 index 0000000000..7796863a5c --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Aristarchus_1.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Aristarchus_1.wms + 1 + + + + 0 + + + + 0 + Green + + Aristarchus_1.wms + 2 + + + + 0 + + + + 0 + Blue + + Aristarchus_1.wms + 3 + + + + 0 + + + + Alpha + + Aristarchus_1.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Aristarchus_1/LRO_NAC_CratDen_25N311E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Aristarchus_1.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Aristarchus_1/LRO_NAC_CratDen_25N311E_2mp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Aristarchus_1.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Aristarchus_2.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Aristarchus_2.vrt new file mode 100644 index 0000000000..93d6a7dd6d --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Aristarchus_2.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Aristarchus_2.wms + 1 + + + + 0 + + + + 0 + Green + + Aristarchus_2.wms + 2 + + + + 0 + + + + 0 + Blue + + Aristarchus_2.wms + 3 + + + + 0 + + + + Alpha + + Aristarchus_2.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Aristarchus_2/LRO_NAC_CratDen_28N307E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Aristarchus_2.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Aristarchus_2/LRO_NAC_CratDen_28N307E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Aristarchus_2.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Balmer_Basin.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Balmer_Basin.vrt new file mode 100644 index 0000000000..3028785c98 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Balmer_Basin.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Balmer_Basin.wms + 1 + + + + 0 + + + + 0 + Green + + Balmer_Basin.wms + 2 + + + + 0 + + + + 0 + Blue + + Balmer_Basin.wms + 3 + + + + 0 + + + + Alpha + + Balmer_Basin.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Balmer_Basin/LRO_NAC_CratDen_19S070E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Balmer_Basin.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Balmer_Basin/LRO_NAC_CratDen_19S070E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Balmer_Basin.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Bullialdus_Crater.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Bullialdus_Crater.vrt new file mode 100644 index 0000000000..15eb2de7e7 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Bullialdus_Crater.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Bullialdus_Crater.wms + 1 + + + + 0 + + + + 0 + Green + + Bullialdus_Crater.wms + 2 + + + + 0 + + + + 0 + Blue + + Bullialdus_Crater.wms + 3 + + + + 0 + + + + Alpha + + Bullialdus_Crater.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Bullialdus_Crater/LRO_NAC_CratDen_20S337E_400cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Bullialdus_Crater.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Bullialdus_Crater/LRO_NAC_CratDen_20S337E_400cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Bullialdus_Crater.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Gruithuisen_Domes.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Gruithuisen_Domes.vrt new file mode 100644 index 0000000000..5142f02aea --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Gruithuisen_Domes.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Gruithuisen_Domes.wms + 1 + + + + 0 + + + + 0 + Green + + Gruithuisen_Domes.wms + 2 + + + + 0 + + + + 0 + Blue + + Gruithuisen_Domes.wms + 3 + + + + 0 + + + + Alpha + + Gruithuisen_Domes.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Gruithuisen_Domes/LRO_NAC_CratDen_36N320E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Gruithuisen_Domes.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Gruithuisen_Domes/LRO_NAC_CratDen_36N320E_2mp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Gruithuisen_Domes.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Hertzsprung.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Hertzsprung.vrt new file mode 100644 index 0000000000..ad731212e4 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Hertzsprung.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Hertzsprung.wms + 1 + + + + 0 + + + + 0 + Green + + Hertzsprung.wms + 2 + + + + 0 + + + + 0 + Blue + + Hertzsprung.wms + 3 + + + + 0 + + + + Alpha + + Hertzsprung.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hertzsprung/LRO_NAC_CratDen_00N234E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Hertzsprung.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hertzsprung/LRO_NAC_CratDen_00N234E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Hertzsprung.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Hortensius_Domes.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Hortensius_Domes.vrt new file mode 100644 index 0000000000..19f2fa78ca --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Hortensius_Domes.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Hortensius_Domes.wms + 1 + + + + 0 + + + + 0 + Green + + Hortensius_Domes.wms + 2 + + + + 0 + + + + 0 + Blue + + Hortensius_Domes.wms + 3 + + + + 0 + + + + Alpha + + Hortensius_Domes.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hortensius_Domes/LRO_NAC_CratDen_08N332E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Hortensius_Domes.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hortensius_Domes/LRO_NAC_CratDen_08N332E_2mp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Hortensius_Domes.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/King_Crater.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/King_Crater.vrt new file mode 100644 index 0000000000..ffb4db9833 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/King_Crater.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + King_Crater.wms + 1 + + + + 0 + + + + 0 + Green + + King_Crater.wms + 2 + + + + 0 + + + + 0 + Blue + + King_Crater.wms + 3 + + + + 0 + + + + Alpha + + King_Crater.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_King_Crater/LRO_NAC_CratDen_06N120E_200cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/King_Crater.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_King_Crater/LRO_NAC_CratDen_06N120E_200cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/King_Crater.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Lichtenberg_Crater.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Lichtenberg_Crater.vrt new file mode 100644 index 0000000000..8584f2c304 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Lichtenberg_Crater.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Lichtenberg_Crater.wms + 1 + + + + 0 + + + + 0 + Green + + Lichtenberg_Crater.wms + 2 + + + + 0 + + + + 0 + Blue + + Lichtenberg_Crater.wms + 3 + + + + 0 + + + + Alpha + + Lichtenberg_Crater.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Lichtenberg_Crater/LRO_NAC_CratDen_32N292E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Lichtenberg_Crater.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Lichtenberg_Crater/LRO_NAC_CratDen_32N292E_2mp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Lichtenberg_Crater.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Mare_Crisium.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Mare_Crisium.vrt new file mode 100644 index 0000000000..d6a7df281a --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Mare_Crisium.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Mare_Crisium.wms + 1 + + + + 0 + + + + 0 + Green + + Mare_Crisium.wms + 2 + + + + 0 + + + + 0 + Blue + + Mare_Crisium.wms + 3 + + + + 0 + + + + Alpha + + Mare_Crisium.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Mare_Crisium/LRO_NAC_CratDen_10N058E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Mare_Crisium.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Mare_Crisium/LRO_NAC_CratDen_10N058E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Mare_Crisium.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Montes_Pyrenaeus.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Montes_Pyrenaeus.vrt new file mode 100644 index 0000000000..f515ff3f8e --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Montes_Pyrenaeus.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Montes_Pyrenaeus.wms + 1 + + + + 0 + + + + 0 + Green + + Montes_Pyrenaeus.wms + 2 + + + + 0 + + + + 0 + Blue + + Montes_Pyrenaeus.wms + 3 + + + + 0 + + + + Alpha + + Montes_Pyrenaeus.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Montes_Pyrenaeus/LRO_NAC_CratDen_16S041E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Montes_Pyrenaeus.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Montes_Pyrenaeus/LRO_NAC_CratDen_16S041E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Montes_Pyrenaeus.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Orientale_1.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Orientale_1.vrt new file mode 100644 index 0000000000..7828a2e6b2 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Orientale_1.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Orientale_1.wms + 1 + + + + 0 + + + + 0 + Green + + Orientale_1.wms + 2 + + + + 0 + + + + 0 + Blue + + Orientale_1.wms + 3 + + + + 0 + + + + Alpha + + Orientale_1.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Orientale_1/LRO_NAC_CratDen_26S265E_200cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Orientale_1.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Orientale_1/LRO_NAC_CratDen_26S265E_200cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Orientale_1.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Plato_Ejecta.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Plato_Ejecta.vrt new file mode 100644 index 0000000000..955c4b47cf --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Plato_Ejecta.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Plato_Ejecta.wms + 1 + + + + 0 + + + + 0 + Green + + Plato_Ejecta.wms + 2 + + + + 0 + + + + 0 + Blue + + Plato_Ejecta.wms + 3 + + + + 0 + + + + Alpha + + Plato_Ejecta.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Plato_Ejecta/LRO_NAC_CratDen_53N354E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Plato_Ejecta.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Plato_Ejecta/LRO_NAC_CratDen_53N354E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Plato_Ejecta.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/South_Pole-Aitken_Basin_Interior.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/South_Pole-Aitken_Basin_Interior.vrt new file mode 100644 index 0000000000..63d096530c --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/South_Pole-Aitken_Basin_Interior.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + South_Pole-Aitken_Basin_Interior.wms + 1 + + + + 0 + + + + 0 + Green + + South_Pole-Aitken_Basin_Interior.wms + 2 + + + + 0 + + + + 0 + Blue + + South_Pole-Aitken_Basin_Interior.wms + 3 + + + + 0 + + + + Alpha + + South_Pole-Aitken_Basin_Interior.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_South_Pole-Aitken_Basin_Interior/LRO_NAC_CratDen_60S200E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/South_Pole-Aitken_Basin_Interior.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_South_Pole-Aitken_Basin_Interior/LRO_NAC_CratDen_60S200E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/South_Pole-Aitken_Basin_Interior.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Stratton_Dewar_High_Fe_Anomaly.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Stratton_Dewar_High_Fe_Anomaly.vrt new file mode 100644 index 0000000000..25b5fa5add --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Stratton_Dewar_High_Fe_Anomaly.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Stratton_Dewar_High_Fe_Anomaly.wms + 1 + + + + 0 + + + + 0 + Green + + Stratton_Dewar_High_Fe_Anomaly.wms + 2 + + + + 0 + + + + 0 + Blue + + Stratton_Dewar_High_Fe_Anomaly.wms + 3 + + + + 0 + + + + Alpha + + Stratton_Dewar_High_Fe_Anomaly.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Stratton_(Dewar)_High_Fe_Anomaly/LRO_NAC_CratDen_02S167E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Stratton_Dewar_High_Fe_Anomaly.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Stratton_(Dewar)_High_Fe_Anomaly/LRO_NAC_CratDen_02S167E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Stratton_Dewar_High_Fe_Anomaly.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Sulpicius_Gallus.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Sulpicius_Gallus.vrt new file mode 100644 index 0000000000..dbb8bcaf58 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Sulpicius_Gallus.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Sulpicius_Gallus.wms + 1 + + + + 0 + + + + 0 + Green + + Sulpicius_Gallus.wms + 2 + + + + 0 + + + + 0 + Blue + + Sulpicius_Gallus.wms + 3 + + + + 0 + + + + Alpha + + Sulpicius_Gallus.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Sulpicius_Gallus/LRO_NAC_CratDen_20N010E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Sulpicius_Gallus.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Sulpicius_Gallus/LRO_NAC_CratDen_20N010E_2mp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Sulpicius_Gallus.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Tycho_Crater.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Tycho_Crater.vrt new file mode 100644 index 0000000000..201800be96 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Tycho_Crater.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Tycho_Crater.wms + 1 + + + + 0 + + + + 0 + Green + + Tycho_Crater.wms + 2 + + + + 0 + + + + 0 + Blue + + Tycho_Crater.wms + 3 + + + + 0 + + + + Alpha + + Tycho_Crater.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Tycho_Crater/LRO_NAC_CratDen_43S349E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Tycho_Crater.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Tycho_Crater/LRO_NAC_CratDen_43S349E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density/Tycho_Crater.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Aitken_Crater/LRO_LROC_Crater_Density_Aitken_Crater.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Aitken_Crater/LRO_LROC_Crater_Density_Aitken_Crater.asset deleted file mode 100644 index dbec381d21..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Aitken_Crater/LRO_LROC_Crater_Density_Aitken_Crater.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_CratDen_17S173E_150cmp", - Name = [[LRO LROC Crater Density, Aitken Crater]], - FilePath = asset.localResource("LRO_NAC_CratDen_17S173E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Crater Density, Aitken Crater]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_CratDen_17S173E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Crater Density, Aitken Crater layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Aitken_Crater/LRO_NAC_CratDen_17S173E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Aitken_Crater/LRO_NAC_CratDen_17S173E_150cmp.vrt deleted file mode 100644 index 5d3abff85f..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Aitken_Crater/LRO_NAC_CratDen_17S173E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_CratDen_17S173E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_CratDen_17S173E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_CratDen_17S173E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_CratDen_17S173E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Alphonsus_Crater/LRO_LROC_Crater_Density_Alphonsus_Crater.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Alphonsus_Crater/LRO_LROC_Crater_Density_Alphonsus_Crater.asset deleted file mode 100644 index 434f4747e4..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Alphonsus_Crater/LRO_LROC_Crater_Density_Alphonsus_Crater.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_CratDen_13S358E_2mp", - Name = [[LRO LROC Crater Density, Alphonsus Crater]], - FilePath = asset.localResource("LRO_NAC_CratDen_13S358E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Crater Density, Alphonsus Crater]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_CratDen_13S358E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Crater Density, Alphonsus Crater layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Alphonsus_Crater/LRO_NAC_CratDen_13S358E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Alphonsus_Crater/LRO_NAC_CratDen_13S358E_2mp.vrt deleted file mode 100644 index ff03344e0d..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Alphonsus_Crater/LRO_NAC_CratDen_13S358E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_CratDen_13S358E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_CratDen_13S358E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_CratDen_13S358E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_CratDen_13S358E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Anaxagoras_Crater/LRO_LROC_Crater_Density_Anaxagoras_Crater.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Anaxagoras_Crater/LRO_LROC_Crater_Density_Anaxagoras_Crater.asset deleted file mode 100644 index 7b592862e2..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Anaxagoras_Crater/LRO_LROC_Crater_Density_Anaxagoras_Crater.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_CratDen_73N350E_150cmp", - Name = [[LRO LROC Crater Density, Anaxagoras Crater]], - FilePath = asset.localResource("LRO_NAC_CratDen_73N350E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Crater Density, Anaxagoras Crater]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_CratDen_73N350E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Crater Density, Anaxagoras Crater layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Anaxagoras_Crater/LRO_NAC_CratDen_73N350E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Anaxagoras_Crater/LRO_NAC_CratDen_73N350E_150cmp.vrt deleted file mode 100644 index a576e28c98..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Anaxagoras_Crater/LRO_NAC_CratDen_73N350E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_CratDen_73N350E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_CratDen_73N350E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_CratDen_73N350E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_CratDen_73N350E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Apollo_15/LRO_LROC_Crater_Density_Apollo_15.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Apollo_15/LRO_LROC_Crater_Density_Apollo_15.asset deleted file mode 100644 index 86116febe7..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Apollo_15/LRO_LROC_Crater_Density_Apollo_15.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_CratDen_26N004E_150cmp", - Name = [[LRO LROC Crater Density, Apollo 15]], - FilePath = asset.localResource("LRO_NAC_CratDen_26N004E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Crater Density, Apollo 15]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_CratDen_26N004E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Crater Density, Apollo 15 layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Apollo_15/LRO_NAC_CratDen_26N004E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Apollo_15/LRO_NAC_CratDen_26N004E_150cmp.vrt deleted file mode 100644 index 5e343b1e08..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Apollo_15/LRO_NAC_CratDen_26N004E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_CratDen_26N004E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_CratDen_26N004E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_CratDen_26N004E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_CratDen_26N004E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Apollo_16/LRO_LROC_Crater_Density_Apollo_16.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Apollo_16/LRO_LROC_Crater_Density_Apollo_16.asset deleted file mode 100644 index deb01391e7..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Apollo_16/LRO_LROC_Crater_Density_Apollo_16.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_CratDen_09S015E_150cmp", - Name = [[LRO LROC Crater Density, Apollo 16]], - FilePath = asset.localResource("LRO_NAC_CratDen_09S015E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Crater Density, Apollo 16]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_CratDen_09S015E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Crater Density, Apollo 16 layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Apollo_16/LRO_NAC_CratDen_09S015E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Apollo_16/LRO_NAC_CratDen_09S015E_150cmp.vrt deleted file mode 100644 index f6bb46a53f..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Apollo_16/LRO_NAC_CratDen_09S015E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_CratDen_09S015E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_CratDen_09S015E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_CratDen_09S015E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_CratDen_09S015E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Apollo_Basin/LRO_LROC_Crater_Density_Apollo_Basin.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Apollo_Basin/LRO_LROC_Crater_Density_Apollo_Basin.asset deleted file mode 100644 index 54228eb5fb..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Apollo_Basin/LRO_LROC_Crater_Density_Apollo_Basin.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_CratDen_37S206E_150cmp", - Name = [[LRO LROC Crater Density, Apollo Basin]], - FilePath = asset.localResource("LRO_NAC_CratDen_37S206E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Crater Density, Apollo Basin]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_CratDen_37S206E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Crater Density, Apollo Basin layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Apollo_Basin/LRO_NAC_CratDen_37S206E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Apollo_Basin/LRO_NAC_CratDen_37S206E_150cmp.vrt deleted file mode 100644 index 14c8c58bbe..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Apollo_Basin/LRO_NAC_CratDen_37S206E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_CratDen_37S206E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_CratDen_37S206E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_CratDen_37S206E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_CratDen_37S206E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Aristarchus_1/LRO_LROC_Crater_Density_Aristarchus_1.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Aristarchus_1/LRO_LROC_Crater_Density_Aristarchus_1.asset deleted file mode 100644 index 74a8833d7f..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Aristarchus_1/LRO_LROC_Crater_Density_Aristarchus_1.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_CratDen_25N311E_2mp", - Name = [[LRO LROC Crater Density, Aristarchus 1]], - FilePath = asset.localResource("LRO_NAC_CratDen_25N311E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Crater Density, Aristarchus 1]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_CratDen_25N311E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Crater Density, Aristarchus 1 layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Aristarchus_1/LRO_NAC_CratDen_25N311E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Aristarchus_1/LRO_NAC_CratDen_25N311E_2mp.vrt deleted file mode 100644 index b7d1ebf207..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Aristarchus_1/LRO_NAC_CratDen_25N311E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_CratDen_25N311E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_CratDen_25N311E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_CratDen_25N311E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_CratDen_25N311E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Aristarchus_2/LRO_LROC_Crater_Density_Aristarchus_2.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Aristarchus_2/LRO_LROC_Crater_Density_Aristarchus_2.asset deleted file mode 100644 index 961fb52d6d..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Aristarchus_2/LRO_LROC_Crater_Density_Aristarchus_2.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_CratDen_28N307E_150cmp", - Name = [[LRO LROC Crater Density, Aristarchus 2]], - FilePath = asset.localResource("LRO_NAC_CratDen_28N307E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Crater Density, Aristarchus 2]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_CratDen_28N307E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Crater Density, Aristarchus 2 layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Aristarchus_2/LRO_NAC_CratDen_28N307E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Aristarchus_2/LRO_NAC_CratDen_28N307E_150cmp.vrt deleted file mode 100644 index 29a33e28d7..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Aristarchus_2/LRO_NAC_CratDen_28N307E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_CratDen_28N307E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_CratDen_28N307E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_CratDen_28N307E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_CratDen_28N307E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Balmer_Basin/LRO_LROC_Crater_Density_Balmer_Basin.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Balmer_Basin/LRO_LROC_Crater_Density_Balmer_Basin.asset deleted file mode 100644 index 5c1c871688..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Balmer_Basin/LRO_LROC_Crater_Density_Balmer_Basin.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_CratDen_19S070E_150cmp", - Name = [[LRO LROC Crater Density, Balmer Basin]], - FilePath = asset.localResource("LRO_NAC_CratDen_19S070E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Crater Density, Balmer Basin]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_CratDen_19S070E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Crater Density, Balmer Basin layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Balmer_Basin/LRO_NAC_CratDen_19S070E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Balmer_Basin/LRO_NAC_CratDen_19S070E_150cmp.vrt deleted file mode 100644 index d0ff5a5dc5..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Balmer_Basin/LRO_NAC_CratDen_19S070E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_CratDen_19S070E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_CratDen_19S070E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_CratDen_19S070E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_CratDen_19S070E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Bullialdus_Crater/LRO_LROC_Crater_Density_Bullialdus_Crater.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Bullialdus_Crater/LRO_LROC_Crater_Density_Bullialdus_Crater.asset deleted file mode 100644 index b6009f60da..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Bullialdus_Crater/LRO_LROC_Crater_Density_Bullialdus_Crater.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_CratDen_20S337E_400cmp", - Name = [[LRO LROC Crater Density, Bullialdus Crater]], - FilePath = asset.localResource("LRO_NAC_CratDen_20S337E_400cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Crater Density, Bullialdus Crater]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_CratDen_20S337E_400cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Crater Density, Bullialdus Crater layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Bullialdus_Crater/LRO_NAC_CratDen_20S337E_400cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Bullialdus_Crater/LRO_NAC_CratDen_20S337E_400cmp.vrt deleted file mode 100644 index fd8f852613..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Bullialdus_Crater/LRO_NAC_CratDen_20S337E_400cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_CratDen_20S337E_400cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_CratDen_20S337E_400cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_CratDen_20S337E_400cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_CratDen_20S337E_400cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Gruithuisen_Domes/LRO_LROC_Crater_Density_Gruithuisen_Domes.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Gruithuisen_Domes/LRO_LROC_Crater_Density_Gruithuisen_Domes.asset deleted file mode 100644 index 6777006171..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Gruithuisen_Domes/LRO_LROC_Crater_Density_Gruithuisen_Domes.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_CratDen_36N320E_2mp", - Name = [[LRO LROC Crater Density, Gruithuisen Domes]], - FilePath = asset.localResource("LRO_NAC_CratDen_36N320E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Crater Density, Gruithuisen Domes]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_CratDen_36N320E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Crater Density, Gruithuisen Domes layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Gruithuisen_Domes/LRO_NAC_CratDen_36N320E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Gruithuisen_Domes/LRO_NAC_CratDen_36N320E_2mp.vrt deleted file mode 100644 index f57a09465b..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Gruithuisen_Domes/LRO_NAC_CratDen_36N320E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_CratDen_36N320E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_CratDen_36N320E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_CratDen_36N320E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_CratDen_36N320E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard.asset new file mode 100644 index 0000000000..544eef27c0 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard.asset @@ -0,0 +1,254 @@ +-- This file was automatically generated using a script found at +-- https://github.com/OpenSpace/scripts/treks-to-openspace. See the README.md file +-- in that repository for more information on how to run the script to update these +-- files. In particular in the case of errors, prefer to change that script rather +-- than the individual files + +local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier + +local treks_LRO_NAC_CratDenHaz_17S173E_150cmp = { + Identifier = "LRO_NAC_CratDenHaz_17S173E_150cmp", + Name = [[LRO LROC Crater Density Hazard, Aitken Crater]], + FilePath = asset.localResource("LRO_LROC_Crater_Density_Hazard/Aitken_Crater.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_CratDenHaz_13S358E_2mp = { + Identifier = "LRO_NAC_CratDenHaz_13S358E_2mp", + Name = [[LRO LROC Crater Density Hazard, Alphonsus Crater]], + FilePath = asset.localResource("LRO_LROC_Crater_Density_Hazard/Alphonsus_Crater.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_CratDenHaz_73N350E_150cmp = { + Identifier = "LRO_NAC_CratDenHaz_73N350E_150cmp", + Name = [[LRO LROC Crater Density Hazard, Anaxagoras Crater]], + FilePath = asset.localResource("LRO_LROC_Crater_Density_Hazard/Anaxagoras_Crater.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_CratDenHaz_26N004E_150cmp = { + Identifier = "LRO_NAC_CratDenHaz_26N004E_150cmp", + Name = [[LRO LROC Crater Density Hazard, Apollo 15]], + FilePath = asset.localResource("LRO_LROC_Crater_Density_Hazard/Apollo_15.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_CratDenHaz_09S015E_150cmp = { + Identifier = "LRO_NAC_CratDenHaz_09S015E_150cmp", + Name = [[LRO LROC Crater Density Hazard, Apollo 16]], + FilePath = asset.localResource("LRO_LROC_Crater_Density_Hazard/Apollo_16.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_CratDenHaz_37S206E_150cmp = { + Identifier = "LRO_NAC_CratDenHaz_37S206E_150cmp", + Name = [[LRO LROC Crater Density Hazard, Apollo Basin]], + FilePath = asset.localResource("LRO_LROC_Crater_Density_Hazard/Apollo_Basin.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_CratDenHaz_25N311E_2mp = { + Identifier = "LRO_NAC_CratDenHaz_25N311E_2mp", + Name = [[LRO LROC Crater Density Hazard, Aristarchus 1]], + FilePath = asset.localResource("LRO_LROC_Crater_Density_Hazard/Aristarchus_1.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_CratDenHaz_28N307E_150cmp = { + Identifier = "LRO_NAC_CratDenHaz_28N307E_150cmp", + Name = [[LRO LROC Crater Density Hazard, Aristarchus 2]], + FilePath = asset.localResource("LRO_LROC_Crater_Density_Hazard/Aristarchus_2.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_CratDenHaz_19S070E_150cmp = { + Identifier = "LRO_NAC_CratDenHaz_19S070E_150cmp", + Name = [[LRO LROC Crater Density Hazard, Balmer Basin]], + FilePath = asset.localResource("LRO_LROC_Crater_Density_Hazard/Balmer_Basin.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_CratDenHaz_20S337E_400cmp = { + Identifier = "LRO_NAC_CratDenHaz_20S337E_400cmp", + Name = [[LRO LROC Crater Density Hazard, Bullialdus Crater]], + FilePath = asset.localResource("LRO_LROC_Crater_Density_Hazard/Bullialdus_Crater.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_CratDenHaz_36N320E_2mp = { + Identifier = "LRO_NAC_CratDenHaz_36N320E_2mp", + Name = [[LRO LROC Crater Density Hazard, Gruithuisen Domes]], + FilePath = asset.localResource("LRO_LROC_Crater_Density_Hazard/Gruithuisen_Domes.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_CratDenHaz_00N234E_150cmp = { + Identifier = "LRO_NAC_CratDenHaz_00N234E_150cmp", + Name = [[LRO LROC Crater Density Hazard, Hertzsprung]], + FilePath = asset.localResource("LRO_LROC_Crater_Density_Hazard/Hertzsprung.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_CratDenHaz_08N332E_2mp = { + Identifier = "LRO_NAC_CratDenHaz_08N332E_2mp", + Name = [[LRO LROC Crater Density Hazard, Hortensius Domes]], + FilePath = asset.localResource("LRO_LROC_Crater_Density_Hazard/Hortensius_Domes.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_CratDenHaz_06N120E_200cmp = { + Identifier = "LRO_NAC_CratDenHaz_06N120E_200cmp", + Name = [[LRO LROC Crater Density Hazard, King Crater]], + FilePath = asset.localResource("LRO_LROC_Crater_Density_Hazard/King_Crater.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_CratDenHaz_32N292E_2mp = { + Identifier = "LRO_NAC_CratDenHaz_32N292E_2mp", + Name = [[LRO LROC Crater Density Hazard, Lichtenberg Crater]], + FilePath = asset.localResource("LRO_LROC_Crater_Density_Hazard/Lichtenberg_Crater.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_CratDenHaz_10N058E_150cmp = { + Identifier = "LRO_NAC_CratDenHaz_10N058E_150cmp", + Name = [[LRO LROC Crater Density Hazard, Mare Crisium]], + FilePath = asset.localResource("LRO_LROC_Crater_Density_Hazard/Mare_Crisium.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_CratDenHaz_16S041E_150cmp = { + Identifier = "LRO_NAC_CratDenHaz_16S041E_150cmp", + Name = [[LRO LROC Crater Density Hazard, Montes Pyrenaeus]], + FilePath = asset.localResource("LRO_LROC_Crater_Density_Hazard/Montes_Pyrenaeus.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_CratDenHaz_26S265E_200cmp = { + Identifier = "LRO_NAC_CratDenHaz_26S265E_200cmp", + Name = [[LRO LROC Crater Density Hazard, Orientale 1]], + FilePath = asset.localResource("LRO_LROC_Crater_Density_Hazard/Orientale_1.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_CratDenHaz_53N354E_150cmp = { + Identifier = "LRO_NAC_CratDenHaz_53N354E_150cmp", + Name = [[LRO LROC Crater Density Hazard, Plato Ejecta]], + FilePath = asset.localResource("LRO_LROC_Crater_Density_Hazard/Plato_Ejecta.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_CratDenHaz_60S200E_150cmp = { + Identifier = "LRO_NAC_CratDenHaz_60S200E_150cmp", + Name = [[LRO LROC Crater Density Hazard, South Pole-Aitken Basin Interior]], + FilePath = asset.localResource("LRO_LROC_Crater_Density_Hazard/South_Pole-Aitken_Basin_Interior.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_CratDenHaz_02S167E_150cmp = { + Identifier = "LRO_NAC_CratDenHaz_02S167E_150cmp", + Name = [[LRO LROC Crater Density Hazard, Stratton (Dewar) High Fe Anomaly]], + FilePath = asset.localResource("LRO_LROC_Crater_Density_Hazard/Stratton_Dewar_High_Fe_Anomaly.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_CratDenHaz_20N010E_2mp = { + Identifier = "LRO_NAC_CratDenHaz_20N010E_2mp", + Name = [[LRO LROC Crater Density Hazard, Sulpicius Gallus]], + FilePath = asset.localResource("LRO_LROC_Crater_Density_Hazard/Sulpicius_Gallus.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_CratDenHaz_43S349E_150cmp = { + Identifier = "LRO_NAC_CratDenHaz_43S349E_150cmp", + Name = [[LRO LROC Crater Density Hazard, Tycho Crater]], + FilePath = asset.localResource("LRO_LROC_Crater_Density_Hazard/Tycho_Crater.vrt"), + Description = [[]] +} + +asset.onInitialize(function() + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_CratDenHaz_17S173E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_CratDenHaz_13S358E_2mp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_CratDenHaz_73N350E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_CratDenHaz_26N004E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_CratDenHaz_09S015E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_CratDenHaz_37S206E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_CratDenHaz_25N311E_2mp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_CratDenHaz_28N307E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_CratDenHaz_19S070E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_CratDenHaz_20S337E_400cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_CratDenHaz_36N320E_2mp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_CratDenHaz_00N234E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_CratDenHaz_08N332E_2mp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_CratDenHaz_06N120E_200cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_CratDenHaz_32N292E_2mp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_CratDenHaz_10N058E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_CratDenHaz_16S041E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_CratDenHaz_26S265E_200cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_CratDenHaz_53N354E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_CratDenHaz_60S200E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_CratDenHaz_02S167E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_CratDenHaz_20N010E_2mp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_CratDenHaz_43S349E_150cmp) +end) + +asset.onDeinitialize(function() + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_CratDenHaz_17S173E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_CratDenHaz_13S358E_2mp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_CratDenHaz_73N350E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_CratDenHaz_26N004E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_CratDenHaz_09S015E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_CratDenHaz_37S206E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_CratDenHaz_25N311E_2mp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_CratDenHaz_28N307E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_CratDenHaz_19S070E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_CratDenHaz_20S337E_400cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_CratDenHaz_36N320E_2mp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_CratDenHaz_00N234E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_CratDenHaz_08N332E_2mp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_CratDenHaz_06N120E_200cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_CratDenHaz_32N292E_2mp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_CratDenHaz_10N058E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_CratDenHaz_16S041E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_CratDenHaz_26S265E_200cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_CratDenHaz_53N354E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_CratDenHaz_60S200E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_CratDenHaz_02S167E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_CratDenHaz_20N010E_2mp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_CratDenHaz_43S349E_150cmp") +end) + +asset.export("LRO_NAC_CratDenHaz_17S173E_150cmp", treks_LRO_NAC_CratDenHaz_17S173E_150cmp) +asset.export("LRO_NAC_CratDenHaz_13S358E_2mp", treks_LRO_NAC_CratDenHaz_13S358E_2mp) +asset.export("LRO_NAC_CratDenHaz_73N350E_150cmp", treks_LRO_NAC_CratDenHaz_73N350E_150cmp) +asset.export("LRO_NAC_CratDenHaz_26N004E_150cmp", treks_LRO_NAC_CratDenHaz_26N004E_150cmp) +asset.export("LRO_NAC_CratDenHaz_09S015E_150cmp", treks_LRO_NAC_CratDenHaz_09S015E_150cmp) +asset.export("LRO_NAC_CratDenHaz_37S206E_150cmp", treks_LRO_NAC_CratDenHaz_37S206E_150cmp) +asset.export("LRO_NAC_CratDenHaz_25N311E_2mp", treks_LRO_NAC_CratDenHaz_25N311E_2mp) +asset.export("LRO_NAC_CratDenHaz_28N307E_150cmp", treks_LRO_NAC_CratDenHaz_28N307E_150cmp) +asset.export("LRO_NAC_CratDenHaz_19S070E_150cmp", treks_LRO_NAC_CratDenHaz_19S070E_150cmp) +asset.export("LRO_NAC_CratDenHaz_20S337E_400cmp", treks_LRO_NAC_CratDenHaz_20S337E_400cmp) +asset.export("LRO_NAC_CratDenHaz_36N320E_2mp", treks_LRO_NAC_CratDenHaz_36N320E_2mp) +asset.export("LRO_NAC_CratDenHaz_00N234E_150cmp", treks_LRO_NAC_CratDenHaz_00N234E_150cmp) +asset.export("LRO_NAC_CratDenHaz_08N332E_2mp", treks_LRO_NAC_CratDenHaz_08N332E_2mp) +asset.export("LRO_NAC_CratDenHaz_06N120E_200cmp", treks_LRO_NAC_CratDenHaz_06N120E_200cmp) +asset.export("LRO_NAC_CratDenHaz_32N292E_2mp", treks_LRO_NAC_CratDenHaz_32N292E_2mp) +asset.export("LRO_NAC_CratDenHaz_10N058E_150cmp", treks_LRO_NAC_CratDenHaz_10N058E_150cmp) +asset.export("LRO_NAC_CratDenHaz_16S041E_150cmp", treks_LRO_NAC_CratDenHaz_16S041E_150cmp) +asset.export("LRO_NAC_CratDenHaz_26S265E_200cmp", treks_LRO_NAC_CratDenHaz_26S265E_200cmp) +asset.export("LRO_NAC_CratDenHaz_53N354E_150cmp", treks_LRO_NAC_CratDenHaz_53N354E_150cmp) +asset.export("LRO_NAC_CratDenHaz_60S200E_150cmp", treks_LRO_NAC_CratDenHaz_60S200E_150cmp) +asset.export("LRO_NAC_CratDenHaz_02S167E_150cmp", treks_LRO_NAC_CratDenHaz_02S167E_150cmp) +asset.export("LRO_NAC_CratDenHaz_20N010E_2mp", treks_LRO_NAC_CratDenHaz_20N010E_2mp) +asset.export("LRO_NAC_CratDenHaz_43S349E_150cmp", treks_LRO_NAC_CratDenHaz_43S349E_150cmp) + + +asset.meta = { + Name = [[NASA Treks Layers for Moon LRO_LROC_Crater_Density_Hazard], + Version = "1.0", + Author = "NASA/Treks", + URL = "https://trek.nasa.gov/moon", + License = "NASA/Treks", + Description = [[LRO_LROC_Crater_Density_Hazard layers from NASA/Treks for Moon]] +} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Aitken_Crater.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Aitken_Crater.vrt new file mode 100644 index 0000000000..edeb7a3350 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Aitken_Crater.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Aitken_Crater.wms + 1 + + + + 0 + + + + 0 + Green + + Aitken_Crater.wms + 2 + + + + 0 + + + + 0 + Blue + + Aitken_Crater.wms + 3 + + + + 0 + + + + Alpha + + Aitken_Crater.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Aitken_Crater/LRO_NAC_CratDenHaz_17S173E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Aitken_Crater.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Aitken_Crater/LRO_NAC_CratDenHaz_17S173E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Aitken_Crater.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Alphonsus_Crater.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Alphonsus_Crater.vrt new file mode 100644 index 0000000000..68c69740ca --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Alphonsus_Crater.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Alphonsus_Crater.wms + 1 + + + + 0 + + + + 0 + Green + + Alphonsus_Crater.wms + 2 + + + + 0 + + + + 0 + Blue + + Alphonsus_Crater.wms + 3 + + + + 0 + + + + Alpha + + Alphonsus_Crater.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Alphonsus_Crater/LRO_NAC_CratDenHaz_13S358E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Alphonsus_Crater.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Alphonsus_Crater/LRO_NAC_CratDenHaz_13S358E_2mp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Alphonsus_Crater.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Anaxagoras_Crater.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Anaxagoras_Crater.vrt new file mode 100644 index 0000000000..235a71373e --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Anaxagoras_Crater.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Anaxagoras_Crater.wms + 1 + + + + 0 + + + + 0 + Green + + Anaxagoras_Crater.wms + 2 + + + + 0 + + + + 0 + Blue + + Anaxagoras_Crater.wms + 3 + + + + 0 + + + + Alpha + + Anaxagoras_Crater.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Anaxagoras_Crater/LRO_NAC_CratDenHaz_73N350E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Anaxagoras_Crater.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Anaxagoras_Crater/LRO_NAC_CratDenHaz_73N350E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Anaxagoras_Crater.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Apollo_15.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Apollo_15.vrt new file mode 100644 index 0000000000..c328339b62 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Apollo_15.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Apollo_15.wms + 1 + + + + 0 + + + + 0 + Green + + Apollo_15.wms + 2 + + + + 0 + + + + 0 + Blue + + Apollo_15.wms + 3 + + + + 0 + + + + Alpha + + Apollo_15.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Apollo_15/LRO_NAC_CratDenHaz_26N004E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Apollo_15.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Apollo_15/LRO_NAC_CratDenHaz_26N004E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Apollo_15.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Apollo_16.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Apollo_16.vrt new file mode 100644 index 0000000000..1c9a6bfbde --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Apollo_16.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Apollo_16.wms + 1 + + + + 0 + + + + 0 + Green + + Apollo_16.wms + 2 + + + + 0 + + + + 0 + Blue + + Apollo_16.wms + 3 + + + + 0 + + + + Alpha + + Apollo_16.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Apollo_16/LRO_NAC_CratDenHaz_09S015E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Apollo_16.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Apollo_16/LRO_NAC_CratDenHaz_09S015E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Apollo_16.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Apollo_Basin.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Apollo_Basin.vrt new file mode 100644 index 0000000000..f9b40f9c51 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Apollo_Basin.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Apollo_Basin.wms + 1 + + + + 0 + + + + 0 + Green + + Apollo_Basin.wms + 2 + + + + 0 + + + + 0 + Blue + + Apollo_Basin.wms + 3 + + + + 0 + + + + Alpha + + Apollo_Basin.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Apollo_Basin/LRO_NAC_CratDenHaz_37S206E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Apollo_Basin.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Apollo_Basin/LRO_NAC_CratDenHaz_37S206E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Apollo_Basin.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Aristarchus_1.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Aristarchus_1.vrt new file mode 100644 index 0000000000..7796863a5c --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Aristarchus_1.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Aristarchus_1.wms + 1 + + + + 0 + + + + 0 + Green + + Aristarchus_1.wms + 2 + + + + 0 + + + + 0 + Blue + + Aristarchus_1.wms + 3 + + + + 0 + + + + Alpha + + Aristarchus_1.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Aristarchus_1/LRO_NAC_CratDenHaz_25N311E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Aristarchus_1.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Aristarchus_1/LRO_NAC_CratDenHaz_25N311E_2mp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Aristarchus_1.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Aristarchus_2.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Aristarchus_2.vrt new file mode 100644 index 0000000000..c5312af26c --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Aristarchus_2.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Aristarchus_2.wms + 1 + + + + 0 + + + + 0 + Green + + Aristarchus_2.wms + 2 + + + + 0 + + + + 0 + Blue + + Aristarchus_2.wms + 3 + + + + 0 + + + + Alpha + + Aristarchus_2.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Aristarchus_2/LRO_NAC_CratDenHaz_28N307E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Aristarchus_2.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Aristarchus_2/LRO_NAC_CratDenHaz_28N307E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Aristarchus_2.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Balmer_Basin.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Balmer_Basin.vrt new file mode 100644 index 0000000000..df36adefb6 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Balmer_Basin.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Balmer_Basin.wms + 1 + + + + 0 + + + + 0 + Green + + Balmer_Basin.wms + 2 + + + + 0 + + + + 0 + Blue + + Balmer_Basin.wms + 3 + + + + 0 + + + + Alpha + + Balmer_Basin.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Balmer_Basin/LRO_NAC_CratDenHaz_19S070E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Balmer_Basin.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Balmer_Basin/LRO_NAC_CratDenHaz_19S070E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Balmer_Basin.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Bullialdus_Crater.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Bullialdus_Crater.vrt new file mode 100644 index 0000000000..678722ae68 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Bullialdus_Crater.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Bullialdus_Crater.wms + 1 + + + + 0 + + + + 0 + Green + + Bullialdus_Crater.wms + 2 + + + + 0 + + + + 0 + Blue + + Bullialdus_Crater.wms + 3 + + + + 0 + + + + Alpha + + Bullialdus_Crater.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Bullialdus_Crater/LRO_NAC_CratDenHaz_20S337E_400cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Bullialdus_Crater.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Bullialdus_Crater/LRO_NAC_CratDenHaz_20S337E_400cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Bullialdus_Crater.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Gruithuisen_Domes.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Gruithuisen_Domes.vrt new file mode 100644 index 0000000000..5142f02aea --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Gruithuisen_Domes.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Gruithuisen_Domes.wms + 1 + + + + 0 + + + + 0 + Green + + Gruithuisen_Domes.wms + 2 + + + + 0 + + + + 0 + Blue + + Gruithuisen_Domes.wms + 3 + + + + 0 + + + + Alpha + + Gruithuisen_Domes.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Gruithuisen_Domes/LRO_NAC_CratDenHaz_36N320E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Gruithuisen_Domes.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Gruithuisen_Domes/LRO_NAC_CratDenHaz_36N320E_2mp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Gruithuisen_Domes.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Hertzsprung.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Hertzsprung.vrt new file mode 100644 index 0000000000..ad731212e4 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Hertzsprung.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Hertzsprung.wms + 1 + + + + 0 + + + + 0 + Green + + Hertzsprung.wms + 2 + + + + 0 + + + + 0 + Blue + + Hertzsprung.wms + 3 + + + + 0 + + + + Alpha + + Hertzsprung.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Hertzsprung/LRO_NAC_CratDenHaz_00N234E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Hertzsprung.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Hertzsprung/LRO_NAC_CratDenHaz_00N234E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Hertzsprung.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Hortensius_Domes.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Hortensius_Domes.vrt new file mode 100644 index 0000000000..19f2fa78ca --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Hortensius_Domes.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Hortensius_Domes.wms + 1 + + + + 0 + + + + 0 + Green + + Hortensius_Domes.wms + 2 + + + + 0 + + + + 0 + Blue + + Hortensius_Domes.wms + 3 + + + + 0 + + + + Alpha + + Hortensius_Domes.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Hortensius_Domes/LRO_NAC_CratDenHaz_08N332E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Hortensius_Domes.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Hortensius_Domes/LRO_NAC_CratDenHaz_08N332E_2mp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Hortensius_Domes.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/King_Crater.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/King_Crater.vrt new file mode 100644 index 0000000000..ffb4db9833 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/King_Crater.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + King_Crater.wms + 1 + + + + 0 + + + + 0 + Green + + King_Crater.wms + 2 + + + + 0 + + + + 0 + Blue + + King_Crater.wms + 3 + + + + 0 + + + + Alpha + + King_Crater.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_King_Crater/LRO_NAC_CratDenHaz_06N120E_200cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/King_Crater.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_King_Crater/LRO_NAC_CratDenHaz_06N120E_200cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/King_Crater.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Lichtenberg_Crater.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Lichtenberg_Crater.vrt new file mode 100644 index 0000000000..8584f2c304 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Lichtenberg_Crater.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Lichtenberg_Crater.wms + 1 + + + + 0 + + + + 0 + Green + + Lichtenberg_Crater.wms + 2 + + + + 0 + + + + 0 + Blue + + Lichtenberg_Crater.wms + 3 + + + + 0 + + + + Alpha + + Lichtenberg_Crater.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Lichtenberg_Crater/LRO_NAC_CratDenHaz_32N292E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Lichtenberg_Crater.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Lichtenberg_Crater/LRO_NAC_CratDenHaz_32N292E_2mp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Lichtenberg_Crater.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Mare_Crisium.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Mare_Crisium.vrt new file mode 100644 index 0000000000..d6a7df281a --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Mare_Crisium.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Mare_Crisium.wms + 1 + + + + 0 + + + + 0 + Green + + Mare_Crisium.wms + 2 + + + + 0 + + + + 0 + Blue + + Mare_Crisium.wms + 3 + + + + 0 + + + + Alpha + + Mare_Crisium.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Mare_Crisium/LRO_NAC_CratDenHaz_10N058E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Mare_Crisium.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Mare_Crisium/LRO_NAC_CratDenHaz_10N058E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Mare_Crisium.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Montes_Pyrenaeus.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Montes_Pyrenaeus.vrt new file mode 100644 index 0000000000..7e7910be4a --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Montes_Pyrenaeus.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Montes_Pyrenaeus.wms + 1 + + + + 0 + + + + 0 + Green + + Montes_Pyrenaeus.wms + 2 + + + + 0 + + + + 0 + Blue + + Montes_Pyrenaeus.wms + 3 + + + + 0 + + + + Alpha + + Montes_Pyrenaeus.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Montes_Pyrenaeus/LRO_NAC_CratDenHaz_16S041E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Montes_Pyrenaeus.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Montes_Pyrenaeus/LRO_NAC_CratDenHaz_16S041E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Montes_Pyrenaeus.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Orientale_1.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Orientale_1.vrt new file mode 100644 index 0000000000..7828a2e6b2 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Orientale_1.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Orientale_1.wms + 1 + + + + 0 + + + + 0 + Green + + Orientale_1.wms + 2 + + + + 0 + + + + 0 + Blue + + Orientale_1.wms + 3 + + + + 0 + + + + Alpha + + Orientale_1.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Orientale_1/LRO_NAC_CratDenHaz_26S265E_200cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Orientale_1.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Orientale_1/LRO_NAC_CratDenHaz_26S265E_200cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Orientale_1.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Plato_Ejecta.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Plato_Ejecta.vrt new file mode 100644 index 0000000000..955c4b47cf --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Plato_Ejecta.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Plato_Ejecta.wms + 1 + + + + 0 + + + + 0 + Green + + Plato_Ejecta.wms + 2 + + + + 0 + + + + 0 + Blue + + Plato_Ejecta.wms + 3 + + + + 0 + + + + Alpha + + Plato_Ejecta.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Plato_Ejecta/LRO_NAC_CratDenHaz_53N354E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Plato_Ejecta.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Plato_Ejecta/LRO_NAC_CratDenHaz_53N354E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Plato_Ejecta.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/South_Pole-Aitken_Basin_Interior.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/South_Pole-Aitken_Basin_Interior.vrt new file mode 100644 index 0000000000..2d8cdd4e12 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/South_Pole-Aitken_Basin_Interior.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + South_Pole-Aitken_Basin_Interior.wms + 1 + + + + 0 + + + + 0 + Green + + South_Pole-Aitken_Basin_Interior.wms + 2 + + + + 0 + + + + 0 + Blue + + South_Pole-Aitken_Basin_Interior.wms + 3 + + + + 0 + + + + Alpha + + South_Pole-Aitken_Basin_Interior.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_South_Pole-Aitken_Basin_Interior/LRO_NAC_CratDenHaz_60S200E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/South_Pole-Aitken_Basin_Interior.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_South_Pole-Aitken_Basin_Interior/LRO_NAC_CratDenHaz_60S200E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/South_Pole-Aitken_Basin_Interior.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Stratton_Dewar_High_Fe_Anomaly.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Stratton_Dewar_High_Fe_Anomaly.vrt new file mode 100644 index 0000000000..25b5fa5add --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Stratton_Dewar_High_Fe_Anomaly.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Stratton_Dewar_High_Fe_Anomaly.wms + 1 + + + + 0 + + + + 0 + Green + + Stratton_Dewar_High_Fe_Anomaly.wms + 2 + + + + 0 + + + + 0 + Blue + + Stratton_Dewar_High_Fe_Anomaly.wms + 3 + + + + 0 + + + + Alpha + + Stratton_Dewar_High_Fe_Anomaly.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Stratton_(Dewar)_High_Fe_Anomaly/LRO_NAC_CratDenHaz_02S167E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Stratton_Dewar_High_Fe_Anomaly.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Stratton_(Dewar)_High_Fe_Anomaly/LRO_NAC_CratDenHaz_02S167E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Stratton_Dewar_High_Fe_Anomaly.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Sulpicius_Gallus.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Sulpicius_Gallus.vrt new file mode 100644 index 0000000000..dbb8bcaf58 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Sulpicius_Gallus.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Sulpicius_Gallus.wms + 1 + + + + 0 + + + + 0 + Green + + Sulpicius_Gallus.wms + 2 + + + + 0 + + + + 0 + Blue + + Sulpicius_Gallus.wms + 3 + + + + 0 + + + + Alpha + + Sulpicius_Gallus.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Sulpicius_Gallus/LRO_NAC_CratDenHaz_20N010E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Sulpicius_Gallus.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Sulpicius_Gallus/LRO_NAC_CratDenHaz_20N010E_2mp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Sulpicius_Gallus.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Tycho_Crater.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Tycho_Crater.vrt new file mode 100644 index 0000000000..201800be96 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Tycho_Crater.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Tycho_Crater.wms + 1 + + + + 0 + + + + 0 + Green + + Tycho_Crater.wms + 2 + + + + 0 + + + + 0 + Blue + + Tycho_Crater.wms + 3 + + + + 0 + + + + Alpha + + Tycho_Crater.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Tycho_Crater/LRO_NAC_CratDenHaz_43S349E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Tycho_Crater.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Tycho_Crater/LRO_NAC_CratDenHaz_43S349E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard/Tycho_Crater.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Aitken_Crater/LRO_LROC_Crater_Density_Hazard_Aitken_Crater.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Aitken_Crater/LRO_LROC_Crater_Density_Hazard_Aitken_Crater.asset deleted file mode 100644 index 1e14d07933..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Aitken_Crater/LRO_LROC_Crater_Density_Hazard_Aitken_Crater.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_CratDenHaz_17S173E_150cmp", - Name = [[LRO LROC Crater Density Hazard, Aitken Crater]], - FilePath = asset.localResource("LRO_NAC_CratDenHaz_17S173E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Crater Density Hazard, Aitken Crater]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_CratDenHaz_17S173E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Crater Density Hazard, Aitken Crater layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Aitken_Crater/LRO_NAC_CratDenHaz_17S173E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Aitken_Crater/LRO_NAC_CratDenHaz_17S173E_150cmp.vrt deleted file mode 100644 index bfcf1f3e7c..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Aitken_Crater/LRO_NAC_CratDenHaz_17S173E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_CratDenHaz_17S173E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_CratDenHaz_17S173E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_CratDenHaz_17S173E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_CratDenHaz_17S173E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Alphonsus_Crater/LRO_LROC_Crater_Density_Hazard_Alphonsus_Crater.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Alphonsus_Crater/LRO_LROC_Crater_Density_Hazard_Alphonsus_Crater.asset deleted file mode 100644 index 2d5c8b6057..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Alphonsus_Crater/LRO_LROC_Crater_Density_Hazard_Alphonsus_Crater.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_CratDenHaz_13S358E_2mp", - Name = [[LRO LROC Crater Density Hazard, Alphonsus Crater]], - FilePath = asset.localResource("LRO_NAC_CratDenHaz_13S358E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Crater Density Hazard, Alphonsus Crater]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_CratDenHaz_13S358E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Crater Density Hazard, Alphonsus Crater layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Alphonsus_Crater/LRO_NAC_CratDenHaz_13S358E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Alphonsus_Crater/LRO_NAC_CratDenHaz_13S358E_2mp.vrt deleted file mode 100644 index c529e062d4..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Alphonsus_Crater/LRO_NAC_CratDenHaz_13S358E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_CratDenHaz_13S358E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_CratDenHaz_13S358E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_CratDenHaz_13S358E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_CratDenHaz_13S358E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Anaxagoras_Crater/LRO_LROC_Crater_Density_Hazard_Anaxagoras_Crater.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Anaxagoras_Crater/LRO_LROC_Crater_Density_Hazard_Anaxagoras_Crater.asset deleted file mode 100644 index 0745c1ff85..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Anaxagoras_Crater/LRO_LROC_Crater_Density_Hazard_Anaxagoras_Crater.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_CratDenHaz_73N350E_150cmp", - Name = [[LRO LROC Crater Density Hazard, Anaxagoras Crater]], - FilePath = asset.localResource("LRO_NAC_CratDenHaz_73N350E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Crater Density Hazard, Anaxagoras Crater]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_CratDenHaz_73N350E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Crater Density Hazard, Anaxagoras Crater layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Anaxagoras_Crater/LRO_NAC_CratDenHaz_73N350E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Anaxagoras_Crater/LRO_NAC_CratDenHaz_73N350E_150cmp.vrt deleted file mode 100644 index 5ea9c213a8..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Anaxagoras_Crater/LRO_NAC_CratDenHaz_73N350E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_CratDenHaz_73N350E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_CratDenHaz_73N350E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_CratDenHaz_73N350E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_CratDenHaz_73N350E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Apollo_15/LRO_LROC_Crater_Density_Hazard_Apollo_15.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Apollo_15/LRO_LROC_Crater_Density_Hazard_Apollo_15.asset deleted file mode 100644 index 6751acd125..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Apollo_15/LRO_LROC_Crater_Density_Hazard_Apollo_15.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_CratDenHaz_26N004E_150cmp", - Name = [[LRO LROC Crater Density Hazard, Apollo 15]], - FilePath = asset.localResource("LRO_NAC_CratDenHaz_26N004E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Crater Density Hazard, Apollo 15]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_CratDenHaz_26N004E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Crater Density Hazard, Apollo 15 layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Apollo_15/LRO_NAC_CratDenHaz_26N004E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Apollo_15/LRO_NAC_CratDenHaz_26N004E_150cmp.vrt deleted file mode 100644 index fbbae8bf26..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Apollo_15/LRO_NAC_CratDenHaz_26N004E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_CratDenHaz_26N004E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_CratDenHaz_26N004E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_CratDenHaz_26N004E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_CratDenHaz_26N004E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Apollo_16/LRO_LROC_Crater_Density_Hazard_Apollo_16.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Apollo_16/LRO_LROC_Crater_Density_Hazard_Apollo_16.asset deleted file mode 100644 index cad5124648..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Apollo_16/LRO_LROC_Crater_Density_Hazard_Apollo_16.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_CratDenHaz_09S015E_150cmp", - Name = [[LRO LROC Crater Density Hazard, Apollo 16]], - FilePath = asset.localResource("LRO_NAC_CratDenHaz_09S015E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Crater Density Hazard, Apollo 16]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_CratDenHaz_09S015E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Crater Density Hazard, Apollo 16 layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Apollo_16/LRO_NAC_CratDenHaz_09S015E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Apollo_16/LRO_NAC_CratDenHaz_09S015E_150cmp.vrt deleted file mode 100644 index 8c44d79b0e..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Apollo_16/LRO_NAC_CratDenHaz_09S015E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_CratDenHaz_09S015E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_CratDenHaz_09S015E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_CratDenHaz_09S015E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_CratDenHaz_09S015E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Apollo_Basin/LRO_LROC_Crater_Density_Hazard_Apollo_Basin.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Apollo_Basin/LRO_LROC_Crater_Density_Hazard_Apollo_Basin.asset deleted file mode 100644 index 8252f6ef7b..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Apollo_Basin/LRO_LROC_Crater_Density_Hazard_Apollo_Basin.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_CratDenHaz_37S206E_150cmp", - Name = [[LRO LROC Crater Density Hazard, Apollo Basin]], - FilePath = asset.localResource("LRO_NAC_CratDenHaz_37S206E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Crater Density Hazard, Apollo Basin]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_CratDenHaz_37S206E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Crater Density Hazard, Apollo Basin layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Apollo_Basin/LRO_NAC_CratDenHaz_37S206E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Apollo_Basin/LRO_NAC_CratDenHaz_37S206E_150cmp.vrt deleted file mode 100644 index 5ed81d2a55..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Apollo_Basin/LRO_NAC_CratDenHaz_37S206E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_CratDenHaz_37S206E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_CratDenHaz_37S206E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_CratDenHaz_37S206E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_CratDenHaz_37S206E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Aristarchus_1/LRO_LROC_Crater_Density_Hazard_Aristarchus_1.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Aristarchus_1/LRO_LROC_Crater_Density_Hazard_Aristarchus_1.asset deleted file mode 100644 index e88d748fe4..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Aristarchus_1/LRO_LROC_Crater_Density_Hazard_Aristarchus_1.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_CratDenHaz_25N311E_2mp", - Name = [[LRO LROC Crater Density Hazard, Aristarchus 1]], - FilePath = asset.localResource("LRO_NAC_CratDenHaz_25N311E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Crater Density Hazard, Aristarchus 1]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_CratDenHaz_25N311E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Crater Density Hazard, Aristarchus 1 layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Aristarchus_1/LRO_NAC_CratDenHaz_25N311E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Aristarchus_1/LRO_NAC_CratDenHaz_25N311E_2mp.vrt deleted file mode 100644 index 8609063efd..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Aristarchus_1/LRO_NAC_CratDenHaz_25N311E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_CratDenHaz_25N311E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_CratDenHaz_25N311E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_CratDenHaz_25N311E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_CratDenHaz_25N311E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Aristarchus_2/LRO_LROC_Crater_Density_Hazard_Aristarchus_2.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Aristarchus_2/LRO_LROC_Crater_Density_Hazard_Aristarchus_2.asset deleted file mode 100644 index 2a88f8196c..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Aristarchus_2/LRO_LROC_Crater_Density_Hazard_Aristarchus_2.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_CratDenHaz_28N307E_150cmp", - Name = [[LRO LROC Crater Density Hazard, Aristarchus 2]], - FilePath = asset.localResource("LRO_NAC_CratDenHaz_28N307E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Crater Density Hazard, Aristarchus 2]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_CratDenHaz_28N307E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Crater Density Hazard, Aristarchus 2 layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Aristarchus_2/LRO_NAC_CratDenHaz_28N307E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Aristarchus_2/LRO_NAC_CratDenHaz_28N307E_150cmp.vrt deleted file mode 100644 index 9fa5c91074..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Aristarchus_2/LRO_NAC_CratDenHaz_28N307E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_CratDenHaz_28N307E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_CratDenHaz_28N307E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_CratDenHaz_28N307E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_CratDenHaz_28N307E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Balmer_Basin/LRO_LROC_Crater_Density_Hazard_Balmer_Basin.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Balmer_Basin/LRO_LROC_Crater_Density_Hazard_Balmer_Basin.asset deleted file mode 100644 index 93d3aecf14..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Balmer_Basin/LRO_LROC_Crater_Density_Hazard_Balmer_Basin.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_CratDenHaz_19S070E_150cmp", - Name = [[LRO LROC Crater Density Hazard, Balmer Basin]], - FilePath = asset.localResource("LRO_NAC_CratDenHaz_19S070E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Crater Density Hazard, Balmer Basin]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_CratDenHaz_19S070E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Crater Density Hazard, Balmer Basin layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Balmer_Basin/LRO_NAC_CratDenHaz_19S070E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Balmer_Basin/LRO_NAC_CratDenHaz_19S070E_150cmp.vrt deleted file mode 100644 index 0042961d7d..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Balmer_Basin/LRO_NAC_CratDenHaz_19S070E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_CratDenHaz_19S070E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_CratDenHaz_19S070E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_CratDenHaz_19S070E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_CratDenHaz_19S070E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Bullialdus_Crater/LRO_LROC_Crater_Density_Hazard_Bullialdus_Crater.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Bullialdus_Crater/LRO_LROC_Crater_Density_Hazard_Bullialdus_Crater.asset deleted file mode 100644 index d7cea46712..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Bullialdus_Crater/LRO_LROC_Crater_Density_Hazard_Bullialdus_Crater.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_CratDenHaz_20S337E_400cmp", - Name = [[LRO LROC Crater Density Hazard, Bullialdus Crater]], - FilePath = asset.localResource("LRO_NAC_CratDenHaz_20S337E_400cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Crater Density Hazard, Bullialdus Crater]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_CratDenHaz_20S337E_400cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Crater Density Hazard, Bullialdus Crater layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Bullialdus_Crater/LRO_NAC_CratDenHaz_20S337E_400cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Bullialdus_Crater/LRO_NAC_CratDenHaz_20S337E_400cmp.vrt deleted file mode 100644 index c5b06e8220..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Bullialdus_Crater/LRO_NAC_CratDenHaz_20S337E_400cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_CratDenHaz_20S337E_400cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_CratDenHaz_20S337E_400cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_CratDenHaz_20S337E_400cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_CratDenHaz_20S337E_400cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Gruithuisen_Domes/LRO_LROC_Crater_Density_Hazard_Gruithuisen_Domes.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Gruithuisen_Domes/LRO_LROC_Crater_Density_Hazard_Gruithuisen_Domes.asset deleted file mode 100644 index 617128f284..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Gruithuisen_Domes/LRO_LROC_Crater_Density_Hazard_Gruithuisen_Domes.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_CratDenHaz_36N320E_2mp", - Name = [[LRO LROC Crater Density Hazard, Gruithuisen Domes]], - FilePath = asset.localResource("LRO_NAC_CratDenHaz_36N320E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Crater Density Hazard, Gruithuisen Domes]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_CratDenHaz_36N320E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Crater Density Hazard, Gruithuisen Domes layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Gruithuisen_Domes/LRO_NAC_CratDenHaz_36N320E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Gruithuisen_Domes/LRO_NAC_CratDenHaz_36N320E_2mp.vrt deleted file mode 100644 index 03991f9da3..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Gruithuisen_Domes/LRO_NAC_CratDenHaz_36N320E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_CratDenHaz_36N320E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_CratDenHaz_36N320E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_CratDenHaz_36N320E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_CratDenHaz_36N320E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Hertzsprung/LRO_LROC_Crater_Density_Hazard_Hertzsprung.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Hertzsprung/LRO_LROC_Crater_Density_Hazard_Hertzsprung.asset deleted file mode 100644 index 1656b64194..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Hertzsprung/LRO_LROC_Crater_Density_Hazard_Hertzsprung.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_CratDenHaz_00N234E_150cmp", - Name = [[LRO LROC Crater Density Hazard, Hertzsprung]], - FilePath = asset.localResource("LRO_NAC_CratDenHaz_00N234E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Crater Density Hazard, Hertzsprung]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_CratDenHaz_00N234E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Crater Density Hazard, Hertzsprung layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Hertzsprung/LRO_NAC_CratDenHaz_00N234E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Hertzsprung/LRO_NAC_CratDenHaz_00N234E_150cmp.vrt deleted file mode 100644 index bd7d059ba2..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Hertzsprung/LRO_NAC_CratDenHaz_00N234E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_CratDenHaz_00N234E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_CratDenHaz_00N234E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_CratDenHaz_00N234E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_CratDenHaz_00N234E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Hortensius_Domes/LRO_LROC_Crater_Density_Hazard_Hortensius_Domes.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Hortensius_Domes/LRO_LROC_Crater_Density_Hazard_Hortensius_Domes.asset deleted file mode 100644 index 6bc2b17f60..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Hortensius_Domes/LRO_LROC_Crater_Density_Hazard_Hortensius_Domes.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_CratDenHaz_08N332E_2mp", - Name = [[LRO LROC Crater Density Hazard, Hortensius Domes]], - FilePath = asset.localResource("LRO_NAC_CratDenHaz_08N332E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Crater Density Hazard, Hortensius Domes]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_CratDenHaz_08N332E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Crater Density Hazard, Hortensius Domes layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Hortensius_Domes/LRO_NAC_CratDenHaz_08N332E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Hortensius_Domes/LRO_NAC_CratDenHaz_08N332E_2mp.vrt deleted file mode 100644 index 5591524ebb..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Hortensius_Domes/LRO_NAC_CratDenHaz_08N332E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_CratDenHaz_08N332E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_CratDenHaz_08N332E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_CratDenHaz_08N332E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_CratDenHaz_08N332E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_King_Crater/LRO_LROC_Crater_Density_Hazard_King_Crater.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_King_Crater/LRO_LROC_Crater_Density_Hazard_King_Crater.asset deleted file mode 100644 index 1d3946c34d..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_King_Crater/LRO_LROC_Crater_Density_Hazard_King_Crater.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_CratDenHaz_06N120E_200cmp", - Name = [[LRO LROC Crater Density Hazard, King Crater]], - FilePath = asset.localResource("LRO_NAC_CratDenHaz_06N120E_200cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Crater Density Hazard, King Crater]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_CratDenHaz_06N120E_200cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Crater Density Hazard, King Crater layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_King_Crater/LRO_NAC_CratDenHaz_06N120E_200cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_King_Crater/LRO_NAC_CratDenHaz_06N120E_200cmp.vrt deleted file mode 100644 index bf7ef99e02..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_King_Crater/LRO_NAC_CratDenHaz_06N120E_200cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_CratDenHaz_06N120E_200cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_CratDenHaz_06N120E_200cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_CratDenHaz_06N120E_200cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_CratDenHaz_06N120E_200cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Lichtenberg_Crater/LRO_LROC_Crater_Density_Hazard_Lichtenberg_Crater.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Lichtenberg_Crater/LRO_LROC_Crater_Density_Hazard_Lichtenberg_Crater.asset deleted file mode 100644 index 76719bee16..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Lichtenberg_Crater/LRO_LROC_Crater_Density_Hazard_Lichtenberg_Crater.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_CratDenHaz_32N292E_2mp", - Name = [[LRO LROC Crater Density Hazard, Lichtenberg Crater]], - FilePath = asset.localResource("LRO_NAC_CratDenHaz_32N292E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Crater Density Hazard, Lichtenberg Crater]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_CratDenHaz_32N292E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Crater Density Hazard, Lichtenberg Crater layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Lichtenberg_Crater/LRO_NAC_CratDenHaz_32N292E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Lichtenberg_Crater/LRO_NAC_CratDenHaz_32N292E_2mp.vrt deleted file mode 100644 index e77095d4e8..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Lichtenberg_Crater/LRO_NAC_CratDenHaz_32N292E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_CratDenHaz_32N292E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_CratDenHaz_32N292E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_CratDenHaz_32N292E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_CratDenHaz_32N292E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Mare_Crisium/LRO_LROC_Crater_Density_Hazard_Mare_Crisium.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Mare_Crisium/LRO_LROC_Crater_Density_Hazard_Mare_Crisium.asset deleted file mode 100644 index ba9336850e..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Mare_Crisium/LRO_LROC_Crater_Density_Hazard_Mare_Crisium.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_CratDenHaz_10N058E_150cmp", - Name = [[LRO LROC Crater Density Hazard, Mare Crisium]], - FilePath = asset.localResource("LRO_NAC_CratDenHaz_10N058E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Crater Density Hazard, Mare Crisium]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_CratDenHaz_10N058E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Crater Density Hazard, Mare Crisium layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Mare_Crisium/LRO_NAC_CratDenHaz_10N058E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Mare_Crisium/LRO_NAC_CratDenHaz_10N058E_150cmp.vrt deleted file mode 100644 index aee7b3bb9f..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Mare_Crisium/LRO_NAC_CratDenHaz_10N058E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_CratDenHaz_10N058E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_CratDenHaz_10N058E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_CratDenHaz_10N058E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_CratDenHaz_10N058E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Montes_Pyrenaeus/LRO_LROC_Crater_Density_Hazard_Montes_Pyrenaeus.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Montes_Pyrenaeus/LRO_LROC_Crater_Density_Hazard_Montes_Pyrenaeus.asset deleted file mode 100644 index eb49c4347e..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Montes_Pyrenaeus/LRO_LROC_Crater_Density_Hazard_Montes_Pyrenaeus.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_CratDenHaz_16S041E_150cmp", - Name = [[LRO LROC Crater Density Hazard, Montes Pyrenaeus]], - FilePath = asset.localResource("LRO_NAC_CratDenHaz_16S041E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Crater Density Hazard, Montes Pyrenaeus]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_CratDenHaz_16S041E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Crater Density Hazard, Montes Pyrenaeus layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Montes_Pyrenaeus/LRO_NAC_CratDenHaz_16S041E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Montes_Pyrenaeus/LRO_NAC_CratDenHaz_16S041E_150cmp.vrt deleted file mode 100644 index 93eb148728..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Montes_Pyrenaeus/LRO_NAC_CratDenHaz_16S041E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_CratDenHaz_16S041E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_CratDenHaz_16S041E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_CratDenHaz_16S041E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_CratDenHaz_16S041E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Orientale_1/LRO_LROC_Crater_Density_Hazard_Orientale_1.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Orientale_1/LRO_LROC_Crater_Density_Hazard_Orientale_1.asset deleted file mode 100644 index a0d7328a37..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Orientale_1/LRO_LROC_Crater_Density_Hazard_Orientale_1.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_CratDenHaz_26S265E_200cmp", - Name = [[LRO LROC Crater Density Hazard, Orientale 1]], - FilePath = asset.localResource("LRO_NAC_CratDenHaz_26S265E_200cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Crater Density Hazard, Orientale 1]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_CratDenHaz_26S265E_200cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Crater Density Hazard, Orientale 1 layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Orientale_1/LRO_NAC_CratDenHaz_26S265E_200cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Orientale_1/LRO_NAC_CratDenHaz_26S265E_200cmp.vrt deleted file mode 100644 index 6535214846..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Orientale_1/LRO_NAC_CratDenHaz_26S265E_200cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_CratDenHaz_26S265E_200cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_CratDenHaz_26S265E_200cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_CratDenHaz_26S265E_200cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_CratDenHaz_26S265E_200cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Plato_Ejecta/LRO_LROC_Crater_Density_Hazard_Plato_Ejecta.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Plato_Ejecta/LRO_LROC_Crater_Density_Hazard_Plato_Ejecta.asset deleted file mode 100644 index dd7a0d9cc8..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Plato_Ejecta/LRO_LROC_Crater_Density_Hazard_Plato_Ejecta.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_CratDenHaz_53N354E_150cmp", - Name = [[LRO LROC Crater Density Hazard, Plato Ejecta]], - FilePath = asset.localResource("LRO_NAC_CratDenHaz_53N354E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Crater Density Hazard, Plato Ejecta]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_CratDenHaz_53N354E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Crater Density Hazard, Plato Ejecta layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Plato_Ejecta/LRO_NAC_CratDenHaz_53N354E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Plato_Ejecta/LRO_NAC_CratDenHaz_53N354E_150cmp.vrt deleted file mode 100644 index db4048725c..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Plato_Ejecta/LRO_NAC_CratDenHaz_53N354E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_CratDenHaz_53N354E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_CratDenHaz_53N354E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_CratDenHaz_53N354E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_CratDenHaz_53N354E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_South_Pole-Aitken_Basin_Interior/LRO_LROC_Crater_Density_Hazard_South_Pole-Aitken_Basin_Interior.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_South_Pole-Aitken_Basin_Interior/LRO_LROC_Crater_Density_Hazard_South_Pole-Aitken_Basin_Interior.asset deleted file mode 100644 index 70398761d1..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_South_Pole-Aitken_Basin_Interior/LRO_LROC_Crater_Density_Hazard_South_Pole-Aitken_Basin_Interior.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_CratDenHaz_60S200E_150cmp", - Name = [[LRO LROC Crater Density Hazard, South Pole-Aitken Basin Interior]], - FilePath = asset.localResource("LRO_NAC_CratDenHaz_60S200E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Crater Density Hazard, South Pole-Aitken Basin Interior]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_CratDenHaz_60S200E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Crater Density Hazard, South Pole-Aitken Basin Interior layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_South_Pole-Aitken_Basin_Interior/LRO_NAC_CratDenHaz_60S200E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_South_Pole-Aitken_Basin_Interior/LRO_NAC_CratDenHaz_60S200E_150cmp.vrt deleted file mode 100644 index 94c4d555f9..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_South_Pole-Aitken_Basin_Interior/LRO_NAC_CratDenHaz_60S200E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_CratDenHaz_60S200E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_CratDenHaz_60S200E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_CratDenHaz_60S200E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_CratDenHaz_60S200E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Stratton_(Dewar)_High_Fe_Anomaly/LRO_LROC_Crater_Density_Hazard_Stratton_(Dewar)_High_Fe_Anomaly.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Stratton_(Dewar)_High_Fe_Anomaly/LRO_LROC_Crater_Density_Hazard_Stratton_(Dewar)_High_Fe_Anomaly.asset deleted file mode 100644 index 06d885f7fd..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Stratton_(Dewar)_High_Fe_Anomaly/LRO_LROC_Crater_Density_Hazard_Stratton_(Dewar)_High_Fe_Anomaly.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_CratDenHaz_02S167E_150cmp", - Name = [[LRO LROC Crater Density Hazard, Stratton (Dewar) High Fe Anomaly]], - FilePath = asset.localResource("LRO_NAC_CratDenHaz_02S167E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Crater Density Hazard, Stratton (Dewar) High Fe Anomaly]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_CratDenHaz_02S167E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Crater Density Hazard, Stratton (Dewar) High Fe Anomaly layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Stratton_(Dewar)_High_Fe_Anomaly/LRO_NAC_CratDenHaz_02S167E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Stratton_(Dewar)_High_Fe_Anomaly/LRO_NAC_CratDenHaz_02S167E_150cmp.vrt deleted file mode 100644 index 8a57599364..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Stratton_(Dewar)_High_Fe_Anomaly/LRO_NAC_CratDenHaz_02S167E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_CratDenHaz_02S167E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_CratDenHaz_02S167E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_CratDenHaz_02S167E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_CratDenHaz_02S167E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Sulpicius_Gallus/LRO_LROC_Crater_Density_Hazard_Sulpicius_Gallus.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Sulpicius_Gallus/LRO_LROC_Crater_Density_Hazard_Sulpicius_Gallus.asset deleted file mode 100644 index 38b343f463..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Sulpicius_Gallus/LRO_LROC_Crater_Density_Hazard_Sulpicius_Gallus.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_CratDenHaz_20N010E_2mp", - Name = [[LRO LROC Crater Density Hazard, Sulpicius Gallus]], - FilePath = asset.localResource("LRO_NAC_CratDenHaz_20N010E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Crater Density Hazard, Sulpicius Gallus]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_CratDenHaz_20N010E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Crater Density Hazard, Sulpicius Gallus layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Sulpicius_Gallus/LRO_NAC_CratDenHaz_20N010E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Sulpicius_Gallus/LRO_NAC_CratDenHaz_20N010E_2mp.vrt deleted file mode 100644 index b5db456dc2..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Sulpicius_Gallus/LRO_NAC_CratDenHaz_20N010E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_CratDenHaz_20N010E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_CratDenHaz_20N010E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_CratDenHaz_20N010E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_CratDenHaz_20N010E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Tycho_Crater/LRO_LROC_Crater_Density_Hazard_Tycho_Crater.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Tycho_Crater/LRO_LROC_Crater_Density_Hazard_Tycho_Crater.asset deleted file mode 100644 index 88ef263934..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Tycho_Crater/LRO_LROC_Crater_Density_Hazard_Tycho_Crater.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_CratDenHaz_43S349E_150cmp", - Name = [[LRO LROC Crater Density Hazard, Tycho Crater]], - FilePath = asset.localResource("LRO_NAC_CratDenHaz_43S349E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Crater Density Hazard, Tycho Crater]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_CratDenHaz_43S349E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Crater Density Hazard, Tycho Crater layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Tycho_Crater/LRO_NAC_CratDenHaz_43S349E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Tycho_Crater/LRO_NAC_CratDenHaz_43S349E_150cmp.vrt deleted file mode 100644 index 24f37dee78..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hazard_Tycho_Crater/LRO_NAC_CratDenHaz_43S349E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_CratDenHaz_43S349E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_CratDenHaz_43S349E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_CratDenHaz_43S349E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_CratDenHaz_43S349E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hertzsprung/LRO_LROC_Crater_Density_Hertzsprung.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hertzsprung/LRO_LROC_Crater_Density_Hertzsprung.asset deleted file mode 100644 index 4e96ead69b..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hertzsprung/LRO_LROC_Crater_Density_Hertzsprung.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_CratDen_00N234E_150cmp", - Name = [[LRO LROC Crater Density, Hertzsprung]], - FilePath = asset.localResource("LRO_NAC_CratDen_00N234E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Crater Density, Hertzsprung]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_CratDen_00N234E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Crater Density, Hertzsprung layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hertzsprung/LRO_NAC_CratDen_00N234E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hertzsprung/LRO_NAC_CratDen_00N234E_150cmp.vrt deleted file mode 100644 index 72d773074d..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hertzsprung/LRO_NAC_CratDen_00N234E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_CratDen_00N234E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_CratDen_00N234E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_CratDen_00N234E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_CratDen_00N234E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hortensius_Domes/LRO_LROC_Crater_Density_Hortensius_Domes.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hortensius_Domes/LRO_LROC_Crater_Density_Hortensius_Domes.asset deleted file mode 100644 index d5a3c9111a..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hortensius_Domes/LRO_LROC_Crater_Density_Hortensius_Domes.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_CratDen_08N332E_2mp", - Name = [[LRO LROC Crater Density, Hortensius Domes]], - FilePath = asset.localResource("LRO_NAC_CratDen_08N332E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Crater Density, Hortensius Domes]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_CratDen_08N332E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Crater Density, Hortensius Domes layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hortensius_Domes/LRO_NAC_CratDen_08N332E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hortensius_Domes/LRO_NAC_CratDen_08N332E_2mp.vrt deleted file mode 100644 index bd43ff1834..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Hortensius_Domes/LRO_NAC_CratDen_08N332E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_CratDen_08N332E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_CratDen_08N332E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_CratDen_08N332E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_CratDen_08N332E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_King_Crater/LRO_LROC_Crater_Density_King_Crater.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_King_Crater/LRO_LROC_Crater_Density_King_Crater.asset deleted file mode 100644 index fa6b849810..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_King_Crater/LRO_LROC_Crater_Density_King_Crater.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_CratDen_06N120E_200cmp", - Name = [[LRO LROC Crater Density, King Crater]], - FilePath = asset.localResource("LRO_NAC_CratDen_06N120E_200cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Crater Density, King Crater]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_CratDen_06N120E_200cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Crater Density, King Crater layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_King_Crater/LRO_NAC_CratDen_06N120E_200cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_King_Crater/LRO_NAC_CratDen_06N120E_200cmp.vrt deleted file mode 100644 index c674e1e14f..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_King_Crater/LRO_NAC_CratDen_06N120E_200cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_CratDen_06N120E_200cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_CratDen_06N120E_200cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_CratDen_06N120E_200cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_CratDen_06N120E_200cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Lichtenberg_Crater/LRO_LROC_Crater_Density_Lichtenberg_Crater.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Lichtenberg_Crater/LRO_LROC_Crater_Density_Lichtenberg_Crater.asset deleted file mode 100644 index 9e266b0df6..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Lichtenberg_Crater/LRO_LROC_Crater_Density_Lichtenberg_Crater.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_CratDen_32N292E_2mp", - Name = [[LRO LROC Crater Density, Lichtenberg Crater]], - FilePath = asset.localResource("LRO_NAC_CratDen_32N292E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Crater Density, Lichtenberg Crater]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_CratDen_32N292E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Crater Density, Lichtenberg Crater layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Lichtenberg_Crater/LRO_NAC_CratDen_32N292E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Lichtenberg_Crater/LRO_NAC_CratDen_32N292E_2mp.vrt deleted file mode 100644 index b24690b044..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Lichtenberg_Crater/LRO_NAC_CratDen_32N292E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_CratDen_32N292E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_CratDen_32N292E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_CratDen_32N292E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_CratDen_32N292E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Mare_Crisium/LRO_LROC_Crater_Density_Mare_Crisium.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Mare_Crisium/LRO_LROC_Crater_Density_Mare_Crisium.asset deleted file mode 100644 index 9e4313dbe2..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Mare_Crisium/LRO_LROC_Crater_Density_Mare_Crisium.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_CratDen_10N058E_150cmp", - Name = [[LRO LROC Crater Density, Mare Crisium]], - FilePath = asset.localResource("LRO_NAC_CratDen_10N058E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Crater Density, Mare Crisium]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_CratDen_10N058E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Crater Density, Mare Crisium layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Mare_Crisium/LRO_NAC_CratDen_10N058E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Mare_Crisium/LRO_NAC_CratDen_10N058E_150cmp.vrt deleted file mode 100644 index a4e3c592ab..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Mare_Crisium/LRO_NAC_CratDen_10N058E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_CratDen_10N058E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_CratDen_10N058E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_CratDen_10N058E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_CratDen_10N058E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Montes_Pyrenaeus/LRO_LROC_Crater_Density_Montes_Pyrenaeus.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Montes_Pyrenaeus/LRO_LROC_Crater_Density_Montes_Pyrenaeus.asset deleted file mode 100644 index 31f2795e63..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Montes_Pyrenaeus/LRO_LROC_Crater_Density_Montes_Pyrenaeus.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_CratDen_16S041E_150cmp", - Name = [[LRO LROC Crater Density, Montes Pyrenaeus]], - FilePath = asset.localResource("LRO_NAC_CratDen_16S041E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Crater Density, Montes Pyrenaeus]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_CratDen_16S041E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Crater Density, Montes Pyrenaeus layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Montes_Pyrenaeus/LRO_NAC_CratDen_16S041E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Montes_Pyrenaeus/LRO_NAC_CratDen_16S041E_150cmp.vrt deleted file mode 100644 index a65332e296..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Montes_Pyrenaeus/LRO_NAC_CratDen_16S041E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_CratDen_16S041E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_CratDen_16S041E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_CratDen_16S041E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_CratDen_16S041E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Orientale_1/LRO_LROC_Crater_Density_Orientale_1.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Orientale_1/LRO_LROC_Crater_Density_Orientale_1.asset deleted file mode 100644 index 04e29c69dd..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Orientale_1/LRO_LROC_Crater_Density_Orientale_1.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_CratDen_26S265E_200cmp", - Name = [[LRO LROC Crater Density, Orientale 1]], - FilePath = asset.localResource("LRO_NAC_CratDen_26S265E_200cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Crater Density, Orientale 1]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_CratDen_26S265E_200cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Crater Density, Orientale 1 layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Orientale_1/LRO_NAC_CratDen_26S265E_200cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Orientale_1/LRO_NAC_CratDen_26S265E_200cmp.vrt deleted file mode 100644 index e18553e59d..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Orientale_1/LRO_NAC_CratDen_26S265E_200cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_CratDen_26S265E_200cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_CratDen_26S265E_200cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_CratDen_26S265E_200cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_CratDen_26S265E_200cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Plato_Ejecta/LRO_LROC_Crater_Density_Plato_Ejecta.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Plato_Ejecta/LRO_LROC_Crater_Density_Plato_Ejecta.asset deleted file mode 100644 index ba4c6818f8..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Plato_Ejecta/LRO_LROC_Crater_Density_Plato_Ejecta.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_CratDen_53N354E_150cmp", - Name = [[LRO LROC Crater Density, Plato Ejecta]], - FilePath = asset.localResource("LRO_NAC_CratDen_53N354E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Crater Density, Plato Ejecta]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_CratDen_53N354E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Crater Density, Plato Ejecta layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Plato_Ejecta/LRO_NAC_CratDen_53N354E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Plato_Ejecta/LRO_NAC_CratDen_53N354E_150cmp.vrt deleted file mode 100644 index 219f3dd1af..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Plato_Ejecta/LRO_NAC_CratDen_53N354E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_CratDen_53N354E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_CratDen_53N354E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_CratDen_53N354E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_CratDen_53N354E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_South_Pole-Aitken_Basin_Interior/LRO_LROC_Crater_Density_South_Pole-Aitken_Basin_Interior.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_South_Pole-Aitken_Basin_Interior/LRO_LROC_Crater_Density_South_Pole-Aitken_Basin_Interior.asset deleted file mode 100644 index debd77cf58..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_South_Pole-Aitken_Basin_Interior/LRO_LROC_Crater_Density_South_Pole-Aitken_Basin_Interior.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_CratDen_60S200E_150cmp", - Name = [[LRO LROC Crater Density, South Pole-Aitken Basin Interior]], - FilePath = asset.localResource("LRO_NAC_CratDen_60S200E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Crater Density, South Pole-Aitken Basin Interior]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_CratDen_60S200E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Crater Density, South Pole-Aitken Basin Interior layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_South_Pole-Aitken_Basin_Interior/LRO_NAC_CratDen_60S200E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_South_Pole-Aitken_Basin_Interior/LRO_NAC_CratDen_60S200E_150cmp.vrt deleted file mode 100644 index 74f0a18fb0..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_South_Pole-Aitken_Basin_Interior/LRO_NAC_CratDen_60S200E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_CratDen_60S200E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_CratDen_60S200E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_CratDen_60S200E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_CratDen_60S200E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Stratton_(Dewar)_High_Fe_Anomaly/LRO_LROC_Crater_Density_Stratton_(Dewar)_High_Fe_Anomaly.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Stratton_(Dewar)_High_Fe_Anomaly/LRO_LROC_Crater_Density_Stratton_(Dewar)_High_Fe_Anomaly.asset deleted file mode 100644 index 2109db9d66..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Stratton_(Dewar)_High_Fe_Anomaly/LRO_LROC_Crater_Density_Stratton_(Dewar)_High_Fe_Anomaly.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_CratDen_02S167E_150cmp", - Name = [[LRO LROC Crater Density, Stratton (Dewar) High Fe Anomaly]], - FilePath = asset.localResource("LRO_NAC_CratDen_02S167E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Crater Density, Stratton (Dewar) High Fe Anomaly]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_CratDen_02S167E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Crater Density, Stratton (Dewar) High Fe Anomaly layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Stratton_(Dewar)_High_Fe_Anomaly/LRO_NAC_CratDen_02S167E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Stratton_(Dewar)_High_Fe_Anomaly/LRO_NAC_CratDen_02S167E_150cmp.vrt deleted file mode 100644 index c8d5d0d7a8..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Stratton_(Dewar)_High_Fe_Anomaly/LRO_NAC_CratDen_02S167E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_CratDen_02S167E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_CratDen_02S167E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_CratDen_02S167E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_CratDen_02S167E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Sulpicius_Gallus/LRO_LROC_Crater_Density_Sulpicius_Gallus.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Sulpicius_Gallus/LRO_LROC_Crater_Density_Sulpicius_Gallus.asset deleted file mode 100644 index f38611c843..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Sulpicius_Gallus/LRO_LROC_Crater_Density_Sulpicius_Gallus.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_CratDen_20N010E_2mp", - Name = [[LRO LROC Crater Density, Sulpicius Gallus]], - FilePath = asset.localResource("LRO_NAC_CratDen_20N010E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Crater Density, Sulpicius Gallus]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_CratDen_20N010E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Crater Density, Sulpicius Gallus layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Sulpicius_Gallus/LRO_NAC_CratDen_20N010E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Sulpicius_Gallus/LRO_NAC_CratDen_20N010E_2mp.vrt deleted file mode 100644 index e8b30c728c..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Sulpicius_Gallus/LRO_NAC_CratDen_20N010E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_CratDen_20N010E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_CratDen_20N010E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_CratDen_20N010E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_CratDen_20N010E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Tycho_Crater/LRO_LROC_Crater_Density_Tycho_Crater.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Tycho_Crater/LRO_LROC_Crater_Density_Tycho_Crater.asset deleted file mode 100644 index 290904275b..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Tycho_Crater/LRO_LROC_Crater_Density_Tycho_Crater.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_CratDen_43S349E_150cmp", - Name = [[LRO LROC Crater Density, Tycho Crater]], - FilePath = asset.localResource("LRO_NAC_CratDen_43S349E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Crater Density, Tycho Crater]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_CratDen_43S349E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Crater Density, Tycho Crater layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Tycho_Crater/LRO_NAC_CratDen_43S349E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Tycho_Crater/LRO_NAC_CratDen_43S349E_150cmp.vrt deleted file mode 100644 index a011fa540f..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Crater_Density_Tycho_Crater/LRO_NAC_CratDen_43S349E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_CratDen_43S349E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_CratDen_43S349E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_CratDen_43S349E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_CratDen_43S349E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM.asset new file mode 100644 index 0000000000..fcdef25339 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM.asset @@ -0,0 +1,454 @@ +-- This file was automatically generated using a script found at +-- https://github.com/OpenSpace/scripts/treks-to-openspace. See the README.md file +-- in that repository for more information on how to run the script to update these +-- files. In particular in the case of errors, prefer to change that script rather +-- than the individual files + +local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier + +local treks_LRO_NAC_ClrRoughness_15m_17S173E_150cmp = { + Identifier = "LRO_NAC_ClrRoughness_15m_17S173E_150cmp", + Name = [[LRO LROC DEM, Aitken Crater, 15m Color Roughness]], + FilePath = asset.localResource("LRO_LROC_DEM/Aitken_Crater.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_ClrRoughness_15m_13S358E_2mp = { + Identifier = "LRO_NAC_ClrRoughness_15m_13S358E_2mp", + Name = [[LRO LROC DEM, Alphonsus Crater, 15m Color Roughness]], + FilePath = asset.localResource("LRO_LROC_DEM/Alphonsus_Crater.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_ClrShade_13S358E_200cmp = { + Identifier = "LRO_NAC_ClrShade_13S358E_200cmp", + Name = [[LRO LROC DEM, Alphonsus, ColorHillshade]], + FilePath = asset.localResource("LRO_LROC_DEM/Alphonsus.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_ClrRoughness_15m_73N350E_150cmp = { + Identifier = "LRO_NAC_ClrRoughness_15m_73N350E_150cmp", + Name = [[LRO LROC DEM, Anaxagoras Crater, 15m Color Roughness]], + FilePath = asset.localResource("LRO_LROC_DEM/Anaxagoras_Crater.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_ClrRoughness_15m_26N004E_150cmp = { + Identifier = "LRO_NAC_ClrRoughness_15m_26N004E_150cmp", + Name = [[LRO LROC DEM, Apollo 15, 15m Color Roughness]], + FilePath = asset.localResource("LRO_LROC_DEM/Apollo_15.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_ClrRoughness_15m_09S015E_150cmp = { + Identifier = "LRO_NAC_ClrRoughness_15m_09S015E_150cmp", + Name = [[LRO LROC DEM, Apollo 16, 15m Color Roughness]], + FilePath = asset.localResource("LRO_LROC_DEM/Apollo_16.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_ClrRoughness_15m_37S206E_150cmp = { + Identifier = "LRO_NAC_ClrRoughness_15m_37S206E_150cmp", + Name = [[LRO LROC DEM, Apollo Basin, 15m Color Roughness]], + FilePath = asset.localResource("LRO_LROC_DEM/Apollo_Basin.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_ClrRoughness_15m_25N311E_2mp = { + Identifier = "LRO_NAC_ClrRoughness_15m_25N311E_2mp", + Name = [[LRO LROC DEM, Aristarchus 1, 15m Color Roughness]], + FilePath = asset.localResource("LRO_LROC_DEM/Aristarchus_1.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_ClrRoughness_15m_28N307E_150cmp = { + Identifier = "LRO_NAC_ClrRoughness_15m_28N307E_150cmp", + Name = [[LRO LROC DEM, Aristarchus 2, 15m Color Roughness]], + FilePath = asset.localResource("LRO_LROC_DEM/Aristarchus_2.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_ClrRoughness_15m_19S070E_150cmp = { + Identifier = "LRO_NAC_ClrRoughness_15m_19S070E_150cmp", + Name = [[LRO LROC DEM, Balmer Basin, 15m Color Roughness]], + FilePath = asset.localResource("LRO_LROC_DEM/Balmer_Basin.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_ClrRoughness_15m_20S337E_400cmp = { + Identifier = "LRO_NAC_ClrRoughness_15m_20S337E_400cmp", + Name = [[LRO LROC DEM, Bullialdus Crater, 15m Color Roughness]], + FilePath = asset.localResource("LRO_LROC_DEM/Bullialdus_Crater.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_ClrShade_61N099E_150cmp = { + Identifier = "LRO_NAC_ClrShade_61N099E_150cmp", + Name = [[LRO LROC DEM, Compton Belkovich Th Anomaly, ColorHillshade]], + FilePath = asset.localResource("LRO_LROC_DEM/Compton_Belkovich_Th_Anomaly.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_ClrRoughness_15m_26N178E_150cmp = { + Identifier = "LRO_NAC_ClrRoughness_15m_26N178E_150cmp", + Name = [[LRO LROC DEM, Dante Crater, 15m Color Roughness]], + FilePath = asset.localResource("LRO_LROC_DEM/Dante_Crater.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_ClrShade_02S317E_150cmp = { + Identifier = "LRO_NAC_ClrShade_02S317E_150cmp", + Name = [[LRO LROC DEM, Flamsteed Crater, ColorHillshade]], + FilePath = asset.localResource("LRO_LROC_DEM/Flamsteed_Crater.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_ClrShade_03N280E_2m = { + Identifier = "LRO_NAC_ClrShade_03N280E_2m", + Name = [[LRO LROC DEM, Fresh Crater East of Lents, ColorHillshade]], + FilePath = asset.localResource("LRO_LROC_DEM/Fresh_Crater_East_of_Lents.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_ClrRoughness_15m_36N320E_2mp = { + Identifier = "LRO_NAC_ClrRoughness_15m_36N320E_2mp", + Name = [[LRO LROC DEM, Gruithuisen Domes, 15m Color Roughness]], + FilePath = asset.localResource("LRO_LROC_DEM/Gruithuisen_Domes.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_ClrRoughness_15m_00N234E_150cmp = { + Identifier = "LRO_NAC_ClrRoughness_15m_00N234E_150cmp", + Name = [[LRO LROC DEM, Hertzsprung, 15m Color Roughness]], + FilePath = asset.localResource("LRO_LROC_DEM/Hertzsprung.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_ClrRoughness_15m_08N332E_2mp = { + Identifier = "LRO_NAC_ClrRoughness_15m_08N332E_2mp", + Name = [[LRO LROC DEM, Hortensius Domes, 15m Color Roughness]], + FilePath = asset.localResource("LRO_LROC_DEM/Hortensius_Domes.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_ClrShade_55N077E_200cmp = { + Identifier = "LRO_NAC_ClrShade_55N077E_200cmp", + Name = [[LRO LROC DEM, Humboldtianum Basin, ColorHillshade]], + FilePath = asset.localResource("LRO_LROC_DEM/Humboldtianum_Basin.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_ClrShade_19N005E_2mp = { + Identifier = "LRO_NAC_ClrShade_19N005E_2mp", + Name = [[LRO LROC DEM, Ina (D-Caldera), ColorHillshade]], + FilePath = asset.localResource("LRO_LROC_DEM/Ina_D-Caldera.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_ClrRoughness_15m_06N120E_200cmp = { + Identifier = "LRO_NAC_ClrRoughness_15m_06N120E_200cmp", + Name = [[LRO LROC DEM, King Crater, 15m Color Roughness]], + FilePath = asset.localResource("LRO_LROC_DEM/King_Crater.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_ClrRoughness_15m_32N292E_2mp = { + Identifier = "LRO_NAC_ClrRoughness_15m_32N292E_2mp", + Name = [[LRO LROC DEM, Lichtenberg Crater, 15m Color Roughness]], + FilePath = asset.localResource("LRO_LROC_DEM/Lichtenberg_Crater.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_ClrRoughness_15m_10N58E_150cmp = { + Identifier = "LRO_NAC_ClrRoughness_15m_10N58E_150cmp", + Name = [[LRO LROC DEM, Mare Crisium, 15m Color Roughness]], + FilePath = asset.localResource("LRO_LROC_DEM/Mare_Crisium.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_ClrShade_36S164E_2mp = { + Identifier = "LRO_NAC_ClrShade_36S164E_2mp", + Name = [[LRO LROC DEM, Mare Ingenii, ColorHillshade]], + FilePath = asset.localResource("LRO_LROC_DEM/Mare_Ingenii.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_ClrShade_26N150E_200cmp = { + Identifier = "LRO_NAC_ClrShade_26N150E_200cmp", + Name = [[LRO LROC DEM, Mare Moscoviense, ColorHillshade]], + FilePath = asset.localResource("LRO_LROC_DEM/Mare_Moscoviense.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_ClrShade_02N085E_150cmp = { + Identifier = "LRO_NAC_ClrShade_02N085E_150cmp", + Name = [[LRO LROC DEM, Mare Smythii, ColorHillshade]], + FilePath = asset.localResource("LRO_LROC_DEM/Mare_Smythii.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_ClrShade_07N022E_150cmp = { + Identifier = "LRO_NAC_ClrShade_07N022E_150cmp", + Name = [[LRO LROC DEM, Mare Tranquillitatis, ColorHillshade]], + FilePath = asset.localResource("LRO_LROC_DEM/Mare_Tranquillitatis.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_ClrShade_14N304E_2mp = { + Identifier = "LRO_NAC_ClrShade_14N304E_2mp", + Name = [[LRO LROC DEM, Marius Hills, ColorHillshade]], + FilePath = asset.localResource("LRO_LROC_DEM/Marius_Hills.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_ClrRoughness_15m_16S041E_150cmp = { + Identifier = "LRO_NAC_ClrRoughness_15m_16S041E_150cmp", + Name = [[LRO LROC DEM, Montes Pyrenaeus, 15m Color Roughness]], + FilePath = asset.localResource("LRO_LROC_DEM/Montes_Pyrenaeus.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_ClrShade_05N000E_150cmp = { + Identifier = "LRO_NAC_ClrShade_05N000E_150cmp", + Name = [[LRO LROC DEM, Murchison Crater, ColorHillshade]], + FilePath = asset.localResource("LRO_LROC_DEM/Murchison_Crater.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_ClrRoughness_15m_26S265E_200cmp = { + Identifier = "LRO_NAC_ClrRoughness_15m_26S265E_200cmp", + Name = [[LRO LROC DEM, Orientale 1, 15m Color Roughness]], + FilePath = asset.localResource("LRO_LROC_DEM/Orientale_1.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_ClrRoughness_15m_53N354E_150cmp = { + Identifier = "LRO_NAC_ClrRoughness_15m_53N354E_150cmp", + Name = [[LRO LROC DEM, Plato Ejecta, 15m Color Roughness]], + FilePath = asset.localResource("LRO_LROC_DEM/Plato_Ejecta.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_ClrShade_07N301E_2mp = { + Identifier = "LRO_NAC_ClrShade_07N301E_2mp", + Name = [[LRO LROC DEM, Reiner Gamma, ColorHillshade]], + FilePath = asset.localResource("LRO_LROC_DEM/Reiner_Gamma.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_ClrShade_03S286E_150cmp = { + Identifier = "LRO_NAC_ClrShade_03S286E_150cmp", + Name = [[LRO LROC DEM, Riccioli Crater, ColorHillshade]], + FilePath = asset.localResource("LRO_LROC_DEM/Riccioli_Crater.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_ClrShade_13N356E_150cmp = { + Identifier = "LRO_NAC_ClrShade_13N356E_150cmp", + Name = [[LRO LROC DEM, Rima Bode, ColorHillshade]], + FilePath = asset.localResource("LRO_LROC_DEM/Rima_Bode.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_ClrShade_27N318E_150cmp = { + Identifier = "LRO_NAC_ClrShade_27N318E_150cmp", + Name = [[LRO LROC DEM, Rimae Prinz, ColorHillshade]], + FilePath = asset.localResource("LRO_LROC_DEM/Rimae_Prinz.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_ClrRoughness_15m_60S200E_150cmp = { + Identifier = "LRO_NAC_ClrRoughness_15m_60S200E_150cmp", + Name = [[LRO LROC DEM, South Pole-Aitken Basin Interior, 15m Color Roughness]], + FilePath = asset.localResource("LRO_LROC_DEM/South_Pole-Aitken_Basin_Interior.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_ClrShade_51S171E_2mp = { + Identifier = "LRO_NAC_ClrShade_51S171E_2mp", + Name = [[LRO LROC DEM, South Pole-Aitken Rim, ColorHillshade]], + FilePath = asset.localResource("LRO_LROC_DEM/South_Pole-Aitken_Rim.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_ClrRoughness_15m_02S167E_150cmp = { + Identifier = "LRO_NAC_ClrRoughness_15m_02S167E_150cmp", + Name = [[LRO LROC DEM, Stratton (Dewar) High Fe Anomaly, 15m Color Roughness]], + FilePath = asset.localResource("LRO_LROC_DEM/Stratton_Dewar_High_Fe_Anomaly.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_ClrShade_02S167E_150cmp = { + Identifier = "LRO_NAC_ClrShade_02S167E_150cmp", + Name = [[LRO LROC DEM, Stratton (Dewar), ColorHillshade]], + FilePath = asset.localResource("LRO_LROC_DEM/Stratton_Dewar.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_ClrRoughness_15m_20N010E_2mp = { + Identifier = "LRO_NAC_ClrRoughness_15m_20N010E_2mp", + Name = [[LRO LROC DEM, Sulpicius Gallus, 15m Color Roughness]], + FilePath = asset.localResource("LRO_LROC_DEM/Sulpicius_Gallus.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_ClrRoughness_15m_19S129E_150cmp = { + Identifier = "LRO_NAC_ClrRoughness_15m_19S129E_150cmp", + Name = [[LRO LROC DEM, Tsiolkovskiy Crater, 15m Color Roughness]], + FilePath = asset.localResource("LRO_LROC_DEM/Tsiolkovskiy_Crater.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_ClrRoughness_15m_43S349E_150cmp = { + Identifier = "LRO_NAC_ClrRoughness_15m_43S349E_150cmp", + Name = [[LRO LROC DEM, Tycho Crater, 15m Color Roughness]], + FilePath = asset.localResource("LRO_LROC_DEM/Tycho_Crater.vrt"), + Description = [[]] +} + +asset.onInitialize(function() + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_ClrRoughness_15m_17S173E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_ClrRoughness_15m_13S358E_2mp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_ClrShade_13S358E_200cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_ClrRoughness_15m_73N350E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_ClrRoughness_15m_26N004E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_ClrRoughness_15m_09S015E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_ClrRoughness_15m_37S206E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_ClrRoughness_15m_25N311E_2mp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_ClrRoughness_15m_28N307E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_ClrRoughness_15m_19S070E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_ClrRoughness_15m_20S337E_400cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_ClrShade_61N099E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_ClrRoughness_15m_26N178E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_ClrShade_02S317E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_ClrShade_03N280E_2m) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_ClrRoughness_15m_36N320E_2mp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_ClrRoughness_15m_00N234E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_ClrRoughness_15m_08N332E_2mp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_ClrShade_55N077E_200cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_ClrShade_19N005E_2mp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_ClrRoughness_15m_06N120E_200cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_ClrRoughness_15m_32N292E_2mp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_ClrRoughness_15m_10N58E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_ClrShade_36S164E_2mp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_ClrShade_26N150E_200cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_ClrShade_02N085E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_ClrShade_07N022E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_ClrShade_14N304E_2mp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_ClrRoughness_15m_16S041E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_ClrShade_05N000E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_ClrRoughness_15m_26S265E_200cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_ClrRoughness_15m_53N354E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_ClrShade_07N301E_2mp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_ClrShade_03S286E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_ClrShade_13N356E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_ClrShade_27N318E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_ClrRoughness_15m_60S200E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_ClrShade_51S171E_2mp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_ClrRoughness_15m_02S167E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_ClrShade_02S167E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_ClrRoughness_15m_20N010E_2mp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_ClrRoughness_15m_19S129E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_ClrRoughness_15m_43S349E_150cmp) +end) + +asset.onDeinitialize(function() + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_ClrRoughness_15m_17S173E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_ClrRoughness_15m_13S358E_2mp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_ClrShade_13S358E_200cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_ClrRoughness_15m_73N350E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_ClrRoughness_15m_26N004E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_ClrRoughness_15m_09S015E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_ClrRoughness_15m_37S206E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_ClrRoughness_15m_25N311E_2mp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_ClrRoughness_15m_28N307E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_ClrRoughness_15m_19S070E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_ClrRoughness_15m_20S337E_400cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_ClrShade_61N099E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_ClrRoughness_15m_26N178E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_ClrShade_02S317E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_ClrShade_03N280E_2m") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_ClrRoughness_15m_36N320E_2mp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_ClrRoughness_15m_00N234E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_ClrRoughness_15m_08N332E_2mp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_ClrShade_55N077E_200cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_ClrShade_19N005E_2mp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_ClrRoughness_15m_06N120E_200cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_ClrRoughness_15m_32N292E_2mp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_ClrRoughness_15m_10N58E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_ClrShade_36S164E_2mp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_ClrShade_26N150E_200cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_ClrShade_02N085E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_ClrShade_07N022E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_ClrShade_14N304E_2mp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_ClrRoughness_15m_16S041E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_ClrShade_05N000E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_ClrRoughness_15m_26S265E_200cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_ClrRoughness_15m_53N354E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_ClrShade_07N301E_2mp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_ClrShade_03S286E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_ClrShade_13N356E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_ClrShade_27N318E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_ClrRoughness_15m_60S200E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_ClrShade_51S171E_2mp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_ClrRoughness_15m_02S167E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_ClrShade_02S167E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_ClrRoughness_15m_20N010E_2mp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_ClrRoughness_15m_19S129E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_ClrRoughness_15m_43S349E_150cmp") +end) + +asset.export("LRO_NAC_ClrRoughness_15m_17S173E_150cmp", treks_LRO_NAC_ClrRoughness_15m_17S173E_150cmp) +asset.export("LRO_NAC_ClrRoughness_15m_13S358E_2mp", treks_LRO_NAC_ClrRoughness_15m_13S358E_2mp) +asset.export("LRO_NAC_ClrShade_13S358E_200cmp", treks_LRO_NAC_ClrShade_13S358E_200cmp) +asset.export("LRO_NAC_ClrRoughness_15m_73N350E_150cmp", treks_LRO_NAC_ClrRoughness_15m_73N350E_150cmp) +asset.export("LRO_NAC_ClrRoughness_15m_26N004E_150cmp", treks_LRO_NAC_ClrRoughness_15m_26N004E_150cmp) +asset.export("LRO_NAC_ClrRoughness_15m_09S015E_150cmp", treks_LRO_NAC_ClrRoughness_15m_09S015E_150cmp) +asset.export("LRO_NAC_ClrRoughness_15m_37S206E_150cmp", treks_LRO_NAC_ClrRoughness_15m_37S206E_150cmp) +asset.export("LRO_NAC_ClrRoughness_15m_25N311E_2mp", treks_LRO_NAC_ClrRoughness_15m_25N311E_2mp) +asset.export("LRO_NAC_ClrRoughness_15m_28N307E_150cmp", treks_LRO_NAC_ClrRoughness_15m_28N307E_150cmp) +asset.export("LRO_NAC_ClrRoughness_15m_19S070E_150cmp", treks_LRO_NAC_ClrRoughness_15m_19S070E_150cmp) +asset.export("LRO_NAC_ClrRoughness_15m_20S337E_400cmp", treks_LRO_NAC_ClrRoughness_15m_20S337E_400cmp) +asset.export("LRO_NAC_ClrShade_61N099E_150cmp", treks_LRO_NAC_ClrShade_61N099E_150cmp) +asset.export("LRO_NAC_ClrRoughness_15m_26N178E_150cmp", treks_LRO_NAC_ClrRoughness_15m_26N178E_150cmp) +asset.export("LRO_NAC_ClrShade_02S317E_150cmp", treks_LRO_NAC_ClrShade_02S317E_150cmp) +asset.export("LRO_NAC_ClrShade_03N280E_2m", treks_LRO_NAC_ClrShade_03N280E_2m) +asset.export("LRO_NAC_ClrRoughness_15m_36N320E_2mp", treks_LRO_NAC_ClrRoughness_15m_36N320E_2mp) +asset.export("LRO_NAC_ClrRoughness_15m_00N234E_150cmp", treks_LRO_NAC_ClrRoughness_15m_00N234E_150cmp) +asset.export("LRO_NAC_ClrRoughness_15m_08N332E_2mp", treks_LRO_NAC_ClrRoughness_15m_08N332E_2mp) +asset.export("LRO_NAC_ClrShade_55N077E_200cmp", treks_LRO_NAC_ClrShade_55N077E_200cmp) +asset.export("LRO_NAC_ClrShade_19N005E_2mp", treks_LRO_NAC_ClrShade_19N005E_2mp) +asset.export("LRO_NAC_ClrRoughness_15m_06N120E_200cmp", treks_LRO_NAC_ClrRoughness_15m_06N120E_200cmp) +asset.export("LRO_NAC_ClrRoughness_15m_32N292E_2mp", treks_LRO_NAC_ClrRoughness_15m_32N292E_2mp) +asset.export("LRO_NAC_ClrRoughness_15m_10N58E_150cmp", treks_LRO_NAC_ClrRoughness_15m_10N58E_150cmp) +asset.export("LRO_NAC_ClrShade_36S164E_2mp", treks_LRO_NAC_ClrShade_36S164E_2mp) +asset.export("LRO_NAC_ClrShade_26N150E_200cmp", treks_LRO_NAC_ClrShade_26N150E_200cmp) +asset.export("LRO_NAC_ClrShade_02N085E_150cmp", treks_LRO_NAC_ClrShade_02N085E_150cmp) +asset.export("LRO_NAC_ClrShade_07N022E_150cmp", treks_LRO_NAC_ClrShade_07N022E_150cmp) +asset.export("LRO_NAC_ClrShade_14N304E_2mp", treks_LRO_NAC_ClrShade_14N304E_2mp) +asset.export("LRO_NAC_ClrRoughness_15m_16S041E_150cmp", treks_LRO_NAC_ClrRoughness_15m_16S041E_150cmp) +asset.export("LRO_NAC_ClrShade_05N000E_150cmp", treks_LRO_NAC_ClrShade_05N000E_150cmp) +asset.export("LRO_NAC_ClrRoughness_15m_26S265E_200cmp", treks_LRO_NAC_ClrRoughness_15m_26S265E_200cmp) +asset.export("LRO_NAC_ClrRoughness_15m_53N354E_150cmp", treks_LRO_NAC_ClrRoughness_15m_53N354E_150cmp) +asset.export("LRO_NAC_ClrShade_07N301E_2mp", treks_LRO_NAC_ClrShade_07N301E_2mp) +asset.export("LRO_NAC_ClrShade_03S286E_150cmp", treks_LRO_NAC_ClrShade_03S286E_150cmp) +asset.export("LRO_NAC_ClrShade_13N356E_150cmp", treks_LRO_NAC_ClrShade_13N356E_150cmp) +asset.export("LRO_NAC_ClrShade_27N318E_150cmp", treks_LRO_NAC_ClrShade_27N318E_150cmp) +asset.export("LRO_NAC_ClrRoughness_15m_60S200E_150cmp", treks_LRO_NAC_ClrRoughness_15m_60S200E_150cmp) +asset.export("LRO_NAC_ClrShade_51S171E_2mp", treks_LRO_NAC_ClrShade_51S171E_2mp) +asset.export("LRO_NAC_ClrRoughness_15m_02S167E_150cmp", treks_LRO_NAC_ClrRoughness_15m_02S167E_150cmp) +asset.export("LRO_NAC_ClrShade_02S167E_150cmp", treks_LRO_NAC_ClrShade_02S167E_150cmp) +asset.export("LRO_NAC_ClrRoughness_15m_20N010E_2mp", treks_LRO_NAC_ClrRoughness_15m_20N010E_2mp) +asset.export("LRO_NAC_ClrRoughness_15m_19S129E_150cmp", treks_LRO_NAC_ClrRoughness_15m_19S129E_150cmp) +asset.export("LRO_NAC_ClrRoughness_15m_43S349E_150cmp", treks_LRO_NAC_ClrRoughness_15m_43S349E_150cmp) + + +asset.meta = { + Name = [[NASA Treks Layers for Moon LRO_LROC_DEM], + Version = "1.0", + Author = "NASA/Treks", + URL = "https://trek.nasa.gov/moon", + License = "NASA/Treks", + Description = [[LRO_LROC_DEM layers from NASA/Treks for Moon]] +} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Aitken_Crater.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Aitken_Crater.vrt new file mode 100644 index 0000000000..2468141d8e --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Aitken_Crater.vrt @@ -0,0 +1,53 @@ + + PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-17],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] + -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 + + 0 + Red + + Aitken_Crater.wms + 1 + + + + 0 + + + + 0 + Green + + Aitken_Crater.wms + 2 + + + + 0 + + + + 0 + Blue + + Aitken_Crater.wms + 3 + + + + 0 + + + + Alpha + + Aitken_Crater.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_17S173E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Aitken_Crater.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_17S173E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Aitken_Crater.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Alphonsus.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Alphonsus.vrt new file mode 100644 index 0000000000..46088bed94 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Alphonsus.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 + + 0 + Red + + Alphonsus.wms + 1 + + + + 0 + + + + 0 + Green + + Alphonsus.wms + 2 + + + + 0 + + + + 0 + Blue + + Alphonsus.wms + 3 + + + + 0 + + + + Alpha + + Alphonsus.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_ColorHillshade/LRO_NAC_ClrShade_13S358E_200cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Alphonsus.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_ColorHillshade/LRO_NAC_ClrShade_13S358E_200cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Alphonsus.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Alphonsus_Crater.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Alphonsus_Crater.vrt new file mode 100644 index 0000000000..62a04b6d48 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Alphonsus_Crater.vrt @@ -0,0 +1,53 @@ + + PROJCS["Equirectangular Moon",GEOGCS["unknown",DATUM["unknown",SPHEROID["unnamed",1737400,0]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",-13],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",0],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] + -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 + + 0 + Red + + Alphonsus_Crater.wms + 1 + + + + 0 + + + + 0 + Green + + Alphonsus_Crater.wms + 2 + + + + 0 + + + + 0 + Blue + + Alphonsus_Crater.wms + 3 + + + + 0 + + + + Alpha + + Alphonsus_Crater.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Crater_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_13S358E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Alphonsus_Crater.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Crater_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_13S358E_2mp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Alphonsus_Crater.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Anaxagoras_Crater.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Anaxagoras_Crater.vrt new file mode 100644 index 0000000000..06bb29085e --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Anaxagoras_Crater.vrt @@ -0,0 +1,53 @@ + + PROJCS["Equirectangular_MOON_73N",GEOGCS["GCS_MOON",DATUM["MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",73],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] + -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 + + 0 + Red + + Anaxagoras_Crater.wms + 1 + + + + 0 + + + + 0 + Green + + Anaxagoras_Crater.wms + 2 + + + + 0 + + + + 0 + Blue + + Anaxagoras_Crater.wms + 3 + + + + 0 + + + + Alpha + + Anaxagoras_Crater.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_73N350E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Anaxagoras_Crater.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_73N350E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Anaxagoras_Crater.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Apollo_15.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Apollo_15.vrt new file mode 100644 index 0000000000..6a4808dffe --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Apollo_15.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 + + 0 + Red + + Apollo_15.wms + 1 + + + + 0 + + + + 0 + Green + + Apollo_15.wms + 2 + + + + 0 + + + + 0 + Blue + + Apollo_15.wms + 3 + + + + 0 + + + + Alpha + + Apollo_15.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_26N004E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Apollo_15.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_26N004E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Apollo_15.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Apollo_16.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Apollo_16.vrt new file mode 100644 index 0000000000..1b0ff0bc0d --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Apollo_16.vrt @@ -0,0 +1,53 @@ + + PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-9],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] + -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 + + 0 + Red + + Apollo_16.wms + 1 + + + + 0 + + + + 0 + Green + + Apollo_16.wms + 2 + + + + 0 + + + + 0 + Blue + + Apollo_16.wms + 3 + + + + 0 + + + + Alpha + + Apollo_16.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_09S015E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Apollo_16.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_09S015E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Apollo_16.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Apollo_Basin.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Apollo_Basin.vrt new file mode 100644 index 0000000000..2ce9a51c52 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Apollo_Basin.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 + + 0 + Red + + Apollo_Basin.wms + 1 + + + + 0 + + + + 0 + Green + + Apollo_Basin.wms + 2 + + + + 0 + + + + 0 + Blue + + Apollo_Basin.wms + 3 + + + + 0 + + + + Alpha + + Apollo_Basin.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_37S206E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Apollo_Basin.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_37S206E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Apollo_Basin.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Aristarchus_1.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Aristarchus_1.vrt new file mode 100644 index 0000000000..0e13f143c1 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Aristarchus_1.vrt @@ -0,0 +1,53 @@ + + PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",25],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] + -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 + + 0 + Red + + Aristarchus_1.wms + 1 + + + + 0 + + + + 0 + Green + + Aristarchus_1.wms + 2 + + + + 0 + + + + 0 + Blue + + Aristarchus_1.wms + 3 + + + + 0 + + + + Alpha + + Aristarchus_1.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_25N311E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Aristarchus_1.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_25N311E_2mp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Aristarchus_1.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Aristarchus_2.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Aristarchus_2.vrt new file mode 100644 index 0000000000..a46c3a6f18 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Aristarchus_2.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 + + 0 + Red + + Aristarchus_2.wms + 1 + + + + 0 + + + + 0 + Green + + Aristarchus_2.wms + 2 + + + + 0 + + + + 0 + Blue + + Aristarchus_2.wms + 3 + + + + 0 + + + + Alpha + + Aristarchus_2.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_28N307E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Aristarchus_2.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_28N307E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Aristarchus_2.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Balmer_Basin.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Balmer_Basin.vrt new file mode 100644 index 0000000000..9a45bcedb8 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Balmer_Basin.vrt @@ -0,0 +1,53 @@ + + PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-19],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] + -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 + + 0 + Red + + Balmer_Basin.wms + 1 + + + + 0 + + + + 0 + Green + + Balmer_Basin.wms + 2 + + + + 0 + + + + 0 + Blue + + Balmer_Basin.wms + 3 + + + + 0 + + + + Alpha + + Balmer_Basin.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_19S070E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Balmer_Basin.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_19S070E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Balmer_Basin.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Bullialdus_Crater.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Bullialdus_Crater.vrt new file mode 100644 index 0000000000..244374f0c3 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Bullialdus_Crater.vrt @@ -0,0 +1,53 @@ + + PROJCS["Equirectangular_MOON_20S",GEOGCS["GCS_MOON",DATUM["MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-20],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] + -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 + + 0 + Red + + Bullialdus_Crater.wms + 1 + + + + 0 + + + + 0 + Green + + Bullialdus_Crater.wms + 2 + + + + 0 + + + + 0 + Blue + + Bullialdus_Crater.wms + 3 + + + + 0 + + + + Alpha + + Bullialdus_Crater.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_20S337E_400cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Bullialdus_Crater.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_20S337E_400cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Bullialdus_Crater.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Compton_Belkovich_Th_Anomaly.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Compton_Belkovich_Th_Anomaly.vrt new file mode 100644 index 0000000000..74957f6924 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Compton_Belkovich_Th_Anomaly.vrt @@ -0,0 +1,53 @@ + + PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",61],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] + -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 + + 0 + Red + + Compton_Belkovich_Th_Anomaly.wms + 1 + + + + 0 + + + + 0 + Green + + Compton_Belkovich_Th_Anomaly.wms + 2 + + + + 0 + + + + 0 + Blue + + Compton_Belkovich_Th_Anomaly.wms + 3 + + + + 0 + + + + Alpha + + Compton_Belkovich_Th_Anomaly.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Compton_Belkovich_Th_Anomaly_ColorHillshade/LRO_NAC_ClrShade_61N099E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Compton_Belkovich_Th_Anomaly.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Compton_Belkovich_Th_Anomaly_ColorHillshade/LRO_NAC_ClrShade_61N099E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Compton_Belkovich_Th_Anomaly.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Dante_Crater.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Dante_Crater.vrt new file mode 100644 index 0000000000..f605fe72b7 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Dante_Crater.vrt @@ -0,0 +1,53 @@ + + PROJCS["Equirectangular_MOON_26N",GEOGCS["GCS_MOON",DATUM["MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",26],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] + -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 + + 0 + Red + + Dante_Crater.wms + 1 + + + + 0 + + + + 0 + Green + + Dante_Crater.wms + 2 + + + + 0 + + + + 0 + Blue + + Dante_Crater.wms + 3 + + + + 0 + + + + Alpha + + Dante_Crater.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_26N178E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Dante_Crater.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_26N178E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Dante_Crater.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Flamsteed_Crater.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Flamsteed_Crater.vrt new file mode 100644 index 0000000000..d9950e706e --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Flamsteed_Crater.vrt @@ -0,0 +1,53 @@ + + PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] + -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 + + 0 + Red + + Flamsteed_Crater.wms + 1 + + + + 0 + + + + 0 + Green + + Flamsteed_Crater.wms + 2 + + + + 0 + + + + 0 + Blue + + Flamsteed_Crater.wms + 3 + + + + 0 + + + + Alpha + + Flamsteed_Crater.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Flamsteed_Crater_ColorHillshade/LRO_NAC_ClrShade_02S317E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Flamsteed_Crater.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Flamsteed_Crater_ColorHillshade/LRO_NAC_ClrShade_02S317E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Flamsteed_Crater.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Fresh_Crater_East_of_Lents.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Fresh_Crater_East_of_Lents.vrt new file mode 100644 index 0000000000..a7646fe64f --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Fresh_Crater_East_of_Lents.vrt @@ -0,0 +1,53 @@ + + PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",3],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] + -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 + + 0 + Red + + Fresh_Crater_East_of_Lents.wms + 1 + + + + 0 + + + + 0 + Green + + Fresh_Crater_East_of_Lents.wms + 2 + + + + 0 + + + + 0 + Blue + + Fresh_Crater_East_of_Lents.wms + 3 + + + + 0 + + + + Alpha + + Fresh_Crater_East_of_Lents.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Fresh_Crater_East_of_Lents_ColorHillshade/LRO_NAC_ClrShade_03N280E_2m.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Fresh_Crater_East_of_Lents.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Fresh_Crater_East_of_Lents_ColorHillshade/LRO_NAC_ClrShade_03N280E_2m.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Fresh_Crater_East_of_Lents.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Gruithuisen_Domes.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Gruithuisen_Domes.vrt new file mode 100644 index 0000000000..94e43bdc4c --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Gruithuisen_Domes.vrt @@ -0,0 +1,53 @@ + + PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",36],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] + -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 + + 0 + Red + + Gruithuisen_Domes.wms + 1 + + + + 0 + + + + 0 + Green + + Gruithuisen_Domes.wms + 2 + + + + 0 + + + + 0 + Blue + + Gruithuisen_Domes.wms + 3 + + + + 0 + + + + Alpha + + Gruithuisen_Domes.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_36N320E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Gruithuisen_Domes.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_36N320E_2mp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Gruithuisen_Domes.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Hertzsprung.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Hertzsprung.vrt new file mode 100644 index 0000000000..e4f634e066 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Hertzsprung.vrt @@ -0,0 +1,53 @@ + + PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",0],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] + -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 + + 0 + Red + + Hertzsprung.wms + 1 + + + + 0 + + + + 0 + Green + + Hertzsprung.wms + 2 + + + + 0 + + + + 0 + Blue + + Hertzsprung.wms + 3 + + + + 0 + + + + Alpha + + Hertzsprung.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_00N234E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Hertzsprung.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_00N234E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Hertzsprung.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Hortensius_Domes.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Hortensius_Domes.vrt new file mode 100644 index 0000000000..b2d41fe48a --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Hortensius_Domes.vrt @@ -0,0 +1,53 @@ + + PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",7],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] + -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 + + 0 + Red + + Hortensius_Domes.wms + 1 + + + + 0 + + + + 0 + Green + + Hortensius_Domes.wms + 2 + + + + 0 + + + + 0 + Blue + + Hortensius_Domes.wms + 3 + + + + 0 + + + + Alpha + + Hortensius_Domes.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_08N332E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Hortensius_Domes.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_08N332E_2mp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Hortensius_Domes.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Humboldtianum_Basin.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Humboldtianum_Basin.vrt new file mode 100644 index 0000000000..89a3140473 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Humboldtianum_Basin.vrt @@ -0,0 +1,53 @@ + + PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",55],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] + -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 + + 0 + Red + + Humboldtianum_Basin.wms + 1 + + + + 0 + + + + 0 + Green + + Humboldtianum_Basin.wms + 2 + + + + 0 + + + + 0 + Blue + + Humboldtianum_Basin.wms + 3 + + + + 0 + + + + Alpha + + Humboldtianum_Basin.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Humboldtianum_Basin_ColorHillshade/LRO_NAC_ClrShade_55N077E_200cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Humboldtianum_Basin.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Humboldtianum_Basin_ColorHillshade/LRO_NAC_ClrShade_55N077E_200cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Humboldtianum_Basin.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Ina_D-Caldera.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Ina_D-Caldera.vrt new file mode 100644 index 0000000000..259da732ad --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Ina_D-Caldera.vrt @@ -0,0 +1,53 @@ + + PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",19],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] + -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 + + 0 + Red + + Ina_D-Caldera.wms + 1 + + + + 0 + + + + 0 + Green + + Ina_D-Caldera.wms + 2 + + + + 0 + + + + 0 + Blue + + Ina_D-Caldera.wms + 3 + + + + 0 + + + + Alpha + + Ina_D-Caldera.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Ina_(D-Caldera)_ColorHillshade/LRO_NAC_ClrShade_19N005E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Ina_D-Caldera.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Ina_(D-Caldera)_ColorHillshade/LRO_NAC_ClrShade_19N005E_2mp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Ina_D-Caldera.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/King_Crater.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/King_Crater.vrt new file mode 100644 index 0000000000..40de16f9df --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/King_Crater.vrt @@ -0,0 +1,53 @@ + + PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",6],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] + -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 + + 0 + Red + + King_Crater.wms + 1 + + + + 0 + + + + 0 + Green + + King_Crater.wms + 2 + + + + 0 + + + + 0 + Blue + + King_Crater.wms + 3 + + + + 0 + + + + Alpha + + King_Crater.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_06N120E_200cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/King_Crater.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_06N120E_200cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/King_Crater.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Lichtenberg_Crater.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Lichtenberg_Crater.vrt new file mode 100644 index 0000000000..dae0be0f60 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Lichtenberg_Crater.vrt @@ -0,0 +1,53 @@ + + PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",32],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] + -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 + + 0 + Red + + Lichtenberg_Crater.wms + 1 + + + + 0 + + + + 0 + Green + + Lichtenberg_Crater.wms + 2 + + + + 0 + + + + 0 + Blue + + Lichtenberg_Crater.wms + 3 + + + + 0 + + + + Alpha + + Lichtenberg_Crater.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_32N292E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Lichtenberg_Crater.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_32N292E_2mp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Lichtenberg_Crater.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Mare_Crisium.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Mare_Crisium.vrt new file mode 100644 index 0000000000..61208bd56f --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Mare_Crisium.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 + + 0 + Red + + Mare_Crisium.wms + 1 + + + + 0 + + + + 0 + Green + + Mare_Crisium.wms + 2 + + + + 0 + + + + 0 + Blue + + Mare_Crisium.wms + 3 + + + + 0 + + + + Alpha + + Mare_Crisium.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_10N58E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Mare_Crisium.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_10N58E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Mare_Crisium.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Mare_Ingenii.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Mare_Ingenii.vrt new file mode 100644 index 0000000000..8adfe7c30b --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Mare_Ingenii.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 + + 0 + Red + + Mare_Ingenii.wms + 1 + + + + 0 + + + + 0 + Green + + Mare_Ingenii.wms + 2 + + + + 0 + + + + 0 + Blue + + Mare_Ingenii.wms + 3 + + + + 0 + + + + Alpha + + Mare_Ingenii.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Ingenii_ColorHillshade/LRO_NAC_ClrShade_36S164E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Mare_Ingenii.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Ingenii_ColorHillshade/LRO_NAC_ClrShade_36S164E_2mp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Mare_Ingenii.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Mare_Moscoviense.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Mare_Moscoviense.vrt new file mode 100644 index 0000000000..5989f4bfdb --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Mare_Moscoviense.vrt @@ -0,0 +1,53 @@ + + PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",26],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] + -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 + + 0 + Red + + Mare_Moscoviense.wms + 1 + + + + 0 + + + + 0 + Green + + Mare_Moscoviense.wms + 2 + + + + 0 + + + + 0 + Blue + + Mare_Moscoviense.wms + 3 + + + + 0 + + + + Alpha + + Mare_Moscoviense.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Moscoviense_ColorHillshade/LRO_NAC_ClrShade_26N150E_200cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Mare_Moscoviense.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Moscoviense_ColorHillshade/LRO_NAC_ClrShade_26N150E_200cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Mare_Moscoviense.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Mare_Smythii.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Mare_Smythii.vrt new file mode 100644 index 0000000000..09b7bc9d5e --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Mare_Smythii.vrt @@ -0,0 +1,53 @@ + + PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] + -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 + + 0 + Red + + Mare_Smythii.wms + 1 + + + + 0 + + + + 0 + Green + + Mare_Smythii.wms + 2 + + + + 0 + + + + 0 + Blue + + Mare_Smythii.wms + 3 + + + + 0 + + + + Alpha + + Mare_Smythii.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Smythii_ColorHillshade/LRO_NAC_ClrShade_02N085E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Mare_Smythii.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Smythii_ColorHillshade/LRO_NAC_ClrShade_02N085E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Mare_Smythii.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Mare_Tranquillitatis.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Mare_Tranquillitatis.vrt new file mode 100644 index 0000000000..11321eac90 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Mare_Tranquillitatis.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 + + 0 + Red + + Mare_Tranquillitatis.wms + 1 + + + + 0 + + + + 0 + Green + + Mare_Tranquillitatis.wms + 2 + + + + 0 + + + + 0 + Blue + + Mare_Tranquillitatis.wms + 3 + + + + 0 + + + + Alpha + + Mare_Tranquillitatis.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Tranquillitatis_ColorHillshade/LRO_NAC_ClrShade_07N022E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Mare_Tranquillitatis.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Tranquillitatis_ColorHillshade/LRO_NAC_ClrShade_07N022E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Mare_Tranquillitatis.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Marius_Hills.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Marius_Hills.vrt new file mode 100644 index 0000000000..7dc340ea55 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Marius_Hills.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 + + 0 + Red + + Marius_Hills.wms + 1 + + + + 0 + + + + 0 + Green + + Marius_Hills.wms + 2 + + + + 0 + + + + 0 + Blue + + Marius_Hills.wms + 3 + + + + 0 + + + + Alpha + + Marius_Hills.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Marius_Hills_ColorHillshade/LRO_NAC_ClrShade_14N304E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Marius_Hills.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Marius_Hills_ColorHillshade/LRO_NAC_ClrShade_14N304E_2mp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Marius_Hills.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Montes_Pyrenaeus.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Montes_Pyrenaeus.vrt new file mode 100644 index 0000000000..f9abb91a4f --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Montes_Pyrenaeus.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 + + 0 + Red + + Montes_Pyrenaeus.wms + 1 + + + + 0 + + + + 0 + Green + + Montes_Pyrenaeus.wms + 2 + + + + 0 + + + + 0 + Blue + + Montes_Pyrenaeus.wms + 3 + + + + 0 + + + + Alpha + + Montes_Pyrenaeus.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_16S041E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Montes_Pyrenaeus.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_16S041E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Montes_Pyrenaeus.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Murchison_Crater.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Murchison_Crater.vrt new file mode 100644 index 0000000000..3e7256e1a7 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Murchison_Crater.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 + + 0 + Red + + Murchison_Crater.wms + 1 + + + + 0 + + + + 0 + Green + + Murchison_Crater.wms + 2 + + + + 0 + + + + 0 + Blue + + Murchison_Crater.wms + 3 + + + + 0 + + + + Alpha + + Murchison_Crater.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Murchison_Crater_ColorHillshade/LRO_NAC_ClrShade_05N000E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Murchison_Crater.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Murchison_Crater_ColorHillshade/LRO_NAC_ClrShade_05N000E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Murchison_Crater.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Orientale_1.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Orientale_1.vrt new file mode 100644 index 0000000000..cb1dde7f23 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Orientale_1.vrt @@ -0,0 +1,53 @@ + + PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-26],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] + -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 + + 0 + Red + + Orientale_1.wms + 1 + + + + 0 + + + + 0 + Green + + Orientale_1.wms + 2 + + + + 0 + + + + 0 + Blue + + Orientale_1.wms + 3 + + + + 0 + + + + Alpha + + Orientale_1.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_26S265E_200cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Orientale_1.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_26S265E_200cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Orientale_1.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Plato_Ejecta.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Plato_Ejecta.vrt new file mode 100644 index 0000000000..214d1654bc --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Plato_Ejecta.vrt @@ -0,0 +1,53 @@ + + PROJCS["Equirectangular_MOON_53N",GEOGCS["GCS_MOON",DATUM["MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",53],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] + -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 + + 0 + Red + + Plato_Ejecta.wms + 1 + + + + 0 + + + + 0 + Green + + Plato_Ejecta.wms + 2 + + + + 0 + + + + 0 + Blue + + Plato_Ejecta.wms + 3 + + + + 0 + + + + Alpha + + Plato_Ejecta.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_53N354E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Plato_Ejecta.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_53N354E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Plato_Ejecta.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Reiner_Gamma.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Reiner_Gamma.vrt new file mode 100644 index 0000000000..3b15037e40 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Reiner_Gamma.vrt @@ -0,0 +1,53 @@ + + PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",7],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] + -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 + + 0 + Red + + Reiner_Gamma.wms + 1 + + + + 0 + + + + 0 + Green + + Reiner_Gamma.wms + 2 + + + + 0 + + + + 0 + Blue + + Reiner_Gamma.wms + 3 + + + + 0 + + + + Alpha + + Reiner_Gamma.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Reiner_Gamma_ColorHillshade/LRO_NAC_ClrShade_07N301E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Reiner_Gamma.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Reiner_Gamma_ColorHillshade/LRO_NAC_ClrShade_07N301E_2mp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Reiner_Gamma.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Riccioli_Crater.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Riccioli_Crater.vrt new file mode 100644 index 0000000000..66b029f398 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Riccioli_Crater.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 + + 0 + Red + + Riccioli_Crater.wms + 1 + + + + 0 + + + + 0 + Green + + Riccioli_Crater.wms + 2 + + + + 0 + + + + 0 + Blue + + Riccioli_Crater.wms + 3 + + + + 0 + + + + Alpha + + Riccioli_Crater.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Riccioli_Crater_ColorHillshade/LRO_NAC_ClrShade_03S286E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Riccioli_Crater.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Riccioli_Crater_ColorHillshade/LRO_NAC_ClrShade_03S286E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Riccioli_Crater.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Rima_Bode.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Rima_Bode.vrt new file mode 100644 index 0000000000..ef29073662 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Rima_Bode.vrt @@ -0,0 +1,53 @@ + + PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",13],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] + -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 + + 0 + Red + + Rima_Bode.wms + 1 + + + + 0 + + + + 0 + Green + + Rima_Bode.wms + 2 + + + + 0 + + + + 0 + Blue + + Rima_Bode.wms + 3 + + + + 0 + + + + Alpha + + Rima_Bode.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rima_Bode_ColorHillshade/LRO_NAC_ClrShade_13N356E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Rima_Bode.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rima_Bode_ColorHillshade/LRO_NAC_ClrShade_13N356E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Rima_Bode.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Rimae_Prinz.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Rimae_Prinz.vrt new file mode 100644 index 0000000000..359b77a517 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Rimae_Prinz.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 + + 0 + Red + + Rimae_Prinz.wms + 1 + + + + 0 + + + + 0 + Green + + Rimae_Prinz.wms + 2 + + + + 0 + + + + 0 + Blue + + Rimae_Prinz.wms + 3 + + + + 0 + + + + Alpha + + Rimae_Prinz.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rimae_Prinz_ColorHillshade/LRO_NAC_ClrShade_27N318E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Rimae_Prinz.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rimae_Prinz_ColorHillshade/LRO_NAC_ClrShade_27N318E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Rimae_Prinz.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/South_Pole-Aitken_Basin_Interior.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/South_Pole-Aitken_Basin_Interior.vrt new file mode 100644 index 0000000000..457fdb0a4e --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/South_Pole-Aitken_Basin_Interior.vrt @@ -0,0 +1,53 @@ + + PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-60],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] + -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 + + 0 + Red + + South_Pole-Aitken_Basin_Interior.wms + 1 + + + + 0 + + + + 0 + Green + + South_Pole-Aitken_Basin_Interior.wms + 2 + + + + 0 + + + + 0 + Blue + + South_Pole-Aitken_Basin_Interior.wms + 3 + + + + 0 + + + + Alpha + + South_Pole-Aitken_Basin_Interior.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_60S200E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/South_Pole-Aitken_Basin_Interior.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_60S200E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/South_Pole-Aitken_Basin_Interior.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/South_Pole-Aitken_Rim.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/South_Pole-Aitken_Rim.vrt new file mode 100644 index 0000000000..7bb49abefd --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/South_Pole-Aitken_Rim.vrt @@ -0,0 +1,53 @@ + + PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",-51],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] + -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 + + 0 + Red + + South_Pole-Aitken_Rim.wms + 1 + + + + 0 + + + + 0 + Green + + South_Pole-Aitken_Rim.wms + 2 + + + + 0 + + + + 0 + Blue + + South_Pole-Aitken_Rim.wms + 3 + + + + 0 + + + + Alpha + + South_Pole-Aitken_Rim.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Rim_ColorHillshade/LRO_NAC_ClrShade_51S171E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/South_Pole-Aitken_Rim.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Rim_ColorHillshade/LRO_NAC_ClrShade_51S171E_2mp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/South_Pole-Aitken_Rim.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Stratton_Dewar.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Stratton_Dewar.vrt new file mode 100644 index 0000000000..968b99723f --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Stratton_Dewar.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 + + 0 + Red + + Stratton_Dewar.wms + 1 + + + + 0 + + + + 0 + Green + + Stratton_Dewar.wms + 2 + + + + 0 + + + + 0 + Blue + + Stratton_Dewar.wms + 3 + + + + 0 + + + + Alpha + + Stratton_Dewar.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_ColorHillshade/LRO_NAC_ClrShade_02S167E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Stratton_Dewar.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_ColorHillshade/LRO_NAC_ClrShade_02S167E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Stratton_Dewar.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Stratton_Dewar_High_Fe_Anomaly.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Stratton_Dewar_High_Fe_Anomaly.vrt new file mode 100644 index 0000000000..5181ea4892 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Stratton_Dewar_High_Fe_Anomaly.vrt @@ -0,0 +1,53 @@ + + PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] + -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 + + 0 + Red + + Stratton_Dewar_High_Fe_Anomaly.wms + 1 + + + + 0 + + + + 0 + Green + + Stratton_Dewar_High_Fe_Anomaly.wms + 2 + + + + 0 + + + + 0 + Blue + + Stratton_Dewar_High_Fe_Anomaly.wms + 3 + + + + 0 + + + + Alpha + + Stratton_Dewar_High_Fe_Anomaly.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_02S167E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Stratton_Dewar_High_Fe_Anomaly.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_02S167E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Stratton_Dewar_High_Fe_Anomaly.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Sulpicius_Gallus.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Sulpicius_Gallus.vrt new file mode 100644 index 0000000000..ca552e84f9 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Sulpicius_Gallus.vrt @@ -0,0 +1,53 @@ + + PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",20],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] + -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 + + 0 + Red + + Sulpicius_Gallus.wms + 1 + + + + 0 + + + + 0 + Green + + Sulpicius_Gallus.wms + 2 + + + + 0 + + + + 0 + Blue + + Sulpicius_Gallus.wms + 3 + + + + 0 + + + + Alpha + + Sulpicius_Gallus.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_20N010E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Sulpicius_Gallus.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_20N010E_2mp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Sulpicius_Gallus.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Tsiolkovskiy_Crater.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Tsiolkovskiy_Crater.vrt new file mode 100644 index 0000000000..4cd9483f1c --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Tsiolkovskiy_Crater.vrt @@ -0,0 +1,53 @@ + + PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-19],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] + -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 + + 0 + Red + + Tsiolkovskiy_Crater.wms + 1 + + + + 0 + + + + 0 + Green + + Tsiolkovskiy_Crater.wms + 2 + + + + 0 + + + + 0 + Blue + + Tsiolkovskiy_Crater.wms + 3 + + + + 0 + + + + Alpha + + Tsiolkovskiy_Crater.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_19S129E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Tsiolkovskiy_Crater.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_19S129E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Tsiolkovskiy_Crater.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Tycho_Crater.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Tycho_Crater.vrt new file mode 100644 index 0000000000..ca2fd2e94e --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Tycho_Crater.vrt @@ -0,0 +1,53 @@ + + PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-43],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] + -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 + + 0 + Red + + Tycho_Crater.wms + 1 + + + + 0 + + + + 0 + Green + + Tycho_Crater.wms + 2 + + + + 0 + + + + 0 + Blue + + Tycho_Crater.wms + 3 + + + + 0 + + + + Alpha + + Tycho_Crater.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_43S349E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Tycho_Crater.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_43S349E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM/Tycho_Crater.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_15m_Color_Roughness/LRO_LROC_DEM_Aitken_Crater_15m_Color_Roughness.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_15m_Color_Roughness/LRO_LROC_DEM_Aitken_Crater_15m_Color_Roughness.asset deleted file mode 100644 index 3ea5b901ce..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_15m_Color_Roughness/LRO_LROC_DEM_Aitken_Crater_15m_Color_Roughness.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrRoughness_15m_17S173E_150cmp", - Name = [[LRO LROC DEM, Aitken Crater, 15m Color Roughness]], - FilePath = asset.localResource("LRO_NAC_ClrRoughness_15m_17S173E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Aitken Crater, 15m Color Roughness]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrRoughness_15m_17S173E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Aitken Crater, 15m Color Roughness layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_17S173E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_17S173E_150cmp.vrt deleted file mode 100644 index 0df2efc2df..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_17S173E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-17],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrRoughness_15m_17S173E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrRoughness_15m_17S173E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrRoughness_15m_17S173E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrRoughness_15m_17S173E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Aitken_Crater_15m_Color_Roughness_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Aitken_Crater_15m_Color_Roughness_Hazard.asset deleted file mode 100644 index f57921e90c..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Aitken_Crater_15m_Color_Roughness_Hazard.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrRoughnessHaz_15m_17S173E_150cmp", - Name = [[LRO LROC DEM, Aitken Crater, 15m Color Roughness Hazard]], - FilePath = asset.localResource("LRO_NAC_ClrRoughnessHaz_15m_17S173E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Aitken Crater, 15m Color Roughness Hazard]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrRoughnessHaz_15m_17S173E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Aitken Crater, 15m Color Roughness Hazard layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_17S173E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_17S173E_150cmp.vrt deleted file mode 100644 index 42a983236c..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_17S173E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-17],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrRoughnessHaz_15m_17S173E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrRoughnessHaz_15m_17S173E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrRoughnessHaz_15m_17S173E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrRoughnessHaz_15m_17S173E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_17S173E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_17S173E_150cmp.wms deleted file mode 100644 index e108a4a624..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_17S173E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrRoughnessHaz_15m_17S173E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-17],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_15m_Color_Slope/LRO_LROC_DEM_Aitken_Crater_15m_Color_Slope.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_15m_Color_Slope/LRO_LROC_DEM_Aitken_Crater_15m_Color_Slope.asset deleted file mode 100644 index 21fca8d012..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_15m_Color_Slope/LRO_LROC_DEM_Aitken_Crater_15m_Color_Slope.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrSlope_15m_17S173E_150cmp", - Name = [[LRO LROC DEM, Aitken Crater, 15m Color Slope]], - FilePath = asset.localResource("LRO_NAC_ClrSlope_15m_17S173E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Aitken Crater, 15m Color Slope]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrSlope_15m_17S173E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Aitken Crater, 15m Color Slope layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_15m_Color_Slope/LRO_NAC_ClrSlope_15m_17S173E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_15m_Color_Slope/LRO_NAC_ClrSlope_15m_17S173E_150cmp.vrt deleted file mode 100644 index 800d37bc67..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_15m_Color_Slope/LRO_NAC_ClrSlope_15m_17S173E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-17],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrSlope_15m_17S173E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrSlope_15m_17S173E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrSlope_15m_17S173E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrSlope_15m_17S173E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_15m_Color_Slope/LRO_NAC_ClrSlope_15m_17S173E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_15m_Color_Slope/LRO_NAC_ClrSlope_15m_17S173E_150cmp.wms deleted file mode 100644 index 543c580c77..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_15m_Color_Slope/LRO_NAC_ClrSlope_15m_17S173E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrSlope_15m_17S173E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-17],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_15m_Color_Slope_Hazard/LRO_LROC_DEM_Aitken_Crater_15m_Color_Slope_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_15m_Color_Slope_Hazard/LRO_LROC_DEM_Aitken_Crater_15m_Color_Slope_Hazard.asset deleted file mode 100644 index b7e42ed1b6..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_15m_Color_Slope_Hazard/LRO_LROC_DEM_Aitken_Crater_15m_Color_Slope_Hazard.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrSlopeHaz_15m_17S173E_150cmp", - Name = [[LRO LROC DEM, Aitken Crater, 15m Color Slope Hazard]], - FilePath = asset.localResource("LRO_NAC_ClrSlopeHaz_15m_17S173E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Aitken Crater, 15m Color Slope Hazard]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrSlopeHaz_15m_17S173E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Aitken Crater, 15m Color Slope Hazard layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_17S173E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_17S173E_150cmp.vrt deleted file mode 100644 index d2936e0f48..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_17S173E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-17],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrSlopeHaz_15m_17S173E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrSlopeHaz_15m_17S173E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrSlopeHaz_15m_17S173E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrSlopeHaz_15m_17S173E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_17S173E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_17S173E_150cmp.wms deleted file mode 100644 index 9d183f8945..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_17S173E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrSlopeHaz_15m_17S173E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-17],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_3m_Color_Roughness/LRO_LROC_DEM_Aitken_Crater_3m_Color_Roughness.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_3m_Color_Roughness/LRO_LROC_DEM_Aitken_Crater_3m_Color_Roughness.asset deleted file mode 100644 index 0c4326794e..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_3m_Color_Roughness/LRO_LROC_DEM_Aitken_Crater_3m_Color_Roughness.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrRoughness_3m_17S173E_150cmp", - Name = [[LRO LROC DEM, Aitken Crater, 3m Color Roughness]], - FilePath = asset.localResource("LRO_NAC_ClrRoughness_3m_17S173E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Aitken Crater, 3m Color Roughness]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrRoughness_3m_17S173E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Aitken Crater, 3m Color Roughness layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_17S173E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_17S173E_150cmp.vrt deleted file mode 100644 index f1208e9cb6..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_17S173E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-17],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrRoughness_3m_17S173E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrRoughness_3m_17S173E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrRoughness_3m_17S173E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrRoughness_3m_17S173E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_17S173E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_17S173E_150cmp.wms deleted file mode 100644 index 597b5486fb..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_17S173E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrRoughness_3m_17S173E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-17],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_3m_Color_Roughness_Hazard/LRO_LROC_DEM_Aitken_Crater_3m_Color_Roughness_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_3m_Color_Roughness_Hazard/LRO_LROC_DEM_Aitken_Crater_3m_Color_Roughness_Hazard.asset deleted file mode 100644 index 9f31854150..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_3m_Color_Roughness_Hazard/LRO_LROC_DEM_Aitken_Crater_3m_Color_Roughness_Hazard.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrRoughnessHaz_3m_17S173E_150cmp", - Name = [[LRO LROC DEM, Aitken Crater, 3m Color Roughness Hazard]], - FilePath = asset.localResource("LRO_NAC_ClrRoughnessHaz_3m_17S173E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Aitken Crater, 3m Color Roughness Hazard]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrRoughnessHaz_3m_17S173E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Aitken Crater, 3m Color Roughness Hazard layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_17S173E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_17S173E_150cmp.vrt deleted file mode 100644 index 22c0cd5313..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_17S173E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrRoughnessHaz_3m_17S173E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrRoughnessHaz_3m_17S173E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrRoughnessHaz_3m_17S173E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrRoughnessHaz_3m_17S173E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_17S173E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_17S173E_150cmp.wms deleted file mode 100644 index 49bd33aec0..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_17S173E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrRoughnessHaz_3m_17S173E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_3m_Color_Slope/LRO_LROC_DEM_Aitken_Crater_3m_Color_Slope.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_3m_Color_Slope/LRO_LROC_DEM_Aitken_Crater_3m_Color_Slope.asset deleted file mode 100644 index a5a6643ac6..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_3m_Color_Slope/LRO_LROC_DEM_Aitken_Crater_3m_Color_Slope.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrSlope_3m_17S173E_150cmp", - Name = [[LRO LROC DEM, Aitken Crater, 3m Color Slope]], - FilePath = asset.localResource("LRO_NAC_ClrSlope_3m_17S173E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Aitken Crater, 3m Color Slope]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrSlope_3m_17S173E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Aitken Crater, 3m Color Slope layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_3m_Color_Slope/LRO_NAC_ClrSlope_3m_17S173E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_3m_Color_Slope/LRO_NAC_ClrSlope_3m_17S173E_150cmp.vrt deleted file mode 100644 index 6c1048bb79..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_3m_Color_Slope/LRO_NAC_ClrSlope_3m_17S173E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrSlope_3m_17S173E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrSlope_3m_17S173E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrSlope_3m_17S173E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrSlope_3m_17S173E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_3m_Color_Slope/LRO_NAC_ClrSlope_3m_17S173E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_3m_Color_Slope/LRO_NAC_ClrSlope_3m_17S173E_150cmp.wms deleted file mode 100644 index 15d33ea0ec..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_3m_Color_Slope/LRO_NAC_ClrSlope_3m_17S173E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrSlope_3m_17S173E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_3m_Color_Slope_Hazard/LRO_LROC_DEM_Aitken_Crater_3m_Color_Slope_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_3m_Color_Slope_Hazard/LRO_LROC_DEM_Aitken_Crater_3m_Color_Slope_Hazard.asset deleted file mode 100644 index cbd784f1c3..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_3m_Color_Slope_Hazard/LRO_LROC_DEM_Aitken_Crater_3m_Color_Slope_Hazard.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrSlopeHaz_3m_17S173E_150cmp", - Name = [[LRO LROC DEM, Aitken Crater, 3m Color Slope Hazard]], - FilePath = asset.localResource("LRO_NAC_ClrSlopeHaz_3m_17S173E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Aitken Crater, 3m Color Slope Hazard]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrSlopeHaz_3m_17S173E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Aitken Crater, 3m Color Slope Hazard layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_17S173E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_17S173E_150cmp.vrt deleted file mode 100644 index 8092769a25..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_17S173E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-17],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrSlopeHaz_3m_17S173E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrSlopeHaz_3m_17S173E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrSlopeHaz_3m_17S173E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrSlopeHaz_3m_17S173E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_17S173E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_17S173E_150cmp.wms deleted file mode 100644 index 53cd0f9906..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_17S173E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrSlopeHaz_3m_17S173E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-17],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_ColorHillshade/LRO_LROC_DEM_Aitken_Crater_ColorHillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_ColorHillshade/LRO_LROC_DEM_Aitken_Crater_ColorHillshade.asset deleted file mode 100644 index d1e8fe6719..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_ColorHillshade/LRO_LROC_DEM_Aitken_Crater_ColorHillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrShade_17S173E_150cmp", - Name = [[LRO LROC DEM, Aitken Crater, ColorHillshade]], - FilePath = asset.localResource("LRO_NAC_ClrShade_17S173E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Aitken Crater, ColorHillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrShade_17S173E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Aitken Crater, ColorHillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_ColorHillshade/LRO_NAC_ClrShade_17S173E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_ColorHillshade/LRO_NAC_ClrShade_17S173E_150cmp.vrt deleted file mode 100644 index 3fca0a1106..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_ColorHillshade/LRO_NAC_ClrShade_17S173E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrShade_17S173E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrShade_17S173E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrShade_17S173E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrShade_17S173E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_ColorHillshade/LRO_NAC_ClrShade_17S173E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_ColorHillshade/LRO_NAC_ClrShade_17S173E_150cmp.wms deleted file mode 100644 index 3f99bc2345..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_ColorHillshade/LRO_NAC_ClrShade_17S173E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrShade_17S173E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_Colorized_Confidence/LRO_LROC_DEM_Aitken_Crater_Colorized_Confidence.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_Colorized_Confidence/LRO_LROC_DEM_Aitken_Crater_Colorized_Confidence.asset deleted file mode 100644 index 2c79074154..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_Colorized_Confidence/LRO_LROC_DEM_Aitken_Crater_Colorized_Confidence.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrConf_17S173E_150cmp", - Name = [[LRO LROC DEM, Aitken Crater, Colorized Confidence]], - FilePath = asset.localResource("LRO_NAC_ClrConf_17S173E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Aitken Crater, Colorized Confidence]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrConf_17S173E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Aitken Crater, Colorized Confidence layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_Colorized_Confidence/LRO_NAC_ClrConf_17S173E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_Colorized_Confidence/LRO_NAC_ClrConf_17S173E_150cmp.vrt deleted file mode 100644 index c9edd0ea93..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_Colorized_Confidence/LRO_NAC_ClrConf_17S173E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrConf_17S173E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrConf_17S173E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrConf_17S173E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrConf_17S173E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_Colorized_Confidence/LRO_NAC_ClrConf_17S173E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_Colorized_Confidence/LRO_NAC_ClrConf_17S173E_150cmp.wms deleted file mode 100644 index 3f907ba94c..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_Colorized_Confidence/LRO_NAC_ClrConf_17S173E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrConf_17S173E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_Colorized_Slope/LRO_LROC_DEM_Aitken_Crater_Colorized_Slope.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_Colorized_Slope/LRO_LROC_DEM_Aitken_Crater_Colorized_Slope.asset deleted file mode 100644 index f9ac9f4c8f..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_Colorized_Slope/LRO_LROC_DEM_Aitken_Crater_Colorized_Slope.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Slope_17S173E_150cmp", - Name = [[LRO LROC DEM, Aitken Crater, Colorized Slope]], - FilePath = asset.localResource("LRO_NAC_Slope_17S173E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Aitken Crater, Colorized Slope]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Slope_17S173E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Aitken Crater, Colorized Slope layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_Colorized_Slope/LRO_NAC_Slope_17S173E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_Colorized_Slope/LRO_NAC_Slope_17S173E_150cmp.vrt deleted file mode 100644 index 1633e27a65..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_Colorized_Slope/LRO_NAC_Slope_17S173E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-17],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_Slope_17S173E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_Slope_17S173E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_Slope_17S173E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_Slope_17S173E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_Colorized_Slope/LRO_NAC_Slope_17S173E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_Colorized_Slope/LRO_NAC_Slope_17S173E_150cmp.wms deleted file mode 100644 index 2d976a374e..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_Colorized_Slope/LRO_NAC_Slope_17S173E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Slope_17S173E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-17],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_Grayscale/LRO_LROC_DEM_Aitken_Crater_Grayscale.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_Grayscale/LRO_LROC_DEM_Aitken_Crater_Grayscale.asset deleted file mode 100644 index 8416caa73f..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_Grayscale/LRO_LROC_DEM_Aitken_Crater_Grayscale.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Gray_17S173E_150cmp", - Name = [[LRO LROC DEM, Aitken Crater, Grayscale]], - FilePath = asset.localResource("LRO_NAC_Gray_17S173E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Aitken Crater, Grayscale]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Gray_17S173E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Aitken Crater, Grayscale layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_Grayscale/LRO_NAC_Gray_17S173E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_Grayscale/LRO_NAC_Gray_17S173E_150cmp.vrt deleted file mode 100644 index 494da05370..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_Grayscale/LRO_NAC_Gray_17S173E_150cmp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Gray - - LRO_NAC_Gray_17S173E_150cmp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Gray_17S173E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_Grayscale/LRO_NAC_Gray_17S173E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_Grayscale/LRO_NAC_Gray_17S173E_150cmp.wms deleted file mode 100644 index 44b0b6479f..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_Grayscale/LRO_NAC_Gray_17S173E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Gray_17S173E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 1 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_Hillshade/LRO_LROC_DEM_Aitken_Crater_Hillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_Hillshade/LRO_LROC_DEM_Aitken_Crater_Hillshade.asset deleted file mode 100644 index 9a95f9c79f..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_Hillshade/LRO_LROC_DEM_Aitken_Crater_Hillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Shade_17S173E_150cmp", - Name = [[LRO LROC DEM, Aitken Crater, Hillshade]], - FilePath = asset.localResource("LRO_NAC_Shade_17S173E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Aitken Crater, Hillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Shade_17S173E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Aitken Crater, Hillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_Hillshade/LRO_NAC_Shade_17S173E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_Hillshade/LRO_NAC_Shade_17S173E_150cmp.vrt deleted file mode 100644 index 0b251c60c8..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_Hillshade/LRO_NAC_Shade_17S173E_150cmp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Gray - - LRO_NAC_Shade_17S173E_150cmp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Shade_17S173E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_Hillshade/LRO_NAC_Shade_17S173E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_Hillshade/LRO_NAC_Shade_17S173E_150cmp.wms deleted file mode 100644 index 5a90e99688..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aitken_Crater_Hillshade/LRO_NAC_Shade_17S173E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Shade_17S173E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 1 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_ColorHillshade/LRO_LROC_DEM_Alphonsus_ColorHillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_ColorHillshade/LRO_LROC_DEM_Alphonsus_ColorHillshade.asset deleted file mode 100644 index 4fc339ba38..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_ColorHillshade/LRO_LROC_DEM_Alphonsus_ColorHillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrShade_13S358E_200cmp", - Name = [[LRO LROC DEM, Alphonsus, ColorHillshade]], - FilePath = asset.localResource("LRO_NAC_ClrShade_13S358E_200cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Alphonsus, ColorHillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrShade_13S358E_200cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Alphonsus, ColorHillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_ColorHillshade/LRO_NAC_ClrShade_13S358E_200cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_ColorHillshade/LRO_NAC_ClrShade_13S358E_200cmp.vrt deleted file mode 100644 index ea05e89ad4..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_ColorHillshade/LRO_NAC_ClrShade_13S358E_200cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrShade_13S358E_200cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrShade_13S358E_200cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrShade_13S358E_200cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrShade_13S358E_200cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Colorized_Confidence/LRO_LROC_DEM_Alphonsus_Colorized_Confidence.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Colorized_Confidence/LRO_LROC_DEM_Alphonsus_Colorized_Confidence.asset deleted file mode 100644 index 0ce8dde251..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Colorized_Confidence/LRO_LROC_DEM_Alphonsus_Colorized_Confidence.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrConf_13S358E_200cmp", - Name = [[LRO LROC DEM, Alphonsus, Colorized Confidence]], - FilePath = asset.localResource("LRO_NAC_ClrConf_13S358E_200cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Alphonsus, Colorized Confidence]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrConf_13S358E_200cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Alphonsus, Colorized Confidence layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Colorized_Confidence/LRO_NAC_ClrConf_13S358E_200cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Colorized_Confidence/LRO_NAC_ClrConf_13S358E_200cmp.vrt deleted file mode 100644 index 5602cc49e2..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Colorized_Confidence/LRO_NAC_ClrConf_13S358E_200cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrConf_13S358E_200cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrConf_13S358E_200cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrConf_13S358E_200cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrConf_13S358E_200cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Colorized_Confidence/LRO_NAC_ClrConf_13S358E_200cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Colorized_Confidence/LRO_NAC_ClrConf_13S358E_200cmp.wms deleted file mode 100644 index 55f4408f11..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Colorized_Confidence/LRO_NAC_ClrConf_13S358E_200cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrConf_13S358E_200cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Colorized_Slope/LRO_LROC_DEM_Alphonsus_Colorized_Slope.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Colorized_Slope/LRO_LROC_DEM_Alphonsus_Colorized_Slope.asset deleted file mode 100644 index 7d71928d19..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Colorized_Slope/LRO_LROC_DEM_Alphonsus_Colorized_Slope.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Slope_13S358E_200cmp", - Name = [[LRO LROC DEM, Alphonsus, Colorized Slope]], - FilePath = asset.localResource("LRO_NAC_Slope_13S358E_200cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Alphonsus, Colorized Slope]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Slope_13S358E_200cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Alphonsus, Colorized Slope layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Colorized_Slope/LRO_NAC_Slope_13S358E_200cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Colorized_Slope/LRO_NAC_Slope_13S358E_200cmp.vrt deleted file mode 100644 index 539545142e..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Colorized_Slope/LRO_NAC_Slope_13S358E_200cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-13],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_Slope_13S358E_200cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_Slope_13S358E_200cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_Slope_13S358E_200cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_Slope_13S358E_200cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Colorized_Slope/LRO_NAC_Slope_13S358E_200cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Colorized_Slope/LRO_NAC_Slope_13S358E_200cmp.wms deleted file mode 100644 index 3297984c23..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Colorized_Slope/LRO_NAC_Slope_13S358E_200cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Slope_13S358E_200cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-13],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Crater_15m_Color_Roughness/LRO_LROC_DEM_Alphonsus_Crater_15m_Color_Roughness.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Crater_15m_Color_Roughness/LRO_LROC_DEM_Alphonsus_Crater_15m_Color_Roughness.asset deleted file mode 100644 index 8b9b44f22d..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Crater_15m_Color_Roughness/LRO_LROC_DEM_Alphonsus_Crater_15m_Color_Roughness.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrRoughness_15m_13S358E_2mp", - Name = [[LRO LROC DEM, Alphonsus Crater, 15m Color Roughness]], - FilePath = asset.localResource("LRO_NAC_ClrRoughness_15m_13S358E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Alphonsus Crater, 15m Color Roughness]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrRoughness_15m_13S358E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Alphonsus Crater, 15m Color Roughness layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Crater_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_13S358E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Crater_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_13S358E_2mp.vrt deleted file mode 100644 index 0edf6697f9..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Crater_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_13S358E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["unknown",DATUM["unknown",SPHEROID["unnamed",1737400,0]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",-13],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",0],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrRoughness_15m_13S358E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrRoughness_15m_13S358E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrRoughness_15m_13S358E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrRoughness_15m_13S358E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Crater_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Alphonsus_Crater_15m_Color_Roughness_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Crater_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Alphonsus_Crater_15m_Color_Roughness_Hazard.asset deleted file mode 100644 index 453508c8a8..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Crater_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Alphonsus_Crater_15m_Color_Roughness_Hazard.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrRoughnessHaz_15m_13S358E_2mp", - Name = [[LRO LROC DEM, Alphonsus Crater, 15m Color Roughness Hazard]], - FilePath = asset.localResource("LRO_NAC_ClrRoughnessHaz_15m_13S358E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Alphonsus Crater, 15m Color Roughness Hazard]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrRoughnessHaz_15m_13S358E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Alphonsus Crater, 15m Color Roughness Hazard layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Crater_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_13S358E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Crater_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_13S358E_2mp.vrt deleted file mode 100644 index 4e02a7a6d1..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Crater_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_13S358E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["unknown",DATUM["unknown",SPHEROID["unnamed",1737400,0]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",-13],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",0],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrRoughnessHaz_15m_13S358E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrRoughnessHaz_15m_13S358E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrRoughnessHaz_15m_13S358E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrRoughnessHaz_15m_13S358E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Crater_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_13S358E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Crater_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_13S358E_2mp.wms deleted file mode 100644 index 24a8b0782c..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Crater_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_13S358E_2mp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrRoughnessHaz_15m_13S358E_2mp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - PROJCS["Equirectangular Moon",GEOGCS["unknown",DATUM["unknown",SPHEROID["unnamed",1737400,0]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",-13],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",0],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Crater_15m_Color_Slope/LRO_LROC_DEM_Alphonsus_Crater_15m_Color_Slope.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Crater_15m_Color_Slope/LRO_LROC_DEM_Alphonsus_Crater_15m_Color_Slope.asset deleted file mode 100644 index 47e9684d29..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Crater_15m_Color_Slope/LRO_LROC_DEM_Alphonsus_Crater_15m_Color_Slope.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrSlope_15m_13S358E_2mp", - Name = [[LRO LROC DEM, Alphonsus Crater, 15m Color Slope]], - FilePath = asset.localResource("LRO_NAC_ClrSlope_15m_13S358E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Alphonsus Crater, 15m Color Slope]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrSlope_15m_13S358E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Alphonsus Crater, 15m Color Slope layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Crater_15m_Color_Slope/LRO_NAC_ClrSlope_15m_13S358E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Crater_15m_Color_Slope/LRO_NAC_ClrSlope_15m_13S358E_2mp.vrt deleted file mode 100644 index fa5b1889c0..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Crater_15m_Color_Slope/LRO_NAC_ClrSlope_15m_13S358E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrSlope_15m_13S358E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrSlope_15m_13S358E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrSlope_15m_13S358E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrSlope_15m_13S358E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Crater_15m_Color_Slope/LRO_NAC_ClrSlope_15m_13S358E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Crater_15m_Color_Slope/LRO_NAC_ClrSlope_15m_13S358E_2mp.wms deleted file mode 100644 index 6b01435670..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Crater_15m_Color_Slope/LRO_NAC_ClrSlope_15m_13S358E_2mp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrSlope_15m_13S358E_2mp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Crater_15m_Color_Slope_Hazard/LRO_LROC_DEM_Alphonsus_Crater_15m_Color_Slope_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Crater_15m_Color_Slope_Hazard/LRO_LROC_DEM_Alphonsus_Crater_15m_Color_Slope_Hazard.asset deleted file mode 100644 index c0b8d55291..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Crater_15m_Color_Slope_Hazard/LRO_LROC_DEM_Alphonsus_Crater_15m_Color_Slope_Hazard.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrSlopeHaz_15m_13S358E_2mp", - Name = [[LRO LROC DEM, Alphonsus Crater, 15m Color Slope Hazard]], - FilePath = asset.localResource("LRO_NAC_ClrSlopeHaz_15m_13S358E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Alphonsus Crater, 15m Color Slope Hazard]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrSlopeHaz_15m_13S358E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Alphonsus Crater, 15m Color Slope Hazard layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Crater_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_13S358E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Crater_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_13S358E_2mp.vrt deleted file mode 100644 index 67a8cf25ba..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Crater_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_13S358E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["unknown",DATUM["unknown",SPHEROID["unnamed",1737400,0]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",-13],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",0],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrSlopeHaz_15m_13S358E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrSlopeHaz_15m_13S358E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrSlopeHaz_15m_13S358E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrSlopeHaz_15m_13S358E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Crater_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_13S358E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Crater_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_13S358E_2mp.wms deleted file mode 100644 index 7feda9ce95..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Crater_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_13S358E_2mp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrSlopeHaz_15m_13S358E_2mp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - PROJCS["Equirectangular Moon",GEOGCS["unknown",DATUM["unknown",SPHEROID["unnamed",1737400,0]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",-13],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",0],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Crater_4m_Color_Roughness/LRO_LROC_DEM_Alphonsus_Crater_4m_Color_Roughness.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Crater_4m_Color_Roughness/LRO_LROC_DEM_Alphonsus_Crater_4m_Color_Roughness.asset deleted file mode 100644 index f860172208..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Crater_4m_Color_Roughness/LRO_LROC_DEM_Alphonsus_Crater_4m_Color_Roughness.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrRoughness_4m_13S258E_2mp", - Name = [[LRO LROC DEM, Alphonsus Crater, 4m Color Roughness]], - FilePath = asset.localResource("LRO_NAC_ClrRoughness_4m_13S258E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Alphonsus Crater, 4m Color Roughness]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrRoughness_4m_13S258E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Alphonsus Crater, 4m Color Roughness layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Crater_4m_Color_Roughness/LRO_NAC_ClrRoughness_4m_13S258E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Crater_4m_Color_Roughness/LRO_NAC_ClrRoughness_4m_13S258E_2mp.vrt deleted file mode 100644 index a8f3ff04cd..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Crater_4m_Color_Roughness/LRO_NAC_ClrRoughness_4m_13S258E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["unknown",DATUM["unknown",SPHEROID["unnamed",1737400,0]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",-13],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",0],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrRoughness_4m_13S258E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrRoughness_4m_13S258E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrRoughness_4m_13S258E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrRoughness_4m_13S258E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Crater_4m_Color_Roughness/LRO_NAC_ClrRoughness_4m_13S258E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Crater_4m_Color_Roughness/LRO_NAC_ClrRoughness_4m_13S258E_2mp.wms deleted file mode 100644 index ef48a2a828..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Crater_4m_Color_Roughness/LRO_NAC_ClrRoughness_4m_13S258E_2mp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrRoughness_4m_13S258E_2mp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - PROJCS["Equirectangular Moon",GEOGCS["unknown",DATUM["unknown",SPHEROID["unnamed",1737400,0]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",-13],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",0],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Crater_4m_Color_Roughness_Hazard/LRO_LROC_DEM_Alphonsus_Crater_4m_Color_Roughness_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Crater_4m_Color_Roughness_Hazard/LRO_LROC_DEM_Alphonsus_Crater_4m_Color_Roughness_Hazard.asset deleted file mode 100644 index 48c9e38a0d..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Crater_4m_Color_Roughness_Hazard/LRO_LROC_DEM_Alphonsus_Crater_4m_Color_Roughness_Hazard.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrRoughnessHaz_4m_13S258E_2mp", - Name = [[LRO LROC DEM, Alphonsus Crater, 4m Color Roughness Hazard]], - FilePath = asset.localResource("LRO_NAC_ClrRoughnessHaz_4m_13S258E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Alphonsus Crater, 4m Color Roughness Hazard]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrRoughnessHaz_4m_13S258E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Alphonsus Crater, 4m Color Roughness Hazard layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Crater_4m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_4m_13S258E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Crater_4m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_4m_13S258E_2mp.vrt deleted file mode 100644 index c295e0987d..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Crater_4m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_4m_13S258E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrRoughnessHaz_4m_13S258E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrRoughnessHaz_4m_13S258E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrRoughnessHaz_4m_13S258E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrRoughnessHaz_4m_13S258E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Crater_4m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_4m_13S258E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Crater_4m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_4m_13S258E_2mp.wms deleted file mode 100644 index 7c92d8f7c7..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Crater_4m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_4m_13S258E_2mp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrRoughnessHaz_4m_13S258E_2mp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Crater_4m_Color_Slope/LRO_LROC_DEM_Alphonsus_Crater_4m_Color_Slope.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Crater_4m_Color_Slope/LRO_LROC_DEM_Alphonsus_Crater_4m_Color_Slope.asset deleted file mode 100644 index 5dc7873be4..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Crater_4m_Color_Slope/LRO_LROC_DEM_Alphonsus_Crater_4m_Color_Slope.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrSlope_4m_13S358E_2mp", - Name = [[LRO LROC DEM, Alphonsus Crater, 4m Color Slope]], - FilePath = asset.localResource("LRO_NAC_ClrSlope_4m_13S358E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Alphonsus Crater, 4m Color Slope]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrSlope_4m_13S358E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Alphonsus Crater, 4m Color Slope layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Crater_4m_Color_Slope/LRO_NAC_ClrSlope_4m_13S358E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Crater_4m_Color_Slope/LRO_NAC_ClrSlope_4m_13S358E_2mp.vrt deleted file mode 100644 index 2442e19c90..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Crater_4m_Color_Slope/LRO_NAC_ClrSlope_4m_13S358E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["unknown",DATUM["unknown",SPHEROID["unnamed",1737400,0]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",-13],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",0],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrSlope_4m_13S358E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrSlope_4m_13S358E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrSlope_4m_13S358E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrSlope_4m_13S358E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Crater_4m_Color_Slope/LRO_NAC_ClrSlope_4m_13S358E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Crater_4m_Color_Slope/LRO_NAC_ClrSlope_4m_13S358E_2mp.wms deleted file mode 100644 index 0ac903a9fc..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Crater_4m_Color_Slope/LRO_NAC_ClrSlope_4m_13S358E_2mp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrSlope_4m_13S358E_2mp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - PROJCS["Equirectangular Moon",GEOGCS["unknown",DATUM["unknown",SPHEROID["unnamed",1737400,0]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",-13],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",0],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Crater_4m_Color_Slope_Hazard/LRO_LROC_DEM_Alphonsus_Crater_4m_Color_Slope_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Crater_4m_Color_Slope_Hazard/LRO_LROC_DEM_Alphonsus_Crater_4m_Color_Slope_Hazard.asset deleted file mode 100644 index 9a9a716597..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Crater_4m_Color_Slope_Hazard/LRO_LROC_DEM_Alphonsus_Crater_4m_Color_Slope_Hazard.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrSlopeHaz_4m_13S358E_2mp", - Name = [[LRO LROC DEM, Alphonsus Crater, 4m Color Slope Hazard]], - FilePath = asset.localResource("LRO_NAC_ClrSlopeHaz_4m_13S358E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Alphonsus Crater, 4m Color Slope Hazard]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrSlopeHaz_4m_13S358E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Alphonsus Crater, 4m Color Slope Hazard layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Crater_4m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_4m_13S358E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Crater_4m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_4m_13S358E_2mp.vrt deleted file mode 100644 index 63de252847..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Crater_4m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_4m_13S358E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrSlopeHaz_4m_13S358E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrSlopeHaz_4m_13S358E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrSlopeHaz_4m_13S358E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrSlopeHaz_4m_13S358E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Crater_4m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_4m_13S358E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Crater_4m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_4m_13S358E_2mp.wms deleted file mode 100644 index 496fafccec..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Crater_4m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_4m_13S358E_2mp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrSlopeHaz_4m_13S358E_2mp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Grayscale/LRO_LROC_DEM_Alphonsus_Grayscale.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Grayscale/LRO_LROC_DEM_Alphonsus_Grayscale.asset deleted file mode 100644 index 575837fbad..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Grayscale/LRO_LROC_DEM_Alphonsus_Grayscale.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Gray_13S358E_200cmp", - Name = [[LRO LROC DEM, Alphonsus, Grayscale]], - FilePath = asset.localResource("LRO_NAC_Gray_13S358E_200cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Alphonsus, Grayscale]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Gray_13S358E_200cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Alphonsus, Grayscale layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Grayscale/LRO_NAC_Gray_13S358E_200cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Grayscale/LRO_NAC_Gray_13S358E_200cmp.vrt deleted file mode 100644 index 95c8c53527..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Grayscale/LRO_NAC_Gray_13S358E_200cmp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Gray - - LRO_NAC_Gray_13S358E_200cmp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Gray_13S358E_200cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Grayscale/LRO_NAC_Gray_13S358E_200cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Grayscale/LRO_NAC_Gray_13S358E_200cmp.wms deleted file mode 100644 index 9600a64c63..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Grayscale/LRO_NAC_Gray_13S358E_200cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Gray_13S358E_200cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 1 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Hillshade/LRO_LROC_DEM_Alphonsus_Hillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Hillshade/LRO_LROC_DEM_Alphonsus_Hillshade.asset deleted file mode 100644 index 28bc8eb7c0..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Hillshade/LRO_LROC_DEM_Alphonsus_Hillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Shade_13S358E_200cmp", - Name = [[LRO LROC DEM, Alphonsus, Hillshade]], - FilePath = asset.localResource("LRO_NAC_Shade_13S358E_200cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Alphonsus, Hillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Shade_13S358E_200cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Alphonsus, Hillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Hillshade/LRO_NAC_Shade_13S358E_200cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Hillshade/LRO_NAC_Shade_13S358E_200cmp.vrt deleted file mode 100644 index 93302be8e4..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Hillshade/LRO_NAC_Shade_13S358E_200cmp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Gray - - LRO_NAC_Shade_13S358E_200cmp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Shade_13S358E_200cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Hillshade/LRO_NAC_Shade_13S358E_200cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Hillshade/LRO_NAC_Shade_13S358E_200cmp.wms deleted file mode 100644 index a0f3de898a..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Alphonsus_Hillshade/LRO_NAC_Shade_13S358E_200cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Shade_13S358E_200cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 1 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_15m_Color_Roughness/LRO_LROC_DEM_Anaxagoras_Crater_15m_Color_Roughness.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_15m_Color_Roughness/LRO_LROC_DEM_Anaxagoras_Crater_15m_Color_Roughness.asset deleted file mode 100644 index 69489ebd39..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_15m_Color_Roughness/LRO_LROC_DEM_Anaxagoras_Crater_15m_Color_Roughness.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrRoughness_15m_73N350E_150cmp", - Name = [[LRO LROC DEM, Anaxagoras Crater, 15m Color Roughness]], - FilePath = asset.localResource("LRO_NAC_ClrRoughness_15m_73N350E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Anaxagoras Crater, 15m Color Roughness]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrRoughness_15m_73N350E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Anaxagoras Crater, 15m Color Roughness layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_73N350E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_73N350E_150cmp.vrt deleted file mode 100644 index 6bb07bee2d..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_73N350E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular_MOON_73N",GEOGCS["GCS_MOON",DATUM["MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",73],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrRoughness_15m_73N350E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrRoughness_15m_73N350E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrRoughness_15m_73N350E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrRoughness_15m_73N350E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Anaxagoras_Crater_15m_Color_Roughness_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Anaxagoras_Crater_15m_Color_Roughness_Hazard.asset deleted file mode 100644 index e1b98afe63..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Anaxagoras_Crater_15m_Color_Roughness_Hazard.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrRoughnessHaz_15m_73N350E_150cmp", - Name = [[LRO LROC DEM, Anaxagoras Crater, 15m Color Roughness Hazard]], - FilePath = asset.localResource("LRO_NAC_ClrRoughnessHaz_15m_73N350E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Anaxagoras Crater, 15m Color Roughness Hazard]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrRoughnessHaz_15m_73N350E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Anaxagoras Crater, 15m Color Roughness Hazard layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_73N350E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_73N350E_150cmp.vrt deleted file mode 100644 index b9b3b738ce..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_73N350E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular_MOON_73N",GEOGCS["GCS_MOON",DATUM["MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",73],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrRoughnessHaz_15m_73N350E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrRoughnessHaz_15m_73N350E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrRoughnessHaz_15m_73N350E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrRoughnessHaz_15m_73N350E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_73N350E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_73N350E_150cmp.wms deleted file mode 100644 index c333462ac8..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_73N350E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrRoughnessHaz_15m_73N350E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - PROJCS["Equirectangular_MOON_73N",GEOGCS["GCS_MOON",DATUM["MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",73],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_15m_Color_Slope/LRO_LROC_DEM_Anaxagoras_Crater_15m_Color_Slope.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_15m_Color_Slope/LRO_LROC_DEM_Anaxagoras_Crater_15m_Color_Slope.asset deleted file mode 100644 index a5e553d47d..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_15m_Color_Slope/LRO_LROC_DEM_Anaxagoras_Crater_15m_Color_Slope.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrSlope_15m_73N350E_150cmp", - Name = [[LRO LROC DEM, Anaxagoras Crater, 15m Color Slope]], - FilePath = asset.localResource("LRO_NAC_ClrSlope_15m_73N350E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Anaxagoras Crater, 15m Color Slope]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrSlope_15m_73N350E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Anaxagoras Crater, 15m Color Slope layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_15m_Color_Slope/LRO_NAC_ClrSlope_15m_73N350E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_15m_Color_Slope/LRO_NAC_ClrSlope_15m_73N350E_150cmp.vrt deleted file mode 100644 index f8e9dee65e..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_15m_Color_Slope/LRO_NAC_ClrSlope_15m_73N350E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular_MOON_73N",GEOGCS["GCS_MOON",DATUM["MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",73],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrSlope_15m_73N350E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrSlope_15m_73N350E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrSlope_15m_73N350E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrSlope_15m_73N350E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_15m_Color_Slope/LRO_NAC_ClrSlope_15m_73N350E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_15m_Color_Slope/LRO_NAC_ClrSlope_15m_73N350E_150cmp.wms deleted file mode 100644 index b2449429fc..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_15m_Color_Slope/LRO_NAC_ClrSlope_15m_73N350E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrSlope_15m_73N350E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - PROJCS["Equirectangular_MOON_73N",GEOGCS["GCS_MOON",DATUM["MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",73],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_15m_Color_Slope_Hazard/LRO_LROC_DEM_Anaxagoras_Crater_15m_Color_Slope_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_15m_Color_Slope_Hazard/LRO_LROC_DEM_Anaxagoras_Crater_15m_Color_Slope_Hazard.asset deleted file mode 100644 index d9d7e206b1..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_15m_Color_Slope_Hazard/LRO_LROC_DEM_Anaxagoras_Crater_15m_Color_Slope_Hazard.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrSlopeHaz_15m_73N350E_150cmp", - Name = [[LRO LROC DEM, Anaxagoras Crater, 15m Color Slope Hazard]], - FilePath = asset.localResource("LRO_NAC_ClrSlopeHaz_15m_73N350E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Anaxagoras Crater, 15m Color Slope Hazard]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrSlopeHaz_15m_73N350E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Anaxagoras Crater, 15m Color Slope Hazard layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_73N350E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_73N350E_150cmp.vrt deleted file mode 100644 index 22f1b545f7..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_73N350E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular_MOON_73N",GEOGCS["GCS_MOON",DATUM["MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",73],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrSlopeHaz_15m_73N350E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrSlopeHaz_15m_73N350E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrSlopeHaz_15m_73N350E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrSlopeHaz_15m_73N350E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_73N350E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_73N350E_150cmp.wms deleted file mode 100644 index 56e98d33e2..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_73N350E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrSlopeHaz_15m_73N350E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - PROJCS["Equirectangular_MOON_73N",GEOGCS["GCS_MOON",DATUM["MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",73],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_3m_Color_Roughness/LRO_LROC_DEM_Anaxagoras_Crater_3m_Color_Roughness.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_3m_Color_Roughness/LRO_LROC_DEM_Anaxagoras_Crater_3m_Color_Roughness.asset deleted file mode 100644 index 214775c692..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_3m_Color_Roughness/LRO_LROC_DEM_Anaxagoras_Crater_3m_Color_Roughness.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrRoughness_3m_73N350E_150cmp", - Name = [[LRO LROC DEM, Anaxagoras Crater, 3m Color Roughness]], - FilePath = asset.localResource("LRO_NAC_ClrRoughness_3m_73N350E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Anaxagoras Crater, 3m Color Roughness]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrRoughness_3m_73N350E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Anaxagoras Crater, 3m Color Roughness layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_73N350E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_73N350E_150cmp.vrt deleted file mode 100644 index 672d743042..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_73N350E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrRoughness_3m_73N350E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrRoughness_3m_73N350E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrRoughness_3m_73N350E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrRoughness_3m_73N350E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_73N350E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_73N350E_150cmp.wms deleted file mode 100644 index 4a7e3958ff..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_73N350E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrRoughness_3m_73N350E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_3m_Color_Roughness_Hazard/LRO_LROC_DEM_Anaxagoras_Crater_3m_Color_Roughness_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_3m_Color_Roughness_Hazard/LRO_LROC_DEM_Anaxagoras_Crater_3m_Color_Roughness_Hazard.asset deleted file mode 100644 index 7e1c1a0b55..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_3m_Color_Roughness_Hazard/LRO_LROC_DEM_Anaxagoras_Crater_3m_Color_Roughness_Hazard.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrRoughnessHaz_3m_73N350E_150cmp", - Name = [[LRO LROC DEM, Anaxagoras Crater, 3m Color Roughness Hazard]], - FilePath = asset.localResource("LRO_NAC_ClrRoughnessHaz_3m_73N350E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Anaxagoras Crater, 3m Color Roughness Hazard]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrRoughnessHaz_3m_73N350E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Anaxagoras Crater, 3m Color Roughness Hazard layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_73N350E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_73N350E_150cmp.vrt deleted file mode 100644 index 1ac570472c..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_73N350E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular_MOON_73N",GEOGCS["GCS_MOON",DATUM["MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",73],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrRoughnessHaz_3m_73N350E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrRoughnessHaz_3m_73N350E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrRoughnessHaz_3m_73N350E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrRoughnessHaz_3m_73N350E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_73N350E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_73N350E_150cmp.wms deleted file mode 100644 index c7f34c6962..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_73N350E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrRoughnessHaz_3m_73N350E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - PROJCS["Equirectangular_MOON_73N",GEOGCS["GCS_MOON",DATUM["MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",73],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_3m_Color_Slope/LRO_LROC_DEM_Anaxagoras_Crater_3m_Color_Slope.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_3m_Color_Slope/LRO_LROC_DEM_Anaxagoras_Crater_3m_Color_Slope.asset deleted file mode 100644 index 8f72fd18ab..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_3m_Color_Slope/LRO_LROC_DEM_Anaxagoras_Crater_3m_Color_Slope.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrSlope_3m_73N350E_150cmp", - Name = [[LRO LROC DEM, Anaxagoras Crater, 3m Color Slope]], - FilePath = asset.localResource("LRO_NAC_ClrSlope_3m_73N350E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Anaxagoras Crater, 3m Color Slope]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrSlope_3m_73N350E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Anaxagoras Crater, 3m Color Slope layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_3m_Color_Slope/LRO_NAC_ClrSlope_3m_73N350E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_3m_Color_Slope/LRO_NAC_ClrSlope_3m_73N350E_150cmp.vrt deleted file mode 100644 index e5587a9bcc..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_3m_Color_Slope/LRO_NAC_ClrSlope_3m_73N350E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular_MOON_73N",GEOGCS["GCS_MOON",DATUM["MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",73],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrSlope_3m_73N350E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrSlope_3m_73N350E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrSlope_3m_73N350E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrSlope_3m_73N350E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_3m_Color_Slope/LRO_NAC_ClrSlope_3m_73N350E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_3m_Color_Slope/LRO_NAC_ClrSlope_3m_73N350E_150cmp.wms deleted file mode 100644 index 93240aba99..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_3m_Color_Slope/LRO_NAC_ClrSlope_3m_73N350E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrSlope_3m_73N350E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - PROJCS["Equirectangular_MOON_73N",GEOGCS["GCS_MOON",DATUM["MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",73],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_3m_Color_Slope_Hazard/LRO_LROC_DEM_Anaxagoras_Crater_3m_Color_Slope_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_3m_Color_Slope_Hazard/LRO_LROC_DEM_Anaxagoras_Crater_3m_Color_Slope_Hazard.asset deleted file mode 100644 index a17a1c40e7..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_3m_Color_Slope_Hazard/LRO_LROC_DEM_Anaxagoras_Crater_3m_Color_Slope_Hazard.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrSlopeHaz_3m_73N350E_150cmp", - Name = [[LRO LROC DEM, Anaxagoras Crater, 3m Color Slope Hazard]], - FilePath = asset.localResource("LRO_NAC_ClrSlopeHaz_3m_73N350E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Anaxagoras Crater, 3m Color Slope Hazard]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrSlopeHaz_3m_73N350E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Anaxagoras Crater, 3m Color Slope Hazard layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_73N350E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_73N350E_150cmp.vrt deleted file mode 100644 index d48fd19d41..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_73N350E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular_MOON_73N",GEOGCS["GCS_MOON",DATUM["MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",73],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrSlopeHaz_3m_73N350E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrSlopeHaz_3m_73N350E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrSlopeHaz_3m_73N350E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrSlopeHaz_3m_73N350E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_73N350E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_73N350E_150cmp.wms deleted file mode 100644 index bc9c85bc7c..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_73N350E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrSlopeHaz_3m_73N350E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - PROJCS["Equirectangular_MOON_73N",GEOGCS["GCS_MOON",DATUM["MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",73],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_ColorHillshade/LRO_LROC_DEM_Anaxagoras_Crater_ColorHillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_ColorHillshade/LRO_LROC_DEM_Anaxagoras_Crater_ColorHillshade.asset deleted file mode 100644 index 0b5c3bae00..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_ColorHillshade/LRO_LROC_DEM_Anaxagoras_Crater_ColorHillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrShade_73N350E_150cmp", - Name = [[LRO LROC DEM, Anaxagoras Crater, ColorHillshade]], - FilePath = asset.localResource("LRO_NAC_ClrShade_73N350E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Anaxagoras Crater, ColorHillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrShade_73N350E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Anaxagoras Crater, ColorHillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_ColorHillshade/LRO_NAC_ClrShade_73N350E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_ColorHillshade/LRO_NAC_ClrShade_73N350E_150cmp.vrt deleted file mode 100644 index ba8e56c275..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_ColorHillshade/LRO_NAC_ClrShade_73N350E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular_MOON_73N",GEOGCS["GCS_MOON",DATUM["MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",73],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrShade_73N350E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrShade_73N350E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrShade_73N350E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrShade_73N350E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_ColorHillshade/LRO_NAC_ClrShade_73N350E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_ColorHillshade/LRO_NAC_ClrShade_73N350E_150cmp.wms deleted file mode 100644 index f03a659c7c..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_ColorHillshade/LRO_NAC_ClrShade_73N350E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrShade_73N350E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - PROJCS["Equirectangular_MOON_73N",GEOGCS["GCS_MOON",DATUM["MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",73],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_Colorized_Confidence/LRO_LROC_DEM_Anaxagoras_Crater_Colorized_Confidence.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_Colorized_Confidence/LRO_LROC_DEM_Anaxagoras_Crater_Colorized_Confidence.asset deleted file mode 100644 index e793d1e2c8..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_Colorized_Confidence/LRO_LROC_DEM_Anaxagoras_Crater_Colorized_Confidence.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrConf_73N350E_150cmp", - Name = [[LRO LROC DEM, Anaxagoras Crater, Colorized Confidence]], - FilePath = asset.localResource("LRO_NAC_ClrConf_73N350E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Anaxagoras Crater, Colorized Confidence]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrConf_73N350E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Anaxagoras Crater, Colorized Confidence layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_Colorized_Confidence/LRO_NAC_ClrConf_73N350E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_Colorized_Confidence/LRO_NAC_ClrConf_73N350E_150cmp.vrt deleted file mode 100644 index 2f1c217267..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_Colorized_Confidence/LRO_NAC_ClrConf_73N350E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrConf_73N350E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrConf_73N350E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrConf_73N350E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrConf_73N350E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_Colorized_Confidence/LRO_NAC_ClrConf_73N350E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_Colorized_Confidence/LRO_NAC_ClrConf_73N350E_150cmp.wms deleted file mode 100644 index 9bc8abf63d..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_Colorized_Confidence/LRO_NAC_ClrConf_73N350E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrConf_73N350E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_Colorized_Slope/LRO_LROC_DEM_Anaxagoras_Crater_Colorized_Slope.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_Colorized_Slope/LRO_LROC_DEM_Anaxagoras_Crater_Colorized_Slope.asset deleted file mode 100644 index 7dffac263e..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_Colorized_Slope/LRO_LROC_DEM_Anaxagoras_Crater_Colorized_Slope.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Slope_73N350E_150cmp", - Name = [[LRO LROC DEM, Anaxagoras Crater, Colorized Slope]], - FilePath = asset.localResource("LRO_NAC_Slope_73N350E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Anaxagoras Crater, Colorized Slope]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Slope_73N350E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Anaxagoras Crater, Colorized Slope layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_Colorized_Slope/LRO_NAC_Slope_73N350E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_Colorized_Slope/LRO_NAC_Slope_73N350E_150cmp.vrt deleted file mode 100644 index d929230a2c..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_Colorized_Slope/LRO_NAC_Slope_73N350E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_Slope_73N350E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_Slope_73N350E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_Slope_73N350E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_Slope_73N350E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_Colorized_Slope/LRO_NAC_Slope_73N350E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_Colorized_Slope/LRO_NAC_Slope_73N350E_150cmp.wms deleted file mode 100644 index 248f4e9f44..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_Colorized_Slope/LRO_NAC_Slope_73N350E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Slope_73N350E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_Grayscale/LRO_LROC_DEM_Anaxagoras_Crater_Grayscale.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_Grayscale/LRO_LROC_DEM_Anaxagoras_Crater_Grayscale.asset deleted file mode 100644 index 35b3eec7c5..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_Grayscale/LRO_LROC_DEM_Anaxagoras_Crater_Grayscale.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Gray_73N350E_150cmp", - Name = [[LRO LROC DEM, Anaxagoras Crater, Grayscale]], - FilePath = asset.localResource("LRO_NAC_Gray_73N350E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Anaxagoras Crater, Grayscale]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Gray_73N350E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Anaxagoras Crater, Grayscale layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_Grayscale/LRO_NAC_Gray_73N350E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_Grayscale/LRO_NAC_Gray_73N350E_150cmp.vrt deleted file mode 100644 index 2314162220..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_Grayscale/LRO_NAC_Gray_73N350E_150cmp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Gray - - LRO_NAC_Gray_73N350E_150cmp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Gray_73N350E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_Grayscale/LRO_NAC_Gray_73N350E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_Grayscale/LRO_NAC_Gray_73N350E_150cmp.wms deleted file mode 100644 index 98db720e33..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_Grayscale/LRO_NAC_Gray_73N350E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Gray_73N350E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 1 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_Hillshade/LRO_LROC_DEM_Anaxagoras_Crater_Hillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_Hillshade/LRO_LROC_DEM_Anaxagoras_Crater_Hillshade.asset deleted file mode 100644 index a39b3c5b5b..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_Hillshade/LRO_LROC_DEM_Anaxagoras_Crater_Hillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Shade_73N350E_150cmp", - Name = [[LRO LROC DEM, Anaxagoras Crater, Hillshade]], - FilePath = asset.localResource("LRO_NAC_Shade_73N350E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Anaxagoras Crater, Hillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Shade_73N350E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Anaxagoras Crater, Hillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_Hillshade/LRO_NAC_Shade_73N350E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_Hillshade/LRO_NAC_Shade_73N350E_150cmp.vrt deleted file mode 100644 index 266364c9c2..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_Hillshade/LRO_NAC_Shade_73N350E_150cmp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - PROJCS["Equirectangular_MOON_73N",GEOGCS["GCS_MOON",DATUM["MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",73],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Gray - - LRO_NAC_Shade_73N350E_150cmp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Shade_73N350E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_Hillshade/LRO_NAC_Shade_73N350E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_Hillshade/LRO_NAC_Shade_73N350E_150cmp.wms deleted file mode 100644 index 127aced377..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Anaxagoras_Crater_Hillshade/LRO_NAC_Shade_73N350E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Shade_73N350E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - PROJCS["Equirectangular_MOON_73N",GEOGCS["GCS_MOON",DATUM["MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",73],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 1 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_15m_Color_Roughness/LRO_LROC_DEM_Apollo_15_15m_Color_Roughness.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_15m_Color_Roughness/LRO_LROC_DEM_Apollo_15_15m_Color_Roughness.asset deleted file mode 100644 index 73080951e9..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_15m_Color_Roughness/LRO_LROC_DEM_Apollo_15_15m_Color_Roughness.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrRoughness_15m_26N004E_150cmp", - Name = [[LRO LROC DEM, Apollo 15, 15m Color Roughness]], - FilePath = asset.localResource("LRO_NAC_ClrRoughness_15m_26N004E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Apollo 15, 15m Color Roughness]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrRoughness_15m_26N004E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Apollo 15, 15m Color Roughness layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_26N004E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_26N004E_150cmp.vrt deleted file mode 100644 index 3819780623..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_26N004E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrRoughness_15m_26N004E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrRoughness_15m_26N004E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrRoughness_15m_26N004E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrRoughness_15m_26N004E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Apollo_15_15m_Color_Roughness_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Apollo_15_15m_Color_Roughness_Hazard.asset deleted file mode 100644 index 3936ae3d64..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Apollo_15_15m_Color_Roughness_Hazard.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrRoughnessHaz_15m_26N004E_150cmp", - Name = [[LRO LROC DEM, Apollo 15, 15m Color Roughness Hazard]], - FilePath = asset.localResource("LRO_NAC_ClrRoughnessHaz_15m_26N004E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Apollo 15, 15m Color Roughness Hazard]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrRoughnessHaz_15m_26N004E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Apollo 15, 15m Color Roughness Hazard layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_26N004E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_26N004E_150cmp.vrt deleted file mode 100644 index b69a05aa4d..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_26N004E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",26],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrRoughnessHaz_15m_26N004E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrRoughnessHaz_15m_26N004E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrRoughnessHaz_15m_26N004E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrRoughnessHaz_15m_26N004E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_26N004E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_26N004E_150cmp.wms deleted file mode 100644 index a416578653..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_26N004E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrRoughnessHaz_15m_26N004E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",26],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_15m_Color_Slope/LRO_LROC_DEM_Apollo_15_15m_Color_Slope.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_15m_Color_Slope/LRO_LROC_DEM_Apollo_15_15m_Color_Slope.asset deleted file mode 100644 index 2eb8454877..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_15m_Color_Slope/LRO_LROC_DEM_Apollo_15_15m_Color_Slope.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrSlope_15m_26N004E_150cmp", - Name = [[LRO LROC DEM, Apollo 15, 15m Color Slope]], - FilePath = asset.localResource("LRO_NAC_ClrSlope_15m_26N004E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Apollo 15, 15m Color Slope]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrSlope_15m_26N004E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Apollo 15, 15m Color Slope layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_15m_Color_Slope/LRO_NAC_ClrSlope_15m_26N004E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_15m_Color_Slope/LRO_NAC_ClrSlope_15m_26N004E_150cmp.vrt deleted file mode 100644 index a37b1f98f3..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_15m_Color_Slope/LRO_NAC_ClrSlope_15m_26N004E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",26],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrSlope_15m_26N004E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrSlope_15m_26N004E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrSlope_15m_26N004E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrSlope_15m_26N004E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_15m_Color_Slope/LRO_NAC_ClrSlope_15m_26N004E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_15m_Color_Slope/LRO_NAC_ClrSlope_15m_26N004E_150cmp.wms deleted file mode 100644 index ff2fc43bc0..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_15m_Color_Slope/LRO_NAC_ClrSlope_15m_26N004E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrSlope_15m_26N004E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",26],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_15m_Color_Slope_Hazard/LRO_LROC_DEM_Apollo_15_15m_Color_Slope_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_15m_Color_Slope_Hazard/LRO_LROC_DEM_Apollo_15_15m_Color_Slope_Hazard.asset deleted file mode 100644 index 4ca96348a7..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_15m_Color_Slope_Hazard/LRO_LROC_DEM_Apollo_15_15m_Color_Slope_Hazard.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrSlopeHaz_15m_26N004E_150cmp", - Name = [[LRO LROC DEM, Apollo 15, 15m Color Slope Hazard]], - FilePath = asset.localResource("LRO_NAC_ClrSlopeHaz_15m_26N004E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Apollo 15, 15m Color Slope Hazard]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrSlopeHaz_15m_26N004E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Apollo 15, 15m Color Slope Hazard layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_26N004E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_26N004E_150cmp.vrt deleted file mode 100644 index 0fffb6b280..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_26N004E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",26],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrSlopeHaz_15m_26N004E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrSlopeHaz_15m_26N004E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrSlopeHaz_15m_26N004E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrSlopeHaz_15m_26N004E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_26N004E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_26N004E_150cmp.wms deleted file mode 100644 index c53f3e5f5f..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_26N004E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrSlopeHaz_15m_26N004E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",26],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_3m_Color_Roughness/LRO_LROC_DEM_Apollo_15_3m_Color_Roughness.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_3m_Color_Roughness/LRO_LROC_DEM_Apollo_15_3m_Color_Roughness.asset deleted file mode 100644 index 6962401d97..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_3m_Color_Roughness/LRO_LROC_DEM_Apollo_15_3m_Color_Roughness.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrRoughness_3m_26N004E_150cmp", - Name = [[LRO LROC DEM, Apollo 15, 3m Color Roughness]], - FilePath = asset.localResource("LRO_NAC_ClrRoughness_3m_26N004E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Apollo 15, 3m Color Roughness]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrRoughness_3m_26N004E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Apollo 15, 3m Color Roughness layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_26N004E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_26N004E_150cmp.vrt deleted file mode 100644 index f533d1fc2b..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_26N004E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",26],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrRoughness_3m_26N004E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrRoughness_3m_26N004E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrRoughness_3m_26N004E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrRoughness_3m_26N004E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_26N004E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_26N004E_150cmp.wms deleted file mode 100644 index 75eed3981d..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_26N004E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrRoughness_3m_26N004E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",26],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_3m_Color_Roughness_Hazard/LRO_LROC_DEM_Apollo_15_3m_Color_Roughness_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_3m_Color_Roughness_Hazard/LRO_LROC_DEM_Apollo_15_3m_Color_Roughness_Hazard.asset deleted file mode 100644 index a1dec17c87..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_3m_Color_Roughness_Hazard/LRO_LROC_DEM_Apollo_15_3m_Color_Roughness_Hazard.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrRoughnessHaz_3m_26N004E_150cmp", - Name = [[LRO LROC DEM, Apollo 15, 3m Color Roughness Hazard]], - FilePath = asset.localResource("LRO_NAC_ClrRoughnessHaz_3m_26N004E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Apollo 15, 3m Color Roughness Hazard]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrRoughnessHaz_3m_26N004E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Apollo 15, 3m Color Roughness Hazard layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_26N004E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_26N004E_150cmp.vrt deleted file mode 100644 index 2561182c29..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_26N004E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",26],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrRoughnessHaz_3m_26N004E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrRoughnessHaz_3m_26N004E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrRoughnessHaz_3m_26N004E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrRoughnessHaz_3m_26N004E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_26N004E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_26N004E_150cmp.wms deleted file mode 100644 index 8190917fbd..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_26N004E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrRoughnessHaz_3m_26N004E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",26],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_3m_Color_Slope/LRO_LROC_DEM_Apollo_15_3m_Color_Slope.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_3m_Color_Slope/LRO_LROC_DEM_Apollo_15_3m_Color_Slope.asset deleted file mode 100644 index 63a9356722..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_3m_Color_Slope/LRO_LROC_DEM_Apollo_15_3m_Color_Slope.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrSlope_3m_26N004E_150cmp", - Name = [[LRO LROC DEM, Apollo 15, 3m Color Slope]], - FilePath = asset.localResource("LRO_NAC_ClrSlope_3m_26N004E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Apollo 15, 3m Color Slope]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrSlope_3m_26N004E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Apollo 15, 3m Color Slope layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_3m_Color_Slope/LRO_NAC_ClrSlope_3m_26N004E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_3m_Color_Slope/LRO_NAC_ClrSlope_3m_26N004E_150cmp.vrt deleted file mode 100644 index c4fee1cb4b..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_3m_Color_Slope/LRO_NAC_ClrSlope_3m_26N004E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",26],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrSlope_3m_26N004E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrSlope_3m_26N004E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrSlope_3m_26N004E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrSlope_3m_26N004E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_3m_Color_Slope/LRO_NAC_ClrSlope_3m_26N004E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_3m_Color_Slope/LRO_NAC_ClrSlope_3m_26N004E_150cmp.wms deleted file mode 100644 index 2fd6f3f107..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_3m_Color_Slope/LRO_NAC_ClrSlope_3m_26N004E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrSlope_3m_26N004E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",26],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_3m_Color_Slope_Hazard/LRO_LROC_DEM_Apollo_15_3m_Color_Slope_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_3m_Color_Slope_Hazard/LRO_LROC_DEM_Apollo_15_3m_Color_Slope_Hazard.asset deleted file mode 100644 index 23889b10e8..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_3m_Color_Slope_Hazard/LRO_LROC_DEM_Apollo_15_3m_Color_Slope_Hazard.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrSlopeHaz_3m_26N004E_150cmp", - Name = [[LRO LROC DEM, Apollo 15, 3m Color Slope Hazard]], - FilePath = asset.localResource("LRO_NAC_ClrSlopeHaz_3m_26N004E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Apollo 15, 3m Color Slope Hazard]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrSlopeHaz_3m_26N004E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Apollo 15, 3m Color Slope Hazard layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_26N004E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_26N004E_150cmp.vrt deleted file mode 100644 index bd27f1c38a..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_26N004E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrSlopeHaz_3m_26N004E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrSlopeHaz_3m_26N004E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrSlopeHaz_3m_26N004E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrSlopeHaz_3m_26N004E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_26N004E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_26N004E_150cmp.wms deleted file mode 100644 index d8f5ee650c..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_26N004E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrSlopeHaz_3m_26N004E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_ColorHillshade/LRO_LROC_DEM_Apollo_15_ColorHillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_ColorHillshade/LRO_LROC_DEM_Apollo_15_ColorHillshade.asset deleted file mode 100644 index a9672dd943..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_ColorHillshade/LRO_LROC_DEM_Apollo_15_ColorHillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrShade_26N004E_150cmp", - Name = [[LRO LROC DEM, Apollo 15, ColorHillshade]], - FilePath = asset.localResource("LRO_NAC_ClrShade_26N004E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Apollo 15, ColorHillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrShade_26N004E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Apollo 15, ColorHillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_ColorHillshade/LRO_NAC_ClrShade_26N004E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_ColorHillshade/LRO_NAC_ClrShade_26N004E_150cmp.vrt deleted file mode 100644 index 0dc76977da..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_ColorHillshade/LRO_NAC_ClrShade_26N004E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrShade_26N004E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrShade_26N004E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrShade_26N004E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrShade_26N004E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_ColorHillshade/LRO_NAC_ClrShade_26N004E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_ColorHillshade/LRO_NAC_ClrShade_26N004E_150cmp.wms deleted file mode 100644 index 03c3761fd3..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_ColorHillshade/LRO_NAC_ClrShade_26N004E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrShade_26N004E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_ColorHillshade_Slope/LRO_LROC_DEM_Apollo_15_ColorHillshade_Slope.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_ColorHillshade_Slope/LRO_LROC_DEM_Apollo_15_ColorHillshade_Slope.asset deleted file mode 100644 index 72557eb233..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_ColorHillshade_Slope/LRO_LROC_DEM_Apollo_15_ColorHillshade_Slope.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Slope_26N004E_150cmp", - Name = [[LRO LROC DEM, Apollo 15, ColorHillshade Slope]], - FilePath = asset.localResource("LRO_NAC_Slope_26N004E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Apollo 15, ColorHillshade Slope]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Slope_26N004E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Apollo 15, ColorHillshade Slope layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_ColorHillshade_Slope/LRO_NAC_Slope_26N004E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_ColorHillshade_Slope/LRO_NAC_Slope_26N004E_150cmp.vrt deleted file mode 100644 index ac77e8bcdd..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_ColorHillshade_Slope/LRO_NAC_Slope_26N004E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",26],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_Slope_26N004E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_Slope_26N004E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_Slope_26N004E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_Slope_26N004E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_ColorHillshade_Slope/LRO_NAC_Slope_26N004E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_ColorHillshade_Slope/LRO_NAC_Slope_26N004E_150cmp.wms deleted file mode 100644 index 4707b0da8e..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_ColorHillshade_Slope/LRO_NAC_Slope_26N004E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Slope_26N004E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",26],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_Colorized_Confidence/LRO_LROC_DEM_Apollo_15_Colorized_Confidence.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_Colorized_Confidence/LRO_LROC_DEM_Apollo_15_Colorized_Confidence.asset deleted file mode 100644 index 26ec7d44b6..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_Colorized_Confidence/LRO_LROC_DEM_Apollo_15_Colorized_Confidence.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrConf_26N004E_150cmp", - Name = [[LRO LROC DEM, Apollo 15, Colorized Confidence]], - FilePath = asset.localResource("LRO_NAC_ClrConf_26N004E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Apollo 15, Colorized Confidence]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrConf_26N004E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Apollo 15, Colorized Confidence layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_Colorized_Confidence/LRO_NAC_ClrConf_26N004E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_Colorized_Confidence/LRO_NAC_ClrConf_26N004E_150cmp.vrt deleted file mode 100644 index 93fd9da583..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_Colorized_Confidence/LRO_NAC_ClrConf_26N004E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrConf_26N004E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrConf_26N004E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrConf_26N004E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrConf_26N004E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_Colorized_Confidence/LRO_NAC_ClrConf_26N004E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_Colorized_Confidence/LRO_NAC_ClrConf_26N004E_150cmp.wms deleted file mode 100644 index 1b396e6e1e..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_Colorized_Confidence/LRO_NAC_ClrConf_26N004E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrConf_26N004E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_Grayscale/LRO_LROC_DEM_Apollo_15_Grayscale.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_Grayscale/LRO_LROC_DEM_Apollo_15_Grayscale.asset deleted file mode 100644 index 29bf8b2edb..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_Grayscale/LRO_LROC_DEM_Apollo_15_Grayscale.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Gray_26N004E_150cmp", - Name = [[LRO LROC DEM, Apollo 15, Grayscale]], - FilePath = asset.localResource("LRO_NAC_Gray_26N004E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Apollo 15, Grayscale]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Gray_26N004E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Apollo 15, Grayscale layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_Grayscale/LRO_NAC_Gray_26N004E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_Grayscale/LRO_NAC_Gray_26N004E_150cmp.vrt deleted file mode 100644 index bd7b92940d..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_Grayscale/LRO_NAC_Gray_26N004E_150cmp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Gray - - LRO_NAC_Gray_26N004E_150cmp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Gray_26N004E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_Grayscale/LRO_NAC_Gray_26N004E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_Grayscale/LRO_NAC_Gray_26N004E_150cmp.wms deleted file mode 100644 index 75a4a2e6c3..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_Grayscale/LRO_NAC_Gray_26N004E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Gray_26N004E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 1 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_Hillshade/LRO_LROC_DEM_Apollo_15_Hillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_Hillshade/LRO_LROC_DEM_Apollo_15_Hillshade.asset deleted file mode 100644 index 2add297a13..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_Hillshade/LRO_LROC_DEM_Apollo_15_Hillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Shade_26N004E_150cmp", - Name = [[LRO LROC DEM, Apollo 15, Hillshade]], - FilePath = asset.localResource("LRO_NAC_Shade_26N004E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Apollo 15, Hillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Shade_26N004E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Apollo 15, Hillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_Hillshade/LRO_NAC_Shade_26N004E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_Hillshade/LRO_NAC_Shade_26N004E_150cmp.vrt deleted file mode 100644 index c7c92257db..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_Hillshade/LRO_NAC_Shade_26N004E_150cmp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",26],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Gray - - LRO_NAC_Shade_26N004E_150cmp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Shade_26N004E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_Hillshade/LRO_NAC_Shade_26N004E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_Hillshade/LRO_NAC_Shade_26N004E_150cmp.wms deleted file mode 100644 index 8547b12740..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_15_Hillshade/LRO_NAC_Shade_26N004E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Shade_26N004E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",26],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 1 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_15m_Color_Roughness/LRO_LROC_DEM_Apollo_16_15m_Color_Roughness.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_15m_Color_Roughness/LRO_LROC_DEM_Apollo_16_15m_Color_Roughness.asset deleted file mode 100644 index 0ebe26601b..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_15m_Color_Roughness/LRO_LROC_DEM_Apollo_16_15m_Color_Roughness.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrRoughness_15m_09S015E_150cmp", - Name = [[LRO LROC DEM, Apollo 16, 15m Color Roughness]], - FilePath = asset.localResource("LRO_NAC_ClrRoughness_15m_09S015E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Apollo 16, 15m Color Roughness]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrRoughness_15m_09S015E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Apollo 16, 15m Color Roughness layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_09S015E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_09S015E_150cmp.vrt deleted file mode 100644 index 131d8be35b..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_09S015E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-9],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrRoughness_15m_09S015E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrRoughness_15m_09S015E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrRoughness_15m_09S015E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrRoughness_15m_09S015E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Apollo_16_15m_Color_Roughness_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Apollo_16_15m_Color_Roughness_Hazard.asset deleted file mode 100644 index 280c6a5164..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Apollo_16_15m_Color_Roughness_Hazard.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrRoughnessHaz_15m_09S015E_150cmp", - Name = [[LRO LROC DEM, Apollo 16, 15m Color Roughness Hazard]], - FilePath = asset.localResource("LRO_NAC_ClrRoughnessHaz_15m_09S015E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Apollo 16, 15m Color Roughness Hazard]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrRoughnessHaz_15m_09S015E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Apollo 16, 15m Color Roughness Hazard layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_09S015E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_09S015E_150cmp.vrt deleted file mode 100644 index 4da3391499..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_09S015E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-9],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrRoughnessHaz_15m_09S015E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrRoughnessHaz_15m_09S015E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrRoughnessHaz_15m_09S015E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrRoughnessHaz_15m_09S015E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_09S015E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_09S015E_150cmp.wms deleted file mode 100644 index cea9c71db2..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_09S015E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrRoughnessHaz_15m_09S015E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-9],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_15m_Color_Slope/LRO_LROC_DEM_Apollo_16_15m_Color_Slope.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_15m_Color_Slope/LRO_LROC_DEM_Apollo_16_15m_Color_Slope.asset deleted file mode 100644 index 9b34d1de12..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_15m_Color_Slope/LRO_LROC_DEM_Apollo_16_15m_Color_Slope.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrSlope_15m_09S015E_150cmp", - Name = [[LRO LROC DEM, Apollo 16, 15m Color Slope]], - FilePath = asset.localResource("LRO_NAC_ClrSlope_15m_09S015E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Apollo 16, 15m Color Slope]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrSlope_15m_09S015E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Apollo 16, 15m Color Slope layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_15m_Color_Slope/LRO_NAC_ClrSlope_15m_09S015E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_15m_Color_Slope/LRO_NAC_ClrSlope_15m_09S015E_150cmp.vrt deleted file mode 100644 index 79bee06c33..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_15m_Color_Slope/LRO_NAC_ClrSlope_15m_09S015E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrSlope_15m_09S015E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrSlope_15m_09S015E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrSlope_15m_09S015E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrSlope_15m_09S015E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_15m_Color_Slope/LRO_NAC_ClrSlope_15m_09S015E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_15m_Color_Slope/LRO_NAC_ClrSlope_15m_09S015E_150cmp.wms deleted file mode 100644 index f0151f3333..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_15m_Color_Slope/LRO_NAC_ClrSlope_15m_09S015E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrSlope_15m_09S015E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_15m_Color_Slope_Hazard/LRO_LROC_DEM_Apollo_16_15m_Color_Slope_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_15m_Color_Slope_Hazard/LRO_LROC_DEM_Apollo_16_15m_Color_Slope_Hazard.asset deleted file mode 100644 index 6fb7705321..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_15m_Color_Slope_Hazard/LRO_LROC_DEM_Apollo_16_15m_Color_Slope_Hazard.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrSlopeHaz_15m_09S015E_150cmp", - Name = [[LRO LROC DEM, Apollo 16, 15m Color Slope Hazard]], - FilePath = asset.localResource("LRO_NAC_ClrSlopeHaz_15m_09S015E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Apollo 16, 15m Color Slope Hazard]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrSlopeHaz_15m_09S015E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Apollo 16, 15m Color Slope Hazard layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_09S015E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_09S015E_150cmp.vrt deleted file mode 100644 index 12c9a60db6..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_09S015E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrSlopeHaz_15m_09S015E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrSlopeHaz_15m_09S015E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrSlopeHaz_15m_09S015E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrSlopeHaz_15m_09S015E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_09S015E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_09S015E_150cmp.wms deleted file mode 100644 index 5b4f87d13a..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_09S015E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrSlopeHaz_15m_09S015E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_3m_Color_Roughness/LRO_LROC_DEM_Apollo_16_3m_Color_Roughness.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_3m_Color_Roughness/LRO_LROC_DEM_Apollo_16_3m_Color_Roughness.asset deleted file mode 100644 index c0a8059968..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_3m_Color_Roughness/LRO_LROC_DEM_Apollo_16_3m_Color_Roughness.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrRoughness_3m_09S015E_150cmp", - Name = [[LRO LROC DEM, Apollo 16, 3m Color Roughness]], - FilePath = asset.localResource("LRO_NAC_ClrRoughness_3m_09S015E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Apollo 16, 3m Color Roughness]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrRoughness_3m_09S015E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Apollo 16, 3m Color Roughness layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_09S015E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_09S015E_150cmp.vrt deleted file mode 100644 index 901162424a..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_09S015E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrRoughness_3m_09S015E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrRoughness_3m_09S015E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrRoughness_3m_09S015E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrRoughness_3m_09S015E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_09S015E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_09S015E_150cmp.wms deleted file mode 100644 index f2867910f4..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_09S015E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrRoughness_3m_09S015E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_3m_Color_Roughness_Hazard/LRO_LROC_DEM_Apollo_16_3m_Color_Roughness_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_3m_Color_Roughness_Hazard/LRO_LROC_DEM_Apollo_16_3m_Color_Roughness_Hazard.asset deleted file mode 100644 index dd422cc55e..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_3m_Color_Roughness_Hazard/LRO_LROC_DEM_Apollo_16_3m_Color_Roughness_Hazard.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrRoughnessHaz_3m_09S015E_150cmp", - Name = [[LRO LROC DEM, Apollo 16, 3m Color Roughness Hazard]], - FilePath = asset.localResource("LRO_NAC_ClrRoughnessHaz_3m_09S015E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Apollo 16, 3m Color Roughness Hazard]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrRoughnessHaz_3m_09S015E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Apollo 16, 3m Color Roughness Hazard layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_09S015E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_09S015E_150cmp.vrt deleted file mode 100644 index f8772f853d..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_09S015E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-9],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrRoughnessHaz_3m_09S015E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrRoughnessHaz_3m_09S015E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrRoughnessHaz_3m_09S015E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrRoughnessHaz_3m_09S015E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_09S015E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_09S015E_150cmp.wms deleted file mode 100644 index af365c632c..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_09S015E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrRoughnessHaz_3m_09S015E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-9],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_3m_Color_Slope/LRO_LROC_DEM_Apollo_16_3m_Color_Slope.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_3m_Color_Slope/LRO_LROC_DEM_Apollo_16_3m_Color_Slope.asset deleted file mode 100644 index 7b28bdc8f2..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_3m_Color_Slope/LRO_LROC_DEM_Apollo_16_3m_Color_Slope.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrSlope_3m_09S015E_150cmp", - Name = [[LRO LROC DEM, Apollo 16, 3m Color Slope]], - FilePath = asset.localResource("LRO_NAC_ClrSlope_3m_09S015E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Apollo 16, 3m Color Slope]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrSlope_3m_09S015E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Apollo 16, 3m Color Slope layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_3m_Color_Slope/LRO_NAC_ClrSlope_3m_09S015E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_3m_Color_Slope/LRO_NAC_ClrSlope_3m_09S015E_150cmp.vrt deleted file mode 100644 index 3f4232f666..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_3m_Color_Slope/LRO_NAC_ClrSlope_3m_09S015E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-9],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrSlope_3m_09S015E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrSlope_3m_09S015E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrSlope_3m_09S015E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrSlope_3m_09S015E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_3m_Color_Slope/LRO_NAC_ClrSlope_3m_09S015E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_3m_Color_Slope/LRO_NAC_ClrSlope_3m_09S015E_150cmp.wms deleted file mode 100644 index b60701ac25..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_3m_Color_Slope/LRO_NAC_ClrSlope_3m_09S015E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrSlope_3m_09S015E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-9],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_3m_Color_Slope_Hazard/LRO_LROC_DEM_Apollo_16_3m_Color_Slope_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_3m_Color_Slope_Hazard/LRO_LROC_DEM_Apollo_16_3m_Color_Slope_Hazard.asset deleted file mode 100644 index 1544b32104..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_3m_Color_Slope_Hazard/LRO_LROC_DEM_Apollo_16_3m_Color_Slope_Hazard.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrSlopeHaz_3m_09S015E_150cmp", - Name = [[LRO LROC DEM, Apollo 16, 3m Color Slope Hazard]], - FilePath = asset.localResource("LRO_NAC_ClrSlopeHaz_3m_09S015E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Apollo 16, 3m Color Slope Hazard]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrSlopeHaz_3m_09S015E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Apollo 16, 3m Color Slope Hazard layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_09S015E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_09S015E_150cmp.vrt deleted file mode 100644 index 06113acbe4..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_09S015E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrSlopeHaz_3m_09S015E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrSlopeHaz_3m_09S015E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrSlopeHaz_3m_09S015E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrSlopeHaz_3m_09S015E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_09S015E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_09S015E_150cmp.wms deleted file mode 100644 index b54568ff38..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_09S015E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrSlopeHaz_3m_09S015E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_ColorHillshade/LRO_LROC_DEM_Apollo_16_ColorHillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_ColorHillshade/LRO_LROC_DEM_Apollo_16_ColorHillshade.asset deleted file mode 100644 index 90cc3e37bb..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_ColorHillshade/LRO_LROC_DEM_Apollo_16_ColorHillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrShade_09S015E_150cmp", - Name = [[LRO LROC DEM, Apollo 16, ColorHillshade]], - FilePath = asset.localResource("LRO_NAC_ClrShade_09S015E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Apollo 16, ColorHillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrShade_09S015E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Apollo 16, ColorHillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_ColorHillshade/LRO_NAC_ClrShade_09S015E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_ColorHillshade/LRO_NAC_ClrShade_09S015E_150cmp.vrt deleted file mode 100644 index fec299621a..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_ColorHillshade/LRO_NAC_ClrShade_09S015E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-9],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrShade_09S015E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrShade_09S015E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrShade_09S015E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrShade_09S015E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_ColorHillshade/LRO_NAC_ClrShade_09S015E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_ColorHillshade/LRO_NAC_ClrShade_09S015E_150cmp.wms deleted file mode 100644 index a8c4c20d14..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_ColorHillshade/LRO_NAC_ClrShade_09S015E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrShade_09S015E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-9],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_ColorHillshade_Slope/LRO_LROC_DEM_Apollo_16_ColorHillshade_Slope.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_ColorHillshade_Slope/LRO_LROC_DEM_Apollo_16_ColorHillshade_Slope.asset deleted file mode 100644 index a10ab7c4dc..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_ColorHillshade_Slope/LRO_LROC_DEM_Apollo_16_ColorHillshade_Slope.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Slope_09S015E_150cmp", - Name = [[LRO LROC DEM, Apollo 16, ColorHillshade Slope]], - FilePath = asset.localResource("LRO_NAC_Slope_09S015E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Apollo 16, ColorHillshade Slope]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Slope_09S015E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Apollo 16, ColorHillshade Slope layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_ColorHillshade_Slope/LRO_NAC_Slope_09S015E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_ColorHillshade_Slope/LRO_NAC_Slope_09S015E_150cmp.vrt deleted file mode 100644 index 24894f1210..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_ColorHillshade_Slope/LRO_NAC_Slope_09S015E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-9],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_Slope_09S015E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_Slope_09S015E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_Slope_09S015E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_Slope_09S015E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_ColorHillshade_Slope/LRO_NAC_Slope_09S015E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_ColorHillshade_Slope/LRO_NAC_Slope_09S015E_150cmp.wms deleted file mode 100644 index f74c41fcd4..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_ColorHillshade_Slope/LRO_NAC_Slope_09S015E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Slope_09S015E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-9],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_Colorized_Confidence/LRO_LROC_DEM_Apollo_16_Colorized_Confidence.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_Colorized_Confidence/LRO_LROC_DEM_Apollo_16_Colorized_Confidence.asset deleted file mode 100644 index dde54b17f1..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_Colorized_Confidence/LRO_LROC_DEM_Apollo_16_Colorized_Confidence.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrConf_09S015E_150cmp", - Name = [[LRO LROC DEM, Apollo 16, Colorized Confidence]], - FilePath = asset.localResource("LRO_NAC_ClrConf_09S015E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Apollo 16, Colorized Confidence]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrConf_09S015E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Apollo 16, Colorized Confidence layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_Colorized_Confidence/LRO_NAC_ClrConf_09S015E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_Colorized_Confidence/LRO_NAC_ClrConf_09S015E_150cmp.vrt deleted file mode 100644 index 45baa9e739..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_Colorized_Confidence/LRO_NAC_ClrConf_09S015E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrConf_09S015E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrConf_09S015E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrConf_09S015E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrConf_09S015E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_Colorized_Confidence/LRO_NAC_ClrConf_09S015E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_Colorized_Confidence/LRO_NAC_ClrConf_09S015E_150cmp.wms deleted file mode 100644 index da844cf451..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_Colorized_Confidence/LRO_NAC_ClrConf_09S015E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrConf_09S015E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_Grayscale/LRO_LROC_DEM_Apollo_16_Grayscale.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_Grayscale/LRO_LROC_DEM_Apollo_16_Grayscale.asset deleted file mode 100644 index b9ab65ba6c..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_Grayscale/LRO_LROC_DEM_Apollo_16_Grayscale.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Gray_09S015E_150cmp", - Name = [[LRO LROC DEM, Apollo 16, Grayscale]], - FilePath = asset.localResource("LRO_NAC_Gray_09S015E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Apollo 16, Grayscale]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Gray_09S015E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Apollo 16, Grayscale layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_Grayscale/LRO_NAC_Gray_09S015E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_Grayscale/LRO_NAC_Gray_09S015E_150cmp.vrt deleted file mode 100644 index 81efebd8b6..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_Grayscale/LRO_NAC_Gray_09S015E_150cmp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Gray - - LRO_NAC_Gray_09S015E_150cmp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Gray_09S015E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_Grayscale/LRO_NAC_Gray_09S015E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_Grayscale/LRO_NAC_Gray_09S015E_150cmp.wms deleted file mode 100644 index 4800adf28a..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_Grayscale/LRO_NAC_Gray_09S015E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Gray_09S015E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 1 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_Hillshade/LRO_LROC_DEM_Apollo_16_Hillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_Hillshade/LRO_LROC_DEM_Apollo_16_Hillshade.asset deleted file mode 100644 index 442a4e9ce5..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_Hillshade/LRO_LROC_DEM_Apollo_16_Hillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Shade_09S015E_150cmp", - Name = [[LRO LROC DEM, Apollo 16, Hillshade]], - FilePath = asset.localResource("LRO_NAC_Shade_09S015E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Apollo 16, Hillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Shade_09S015E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Apollo 16, Hillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_Hillshade/LRO_NAC_Shade_09S015E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_Hillshade/LRO_NAC_Shade_09S015E_150cmp.vrt deleted file mode 100644 index b6f103aa58..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_Hillshade/LRO_NAC_Shade_09S015E_150cmp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Gray - - LRO_NAC_Shade_09S015E_150cmp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Shade_09S015E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_Hillshade/LRO_NAC_Shade_09S015E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_Hillshade/LRO_NAC_Shade_09S015E_150cmp.wms deleted file mode 100644 index cbd2177f2d..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_16_Hillshade/LRO_NAC_Shade_09S015E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Shade_09S015E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 1 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_15m_Color_Roughness/LRO_LROC_DEM_Apollo_Basin_15m_Color_Roughness.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_15m_Color_Roughness/LRO_LROC_DEM_Apollo_Basin_15m_Color_Roughness.asset deleted file mode 100644 index d19c665c11..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_15m_Color_Roughness/LRO_LROC_DEM_Apollo_Basin_15m_Color_Roughness.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrRoughness_15m_37S206E_150cmp", - Name = [[LRO LROC DEM, Apollo Basin, 15m Color Roughness]], - FilePath = asset.localResource("LRO_NAC_ClrRoughness_15m_37S206E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Apollo Basin, 15m Color Roughness]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrRoughness_15m_37S206E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Apollo Basin, 15m Color Roughness layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_37S206E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_37S206E_150cmp.vrt deleted file mode 100644 index 2c100d46e9..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_37S206E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrRoughness_15m_37S206E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrRoughness_15m_37S206E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrRoughness_15m_37S206E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrRoughness_15m_37S206E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Apollo_Basin_15m_Color_Roughness_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Apollo_Basin_15m_Color_Roughness_Hazard.asset deleted file mode 100644 index 0ed5394156..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Apollo_Basin_15m_Color_Roughness_Hazard.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrRoughnessHaz_15m_37S206E_150cmp", - Name = [[LRO LROC DEM, Apollo Basin, 15m Color Roughness Hazard]], - FilePath = asset.localResource("LRO_NAC_ClrRoughnessHaz_15m_37S206E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Apollo Basin, 15m Color Roughness Hazard]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrRoughnessHaz_15m_37S206E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Apollo Basin, 15m Color Roughness Hazard layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_37S206E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_37S206E_150cmp.vrt deleted file mode 100644 index ba11e1027e..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_37S206E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular_MOON_37S",GEOGCS["GCS_MOON",DATUM["MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-37],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrRoughnessHaz_15m_37S206E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrRoughnessHaz_15m_37S206E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrRoughnessHaz_15m_37S206E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrRoughnessHaz_15m_37S206E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_37S206E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_37S206E_150cmp.wms deleted file mode 100644 index b2bef8ae9a..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_37S206E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrRoughnessHaz_15m_37S206E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular_MOON_37S",GEOGCS["GCS_MOON",DATUM["MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-37],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_15m_Color_Slope/LRO_LROC_DEM_Apollo_Basin_15m_Color_Slope.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_15m_Color_Slope/LRO_LROC_DEM_Apollo_Basin_15m_Color_Slope.asset deleted file mode 100644 index 829c7125ec..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_15m_Color_Slope/LRO_LROC_DEM_Apollo_Basin_15m_Color_Slope.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrSlope_15m_37S206E_150cmp", - Name = [[LRO LROC DEM, Apollo Basin, 15m Color Slope]], - FilePath = asset.localResource("LRO_NAC_ClrSlope_15m_37S206E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Apollo Basin, 15m Color Slope]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrSlope_15m_37S206E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Apollo Basin, 15m Color Slope layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_15m_Color_Slope/LRO_NAC_ClrSlope_15m_37S206E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_15m_Color_Slope/LRO_NAC_ClrSlope_15m_37S206E_150cmp.vrt deleted file mode 100644 index 289abd92d8..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_15m_Color_Slope/LRO_NAC_ClrSlope_15m_37S206E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular_MOON_37S",GEOGCS["GCS_MOON",DATUM["MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-37],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrSlope_15m_37S206E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrSlope_15m_37S206E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrSlope_15m_37S206E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrSlope_15m_37S206E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_15m_Color_Slope/LRO_NAC_ClrSlope_15m_37S206E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_15m_Color_Slope/LRO_NAC_ClrSlope_15m_37S206E_150cmp.wms deleted file mode 100644 index 3f4ee73aca..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_15m_Color_Slope/LRO_NAC_ClrSlope_15m_37S206E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrSlope_15m_37S206E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular_MOON_37S",GEOGCS["GCS_MOON",DATUM["MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-37],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_15m_Color_Slope_Hazard/LRO_LROC_DEM_Apollo_Basin_15m_Color_Slope_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_15m_Color_Slope_Hazard/LRO_LROC_DEM_Apollo_Basin_15m_Color_Slope_Hazard.asset deleted file mode 100644 index 978187cd31..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_15m_Color_Slope_Hazard/LRO_LROC_DEM_Apollo_Basin_15m_Color_Slope_Hazard.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrSlopeHaz_15m_37S206E_150cmp", - Name = [[LRO LROC DEM, Apollo Basin, 15m Color Slope Hazard]], - FilePath = asset.localResource("LRO_NAC_ClrSlopeHaz_15m_37S206E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Apollo Basin, 15m Color Slope Hazard]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrSlopeHaz_15m_37S206E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Apollo Basin, 15m Color Slope Hazard layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_37S206E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_37S206E_150cmp.vrt deleted file mode 100644 index e91ef5158e..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_37S206E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular_MOON_37S",GEOGCS["GCS_MOON",DATUM["MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-37],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrSlopeHaz_15m_37S206E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrSlopeHaz_15m_37S206E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrSlopeHaz_15m_37S206E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrSlopeHaz_15m_37S206E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_37S206E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_37S206E_150cmp.wms deleted file mode 100644 index 4e7cda039a..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_37S206E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrSlopeHaz_15m_37S206E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular_MOON_37S",GEOGCS["GCS_MOON",DATUM["MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-37],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_3m_Color_Roughness/LRO_LROC_DEM_Apollo_Basin_3m_Color_Roughness.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_3m_Color_Roughness/LRO_LROC_DEM_Apollo_Basin_3m_Color_Roughness.asset deleted file mode 100644 index 0d92cbdf37..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_3m_Color_Roughness/LRO_LROC_DEM_Apollo_Basin_3m_Color_Roughness.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrRoughness_3m_37S206E_150cmp", - Name = [[LRO LROC DEM, Apollo Basin, 3m Color Roughness]], - FilePath = asset.localResource("LRO_NAC_ClrRoughness_3m_37S206E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Apollo Basin, 3m Color Roughness]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrRoughness_3m_37S206E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Apollo Basin, 3m Color Roughness layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_37S206E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_37S206E_150cmp.vrt deleted file mode 100644 index 641c6f9572..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_37S206E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrRoughness_3m_37S206E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrRoughness_3m_37S206E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrRoughness_3m_37S206E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrRoughness_3m_37S206E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_37S206E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_37S206E_150cmp.wms deleted file mode 100644 index 349c5dae5a..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_37S206E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrRoughness_3m_37S206E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_3m_Color_Roughness_Hazard/LRO_LROC_DEM_Apollo_Basin_3m_Color_Roughness_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_3m_Color_Roughness_Hazard/LRO_LROC_DEM_Apollo_Basin_3m_Color_Roughness_Hazard.asset deleted file mode 100644 index 7c7f04bfaf..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_3m_Color_Roughness_Hazard/LRO_LROC_DEM_Apollo_Basin_3m_Color_Roughness_Hazard.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrRoughnessHaz_3m_37S206E_150cmp", - Name = [[LRO LROC DEM, Apollo Basin, 3m Color Roughness Hazard]], - FilePath = asset.localResource("LRO_NAC_ClrRoughnessHaz_3m_37S206E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Apollo Basin, 3m Color Roughness Hazard]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrRoughnessHaz_3m_37S206E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Apollo Basin, 3m Color Roughness Hazard layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_37S206E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_37S206E_150cmp.vrt deleted file mode 100644 index 34d7d1eae2..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_37S206E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrRoughnessHaz_3m_37S206E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrRoughnessHaz_3m_37S206E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrRoughnessHaz_3m_37S206E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrRoughnessHaz_3m_37S206E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_37S206E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_37S206E_150cmp.wms deleted file mode 100644 index 80eaa085c0..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_37S206E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrRoughnessHaz_3m_37S206E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_3m_Color_Slope/LRO_LROC_DEM_Apollo_Basin_3m_Color_Slope.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_3m_Color_Slope/LRO_LROC_DEM_Apollo_Basin_3m_Color_Slope.asset deleted file mode 100644 index 028f7b99d8..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_3m_Color_Slope/LRO_LROC_DEM_Apollo_Basin_3m_Color_Slope.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrSlope_3m_37S206E_150cmp", - Name = [[LRO LROC DEM, Apollo Basin, 3m Color Slope]], - FilePath = asset.localResource("LRO_NAC_ClrSlope_3m_37S206E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Apollo Basin, 3m Color Slope]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrSlope_3m_37S206E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Apollo Basin, 3m Color Slope layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_3m_Color_Slope/LRO_NAC_ClrSlope_3m_37S206E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_3m_Color_Slope/LRO_NAC_ClrSlope_3m_37S206E_150cmp.vrt deleted file mode 100644 index fac99fbeea..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_3m_Color_Slope/LRO_NAC_ClrSlope_3m_37S206E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular_MOON_37S",GEOGCS["GCS_MOON",DATUM["MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-37],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrSlope_3m_37S206E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrSlope_3m_37S206E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrSlope_3m_37S206E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrSlope_3m_37S206E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_3m_Color_Slope/LRO_NAC_ClrSlope_3m_37S206E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_3m_Color_Slope/LRO_NAC_ClrSlope_3m_37S206E_150cmp.wms deleted file mode 100644 index b58b2f9e44..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_3m_Color_Slope/LRO_NAC_ClrSlope_3m_37S206E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrSlope_3m_37S206E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular_MOON_37S",GEOGCS["GCS_MOON",DATUM["MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-37],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_3m_Color_Slope_Hazard/LRO_LROC_DEM_Apollo_Basin_3m_Color_Slope_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_3m_Color_Slope_Hazard/LRO_LROC_DEM_Apollo_Basin_3m_Color_Slope_Hazard.asset deleted file mode 100644 index e40e33feb2..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_3m_Color_Slope_Hazard/LRO_LROC_DEM_Apollo_Basin_3m_Color_Slope_Hazard.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrSlopeHaz_3m_37S206E_150cmp", - Name = [[LRO LROC DEM, Apollo Basin, 3m Color Slope Hazard]], - FilePath = asset.localResource("LRO_NAC_ClrSlopeHaz_3m_37S206E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Apollo Basin, 3m Color Slope Hazard]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrSlopeHaz_3m_37S206E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Apollo Basin, 3m Color Slope Hazard layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_37S206E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_37S206E_150cmp.vrt deleted file mode 100644 index b3ccc9b054..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_37S206E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular_MOON_37S",GEOGCS["GCS_MOON",DATUM["MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-37],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrSlopeHaz_3m_37S206E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrSlopeHaz_3m_37S206E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrSlopeHaz_3m_37S206E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrSlopeHaz_3m_37S206E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_37S206E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_37S206E_150cmp.wms deleted file mode 100644 index f10316a292..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_37S206E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrSlopeHaz_3m_37S206E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular_MOON_37S",GEOGCS["GCS_MOON",DATUM["MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-37],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_ColorHillshade/LRO_LROC_DEM_Apollo_Basin_ColorHillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_ColorHillshade/LRO_LROC_DEM_Apollo_Basin_ColorHillshade.asset deleted file mode 100644 index a90127180d..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_ColorHillshade/LRO_LROC_DEM_Apollo_Basin_ColorHillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrShade_37S206E_150cmp", - Name = [[LRO LROC DEM, Apollo Basin, ColorHillshade]], - FilePath = asset.localResource("LRO_NAC_ClrShade_37S206E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Apollo Basin, ColorHillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrShade_37S206E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Apollo Basin, ColorHillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_ColorHillshade/LRO_NAC_ClrShade_37S206E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_ColorHillshade/LRO_NAC_ClrShade_37S206E_150cmp.vrt deleted file mode 100644 index 90b6ef0379..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_ColorHillshade/LRO_NAC_ClrShade_37S206E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular_MOON_37S",GEOGCS["GCS_MOON",DATUM["MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",0],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrShade_37S206E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrShade_37S206E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrShade_37S206E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrShade_37S206E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_ColorHillshade/LRO_NAC_ClrShade_37S206E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_ColorHillshade/LRO_NAC_ClrShade_37S206E_150cmp.wms deleted file mode 100644 index 2df1ce9c91..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_ColorHillshade/LRO_NAC_ClrShade_37S206E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrShade_37S206E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular_MOON_37S",GEOGCS["GCS_MOON",DATUM["MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",0],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_Colorized_Confidence/LRO_LROC_DEM_Apollo_Basin_Colorized_Confidence.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_Colorized_Confidence/LRO_LROC_DEM_Apollo_Basin_Colorized_Confidence.asset deleted file mode 100644 index 9534fccde6..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_Colorized_Confidence/LRO_LROC_DEM_Apollo_Basin_Colorized_Confidence.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrConf_37S206E_150cmp", - Name = [[LRO LROC DEM, Apollo Basin, Colorized Confidence]], - FilePath = asset.localResource("LRO_NAC_ClrConf_37S206E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Apollo Basin, Colorized Confidence]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrConf_37S206E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Apollo Basin, Colorized Confidence layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_Colorized_Confidence/LRO_NAC_ClrConf_37S206E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_Colorized_Confidence/LRO_NAC_ClrConf_37S206E_150cmp.vrt deleted file mode 100644 index c38cbe6d81..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_Colorized_Confidence/LRO_NAC_ClrConf_37S206E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrConf_37S206E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrConf_37S206E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrConf_37S206E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrConf_37S206E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_Colorized_Confidence/LRO_NAC_ClrConf_37S206E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_Colorized_Confidence/LRO_NAC_ClrConf_37S206E_150cmp.wms deleted file mode 100644 index f7b18af5c6..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_Colorized_Confidence/LRO_NAC_ClrConf_37S206E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrConf_37S206E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_Colorized_Slope/LRO_LROC_DEM_Apollo_Basin_Colorized_Slope.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_Colorized_Slope/LRO_LROC_DEM_Apollo_Basin_Colorized_Slope.asset deleted file mode 100644 index aeb5f45108..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_Colorized_Slope/LRO_LROC_DEM_Apollo_Basin_Colorized_Slope.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Slope_37S206E_150cmp", - Name = [[LRO LROC DEM, Apollo Basin, Colorized Slope]], - FilePath = asset.localResource("LRO_NAC_Slope_37S206E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Apollo Basin, Colorized Slope]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Slope_37S206E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Apollo Basin, Colorized Slope layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_Colorized_Slope/LRO_NAC_Slope_37S206E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_Colorized_Slope/LRO_NAC_Slope_37S206E_150cmp.vrt deleted file mode 100644 index f76bb9d80e..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_Colorized_Slope/LRO_NAC_Slope_37S206E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular_MOON_37S",GEOGCS["GCS_MOON",DATUM["MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",0],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_Slope_37S206E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_Slope_37S206E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_Slope_37S206E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_Slope_37S206E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_Colorized_Slope/LRO_NAC_Slope_37S206E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_Colorized_Slope/LRO_NAC_Slope_37S206E_150cmp.wms deleted file mode 100644 index f63a506b95..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_Colorized_Slope/LRO_NAC_Slope_37S206E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Slope_37S206E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular_MOON_37S",GEOGCS["GCS_MOON",DATUM["MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",0],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_Grayscale/LRO_LROC_DEM_Apollo_Basin_Grayscale.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_Grayscale/LRO_LROC_DEM_Apollo_Basin_Grayscale.asset deleted file mode 100644 index 19bc290c5d..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_Grayscale/LRO_LROC_DEM_Apollo_Basin_Grayscale.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Gray_37S206E_150cmp", - Name = [[LRO LROC DEM, Apollo Basin, Grayscale]], - FilePath = asset.localResource("LRO_NAC_Gray_37S206E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Apollo Basin, Grayscale]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Gray_37S206E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Apollo Basin, Grayscale layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_Grayscale/LRO_NAC_Gray_37S206E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_Grayscale/LRO_NAC_Gray_37S206E_150cmp.vrt deleted file mode 100644 index cd69d39eba..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_Grayscale/LRO_NAC_Gray_37S206E_150cmp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Gray - - LRO_NAC_Gray_37S206E_150cmp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Gray_37S206E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_Grayscale/LRO_NAC_Gray_37S206E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_Grayscale/LRO_NAC_Gray_37S206E_150cmp.wms deleted file mode 100644 index 5106303311..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_Grayscale/LRO_NAC_Gray_37S206E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Gray_37S206E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 1 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_Hillshade/LRO_LROC_DEM_Apollo_Basin_Hillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_Hillshade/LRO_LROC_DEM_Apollo_Basin_Hillshade.asset deleted file mode 100644 index 1cb1d88dd4..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_Hillshade/LRO_LROC_DEM_Apollo_Basin_Hillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Shade_37S206E_150cmp", - Name = [[LRO LROC DEM, Apollo Basin, Hillshade]], - FilePath = asset.localResource("LRO_NAC_Shade_37S206E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Apollo Basin, Hillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Shade_37S206E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Apollo Basin, Hillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_Hillshade/LRO_NAC_Shade_37S206E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_Hillshade/LRO_NAC_Shade_37S206E_150cmp.vrt deleted file mode 100644 index 7a41abcbd9..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_Hillshade/LRO_NAC_Shade_37S206E_150cmp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - PROJCS["Equirectangular_MOON_37S",GEOGCS["GCS_MOON",DATUM["MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-37],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Gray - - LRO_NAC_Shade_37S206E_150cmp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Shade_37S206E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_Hillshade/LRO_NAC_Shade_37S206E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_Hillshade/LRO_NAC_Shade_37S206E_150cmp.wms deleted file mode 100644 index 50c1393584..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Apollo_Basin_Hillshade/LRO_NAC_Shade_37S206E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Shade_37S206E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular_MOON_37S",GEOGCS["GCS_MOON",DATUM["MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-37],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 1 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_15m_Color_Roughness/LRO_LROC_DEM_Aristarchus_1_15m_Color_Roughness.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_15m_Color_Roughness/LRO_LROC_DEM_Aristarchus_1_15m_Color_Roughness.asset deleted file mode 100644 index 6392b08cad..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_15m_Color_Roughness/LRO_LROC_DEM_Aristarchus_1_15m_Color_Roughness.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrRoughness_15m_25N311E_2mp", - Name = [[LRO LROC DEM, Aristarchus 1, 15m Color Roughness]], - FilePath = asset.localResource("LRO_NAC_ClrRoughness_15m_25N311E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Aristarchus 1, 15m Color Roughness]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrRoughness_15m_25N311E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Aristarchus 1, 15m Color Roughness layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_25N311E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_25N311E_2mp.vrt deleted file mode 100644 index d398ff6969..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_25N311E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",25],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrRoughness_15m_25N311E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrRoughness_15m_25N311E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrRoughness_15m_25N311E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrRoughness_15m_25N311E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Aristarchus_1_15m_Color_Roughness_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Aristarchus_1_15m_Color_Roughness_Hazard.asset deleted file mode 100644 index 791b538c5b..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Aristarchus_1_15m_Color_Roughness_Hazard.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrRoughnessHaz_15m_25N311E_2mp", - Name = [[LRO LROC DEM, Aristarchus 1, 15m Color Roughness Hazard]], - FilePath = asset.localResource("LRO_NAC_ClrRoughnessHaz_15m_25N311E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Aristarchus 1, 15m Color Roughness Hazard]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrRoughnessHaz_15m_25N311E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Aristarchus 1, 15m Color Roughness Hazard layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_25N311E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_25N311E_2mp.vrt deleted file mode 100644 index 556c7ca693..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_25N311E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",25],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrRoughnessHaz_15m_25N311E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrRoughnessHaz_15m_25N311E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrRoughnessHaz_15m_25N311E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrRoughnessHaz_15m_25N311E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_25N311E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_25N311E_2mp.wms deleted file mode 100644 index 17085ba32b..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_25N311E_2mp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrRoughnessHaz_15m_25N311E_2mp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",25],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_15m_Color_Slope/LRO_LROC_DEM_Aristarchus_1_15m_Color_Slope.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_15m_Color_Slope/LRO_LROC_DEM_Aristarchus_1_15m_Color_Slope.asset deleted file mode 100644 index b728d533f1..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_15m_Color_Slope/LRO_LROC_DEM_Aristarchus_1_15m_Color_Slope.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrSlope_15m_25N311E_2mp", - Name = [[LRO LROC DEM, Aristarchus 1, 15m Color Slope]], - FilePath = asset.localResource("LRO_NAC_ClrSlope_15m_25N311E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Aristarchus 1, 15m Color Slope]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrSlope_15m_25N311E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Aristarchus 1, 15m Color Slope layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_15m_Color_Slope/LRO_NAC_ClrSlope_15m_25N311E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_15m_Color_Slope/LRO_NAC_ClrSlope_15m_25N311E_2mp.vrt deleted file mode 100644 index efe594b238..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_15m_Color_Slope/LRO_NAC_ClrSlope_15m_25N311E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrSlope_15m_25N311E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrSlope_15m_25N311E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrSlope_15m_25N311E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrSlope_15m_25N311E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_15m_Color_Slope/LRO_NAC_ClrSlope_15m_25N311E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_15m_Color_Slope/LRO_NAC_ClrSlope_15m_25N311E_2mp.wms deleted file mode 100644 index 244b75d0c0..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_15m_Color_Slope/LRO_NAC_ClrSlope_15m_25N311E_2mp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrSlope_15m_25N311E_2mp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_15m_Color_Slope_Hazard/LRO_LROC_DEM_Aristarchus_1_15m_Color_Slope_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_15m_Color_Slope_Hazard/LRO_LROC_DEM_Aristarchus_1_15m_Color_Slope_Hazard.asset deleted file mode 100644 index 072cac0b27..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_15m_Color_Slope_Hazard/LRO_LROC_DEM_Aristarchus_1_15m_Color_Slope_Hazard.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrSlopeHaz_15m_25N311E_2mp", - Name = [[LRO LROC DEM, Aristarchus 1, 15m Color Slope Hazard]], - FilePath = asset.localResource("LRO_NAC_ClrSlopeHaz_15m_25N311E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Aristarchus 1, 15m Color Slope Hazard]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrSlopeHaz_15m_25N311E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Aristarchus 1, 15m Color Slope Hazard layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_25N311E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_25N311E_2mp.vrt deleted file mode 100644 index 4919cc39bc..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_25N311E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",25],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrSlopeHaz_15m_25N311E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrSlopeHaz_15m_25N311E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrSlopeHaz_15m_25N311E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrSlopeHaz_15m_25N311E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_25N311E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_25N311E_2mp.wms deleted file mode 100644 index dde0ec598c..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_25N311E_2mp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrSlopeHaz_15m_25N311E_2mp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",25],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_4m_Color_Roughness/LRO_LROC_DEM_Aristarchus_1_4m_Color_Roughness.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_4m_Color_Roughness/LRO_LROC_DEM_Aristarchus_1_4m_Color_Roughness.asset deleted file mode 100644 index ef69a5a27a..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_4m_Color_Roughness/LRO_LROC_DEM_Aristarchus_1_4m_Color_Roughness.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrRoughness_4m_25N311E_2mp", - Name = [[LRO LROC DEM, Aristarchus 1, 4m Color Roughness]], - FilePath = asset.localResource("LRO_NAC_ClrRoughness_4m_25N311E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Aristarchus 1, 4m Color Roughness]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrRoughness_4m_25N311E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Aristarchus 1, 4m Color Roughness layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_4m_Color_Roughness/LRO_NAC_ClrRoughness_4m_25N311E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_4m_Color_Roughness/LRO_NAC_ClrRoughness_4m_25N311E_2mp.vrt deleted file mode 100644 index 5752249348..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_4m_Color_Roughness/LRO_NAC_ClrRoughness_4m_25N311E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",25],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrRoughness_4m_25N311E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrRoughness_4m_25N311E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrRoughness_4m_25N311E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrRoughness_4m_25N311E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_4m_Color_Roughness/LRO_NAC_ClrRoughness_4m_25N311E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_4m_Color_Roughness/LRO_NAC_ClrRoughness_4m_25N311E_2mp.wms deleted file mode 100644 index 856f3cccc8..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_4m_Color_Roughness/LRO_NAC_ClrRoughness_4m_25N311E_2mp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrRoughness_4m_25N311E_2mp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",25],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_4m_Color_Roughness_Hazard/LRO_LROC_DEM_Aristarchus_1_4m_Color_Roughness_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_4m_Color_Roughness_Hazard/LRO_LROC_DEM_Aristarchus_1_4m_Color_Roughness_Hazard.asset deleted file mode 100644 index 1906ba6979..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_4m_Color_Roughness_Hazard/LRO_LROC_DEM_Aristarchus_1_4m_Color_Roughness_Hazard.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrRoughnessHaz_4m_25N311E_2mp", - Name = [[LRO LROC DEM, Aristarchus 1, 4m Color Roughness Hazard]], - FilePath = asset.localResource("LRO_NAC_ClrRoughnessHaz_4m_25N311E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Aristarchus 1, 4m Color Roughness Hazard]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrRoughnessHaz_4m_25N311E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Aristarchus 1, 4m Color Roughness Hazard layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_4m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_4m_25N311E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_4m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_4m_25N311E_2mp.vrt deleted file mode 100644 index bb217f5a69..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_4m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_4m_25N311E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",25],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrRoughnessHaz_4m_25N311E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrRoughnessHaz_4m_25N311E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrRoughnessHaz_4m_25N311E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrRoughnessHaz_4m_25N311E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_4m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_4m_25N311E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_4m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_4m_25N311E_2mp.wms deleted file mode 100644 index 06bc8dadfa..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_4m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_4m_25N311E_2mp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrRoughnessHaz_4m_25N311E_2mp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",25],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_4m_Color_Slope/LRO_LROC_DEM_Aristarchus_1_4m_Color_Slope.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_4m_Color_Slope/LRO_LROC_DEM_Aristarchus_1_4m_Color_Slope.asset deleted file mode 100644 index 4a07e394ec..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_4m_Color_Slope/LRO_LROC_DEM_Aristarchus_1_4m_Color_Slope.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrSlope_4m_25N311E_2mp", - Name = [[LRO LROC DEM, Aristarchus 1, 4m Color Slope]], - FilePath = asset.localResource("LRO_NAC_ClrSlope_4m_25N311E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Aristarchus 1, 4m Color Slope]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrSlope_4m_25N311E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Aristarchus 1, 4m Color Slope layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_4m_Color_Slope/LRO_NAC_ClrSlope_4m_25N311E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_4m_Color_Slope/LRO_NAC_ClrSlope_4m_25N311E_2mp.vrt deleted file mode 100644 index b11f7e809d..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_4m_Color_Slope/LRO_NAC_ClrSlope_4m_25N311E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",25],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrSlope_4m_25N311E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrSlope_4m_25N311E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrSlope_4m_25N311E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrSlope_4m_25N311E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_4m_Color_Slope/LRO_NAC_ClrSlope_4m_25N311E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_4m_Color_Slope/LRO_NAC_ClrSlope_4m_25N311E_2mp.wms deleted file mode 100644 index 7b5daded85..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_4m_Color_Slope/LRO_NAC_ClrSlope_4m_25N311E_2mp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrSlope_4m_25N311E_2mp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",25],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_4m_Color_Slope_Hazard/LRO_LROC_DEM_Aristarchus_1_4m_Color_Slope_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_4m_Color_Slope_Hazard/LRO_LROC_DEM_Aristarchus_1_4m_Color_Slope_Hazard.asset deleted file mode 100644 index 26990715a7..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_4m_Color_Slope_Hazard/LRO_LROC_DEM_Aristarchus_1_4m_Color_Slope_Hazard.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrSlopeHaz_4m_25N311E_2mp", - Name = [[LRO LROC DEM, Aristarchus 1, 4m Color Slope Hazard]], - FilePath = asset.localResource("LRO_NAC_ClrSlopeHaz_4m_25N311E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Aristarchus 1, 4m Color Slope Hazard]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrSlopeHaz_4m_25N311E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Aristarchus 1, 4m Color Slope Hazard layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_4m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_4m_25N311E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_4m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_4m_25N311E_2mp.vrt deleted file mode 100644 index 1eafe5ac7e..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_4m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_4m_25N311E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrSlopeHaz_4m_25N311E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrSlopeHaz_4m_25N311E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrSlopeHaz_4m_25N311E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrSlopeHaz_4m_25N311E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_4m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_4m_25N311E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_4m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_4m_25N311E_2mp.wms deleted file mode 100644 index 42a666502a..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_4m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_4m_25N311E_2mp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrSlopeHaz_4m_25N311E_2mp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_ColorHillshade/LRO_LROC_DEM_Aristarchus_1_ColorHillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_ColorHillshade/LRO_LROC_DEM_Aristarchus_1_ColorHillshade.asset deleted file mode 100644 index 9b239f201d..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_ColorHillshade/LRO_LROC_DEM_Aristarchus_1_ColorHillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrShade_25N311E_2mp", - Name = [[LRO LROC DEM, Aristarchus 1, ColorHillshade]], - FilePath = asset.localResource("LRO_NAC_ClrShade_25N311E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Aristarchus 1, ColorHillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrShade_25N311E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Aristarchus 1, ColorHillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_ColorHillshade/LRO_NAC_ClrShade_25N311E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_ColorHillshade/LRO_NAC_ClrShade_25N311E_2mp.vrt deleted file mode 100644 index 404669bd14..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_ColorHillshade/LRO_NAC_ClrShade_25N311E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",25],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrShade_25N311E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrShade_25N311E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrShade_25N311E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrShade_25N311E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_ColorHillshade/LRO_NAC_ClrShade_25N311E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_ColorHillshade/LRO_NAC_ClrShade_25N311E_2mp.wms deleted file mode 100644 index ab2c426880..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_ColorHillshade/LRO_NAC_ClrShade_25N311E_2mp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrShade_25N311E_2mp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",25],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_ColorHillshade_Slope/LRO_LROC_DEM_Aristarchus_1_ColorHillshade_Slope.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_ColorHillshade_Slope/LRO_LROC_DEM_Aristarchus_1_ColorHillshade_Slope.asset deleted file mode 100644 index c2e10d96e8..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_ColorHillshade_Slope/LRO_LROC_DEM_Aristarchus_1_ColorHillshade_Slope.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Slope_25N311E_2mp", - Name = [[LRO LROC DEM, Aristarchus 1, ColorHillshade Slope]], - FilePath = asset.localResource("LRO_NAC_Slope_25N311E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Aristarchus 1, ColorHillshade Slope]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Slope_25N311E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Aristarchus 1, ColorHillshade Slope layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_ColorHillshade_Slope/LRO_NAC_Slope_25N311E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_ColorHillshade_Slope/LRO_NAC_Slope_25N311E_2mp.vrt deleted file mode 100644 index e2adf43979..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_ColorHillshade_Slope/LRO_NAC_Slope_25N311E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_Slope_25N311E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_Slope_25N311E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_Slope_25N311E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_Slope_25N311E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_ColorHillshade_Slope/LRO_NAC_Slope_25N311E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_ColorHillshade_Slope/LRO_NAC_Slope_25N311E_2mp.wms deleted file mode 100644 index 42d4531b80..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_ColorHillshade_Slope/LRO_NAC_Slope_25N311E_2mp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Slope_25N311E_2mp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_Colorized_Confidence/LRO_LROC_DEM_Aristarchus_1_Colorized_Confidence.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_Colorized_Confidence/LRO_LROC_DEM_Aristarchus_1_Colorized_Confidence.asset deleted file mode 100644 index 91ae51704a..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_Colorized_Confidence/LRO_LROC_DEM_Aristarchus_1_Colorized_Confidence.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrConf_25N311E_2mp", - Name = [[LRO LROC DEM, Aristarchus 1, Colorized Confidence]], - FilePath = asset.localResource("LRO_NAC_ClrConf_25N311E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Aristarchus 1, Colorized Confidence]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrConf_25N311E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Aristarchus 1, Colorized Confidence layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_Colorized_Confidence/LRO_NAC_ClrConf_25N311E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_Colorized_Confidence/LRO_NAC_ClrConf_25N311E_2mp.vrt deleted file mode 100644 index 5ef57230ce..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_Colorized_Confidence/LRO_NAC_ClrConf_25N311E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrConf_25N311E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrConf_25N311E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrConf_25N311E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrConf_25N311E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_Colorized_Confidence/LRO_NAC_ClrConf_25N311E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_Colorized_Confidence/LRO_NAC_ClrConf_25N311E_2mp.wms deleted file mode 100644 index 590b7a56b8..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_Colorized_Confidence/LRO_NAC_ClrConf_25N311E_2mp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrConf_25N311E_2mp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_Grayscale/LRO_LROC_DEM_Aristarchus_1_Grayscale.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_Grayscale/LRO_LROC_DEM_Aristarchus_1_Grayscale.asset deleted file mode 100644 index 680b07c2e1..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_Grayscale/LRO_LROC_DEM_Aristarchus_1_Grayscale.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Gray_25N311E_2mp", - Name = [[LRO LROC DEM, Aristarchus 1, Grayscale]], - FilePath = asset.localResource("LRO_NAC_Gray_25N311E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Aristarchus 1, Grayscale]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Gray_25N311E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Aristarchus 1, Grayscale layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_Grayscale/LRO_NAC_Gray_25N311E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_Grayscale/LRO_NAC_Gray_25N311E_2mp.vrt deleted file mode 100644 index 042338bccd..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_Grayscale/LRO_NAC_Gray_25N311E_2mp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Gray - - LRO_NAC_Gray_25N311E_2mp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Gray_25N311E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_Grayscale/LRO_NAC_Gray_25N311E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_Grayscale/LRO_NAC_Gray_25N311E_2mp.wms deleted file mode 100644 index c40fd2cb92..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_Grayscale/LRO_NAC_Gray_25N311E_2mp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Gray_25N311E_2mp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 1 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_Hillshade/LRO_LROC_DEM_Aristarchus_1_Hillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_Hillshade/LRO_LROC_DEM_Aristarchus_1_Hillshade.asset deleted file mode 100644 index 102aa9fa17..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_Hillshade/LRO_LROC_DEM_Aristarchus_1_Hillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Shade_25N311E_2mp", - Name = [[LRO LROC DEM, Aristarchus 1, Hillshade]], - FilePath = asset.localResource("LRO_NAC_Shade_25N311E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Aristarchus 1, Hillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Shade_25N311E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Aristarchus 1, Hillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_Hillshade/LRO_NAC_Shade_25N311E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_Hillshade/LRO_NAC_Shade_25N311E_2mp.vrt deleted file mode 100644 index 03729654eb..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_Hillshade/LRO_NAC_Shade_25N311E_2mp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",25],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Gray - - LRO_NAC_Shade_25N311E_2mp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Shade_25N311E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_Hillshade/LRO_NAC_Shade_25N311E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_Hillshade/LRO_NAC_Shade_25N311E_2mp.wms deleted file mode 100644 index 1f18e005d3..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_1_Hillshade/LRO_NAC_Shade_25N311E_2mp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Shade_25N311E_2mp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",25],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 1 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_15m_Color_Roughness/LRO_LROC_DEM_Aristarchus_2_15m_Color_Roughness.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_15m_Color_Roughness/LRO_LROC_DEM_Aristarchus_2_15m_Color_Roughness.asset deleted file mode 100644 index f0fc1ee013..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_15m_Color_Roughness/LRO_LROC_DEM_Aristarchus_2_15m_Color_Roughness.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrRoughness_15m_28N307E_150cmp", - Name = [[LRO LROC DEM, Aristarchus 2, 15m Color Roughness]], - FilePath = asset.localResource("LRO_NAC_ClrRoughness_15m_28N307E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Aristarchus 2, 15m Color Roughness]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrRoughness_15m_28N307E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Aristarchus 2, 15m Color Roughness layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_28N307E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_28N307E_150cmp.vrt deleted file mode 100644 index 76115881c6..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_28N307E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrRoughness_15m_28N307E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrRoughness_15m_28N307E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrRoughness_15m_28N307E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrRoughness_15m_28N307E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Aristarchus_2_15m_Color_Roughness_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Aristarchus_2_15m_Color_Roughness_Hazard.asset deleted file mode 100644 index e9f56c5fd5..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Aristarchus_2_15m_Color_Roughness_Hazard.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrRoughnessHaz_15m_28N307E_150cmp", - Name = [[LRO LROC DEM, Aristarchus 2, 15m Color Roughness Hazard]], - FilePath = asset.localResource("LRO_NAC_ClrRoughnessHaz_15m_28N307E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Aristarchus 2, 15m Color Roughness Hazard]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrRoughnessHaz_15m_28N307E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Aristarchus 2, 15m Color Roughness Hazard layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_28N307E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_28N307E_150cmp.vrt deleted file mode 100644 index 27a59049e1..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_28N307E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrRoughnessHaz_15m_28N307E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrRoughnessHaz_15m_28N307E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrRoughnessHaz_15m_28N307E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrRoughnessHaz_15m_28N307E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_28N307E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_28N307E_150cmp.wms deleted file mode 100644 index b6aa190947..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_28N307E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrRoughnessHaz_15m_28N307E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_15m_Color_Slope/LRO_LROC_DEM_Aristarchus_2_15m_Color_Slope.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_15m_Color_Slope/LRO_LROC_DEM_Aristarchus_2_15m_Color_Slope.asset deleted file mode 100644 index 460cbf92af..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_15m_Color_Slope/LRO_LROC_DEM_Aristarchus_2_15m_Color_Slope.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrSlope_15m_28N307E_150cmp", - Name = [[LRO LROC DEM, Aristarchus 2, 15m Color Slope]], - FilePath = asset.localResource("LRO_NAC_ClrSlope_15m_28N307E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Aristarchus 2, 15m Color Slope]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrSlope_15m_28N307E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Aristarchus 2, 15m Color Slope layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_15m_Color_Slope/LRO_NAC_ClrSlope_15m_28N307E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_15m_Color_Slope/LRO_NAC_ClrSlope_15m_28N307E_150cmp.vrt deleted file mode 100644 index 909deff37c..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_15m_Color_Slope/LRO_NAC_ClrSlope_15m_28N307E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",28],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrSlope_15m_28N307E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrSlope_15m_28N307E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrSlope_15m_28N307E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrSlope_15m_28N307E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_15m_Color_Slope/LRO_NAC_ClrSlope_15m_28N307E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_15m_Color_Slope/LRO_NAC_ClrSlope_15m_28N307E_150cmp.wms deleted file mode 100644 index 9a11e6ff7a..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_15m_Color_Slope/LRO_NAC_ClrSlope_15m_28N307E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrSlope_15m_28N307E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",28],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_15m_Color_Slope_Hazard/LRO_LROC_DEM_Aristarchus_2_15m_Color_Slope_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_15m_Color_Slope_Hazard/LRO_LROC_DEM_Aristarchus_2_15m_Color_Slope_Hazard.asset deleted file mode 100644 index 42323a01cc..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_15m_Color_Slope_Hazard/LRO_LROC_DEM_Aristarchus_2_15m_Color_Slope_Hazard.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrSlopeHaz_15m_28N307E_150cmp", - Name = [[LRO LROC DEM, Aristarchus 2, 15m Color Slope Hazard]], - FilePath = asset.localResource("LRO_NAC_ClrSlopeHaz_15m_28N307E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Aristarchus 2, 15m Color Slope Hazard]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrSlopeHaz_15m_28N307E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Aristarchus 2, 15m Color Slope Hazard layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_28N307E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_28N307E_150cmp.vrt deleted file mode 100644 index 40995ad1e6..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_28N307E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrSlopeHaz_15m_28N307E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrSlopeHaz_15m_28N307E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrSlopeHaz_15m_28N307E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrSlopeHaz_15m_28N307E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_28N307E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_28N307E_150cmp.wms deleted file mode 100644 index ae0094c5b0..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_28N307E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrSlopeHaz_15m_28N307E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_3m_Color_Roughness/LRO_LROC_DEM_Aristarchus_2_3m_Color_Roughness.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_3m_Color_Roughness/LRO_LROC_DEM_Aristarchus_2_3m_Color_Roughness.asset deleted file mode 100644 index defada21db..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_3m_Color_Roughness/LRO_LROC_DEM_Aristarchus_2_3m_Color_Roughness.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrRoughness_3m_28N307E_150cmp", - Name = [[LRO LROC DEM, Aristarchus 2, 3m Color Roughness]], - FilePath = asset.localResource("LRO_NAC_ClrRoughness_3m_28N307E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Aristarchus 2, 3m Color Roughness]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrRoughness_3m_28N307E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Aristarchus 2, 3m Color Roughness layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_28N307E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_28N307E_150cmp.vrt deleted file mode 100644 index a16b4c5a0a..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_28N307E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",28],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrRoughness_3m_28N307E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrRoughness_3m_28N307E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrRoughness_3m_28N307E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrRoughness_3m_28N307E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_28N307E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_28N307E_150cmp.wms deleted file mode 100644 index 305057972f..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_28N307E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrRoughness_3m_28N307E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",28],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_3m_Color_Roughness_Hazard/LRO_LROC_DEM_Aristarchus_2_3m_Color_Roughness_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_3m_Color_Roughness_Hazard/LRO_LROC_DEM_Aristarchus_2_3m_Color_Roughness_Hazard.asset deleted file mode 100644 index 318464bc90..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_3m_Color_Roughness_Hazard/LRO_LROC_DEM_Aristarchus_2_3m_Color_Roughness_Hazard.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrRoughnessHaz_3m_28N307E_150cmp", - Name = [[LRO LROC DEM, Aristarchus 2, 3m Color Roughness Hazard]], - FilePath = asset.localResource("LRO_NAC_ClrRoughnessHaz_3m_28N307E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Aristarchus 2, 3m Color Roughness Hazard]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrRoughnessHaz_3m_28N307E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Aristarchus 2, 3m Color Roughness Hazard layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_28N307E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_28N307E_150cmp.vrt deleted file mode 100644 index 36f23a78fe..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_28N307E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",28],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrRoughnessHaz_3m_28N307E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrRoughnessHaz_3m_28N307E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrRoughnessHaz_3m_28N307E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrRoughnessHaz_3m_28N307E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_28N307E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_28N307E_150cmp.wms deleted file mode 100644 index b180445a1b..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_28N307E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrRoughnessHaz_3m_28N307E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",28],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_3m_Color_Slope/LRO_LROC_DEM_Aristarchus_2_3m_Color_Slope.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_3m_Color_Slope/LRO_LROC_DEM_Aristarchus_2_3m_Color_Slope.asset deleted file mode 100644 index d242bf0c16..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_3m_Color_Slope/LRO_LROC_DEM_Aristarchus_2_3m_Color_Slope.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrSlope_3m_28N307E_150cmp", - Name = [[LRO LROC DEM, Aristarchus 2, 3m Color Slope]], - FilePath = asset.localResource("LRO_NAC_ClrSlope_3m_28N307E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Aristarchus 2, 3m Color Slope]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrSlope_3m_28N307E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Aristarchus 2, 3m Color Slope layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_3m_Color_Slope/LRO_NAC_ClrSlope_3m_28N307E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_3m_Color_Slope/LRO_NAC_ClrSlope_3m_28N307E_150cmp.vrt deleted file mode 100644 index 0b2e537a51..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_3m_Color_Slope/LRO_NAC_ClrSlope_3m_28N307E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",28],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrSlope_3m_28N307E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrSlope_3m_28N307E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrSlope_3m_28N307E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrSlope_3m_28N307E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_3m_Color_Slope/LRO_NAC_ClrSlope_3m_28N307E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_3m_Color_Slope/LRO_NAC_ClrSlope_3m_28N307E_150cmp.wms deleted file mode 100644 index c6d2bd4e44..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_3m_Color_Slope/LRO_NAC_ClrSlope_3m_28N307E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrSlope_3m_28N307E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",28],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_3m_Color_Slope_Hazard/LRO_LROC_DEM_Aristarchus_2_3m_Color_Slope_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_3m_Color_Slope_Hazard/LRO_LROC_DEM_Aristarchus_2_3m_Color_Slope_Hazard.asset deleted file mode 100644 index 68be0e796d..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_3m_Color_Slope_Hazard/LRO_LROC_DEM_Aristarchus_2_3m_Color_Slope_Hazard.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrSlopeHaz_3m_28N307E_150cmp", - Name = [[LRO LROC DEM, Aristarchus 2, 3m Color Slope Hazard]], - FilePath = asset.localResource("LRO_NAC_ClrSlopeHaz_3m_28N307E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Aristarchus 2, 3m Color Slope Hazard]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrSlopeHaz_3m_28N307E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Aristarchus 2, 3m Color Slope Hazard layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_28N307E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_28N307E_150cmp.vrt deleted file mode 100644 index 5d19fbc74f..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_28N307E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",28],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrSlopeHaz_3m_28N307E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrSlopeHaz_3m_28N307E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrSlopeHaz_3m_28N307E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrSlopeHaz_3m_28N307E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_28N307E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_28N307E_150cmp.wms deleted file mode 100644 index 65aee46131..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_28N307E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrSlopeHaz_3m_28N307E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",28],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_ColorHillshade/LRO_LROC_DEM_Aristarchus_2_ColorHillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_ColorHillshade/LRO_LROC_DEM_Aristarchus_2_ColorHillshade.asset deleted file mode 100644 index cf48a68003..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_ColorHillshade/LRO_LROC_DEM_Aristarchus_2_ColorHillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrShade_28N307E_150cmp", - Name = [[LRO LROC DEM, Aristarchus 2, ColorHillshade]], - FilePath = asset.localResource("LRO_NAC_ClrShade_28N307E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Aristarchus 2, ColorHillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrShade_28N307E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Aristarchus 2, ColorHillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_ColorHillshade/LRO_NAC_ClrShade_28N307E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_ColorHillshade/LRO_NAC_ClrShade_28N307E_150cmp.vrt deleted file mode 100644 index 14ba40d879..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_ColorHillshade/LRO_NAC_ClrShade_28N307E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",28],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrShade_28N307E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrShade_28N307E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrShade_28N307E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrShade_28N307E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_ColorHillshade/LRO_NAC_ClrShade_28N307E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_ColorHillshade/LRO_NAC_ClrShade_28N307E_150cmp.wms deleted file mode 100644 index 65d5a3f485..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_ColorHillshade/LRO_NAC_ClrShade_28N307E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrShade_28N307E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",28],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_Colorized_Confidence/LRO_LROC_DEM_Aristarchus_2_Colorized_Confidence.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_Colorized_Confidence/LRO_LROC_DEM_Aristarchus_2_Colorized_Confidence.asset deleted file mode 100644 index e459c08604..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_Colorized_Confidence/LRO_LROC_DEM_Aristarchus_2_Colorized_Confidence.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrConf_28N307E_150cmp", - Name = [[LRO LROC DEM, Aristarchus 2, Colorized Confidence]], - FilePath = asset.localResource("LRO_NAC_ClrConf_28N307E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Aristarchus 2, Colorized Confidence]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrConf_28N307E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Aristarchus 2, Colorized Confidence layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_Colorized_Confidence/LRO_NAC_ClrConf_28N307E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_Colorized_Confidence/LRO_NAC_ClrConf_28N307E_150cmp.vrt deleted file mode 100644 index cfa70c3862..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_Colorized_Confidence/LRO_NAC_ClrConf_28N307E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrConf_28N307E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrConf_28N307E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrConf_28N307E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrConf_28N307E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_Colorized_Confidence/LRO_NAC_ClrConf_28N307E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_Colorized_Confidence/LRO_NAC_ClrConf_28N307E_150cmp.wms deleted file mode 100644 index 3cd1abf50c..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_Colorized_Confidence/LRO_NAC_ClrConf_28N307E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrConf_28N307E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_Colorized_Slope/LRO_LROC_DEM_Aristarchus_2_Colorized_Slope.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_Colorized_Slope/LRO_LROC_DEM_Aristarchus_2_Colorized_Slope.asset deleted file mode 100644 index 139c8f4a6c..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_Colorized_Slope/LRO_LROC_DEM_Aristarchus_2_Colorized_Slope.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Slope_28N307E_150cmp", - Name = [[LRO LROC DEM, Aristarchus 2, Colorized Slope]], - FilePath = asset.localResource("LRO_NAC_Slope_28N307E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Aristarchus 2, Colorized Slope]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Slope_28N307E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Aristarchus 2, Colorized Slope layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_Colorized_Slope/LRO_NAC_Slope_28N307E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_Colorized_Slope/LRO_NAC_Slope_28N307E_150cmp.vrt deleted file mode 100644 index 1f566c0f22..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_Colorized_Slope/LRO_NAC_Slope_28N307E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",28],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_Slope_28N307E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_Slope_28N307E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_Slope_28N307E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_Slope_28N307E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_Colorized_Slope/LRO_NAC_Slope_28N307E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_Colorized_Slope/LRO_NAC_Slope_28N307E_150cmp.wms deleted file mode 100644 index caef4fcbca..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_Colorized_Slope/LRO_NAC_Slope_28N307E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Slope_28N307E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",28],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_Grayscale/LRO_LROC_DEM_Aristarchus_2_Grayscale.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_Grayscale/LRO_LROC_DEM_Aristarchus_2_Grayscale.asset deleted file mode 100644 index 699f207aa7..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_Grayscale/LRO_LROC_DEM_Aristarchus_2_Grayscale.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Gray_28N307E_150cmp", - Name = [[LRO LROC DEM, Aristarchus 2, Grayscale]], - FilePath = asset.localResource("LRO_NAC_Gray_28N307E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Aristarchus 2, Grayscale]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Gray_28N307E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Aristarchus 2, Grayscale layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_Grayscale/LRO_NAC_Gray_28N307E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_Grayscale/LRO_NAC_Gray_28N307E_150cmp.vrt deleted file mode 100644 index 2b462f6c02..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_Grayscale/LRO_NAC_Gray_28N307E_150cmp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Gray - - LRO_NAC_Gray_28N307E_150cmp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Gray_28N307E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_Grayscale/LRO_NAC_Gray_28N307E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_Grayscale/LRO_NAC_Gray_28N307E_150cmp.wms deleted file mode 100644 index e15093d83b..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_Grayscale/LRO_NAC_Gray_28N307E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Gray_28N307E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 1 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_Hillshade/LRO_LROC_DEM_Aristarchus_2_Hillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_Hillshade/LRO_LROC_DEM_Aristarchus_2_Hillshade.asset deleted file mode 100644 index 35cdd008eb..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_Hillshade/LRO_LROC_DEM_Aristarchus_2_Hillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Shade_28N307E_150cmp", - Name = [[LRO LROC DEM, Aristarchus 2, Hillshade]], - FilePath = asset.localResource("LRO_NAC_Shade_28N307E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Aristarchus 2, Hillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Shade_28N307E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Aristarchus 2, Hillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_Hillshade/LRO_NAC_Shade_28N307E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_Hillshade/LRO_NAC_Shade_28N307E_150cmp.vrt deleted file mode 100644 index a5dbce01f3..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_Hillshade/LRO_NAC_Shade_28N307E_150cmp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",28],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Gray - - LRO_NAC_Shade_28N307E_150cmp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Shade_28N307E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_Hillshade/LRO_NAC_Shade_28N307E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_Hillshade/LRO_NAC_Shade_28N307E_150cmp.wms deleted file mode 100644 index 3715cfa85d..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Aristarchus_2_Hillshade/LRO_NAC_Shade_28N307E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Shade_28N307E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",28],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 1 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_15m_Color_Roughness/LRO_LROC_DEM_Balmer_Basin_15m_Color_Roughness.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_15m_Color_Roughness/LRO_LROC_DEM_Balmer_Basin_15m_Color_Roughness.asset deleted file mode 100644 index 4734729d69..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_15m_Color_Roughness/LRO_LROC_DEM_Balmer_Basin_15m_Color_Roughness.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrRoughness_15m_19S070E_150cmp", - Name = [[LRO LROC DEM, Balmer Basin, 15m Color Roughness]], - FilePath = asset.localResource("LRO_NAC_ClrRoughness_15m_19S070E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Balmer Basin, 15m Color Roughness]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrRoughness_15m_19S070E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Balmer Basin, 15m Color Roughness layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_19S070E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_19S070E_150cmp.vrt deleted file mode 100644 index f2bd102ed2..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_19S070E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-19],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrRoughness_15m_19S070E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrRoughness_15m_19S070E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrRoughness_15m_19S070E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrRoughness_15m_19S070E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Balmer_Basin_15m_Color_Roughness_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Balmer_Basin_15m_Color_Roughness_Hazard.asset deleted file mode 100644 index 3eee9ff2e9..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Balmer_Basin_15m_Color_Roughness_Hazard.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrRoughnessHaz_15m_19S070E_150cmp", - Name = [[LRO LROC DEM, Balmer Basin, 15m Color Roughness Hazard]], - FilePath = asset.localResource("LRO_NAC_ClrRoughnessHaz_15m_19S070E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Balmer Basin, 15m Color Roughness Hazard]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrRoughnessHaz_15m_19S070E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Balmer Basin, 15m Color Roughness Hazard layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_19S070E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_19S070E_150cmp.vrt deleted file mode 100644 index 23c9f7df6b..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_19S070E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrRoughnessHaz_15m_19S070E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrRoughnessHaz_15m_19S070E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrRoughnessHaz_15m_19S070E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrRoughnessHaz_15m_19S070E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_19S070E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_19S070E_150cmp.wms deleted file mode 100644 index 747abbb281..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_19S070E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrRoughnessHaz_15m_19S070E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_15m_Color_Slope/LRO_LROC_DEM_Balmer_Basin_15m_Color_Slope.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_15m_Color_Slope/LRO_LROC_DEM_Balmer_Basin_15m_Color_Slope.asset deleted file mode 100644 index 2a88b879d6..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_15m_Color_Slope/LRO_LROC_DEM_Balmer_Basin_15m_Color_Slope.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrSlope_15m_19S070E_150cmp", - Name = [[LRO LROC DEM, Balmer Basin, 15m Color Slope]], - FilePath = asset.localResource("LRO_NAC_ClrSlope_15m_19S070E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Balmer Basin, 15m Color Slope]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrSlope_15m_19S070E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Balmer Basin, 15m Color Slope layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_15m_Color_Slope/LRO_NAC_ClrSlope_15m_19S070E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_15m_Color_Slope/LRO_NAC_ClrSlope_15m_19S070E_150cmp.vrt deleted file mode 100644 index 728deedc5c..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_15m_Color_Slope/LRO_NAC_ClrSlope_15m_19S070E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-19],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrSlope_15m_19S070E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrSlope_15m_19S070E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrSlope_15m_19S070E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrSlope_15m_19S070E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_15m_Color_Slope/LRO_NAC_ClrSlope_15m_19S070E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_15m_Color_Slope/LRO_NAC_ClrSlope_15m_19S070E_150cmp.wms deleted file mode 100644 index f36eb75226..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_15m_Color_Slope/LRO_NAC_ClrSlope_15m_19S070E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrSlope_15m_19S070E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-19],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_15m_Color_Slope_Hazard/LRO_LROC_DEM_Balmer_Basin_15m_Color_Slope_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_15m_Color_Slope_Hazard/LRO_LROC_DEM_Balmer_Basin_15m_Color_Slope_Hazard.asset deleted file mode 100644 index d4577d8343..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_15m_Color_Slope_Hazard/LRO_LROC_DEM_Balmer_Basin_15m_Color_Slope_Hazard.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrSlopeHaz_15m_19S070E_150cmp", - Name = [[LRO LROC DEM, Balmer Basin, 15m Color Slope Hazard]], - FilePath = asset.localResource("LRO_NAC_ClrSlopeHaz_15m_19S070E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Balmer Basin, 15m Color Slope Hazard]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrSlopeHaz_15m_19S070E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Balmer Basin, 15m Color Slope Hazard layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_19S070E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_19S070E_150cmp.vrt deleted file mode 100644 index 84e76bc269..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_19S070E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-19],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrSlopeHaz_15m_19S070E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrSlopeHaz_15m_19S070E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrSlopeHaz_15m_19S070E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrSlopeHaz_15m_19S070E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_19S070E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_19S070E_150cmp.wms deleted file mode 100644 index 894520088f..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_19S070E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrSlopeHaz_15m_19S070E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-19],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_3m_Color_Roughness/LRO_LROC_DEM_Balmer_Basin_3m_Color_Roughness.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_3m_Color_Roughness/LRO_LROC_DEM_Balmer_Basin_3m_Color_Roughness.asset deleted file mode 100644 index e7b3a3715c..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_3m_Color_Roughness/LRO_LROC_DEM_Balmer_Basin_3m_Color_Roughness.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrRoughness_3m_19S070E_150cmp", - Name = [[LRO LROC DEM, Balmer Basin, 3m Color Roughness]], - FilePath = asset.localResource("LRO_NAC_ClrRoughness_3m_19S070E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Balmer Basin, 3m Color Roughness]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrRoughness_3m_19S070E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Balmer Basin, 3m Color Roughness layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_19S070E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_19S070E_150cmp.vrt deleted file mode 100644 index aadad42204..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_19S070E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-19],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrRoughness_3m_19S070E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrRoughness_3m_19S070E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrRoughness_3m_19S070E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrRoughness_3m_19S070E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_19S070E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_19S070E_150cmp.wms deleted file mode 100644 index 47ea378346..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_19S070E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrRoughness_3m_19S070E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-19],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_3m_Color_Roughness_Hazard/LRO_LROC_DEM_Balmer_Basin_3m_Color_Roughness_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_3m_Color_Roughness_Hazard/LRO_LROC_DEM_Balmer_Basin_3m_Color_Roughness_Hazard.asset deleted file mode 100644 index dbbff82d18..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_3m_Color_Roughness_Hazard/LRO_LROC_DEM_Balmer_Basin_3m_Color_Roughness_Hazard.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrRoughnessHaz_3m_19S070E_150cmp", - Name = [[LRO LROC DEM, Balmer Basin, 3m Color Roughness Hazard]], - FilePath = asset.localResource("LRO_NAC_ClrRoughnessHaz_3m_19S070E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Balmer Basin, 3m Color Roughness Hazard]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrRoughnessHaz_3m_19S070E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Balmer Basin, 3m Color Roughness Hazard layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_19S070E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_19S070E_150cmp.vrt deleted file mode 100644 index 837af82243..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_19S070E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-19],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrRoughnessHaz_3m_19S070E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrRoughnessHaz_3m_19S070E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrRoughnessHaz_3m_19S070E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrRoughnessHaz_3m_19S070E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_19S070E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_19S070E_150cmp.wms deleted file mode 100644 index 9ed732bd9d..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_19S070E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrRoughnessHaz_3m_19S070E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-19],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_3m_Color_Slope/LRO_LROC_DEM_Balmer_Basin_3m_Color_Slope.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_3m_Color_Slope/LRO_LROC_DEM_Balmer_Basin_3m_Color_Slope.asset deleted file mode 100644 index 977344e1b9..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_3m_Color_Slope/LRO_LROC_DEM_Balmer_Basin_3m_Color_Slope.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrSlope_3m_19S070E_150cmp", - Name = [[LRO LROC DEM, Balmer Basin, 3m Color Slope]], - FilePath = asset.localResource("LRO_NAC_ClrSlope_3m_19S070E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Balmer Basin, 3m Color Slope]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrSlope_3m_19S070E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Balmer Basin, 3m Color Slope layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_3m_Color_Slope/LRO_NAC_ClrSlope_3m_19S070E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_3m_Color_Slope/LRO_NAC_ClrSlope_3m_19S070E_150cmp.vrt deleted file mode 100644 index 5627c5ac92..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_3m_Color_Slope/LRO_NAC_ClrSlope_3m_19S070E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-19],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrSlope_3m_19S070E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrSlope_3m_19S070E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrSlope_3m_19S070E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrSlope_3m_19S070E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_3m_Color_Slope/LRO_NAC_ClrSlope_3m_19S070E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_3m_Color_Slope/LRO_NAC_ClrSlope_3m_19S070E_150cmp.wms deleted file mode 100644 index 142067f9f9..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_3m_Color_Slope/LRO_NAC_ClrSlope_3m_19S070E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrSlope_3m_19S070E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-19],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_3m_Color_Slope_Hazard/LRO_LROC_DEM_Balmer_Basin_3m_Color_Slope_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_3m_Color_Slope_Hazard/LRO_LROC_DEM_Balmer_Basin_3m_Color_Slope_Hazard.asset deleted file mode 100644 index 66df2b5f5f..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_3m_Color_Slope_Hazard/LRO_LROC_DEM_Balmer_Basin_3m_Color_Slope_Hazard.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrSlopeHaz_3m_19S070E_150cmp", - Name = [[LRO LROC DEM, Balmer Basin, 3m Color Slope Hazard]], - FilePath = asset.localResource("LRO_NAC_ClrSlopeHaz_3m_19S070E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Balmer Basin, 3m Color Slope Hazard]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrSlopeHaz_3m_19S070E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Balmer Basin, 3m Color Slope Hazard layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_19S070E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_19S070E_150cmp.vrt deleted file mode 100644 index 0456597143..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_19S070E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrSlopeHaz_3m_19S070E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrSlopeHaz_3m_19S070E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrSlopeHaz_3m_19S070E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrSlopeHaz_3m_19S070E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_19S070E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_19S070E_150cmp.wms deleted file mode 100644 index f09b789243..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_19S070E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrSlopeHaz_3m_19S070E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_ColorHillshade/LRO_LROC_DEM_Balmer_Basin_ColorHillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_ColorHillshade/LRO_LROC_DEM_Balmer_Basin_ColorHillshade.asset deleted file mode 100644 index dc025d50c5..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_ColorHillshade/LRO_LROC_DEM_Balmer_Basin_ColorHillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrShade_19S070E_150cmp", - Name = [[LRO LROC DEM, Balmer Basin, ColorHillshade]], - FilePath = asset.localResource("LRO_NAC_ClrShade_19S070E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Balmer Basin, ColorHillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrShade_19S070E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Balmer Basin, ColorHillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_ColorHillshade/LRO_NAC_ClrShade_19S070E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_ColorHillshade/LRO_NAC_ClrShade_19S070E_150cmp.vrt deleted file mode 100644 index 851e48eb13..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_ColorHillshade/LRO_NAC_ClrShade_19S070E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-19],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrShade_19S070E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrShade_19S070E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrShade_19S070E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrShade_19S070E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_ColorHillshade/LRO_NAC_ClrShade_19S070E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_ColorHillshade/LRO_NAC_ClrShade_19S070E_150cmp.wms deleted file mode 100644 index 50cf18d6d9..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_ColorHillshade/LRO_NAC_ClrShade_19S070E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrShade_19S070E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-19],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_Colorized_Confidence/LRO_LROC_DEM_Balmer_Basin_Colorized_Confidence.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_Colorized_Confidence/LRO_LROC_DEM_Balmer_Basin_Colorized_Confidence.asset deleted file mode 100644 index bb26e3912d..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_Colorized_Confidence/LRO_LROC_DEM_Balmer_Basin_Colorized_Confidence.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrConf_19S070E_150cmp", - Name = [[LRO LROC DEM, Balmer Basin, Colorized Confidence]], - FilePath = asset.localResource("LRO_NAC_ClrConf_19S070E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Balmer Basin, Colorized Confidence]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrConf_19S070E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Balmer Basin, Colorized Confidence layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_Colorized_Confidence/LRO_NAC_ClrConf_19S070E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_Colorized_Confidence/LRO_NAC_ClrConf_19S070E_150cmp.vrt deleted file mode 100644 index d3295ea46a..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_Colorized_Confidence/LRO_NAC_ClrConf_19S070E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrConf_19S070E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrConf_19S070E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrConf_19S070E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrConf_19S070E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_Colorized_Confidence/LRO_NAC_ClrConf_19S070E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_Colorized_Confidence/LRO_NAC_ClrConf_19S070E_150cmp.wms deleted file mode 100644 index 90dbd8afc3..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_Colorized_Confidence/LRO_NAC_ClrConf_19S070E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrConf_19S070E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_Colorized_Slope/LRO_LROC_DEM_Balmer_Basin_Colorized_Slope.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_Colorized_Slope/LRO_LROC_DEM_Balmer_Basin_Colorized_Slope.asset deleted file mode 100644 index c1c08715d5..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_Colorized_Slope/LRO_LROC_DEM_Balmer_Basin_Colorized_Slope.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Slope_19S070E_150cmp", - Name = [[LRO LROC DEM, Balmer Basin, Colorized Slope]], - FilePath = asset.localResource("LRO_NAC_Slope_19S070E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Balmer Basin, Colorized Slope]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Slope_19S070E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Balmer Basin, Colorized Slope layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_Colorized_Slope/LRO_NAC_Slope_19S070E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_Colorized_Slope/LRO_NAC_Slope_19S070E_150cmp.vrt deleted file mode 100644 index 4808b97f21..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_Colorized_Slope/LRO_NAC_Slope_19S070E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-19],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_Slope_19S070E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_Slope_19S070E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_Slope_19S070E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_Slope_19S070E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_Colorized_Slope/LRO_NAC_Slope_19S070E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_Colorized_Slope/LRO_NAC_Slope_19S070E_150cmp.wms deleted file mode 100644 index da0203fc0b..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_Colorized_Slope/LRO_NAC_Slope_19S070E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Slope_19S070E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-19],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_Grayscale/LRO_LROC_DEM_Balmer_Basin_Grayscale.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_Grayscale/LRO_LROC_DEM_Balmer_Basin_Grayscale.asset deleted file mode 100644 index 18ffdad4b1..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_Grayscale/LRO_LROC_DEM_Balmer_Basin_Grayscale.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Gray_19S070E_150cmp", - Name = [[LRO LROC DEM, Balmer Basin, Grayscale]], - FilePath = asset.localResource("LRO_NAC_Gray_19S070E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Balmer Basin, Grayscale]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Gray_19S070E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Balmer Basin, Grayscale layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_Grayscale/LRO_NAC_Gray_19S070E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_Grayscale/LRO_NAC_Gray_19S070E_150cmp.vrt deleted file mode 100644 index af7133bf09..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_Grayscale/LRO_NAC_Gray_19S070E_150cmp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Gray - - LRO_NAC_Gray_19S070E_150cmp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Gray_19S070E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_Grayscale/LRO_NAC_Gray_19S070E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_Grayscale/LRO_NAC_Gray_19S070E_150cmp.wms deleted file mode 100644 index f60e8ff760..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_Grayscale/LRO_NAC_Gray_19S070E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Gray_19S070E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 1 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_Hillshade/LRO_LROC_DEM_Balmer_Basin_Hillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_Hillshade/LRO_LROC_DEM_Balmer_Basin_Hillshade.asset deleted file mode 100644 index 06c2f94ae4..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_Hillshade/LRO_LROC_DEM_Balmer_Basin_Hillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Shade_19S070E_150cmp", - Name = [[LRO LROC DEM, Balmer Basin, Hillshade]], - FilePath = asset.localResource("LRO_NAC_Shade_19S070E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Balmer Basin, Hillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Shade_19S070E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Balmer Basin, Hillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_Hillshade/LRO_NAC_Shade_19S070E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_Hillshade/LRO_NAC_Shade_19S070E_150cmp.vrt deleted file mode 100644 index cc174c9eb0..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_Hillshade/LRO_NAC_Shade_19S070E_150cmp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Gray - - LRO_NAC_Shade_19S070E_150cmp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Shade_19S070E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_Hillshade/LRO_NAC_Shade_19S070E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_Hillshade/LRO_NAC_Shade_19S070E_150cmp.wms deleted file mode 100644 index 680b3a2928..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Balmer_Basin_Hillshade/LRO_NAC_Shade_19S070E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Shade_19S070E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 1 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_15m_Color_Roughness/LRO_LROC_DEM_Bullialdus_Crater_15m_Color_Roughness.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_15m_Color_Roughness/LRO_LROC_DEM_Bullialdus_Crater_15m_Color_Roughness.asset deleted file mode 100644 index 187d4150b8..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_15m_Color_Roughness/LRO_LROC_DEM_Bullialdus_Crater_15m_Color_Roughness.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrRoughness_15m_20S337E_400cmp", - Name = [[LRO LROC DEM, Bullialdus Crater, 15m Color Roughness]], - FilePath = asset.localResource("LRO_NAC_ClrRoughness_15m_20S337E_400cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Bullialdus Crater, 15m Color Roughness]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrRoughness_15m_20S337E_400cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Bullialdus Crater, 15m Color Roughness layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_20S337E_400cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_20S337E_400cmp.vrt deleted file mode 100644 index cebdf67fe9..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_20S337E_400cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular_MOON_20S",GEOGCS["GCS_MOON",DATUM["MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-20],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 - - 0 - Red - - LRO_NAC_ClrRoughness_15m_20S337E_400cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrRoughness_15m_20S337E_400cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrRoughness_15m_20S337E_400cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrRoughness_15m_20S337E_400cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Bullialdus_Crater_15m_Color_Roughness_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Bullialdus_Crater_15m_Color_Roughness_Hazard.asset deleted file mode 100644 index f803242e82..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Bullialdus_Crater_15m_Color_Roughness_Hazard.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrRoughnessHaz_15m_20S337E_400cmp", - Name = [[LRO LROC DEM, Bullialdus Crater, 15m Color Roughness Hazard]], - FilePath = asset.localResource("LRO_NAC_ClrRoughnessHaz_15m_20S337E_400cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Bullialdus Crater, 15m Color Roughness Hazard]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrRoughnessHaz_15m_20S337E_400cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Bullialdus Crater, 15m Color Roughness Hazard layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_20S337E_400cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_20S337E_400cmp.vrt deleted file mode 100644 index c9a054c595..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_20S337E_400cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular_MOON_20S",GEOGCS["GCS_MOON",DATUM["MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-20],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 - - 0 - Red - - LRO_NAC_ClrRoughnessHaz_15m_20S337E_400cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrRoughnessHaz_15m_20S337E_400cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrRoughnessHaz_15m_20S337E_400cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrRoughnessHaz_15m_20S337E_400cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_20S337E_400cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_20S337E_400cmp.wms deleted file mode 100644 index c44db358f2..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_20S337E_400cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrRoughnessHaz_15m_20S337E_400cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 12 - top - - - PROJCS["Equirectangular_MOON_20S",GEOGCS["GCS_MOON",DATUM["MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-20],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_15m_Color_Slope/LRO_LROC_DEM_Bullialdus_Crater_15m_Color_Slope.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_15m_Color_Slope/LRO_LROC_DEM_Bullialdus_Crater_15m_Color_Slope.asset deleted file mode 100644 index 1b0b9e5a28..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_15m_Color_Slope/LRO_LROC_DEM_Bullialdus_Crater_15m_Color_Slope.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrSlope_15m_20S337E_400cmp", - Name = [[LRO LROC DEM, Bullialdus Crater, 15m Color Slope]], - FilePath = asset.localResource("LRO_NAC_ClrSlope_15m_20S337E_400cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Bullialdus Crater, 15m Color Slope]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrSlope_15m_20S337E_400cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Bullialdus Crater, 15m Color Slope layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_15m_Color_Slope/LRO_NAC_ClrSlope_15m_20S337E_400cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_15m_Color_Slope/LRO_NAC_ClrSlope_15m_20S337E_400cmp.vrt deleted file mode 100644 index 1d15c314e2..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_15m_Color_Slope/LRO_NAC_ClrSlope_15m_20S337E_400cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 - - 0 - Red - - LRO_NAC_ClrSlope_15m_20S337E_400cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrSlope_15m_20S337E_400cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrSlope_15m_20S337E_400cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrSlope_15m_20S337E_400cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_15m_Color_Slope/LRO_NAC_ClrSlope_15m_20S337E_400cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_15m_Color_Slope/LRO_NAC_ClrSlope_15m_20S337E_400cmp.wms deleted file mode 100644 index 0ab959332b..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_15m_Color_Slope/LRO_NAC_ClrSlope_15m_20S337E_400cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrSlope_15m_20S337E_400cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 12 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_15m_Color_Slope_Hazard/LRO_LROC_DEM_Bullialdus_Crater_15m_Color_Slope_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_15m_Color_Slope_Hazard/LRO_LROC_DEM_Bullialdus_Crater_15m_Color_Slope_Hazard.asset deleted file mode 100644 index e91e46670b..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_15m_Color_Slope_Hazard/LRO_LROC_DEM_Bullialdus_Crater_15m_Color_Slope_Hazard.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrSlopeHaz_15m_20S337E_400cmp", - Name = [[LRO LROC DEM, Bullialdus Crater, 15m Color Slope Hazard]], - FilePath = asset.localResource("LRO_NAC_ClrSlopeHaz_15m_20S337E_400cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Bullialdus Crater, 15m Color Slope Hazard]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrSlopeHaz_15m_20S337E_400cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Bullialdus Crater, 15m Color Slope Hazard layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_20S337E_400cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_20S337E_400cmp.vrt deleted file mode 100644 index ba3a2e94f4..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_20S337E_400cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular_MOON_20S",GEOGCS["GCS_MOON",DATUM["MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-20],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 - - 0 - Red - - LRO_NAC_ClrSlopeHaz_15m_20S337E_400cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrSlopeHaz_15m_20S337E_400cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrSlopeHaz_15m_20S337E_400cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrSlopeHaz_15m_20S337E_400cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_20S337E_400cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_20S337E_400cmp.wms deleted file mode 100644 index d27b67a5d5..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_20S337E_400cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrSlopeHaz_15m_20S337E_400cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 12 - top - - - PROJCS["Equirectangular_MOON_20S",GEOGCS["GCS_MOON",DATUM["MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-20],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_8m_Color_Roughness/LRO_LROC_DEM_Bullialdus_Crater_8m_Color_Roughness.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_8m_Color_Roughness/LRO_LROC_DEM_Bullialdus_Crater_8m_Color_Roughness.asset deleted file mode 100644 index b6c4fe709e..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_8m_Color_Roughness/LRO_LROC_DEM_Bullialdus_Crater_8m_Color_Roughness.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrRoughness_8m_20S337E_400cmp", - Name = [[LRO LROC DEM, Bullialdus Crater, 8m Color Roughness]], - FilePath = asset.localResource("LRO_NAC_ClrRoughness_8m_20S337E_400cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Bullialdus Crater, 8m Color Roughness]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrRoughness_8m_20S337E_400cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Bullialdus Crater, 8m Color Roughness layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_8m_Color_Roughness/LRO_NAC_ClrRoughness_8m_20S337E_400cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_8m_Color_Roughness/LRO_NAC_ClrRoughness_8m_20S337E_400cmp.vrt deleted file mode 100644 index e69d50ad6b..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_8m_Color_Roughness/LRO_NAC_ClrRoughness_8m_20S337E_400cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 - - 0 - Red - - LRO_NAC_ClrRoughness_8m_20S337E_400cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrRoughness_8m_20S337E_400cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrRoughness_8m_20S337E_400cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrRoughness_8m_20S337E_400cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_8m_Color_Roughness/LRO_NAC_ClrRoughness_8m_20S337E_400cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_8m_Color_Roughness/LRO_NAC_ClrRoughness_8m_20S337E_400cmp.wms deleted file mode 100644 index 18a3560917..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_8m_Color_Roughness/LRO_NAC_ClrRoughness_8m_20S337E_400cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrRoughness_8m_20S337E_400cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 12 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_8m_Color_Roughness_Hazard/LRO_LROC_DEM_Bullialdus_Crater_8m_Color_Roughness_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_8m_Color_Roughness_Hazard/LRO_LROC_DEM_Bullialdus_Crater_8m_Color_Roughness_Hazard.asset deleted file mode 100644 index b8e1e3fa38..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_8m_Color_Roughness_Hazard/LRO_LROC_DEM_Bullialdus_Crater_8m_Color_Roughness_Hazard.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrRoughnessHaz_8m_20S337E_400cmp", - Name = [[LRO LROC DEM, Bullialdus Crater, 8m Color Roughness Hazard]], - FilePath = asset.localResource("LRO_NAC_ClrRoughnessHaz_8m_20S337E_400cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Bullialdus Crater, 8m Color Roughness Hazard]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrRoughnessHaz_8m_20S337E_400cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Bullialdus Crater, 8m Color Roughness Hazard layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_8m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_8m_20S337E_400cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_8m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_8m_20S337E_400cmp.vrt deleted file mode 100644 index e70c891d0b..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_8m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_8m_20S337E_400cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 - - 0 - Red - - LRO_NAC_ClrRoughnessHaz_8m_20S337E_400cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrRoughnessHaz_8m_20S337E_400cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrRoughnessHaz_8m_20S337E_400cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrRoughnessHaz_8m_20S337E_400cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_8m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_8m_20S337E_400cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_8m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_8m_20S337E_400cmp.wms deleted file mode 100644 index fd9ff625ea..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_8m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_8m_20S337E_400cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrRoughnessHaz_8m_20S337E_400cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 12 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_8m_Color_Slope/LRO_LROC_DEM_Bullialdus_Crater_8m_Color_Slope.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_8m_Color_Slope/LRO_LROC_DEM_Bullialdus_Crater_8m_Color_Slope.asset deleted file mode 100644 index 7e5004f2ca..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_8m_Color_Slope/LRO_LROC_DEM_Bullialdus_Crater_8m_Color_Slope.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrSlope_8m_20S337E_400cmp", - Name = [[LRO LROC DEM, Bullialdus Crater, 8m Color Slope]], - FilePath = asset.localResource("LRO_NAC_ClrSlope_8m_20S337E_400cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Bullialdus Crater, 8m Color Slope]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrSlope_8m_20S337E_400cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Bullialdus Crater, 8m Color Slope layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_8m_Color_Slope/LRO_NAC_ClrSlope_8m_20S337E_400cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_8m_Color_Slope/LRO_NAC_ClrSlope_8m_20S337E_400cmp.vrt deleted file mode 100644 index 03a78a46e0..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_8m_Color_Slope/LRO_NAC_ClrSlope_8m_20S337E_400cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 - - 0 - Red - - LRO_NAC_ClrSlope_8m_20S337E_400cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrSlope_8m_20S337E_400cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrSlope_8m_20S337E_400cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrSlope_8m_20S337E_400cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_8m_Color_Slope/LRO_NAC_ClrSlope_8m_20S337E_400cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_8m_Color_Slope/LRO_NAC_ClrSlope_8m_20S337E_400cmp.wms deleted file mode 100644 index 25710cd6d3..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_8m_Color_Slope/LRO_NAC_ClrSlope_8m_20S337E_400cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrSlope_8m_20S337E_400cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 12 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_8m_Color_Slope_Hazard/LRO_LROC_DEM_Bullialdus_Crater_8m_Color_Slope_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_8m_Color_Slope_Hazard/LRO_LROC_DEM_Bullialdus_Crater_8m_Color_Slope_Hazard.asset deleted file mode 100644 index 747a8ffe8f..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_8m_Color_Slope_Hazard/LRO_LROC_DEM_Bullialdus_Crater_8m_Color_Slope_Hazard.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrSlopeHaz_8m_20S337E_400cmp", - Name = [[LRO LROC DEM, Bullialdus Crater, 8m Color Slope Hazard]], - FilePath = asset.localResource("LRO_NAC_ClrSlopeHaz_8m_20S337E_400cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Bullialdus Crater, 8m Color Slope Hazard]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrSlopeHaz_8m_20S337E_400cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Bullialdus Crater, 8m Color Slope Hazard layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_8m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_8m_20S337E_400cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_8m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_8m_20S337E_400cmp.vrt deleted file mode 100644 index c37b913354..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_8m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_8m_20S337E_400cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular_MOON_20S",GEOGCS["GCS_MOON",DATUM["MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-20],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 - - 0 - Red - - LRO_NAC_ClrSlopeHaz_8m_20S337E_400cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrSlopeHaz_8m_20S337E_400cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrSlopeHaz_8m_20S337E_400cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrSlopeHaz_8m_20S337E_400cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_8m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_8m_20S337E_400cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_8m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_8m_20S337E_400cmp.wms deleted file mode 100644 index eb001aa5db..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_8m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_8m_20S337E_400cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrSlopeHaz_8m_20S337E_400cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 12 - top - - - PROJCS["Equirectangular_MOON_20S",GEOGCS["GCS_MOON",DATUM["MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-20],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_ColorHillshade/LRO_LROC_DEM_Bullialdus_Crater_ColorHillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_ColorHillshade/LRO_LROC_DEM_Bullialdus_Crater_ColorHillshade.asset deleted file mode 100644 index a2d9544494..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_ColorHillshade/LRO_LROC_DEM_Bullialdus_Crater_ColorHillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrShade_20S337E_400cmp", - Name = [[LRO LROC DEM, Bullialdus Crater, ColorHillshade]], - FilePath = asset.localResource("LRO_NAC_ClrShade_20S337E_400cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Bullialdus Crater, ColorHillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrShade_20S337E_400cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Bullialdus Crater, ColorHillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_ColorHillshade/LRO_NAC_ClrShade_20S337E_400cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_ColorHillshade/LRO_NAC_ClrShade_20S337E_400cmp.vrt deleted file mode 100644 index a76f0c697f..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_ColorHillshade/LRO_NAC_ClrShade_20S337E_400cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular_MOON_20S",GEOGCS["GCS_MOON",DATUM["MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",0],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 - - 0 - Red - - LRO_NAC_ClrShade_20S337E_400cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrShade_20S337E_400cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrShade_20S337E_400cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrShade_20S337E_400cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_ColorHillshade/LRO_NAC_ClrShade_20S337E_400cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_ColorHillshade/LRO_NAC_ClrShade_20S337E_400cmp.wms deleted file mode 100644 index b1031ec1a2..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_ColorHillshade/LRO_NAC_ClrShade_20S337E_400cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrShade_20S337E_400cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 12 - top - - - PROJCS["Equirectangular_MOON_20S",GEOGCS["GCS_MOON",DATUM["MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",0],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_Colorized_Confidence/LRO_LROC_DEM_Bullialdus_Crater_Colorized_Confidence.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_Colorized_Confidence/LRO_LROC_DEM_Bullialdus_Crater_Colorized_Confidence.asset deleted file mode 100644 index d059f07734..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_Colorized_Confidence/LRO_LROC_DEM_Bullialdus_Crater_Colorized_Confidence.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrConf_20S337E_400cmp", - Name = [[LRO LROC DEM, Bullialdus Crater, Colorized Confidence]], - FilePath = asset.localResource("LRO_NAC_ClrConf_20S337E_400cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Bullialdus Crater, Colorized Confidence]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrConf_20S337E_400cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Bullialdus Crater, Colorized Confidence layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_Colorized_Confidence/LRO_NAC_ClrConf_20S337E_400cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_Colorized_Confidence/LRO_NAC_ClrConf_20S337E_400cmp.vrt deleted file mode 100644 index f4b546a3f3..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_Colorized_Confidence/LRO_NAC_ClrConf_20S337E_400cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 - - 0 - Red - - LRO_NAC_ClrConf_20S337E_400cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrConf_20S337E_400cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrConf_20S337E_400cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrConf_20S337E_400cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_Colorized_Confidence/LRO_NAC_ClrConf_20S337E_400cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_Colorized_Confidence/LRO_NAC_ClrConf_20S337E_400cmp.wms deleted file mode 100644 index 106f296ebd..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_Colorized_Confidence/LRO_NAC_ClrConf_20S337E_400cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrConf_20S337E_400cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 12 - top - - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_Colorized_Slope/LRO_LROC_DEM_Bullialdus_Crater_Colorized_Slope.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_Colorized_Slope/LRO_LROC_DEM_Bullialdus_Crater_Colorized_Slope.asset deleted file mode 100644 index 51dc401b9e..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_Colorized_Slope/LRO_LROC_DEM_Bullialdus_Crater_Colorized_Slope.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Slope_20S337E_400cmp", - Name = [[LRO LROC DEM, Bullialdus Crater, Colorized Slope]], - FilePath = asset.localResource("LRO_NAC_Slope_20S337E_400cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Bullialdus Crater, Colorized Slope]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Slope_20S337E_400cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Bullialdus Crater, Colorized Slope layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_Colorized_Slope/LRO_NAC_Slope_20S337E_400cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_Colorized_Slope/LRO_NAC_Slope_20S337E_400cmp.vrt deleted file mode 100644 index 8873836b69..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_Colorized_Slope/LRO_NAC_Slope_20S337E_400cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 - - 0 - Red - - LRO_NAC_Slope_20S337E_400cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_Slope_20S337E_400cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_Slope_20S337E_400cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_Slope_20S337E_400cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_Colorized_Slope/LRO_NAC_Slope_20S337E_400cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_Colorized_Slope/LRO_NAC_Slope_20S337E_400cmp.wms deleted file mode 100644 index 315125dcbc..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_Colorized_Slope/LRO_NAC_Slope_20S337E_400cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Slope_20S337E_400cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 12 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_Grayscale/LRO_LROC_DEM_Bullialdus_Crater_Grayscale.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_Grayscale/LRO_LROC_DEM_Bullialdus_Crater_Grayscale.asset deleted file mode 100644 index 6f4aa01abc..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_Grayscale/LRO_LROC_DEM_Bullialdus_Crater_Grayscale.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Gray_20S337E_400cmp", - Name = [[LRO LROC DEM, Bullialdus Crater, Grayscale]], - FilePath = asset.localResource("LRO_NAC_Gray_20S337E_400cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Bullialdus Crater, Grayscale]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Gray_20S337E_400cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Bullialdus Crater, Grayscale layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_Grayscale/LRO_NAC_Gray_20S337E_400cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_Grayscale/LRO_NAC_Gray_20S337E_400cmp.vrt deleted file mode 100644 index 418380bbe4..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_Grayscale/LRO_NAC_Gray_20S337E_400cmp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 - - 0 - Gray - - LRO_NAC_Gray_20S337E_400cmp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Gray_20S337E_400cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_Grayscale/LRO_NAC_Gray_20S337E_400cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_Grayscale/LRO_NAC_Gray_20S337E_400cmp.wms deleted file mode 100644 index 48db046549..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_Grayscale/LRO_NAC_Gray_20S337E_400cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Gray_20S337E_400cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 12 - top - - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 1 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_Hillshade/LRO_LROC_DEM_Bullialdus_Crater_Hillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_Hillshade/LRO_LROC_DEM_Bullialdus_Crater_Hillshade.asset deleted file mode 100644 index 0acde45e55..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_Hillshade/LRO_LROC_DEM_Bullialdus_Crater_Hillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Shade_20S337E_400cmp", - Name = [[LRO LROC DEM, Bullialdus Crater, Hillshade]], - FilePath = asset.localResource("LRO_NAC_Shade_20S337E_400cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Bullialdus Crater, Hillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Shade_20S337E_400cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Bullialdus Crater, Hillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_Hillshade/LRO_NAC_Shade_20S337E_400cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_Hillshade/LRO_NAC_Shade_20S337E_400cmp.vrt deleted file mode 100644 index f54787cf10..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_Hillshade/LRO_NAC_Shade_20S337E_400cmp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 - - 0 - Gray - - LRO_NAC_Shade_20S337E_400cmp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Shade_20S337E_400cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_Hillshade/LRO_NAC_Shade_20S337E_400cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_Hillshade/LRO_NAC_Shade_20S337E_400cmp.wms deleted file mode 100644 index 1d2657b282..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Bullialdus_Crater_Hillshade/LRO_NAC_Shade_20S337E_400cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Shade_20S337E_400cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 12 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 1 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Compton_Belkovich_Th_Anomaly_ColorHillshade/LRO_LROC_DEM_Compton_Belkovich_Th_Anomaly_ColorHillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Compton_Belkovich_Th_Anomaly_ColorHillshade/LRO_LROC_DEM_Compton_Belkovich_Th_Anomaly_ColorHillshade.asset deleted file mode 100644 index 118f7e61d0..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Compton_Belkovich_Th_Anomaly_ColorHillshade/LRO_LROC_DEM_Compton_Belkovich_Th_Anomaly_ColorHillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrShade_61N099E_150cmp", - Name = [[LRO LROC DEM, Compton Belkovich Th Anomaly, ColorHillshade]], - FilePath = asset.localResource("LRO_NAC_ClrShade_61N099E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Compton Belkovich Th Anomaly, ColorHillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrShade_61N099E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Compton Belkovich Th Anomaly, ColorHillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Compton_Belkovich_Th_Anomaly_ColorHillshade/LRO_NAC_ClrShade_61N099E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Compton_Belkovich_Th_Anomaly_ColorHillshade/LRO_NAC_ClrShade_61N099E_150cmp.vrt deleted file mode 100644 index 3d8af38120..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Compton_Belkovich_Th_Anomaly_ColorHillshade/LRO_NAC_ClrShade_61N099E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",61],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrShade_61N099E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrShade_61N099E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrShade_61N099E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrShade_61N099E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Compton_Belkovich_Th_Anomaly_Colorized_Confidence/LRO_LROC_DEM_Compton_Belkovich_Th_Anomaly_Colorized_Confidence.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Compton_Belkovich_Th_Anomaly_Colorized_Confidence/LRO_LROC_DEM_Compton_Belkovich_Th_Anomaly_Colorized_Confidence.asset deleted file mode 100644 index a7d91ab5e0..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Compton_Belkovich_Th_Anomaly_Colorized_Confidence/LRO_LROC_DEM_Compton_Belkovich_Th_Anomaly_Colorized_Confidence.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrConf_61N099E_150cmp", - Name = [[LRO LROC DEM, Compton Belkovich Th Anomaly, Colorized Confidence]], - FilePath = asset.localResource("LRO_NAC_ClrConf_61N099E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Compton Belkovich Th Anomaly, Colorized Confidence]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrConf_61N099E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Compton Belkovich Th Anomaly, Colorized Confidence layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Compton_Belkovich_Th_Anomaly_Colorized_Confidence/LRO_NAC_ClrConf_61N099E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Compton_Belkovich_Th_Anomaly_Colorized_Confidence/LRO_NAC_ClrConf_61N099E_150cmp.vrt deleted file mode 100644 index 75eced36ef..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Compton_Belkovich_Th_Anomaly_Colorized_Confidence/LRO_NAC_ClrConf_61N099E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrConf_61N099E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrConf_61N099E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrConf_61N099E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrConf_61N099E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Compton_Belkovich_Th_Anomaly_Colorized_Confidence/LRO_NAC_ClrConf_61N099E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Compton_Belkovich_Th_Anomaly_Colorized_Confidence/LRO_NAC_ClrConf_61N099E_150cmp.wms deleted file mode 100644 index 0a62139938..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Compton_Belkovich_Th_Anomaly_Colorized_Confidence/LRO_NAC_ClrConf_61N099E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrConf_61N099E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Compton_Belkovich_Th_Anomaly_Colorized_Slope/LRO_LROC_DEM_Compton_Belkovich_Th_Anomaly_Colorized_Slope.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Compton_Belkovich_Th_Anomaly_Colorized_Slope/LRO_LROC_DEM_Compton_Belkovich_Th_Anomaly_Colorized_Slope.asset deleted file mode 100644 index ba9dc1b958..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Compton_Belkovich_Th_Anomaly_Colorized_Slope/LRO_LROC_DEM_Compton_Belkovich_Th_Anomaly_Colorized_Slope.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Slope_61N099E_150cmp", - Name = [[LRO LROC DEM, Compton Belkovich Th Anomaly, Colorized Slope]], - FilePath = asset.localResource("LRO_NAC_Slope_61N099E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Compton Belkovich Th Anomaly, Colorized Slope]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Slope_61N099E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Compton Belkovich Th Anomaly, Colorized Slope layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Compton_Belkovich_Th_Anomaly_Colorized_Slope/LRO_NAC_Slope_61N099E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Compton_Belkovich_Th_Anomaly_Colorized_Slope/LRO_NAC_Slope_61N099E_150cmp.vrt deleted file mode 100644 index bc6a25e11e..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Compton_Belkovich_Th_Anomaly_Colorized_Slope/LRO_NAC_Slope_61N099E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",61],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_Slope_61N099E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_Slope_61N099E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_Slope_61N099E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_Slope_61N099E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Compton_Belkovich_Th_Anomaly_Colorized_Slope/LRO_NAC_Slope_61N099E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Compton_Belkovich_Th_Anomaly_Colorized_Slope/LRO_NAC_Slope_61N099E_150cmp.wms deleted file mode 100644 index 9514060c2f..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Compton_Belkovich_Th_Anomaly_Colorized_Slope/LRO_NAC_Slope_61N099E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Slope_61N099E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",61],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Compton_Belkovich_Th_Anomaly_Grayscale/LRO_LROC_DEM_Compton_Belkovich_Th_Anomaly_Grayscale.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Compton_Belkovich_Th_Anomaly_Grayscale/LRO_LROC_DEM_Compton_Belkovich_Th_Anomaly_Grayscale.asset deleted file mode 100644 index 60e2e5e1a6..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Compton_Belkovich_Th_Anomaly_Grayscale/LRO_LROC_DEM_Compton_Belkovich_Th_Anomaly_Grayscale.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Gray_61N099E_150cmp", - Name = [[LRO LROC DEM, Compton Belkovich Th Anomaly, Grayscale]], - FilePath = asset.localResource("LRO_NAC_Gray_61N099E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Compton Belkovich Th Anomaly, Grayscale]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Gray_61N099E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Compton Belkovich Th Anomaly, Grayscale layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Compton_Belkovich_Th_Anomaly_Grayscale/LRO_NAC_Gray_61N099E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Compton_Belkovich_Th_Anomaly_Grayscale/LRO_NAC_Gray_61N099E_150cmp.vrt deleted file mode 100644 index c10f27e4a1..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Compton_Belkovich_Th_Anomaly_Grayscale/LRO_NAC_Gray_61N099E_150cmp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Gray - - LRO_NAC_Gray_61N099E_150cmp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Gray_61N099E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Compton_Belkovich_Th_Anomaly_Grayscale/LRO_NAC_Gray_61N099E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Compton_Belkovich_Th_Anomaly_Grayscale/LRO_NAC_Gray_61N099E_150cmp.wms deleted file mode 100644 index 6453a4c8ec..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Compton_Belkovich_Th_Anomaly_Grayscale/LRO_NAC_Gray_61N099E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Gray_61N099E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 1 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Compton_Belkovich_Th_Anomaly_Hillshade/LRO_LROC_DEM_Compton_Belkovich_Th_Anomaly_Hillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Compton_Belkovich_Th_Anomaly_Hillshade/LRO_LROC_DEM_Compton_Belkovich_Th_Anomaly_Hillshade.asset deleted file mode 100644 index cb43b518d2..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Compton_Belkovich_Th_Anomaly_Hillshade/LRO_LROC_DEM_Compton_Belkovich_Th_Anomaly_Hillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Shade_61N099E_150cmp", - Name = [[LRO LROC DEM, Compton Belkovich Th Anomaly, Hillshade]], - FilePath = asset.localResource("LRO_NAC_Shade_61N099E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Compton Belkovich Th Anomaly, Hillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Shade_61N099E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Compton Belkovich Th Anomaly, Hillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Compton_Belkovich_Th_Anomaly_Hillshade/LRO_NAC_Shade_61N099E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Compton_Belkovich_Th_Anomaly_Hillshade/LRO_NAC_Shade_61N099E_150cmp.vrt deleted file mode 100644 index a8eb4e6d3f..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Compton_Belkovich_Th_Anomaly_Hillshade/LRO_NAC_Shade_61N099E_150cmp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",61],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Gray - - LRO_NAC_Shade_61N099E_150cmp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Shade_61N099E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Compton_Belkovich_Th_Anomaly_Hillshade/LRO_NAC_Shade_61N099E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Compton_Belkovich_Th_Anomaly_Hillshade/LRO_NAC_Shade_61N099E_150cmp.wms deleted file mode 100644 index d336edfd9c..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Compton_Belkovich_Th_Anomaly_Hillshade/LRO_NAC_Shade_61N099E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Shade_61N099E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",61],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 1 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_15m_Color_Roughness/LRO_LROC_DEM_Dante_Crater_15m_Color_Roughness.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_15m_Color_Roughness/LRO_LROC_DEM_Dante_Crater_15m_Color_Roughness.asset deleted file mode 100644 index ff7ff09e28..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_15m_Color_Roughness/LRO_LROC_DEM_Dante_Crater_15m_Color_Roughness.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrRoughness_15m_26N178E_150cmp", - Name = [[LRO LROC DEM, Dante Crater, 15m Color Roughness]], - FilePath = asset.localResource("LRO_NAC_ClrRoughness_15m_26N178E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Dante Crater, 15m Color Roughness]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrRoughness_15m_26N178E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Dante Crater, 15m Color Roughness layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_26N178E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_26N178E_150cmp.vrt deleted file mode 100644 index 7d388d64fb..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_26N178E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular_MOON_26N",GEOGCS["GCS_MOON",DATUM["MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",26],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrRoughness_15m_26N178E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrRoughness_15m_26N178E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrRoughness_15m_26N178E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrRoughness_15m_26N178E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Dante_Crater_15m_Color_Roughness_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Dante_Crater_15m_Color_Roughness_Hazard.asset deleted file mode 100644 index fe99120bc7..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Dante_Crater_15m_Color_Roughness_Hazard.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrRoughnessHaz_15m_26N178E_150cmp", - Name = [[LRO LROC DEM, Dante Crater, 15m Color Roughness Hazard]], - FilePath = asset.localResource("LRO_NAC_ClrRoughnessHaz_15m_26N178E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Dante Crater, 15m Color Roughness Hazard]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrRoughnessHaz_15m_26N178E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Dante Crater, 15m Color Roughness Hazard layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_26N178E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_26N178E_150cmp.vrt deleted file mode 100644 index c5e2eaf3fe..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_26N178E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrRoughnessHaz_15m_26N178E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrRoughnessHaz_15m_26N178E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrRoughnessHaz_15m_26N178E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrRoughnessHaz_15m_26N178E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_26N178E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_26N178E_150cmp.wms deleted file mode 100644 index 452e416638..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_26N178E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrRoughnessHaz_15m_26N178E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_15m_Color_Slope/LRO_LROC_DEM_Dante_Crater_15m_Color_Slope.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_15m_Color_Slope/LRO_LROC_DEM_Dante_Crater_15m_Color_Slope.asset deleted file mode 100644 index 8ef165dfd2..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_15m_Color_Slope/LRO_LROC_DEM_Dante_Crater_15m_Color_Slope.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrSlope_15m_26N178E_150cmp", - Name = [[LRO LROC DEM, Dante Crater, 15m Color Slope]], - FilePath = asset.localResource("LRO_NAC_ClrSlope_15m_26N178E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Dante Crater, 15m Color Slope]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrSlope_15m_26N178E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Dante Crater, 15m Color Slope layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_15m_Color_Slope/LRO_NAC_ClrSlope_15m_26N178E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_15m_Color_Slope/LRO_NAC_ClrSlope_15m_26N178E_150cmp.vrt deleted file mode 100644 index 45c9f7e903..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_15m_Color_Slope/LRO_NAC_ClrSlope_15m_26N178E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular_MOON_26N",GEOGCS["GCS_MOON",DATUM["MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",26],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrSlope_15m_26N178E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrSlope_15m_26N178E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrSlope_15m_26N178E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrSlope_15m_26N178E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_15m_Color_Slope/LRO_NAC_ClrSlope_15m_26N178E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_15m_Color_Slope/LRO_NAC_ClrSlope_15m_26N178E_150cmp.wms deleted file mode 100644 index e92fed4a62..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_15m_Color_Slope/LRO_NAC_ClrSlope_15m_26N178E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrSlope_15m_26N178E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular_MOON_26N",GEOGCS["GCS_MOON",DATUM["MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",26],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_15m_Color_Slope_Hazard/LRO_LROC_DEM_Dante_Crater_15m_Color_Slope_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_15m_Color_Slope_Hazard/LRO_LROC_DEM_Dante_Crater_15m_Color_Slope_Hazard.asset deleted file mode 100644 index 0a523de255..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_15m_Color_Slope_Hazard/LRO_LROC_DEM_Dante_Crater_15m_Color_Slope_Hazard.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrSlopeHaz_15m_26N178E_150cmp", - Name = [[LRO LROC DEM, Dante Crater, 15m Color Slope Hazard]], - FilePath = asset.localResource("LRO_NAC_ClrSlopeHaz_15m_26N178E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Dante Crater, 15m Color Slope Hazard]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrSlopeHaz_15m_26N178E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Dante Crater, 15m Color Slope Hazard layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_26N178E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_26N178E_150cmp.vrt deleted file mode 100644 index 66cb5263b9..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_26N178E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrSlopeHaz_15m_26N178E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrSlopeHaz_15m_26N178E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrSlopeHaz_15m_26N178E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrSlopeHaz_15m_26N178E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_26N178E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_26N178E_150cmp.wms deleted file mode 100644 index b5eb889fda..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_26N178E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrSlopeHaz_15m_26N178E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_3m_Color_Roughness/LRO_LROC_DEM_Dante_Crater_3m_Color_Roughness.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_3m_Color_Roughness/LRO_LROC_DEM_Dante_Crater_3m_Color_Roughness.asset deleted file mode 100644 index 297103246f..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_3m_Color_Roughness/LRO_LROC_DEM_Dante_Crater_3m_Color_Roughness.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrRoughness_3m_26N178E_150cmp", - Name = [[LRO LROC DEM, Dante Crater, 3m Color Roughness]], - FilePath = asset.localResource("LRO_NAC_ClrRoughness_3m_26N178E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Dante Crater, 3m Color Roughness]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrRoughness_3m_26N178E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Dante Crater, 3m Color Roughness layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_26N178E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_26N178E_150cmp.vrt deleted file mode 100644 index 165cc35f38..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_26N178E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular_MOON_26N",GEOGCS["GCS_MOON",DATUM["MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",26],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrRoughness_3m_26N178E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrRoughness_3m_26N178E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrRoughness_3m_26N178E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrRoughness_3m_26N178E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_26N178E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_26N178E_150cmp.wms deleted file mode 100644 index d355833451..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_26N178E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrRoughness_3m_26N178E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular_MOON_26N",GEOGCS["GCS_MOON",DATUM["MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",26],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_3m_Color_Roughness_Hazard/LRO_LROC_DEM_Dante_Crater_3m_Color_Roughness_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_3m_Color_Roughness_Hazard/LRO_LROC_DEM_Dante_Crater_3m_Color_Roughness_Hazard.asset deleted file mode 100644 index d9aea5f6d1..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_3m_Color_Roughness_Hazard/LRO_LROC_DEM_Dante_Crater_3m_Color_Roughness_Hazard.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrRoughnessHaz_3m_26N178E_150cmp", - Name = [[LRO LROC DEM, Dante Crater, 3m Color Roughness Hazard]], - FilePath = asset.localResource("LRO_NAC_ClrRoughnessHaz_3m_26N178E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Dante Crater, 3m Color Roughness Hazard]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrRoughnessHaz_3m_26N178E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Dante Crater, 3m Color Roughness Hazard layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_26N178E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_26N178E_150cmp.vrt deleted file mode 100644 index 2ea19b1311..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_26N178E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrRoughnessHaz_3m_26N178E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrRoughnessHaz_3m_26N178E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrRoughnessHaz_3m_26N178E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrRoughnessHaz_3m_26N178E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_26N178E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_26N178E_150cmp.wms deleted file mode 100644 index 4f6d1472d0..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_26N178E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrRoughnessHaz_3m_26N178E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_3m_Color_Slope/LRO_LROC_DEM_Dante_Crater_3m_Color_Slope.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_3m_Color_Slope/LRO_LROC_DEM_Dante_Crater_3m_Color_Slope.asset deleted file mode 100644 index 20ad92c4d2..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_3m_Color_Slope/LRO_LROC_DEM_Dante_Crater_3m_Color_Slope.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrSlope_3m_26N178E_150cmp", - Name = [[LRO LROC DEM, Dante Crater, 3m Color Slope]], - FilePath = asset.localResource("LRO_NAC_ClrSlope_3m_26N178E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Dante Crater, 3m Color Slope]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrSlope_3m_26N178E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Dante Crater, 3m Color Slope layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_3m_Color_Slope/LRO_NAC_ClrSlope_3m_26N178E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_3m_Color_Slope/LRO_NAC_ClrSlope_3m_26N178E_150cmp.vrt deleted file mode 100644 index de392260e2..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_3m_Color_Slope/LRO_NAC_ClrSlope_3m_26N178E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrSlope_3m_26N178E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrSlope_3m_26N178E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrSlope_3m_26N178E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrSlope_3m_26N178E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_3m_Color_Slope/LRO_NAC_ClrSlope_3m_26N178E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_3m_Color_Slope/LRO_NAC_ClrSlope_3m_26N178E_150cmp.wms deleted file mode 100644 index 963e035895..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_3m_Color_Slope/LRO_NAC_ClrSlope_3m_26N178E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrSlope_3m_26N178E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_3m_Color_Slope_Hazard/LRO_LROC_DEM_Dante_Crater_3m_Color_Slope_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_3m_Color_Slope_Hazard/LRO_LROC_DEM_Dante_Crater_3m_Color_Slope_Hazard.asset deleted file mode 100644 index 7394a4e62c..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_3m_Color_Slope_Hazard/LRO_LROC_DEM_Dante_Crater_3m_Color_Slope_Hazard.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrSlopeHaz_3m_26N178E_150cmp", - Name = [[LRO LROC DEM, Dante Crater, 3m Color Slope Hazard]], - FilePath = asset.localResource("LRO_NAC_ClrSlopeHaz_3m_26N178E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Dante Crater, 3m Color Slope Hazard]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrSlopeHaz_3m_26N178E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Dante Crater, 3m Color Slope Hazard layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_26N178E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_26N178E_150cmp.vrt deleted file mode 100644 index 393d2ec5ec..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_26N178E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrSlopeHaz_3m_26N178E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrSlopeHaz_3m_26N178E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrSlopeHaz_3m_26N178E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrSlopeHaz_3m_26N178E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_26N178E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_26N178E_150cmp.wms deleted file mode 100644 index cf9a36e663..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_26N178E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrSlopeHaz_3m_26N178E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_ColorHillshade/LRO_LROC_DEM_Dante_Crater_ColorHillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_ColorHillshade/LRO_LROC_DEM_Dante_Crater_ColorHillshade.asset deleted file mode 100644 index 23c63304a5..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_ColorHillshade/LRO_LROC_DEM_Dante_Crater_ColorHillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrShade_26N178E_150cmp", - Name = [[LRO LROC DEM, Dante Crater, ColorHillshade]], - FilePath = asset.localResource("LRO_NAC_ClrShade_26N178E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Dante Crater, ColorHillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrShade_26N178E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Dante Crater, ColorHillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_ColorHillshade/LRO_NAC_ClrShade_26N178E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_ColorHillshade/LRO_NAC_ClrShade_26N178E_150cmp.vrt deleted file mode 100644 index e114eaff55..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_ColorHillshade/LRO_NAC_ClrShade_26N178E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular_MOON_26N",GEOGCS["GCS_MOON",DATUM["MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",26],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrShade_26N178E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrShade_26N178E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrShade_26N178E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrShade_26N178E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_ColorHillshade/LRO_NAC_ClrShade_26N178E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_ColorHillshade/LRO_NAC_ClrShade_26N178E_150cmp.wms deleted file mode 100644 index 33ae6d0c71..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_ColorHillshade/LRO_NAC_ClrShade_26N178E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrShade_26N178E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular_MOON_26N",GEOGCS["GCS_MOON",DATUM["MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",26],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_Colorized_Confidence/LRO_LROC_DEM_Dante_Crater_Colorized_Confidence.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_Colorized_Confidence/LRO_LROC_DEM_Dante_Crater_Colorized_Confidence.asset deleted file mode 100644 index 8e8e6227ea..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_Colorized_Confidence/LRO_LROC_DEM_Dante_Crater_Colorized_Confidence.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrConf_26N178E_150cmp", - Name = [[LRO LROC DEM, Dante Crater, Colorized Confidence]], - FilePath = asset.localResource("LRO_NAC_ClrConf_26N178E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Dante Crater, Colorized Confidence]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrConf_26N178E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Dante Crater, Colorized Confidence layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_Colorized_Confidence/LRO_NAC_ClrConf_26N178E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_Colorized_Confidence/LRO_NAC_ClrConf_26N178E_150cmp.vrt deleted file mode 100644 index ee9d37fe07..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_Colorized_Confidence/LRO_NAC_ClrConf_26N178E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrConf_26N178E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrConf_26N178E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrConf_26N178E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrConf_26N178E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_Colorized_Confidence/LRO_NAC_ClrConf_26N178E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_Colorized_Confidence/LRO_NAC_ClrConf_26N178E_150cmp.wms deleted file mode 100644 index 1a4a891552..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_Colorized_Confidence/LRO_NAC_ClrConf_26N178E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrConf_26N178E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_Colorized_Slope/LRO_LROC_DEM_Dante_Crater_Colorized_Slope.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_Colorized_Slope/LRO_LROC_DEM_Dante_Crater_Colorized_Slope.asset deleted file mode 100644 index db835a6434..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_Colorized_Slope/LRO_LROC_DEM_Dante_Crater_Colorized_Slope.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Slope_26N178E_150cmp", - Name = [[LRO LROC DEM, Dante Crater, Colorized Slope]], - FilePath = asset.localResource("LRO_NAC_Slope_26N178E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Dante Crater, Colorized Slope]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Slope_26N178E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Dante Crater, Colorized Slope layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_Colorized_Slope/LRO_NAC_Slope_26N178E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_Colorized_Slope/LRO_NAC_Slope_26N178E_150cmp.vrt deleted file mode 100644 index 674d6ff1a7..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_Colorized_Slope/LRO_NAC_Slope_26N178E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_Slope_26N178E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_Slope_26N178E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_Slope_26N178E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_Slope_26N178E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_Colorized_Slope/LRO_NAC_Slope_26N178E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_Colorized_Slope/LRO_NAC_Slope_26N178E_150cmp.wms deleted file mode 100644 index b1d5dfb2af..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_Colorized_Slope/LRO_NAC_Slope_26N178E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Slope_26N178E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_Grayscale/LRO_LROC_DEM_Dante_Crater_Grayscale.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_Grayscale/LRO_LROC_DEM_Dante_Crater_Grayscale.asset deleted file mode 100644 index 110976236c..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_Grayscale/LRO_LROC_DEM_Dante_Crater_Grayscale.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Gray_26N178E_150cmp", - Name = [[LRO LROC DEM, Dante Crater, Grayscale]], - FilePath = asset.localResource("LRO_NAC_Gray_26N178E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Dante Crater, Grayscale]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Gray_26N178E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Dante Crater, Grayscale layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_Grayscale/LRO_NAC_Gray_26N178E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_Grayscale/LRO_NAC_Gray_26N178E_150cmp.vrt deleted file mode 100644 index 11c73eca41..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_Grayscale/LRO_NAC_Gray_26N178E_150cmp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Gray - - LRO_NAC_Gray_26N178E_150cmp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Gray_26N178E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_Grayscale/LRO_NAC_Gray_26N178E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_Grayscale/LRO_NAC_Gray_26N178E_150cmp.wms deleted file mode 100644 index ed8d3fcaa7..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_Grayscale/LRO_NAC_Gray_26N178E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Gray_26N178E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 1 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_Hillshade/LRO_LROC_DEM_Dante_Crater_Hillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_Hillshade/LRO_LROC_DEM_Dante_Crater_Hillshade.asset deleted file mode 100644 index b0ac51f0c2..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_Hillshade/LRO_LROC_DEM_Dante_Crater_Hillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Shade_26N178E_150cmp", - Name = [[LRO LROC DEM, Dante Crater, Hillshade]], - FilePath = asset.localResource("LRO_NAC_Shade_26N178E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Dante Crater, Hillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Shade_26N178E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Dante Crater, Hillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_Hillshade/LRO_NAC_Shade_26N178E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_Hillshade/LRO_NAC_Shade_26N178E_150cmp.vrt deleted file mode 100644 index 78e6fbd722..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_Hillshade/LRO_NAC_Shade_26N178E_150cmp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - PROJCS["Equirectangular_MOON_26N",GEOGCS["GCS_MOON",DATUM["MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",26],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Gray - - LRO_NAC_Shade_26N178E_150cmp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Shade_26N178E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_Hillshade/LRO_NAC_Shade_26N178E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_Hillshade/LRO_NAC_Shade_26N178E_150cmp.wms deleted file mode 100644 index 10f534a548..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Dante_Crater_Hillshade/LRO_NAC_Shade_26N178E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Shade_26N178E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular_MOON_26N",GEOGCS["GCS_MOON",DATUM["MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",26],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 1 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Flamsteed_Crater_ColorHillshade/LRO_LROC_DEM_Flamsteed_Crater_ColorHillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Flamsteed_Crater_ColorHillshade/LRO_LROC_DEM_Flamsteed_Crater_ColorHillshade.asset deleted file mode 100644 index 7da339d2e0..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Flamsteed_Crater_ColorHillshade/LRO_LROC_DEM_Flamsteed_Crater_ColorHillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrShade_02S317E_150cmp", - Name = [[LRO LROC DEM, Flamsteed Crater, ColorHillshade]], - FilePath = asset.localResource("LRO_NAC_ClrShade_02S317E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Flamsteed Crater, ColorHillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrShade_02S317E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Flamsteed Crater, ColorHillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Flamsteed_Crater_ColorHillshade/LRO_NAC_ClrShade_02S317E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Flamsteed_Crater_ColorHillshade/LRO_NAC_ClrShade_02S317E_150cmp.vrt deleted file mode 100644 index 71cd919d73..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Flamsteed_Crater_ColorHillshade/LRO_NAC_ClrShade_02S317E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrShade_02S317E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrShade_02S317E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrShade_02S317E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrShade_02S317E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Flamsteed_Crater_Colorized_Confidence/LRO_LROC_DEM_Flamsteed_Crater_Colorized_Confidence.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Flamsteed_Crater_Colorized_Confidence/LRO_LROC_DEM_Flamsteed_Crater_Colorized_Confidence.asset deleted file mode 100644 index 9a07e67f2a..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Flamsteed_Crater_Colorized_Confidence/LRO_LROC_DEM_Flamsteed_Crater_Colorized_Confidence.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrConf_02S317E_150cmp", - Name = [[LRO LROC DEM, Flamsteed Crater, Colorized Confidence]], - FilePath = asset.localResource("LRO_NAC_ClrConf_02S317E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Flamsteed Crater, Colorized Confidence]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrConf_02S317E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Flamsteed Crater, Colorized Confidence layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Flamsteed_Crater_Colorized_Confidence/LRO_NAC_ClrConf_02S317E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Flamsteed_Crater_Colorized_Confidence/LRO_NAC_ClrConf_02S317E_150cmp.vrt deleted file mode 100644 index 24947401b3..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Flamsteed_Crater_Colorized_Confidence/LRO_NAC_ClrConf_02S317E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrConf_02S317E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrConf_02S317E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrConf_02S317E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrConf_02S317E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Flamsteed_Crater_Colorized_Confidence/LRO_NAC_ClrConf_02S317E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Flamsteed_Crater_Colorized_Confidence/LRO_NAC_ClrConf_02S317E_150cmp.wms deleted file mode 100644 index dd31d52499..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Flamsteed_Crater_Colorized_Confidence/LRO_NAC_ClrConf_02S317E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrConf_02S317E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Flamsteed_Crater_Colorized_Slope/LRO_LROC_DEM_Flamsteed_Crater_Colorized_Slope.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Flamsteed_Crater_Colorized_Slope/LRO_LROC_DEM_Flamsteed_Crater_Colorized_Slope.asset deleted file mode 100644 index 4bce79a7a6..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Flamsteed_Crater_Colorized_Slope/LRO_LROC_DEM_Flamsteed_Crater_Colorized_Slope.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Slope_02S317E_150cmp", - Name = [[LRO LROC DEM, Flamsteed Crater, Colorized Slope]], - FilePath = asset.localResource("LRO_NAC_Slope_02S317E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Flamsteed Crater, Colorized Slope]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Slope_02S317E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Flamsteed Crater, Colorized Slope layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Flamsteed_Crater_Colorized_Slope/LRO_NAC_Slope_02S317E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Flamsteed_Crater_Colorized_Slope/LRO_NAC_Slope_02S317E_150cmp.vrt deleted file mode 100644 index dceb0fa330..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Flamsteed_Crater_Colorized_Slope/LRO_NAC_Slope_02S317E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_Slope_02S317E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_Slope_02S317E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_Slope_02S317E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_Slope_02S317E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Flamsteed_Crater_Colorized_Slope/LRO_NAC_Slope_02S317E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Flamsteed_Crater_Colorized_Slope/LRO_NAC_Slope_02S317E_150cmp.wms deleted file mode 100644 index d5e7938f74..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Flamsteed_Crater_Colorized_Slope/LRO_NAC_Slope_02S317E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Slope_02S317E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Flamsteed_Crater_Grayscale/LRO_LROC_DEM_Flamsteed_Crater_Grayscale.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Flamsteed_Crater_Grayscale/LRO_LROC_DEM_Flamsteed_Crater_Grayscale.asset deleted file mode 100644 index 1394ff789a..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Flamsteed_Crater_Grayscale/LRO_LROC_DEM_Flamsteed_Crater_Grayscale.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Gray_02S317E_150cmp", - Name = [[LRO LROC DEM, Flamsteed Crater, Grayscale]], - FilePath = asset.localResource("LRO_NAC_Gray_02S317E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Flamsteed Crater, Grayscale]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Gray_02S317E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Flamsteed Crater, Grayscale layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Flamsteed_Crater_Grayscale/LRO_NAC_Gray_02S317E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Flamsteed_Crater_Grayscale/LRO_NAC_Gray_02S317E_150cmp.vrt deleted file mode 100644 index 12da73610b..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Flamsteed_Crater_Grayscale/LRO_NAC_Gray_02S317E_150cmp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Gray - - LRO_NAC_Gray_02S317E_150cmp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Gray_02S317E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Flamsteed_Crater_Grayscale/LRO_NAC_Gray_02S317E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Flamsteed_Crater_Grayscale/LRO_NAC_Gray_02S317E_150cmp.wms deleted file mode 100644 index f05087360d..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Flamsteed_Crater_Grayscale/LRO_NAC_Gray_02S317E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Gray_02S317E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 1 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Flamsteed_Crater_Hillshade/LRO_LROC_DEM_Flamsteed_Crater_Hillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Flamsteed_Crater_Hillshade/LRO_LROC_DEM_Flamsteed_Crater_Hillshade.asset deleted file mode 100644 index 98b4805e54..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Flamsteed_Crater_Hillshade/LRO_LROC_DEM_Flamsteed_Crater_Hillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Shade_02S317E_150cmp", - Name = [[LRO LROC DEM, Flamsteed Crater, Hillshade]], - FilePath = asset.localResource("LRO_NAC_Shade_02S317E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Flamsteed Crater, Hillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Shade_02S317E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Flamsteed Crater, Hillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Flamsteed_Crater_Hillshade/LRO_NAC_Shade_02S317E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Flamsteed_Crater_Hillshade/LRO_NAC_Shade_02S317E_150cmp.vrt deleted file mode 100644 index 6772d8047b..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Flamsteed_Crater_Hillshade/LRO_NAC_Shade_02S317E_150cmp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Gray - - LRO_NAC_Shade_02S317E_150cmp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Shade_02S317E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Flamsteed_Crater_Hillshade/LRO_NAC_Shade_02S317E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Flamsteed_Crater_Hillshade/LRO_NAC_Shade_02S317E_150cmp.wms deleted file mode 100644 index 96d4ffff0e..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Flamsteed_Crater_Hillshade/LRO_NAC_Shade_02S317E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Shade_02S317E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 1 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Fresh_Crater_East_of_Lents_ColorHillshade/LRO_LROC_DEM_Fresh_Crater_East_of_Lents_ColorHillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Fresh_Crater_East_of_Lents_ColorHillshade/LRO_LROC_DEM_Fresh_Crater_East_of_Lents_ColorHillshade.asset deleted file mode 100644 index a7e371ccb4..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Fresh_Crater_East_of_Lents_ColorHillshade/LRO_LROC_DEM_Fresh_Crater_East_of_Lents_ColorHillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrShade_03N280E_2m", - Name = [[LRO LROC DEM, Fresh Crater East of Lents, ColorHillshade]], - FilePath = asset.localResource("LRO_NAC_ClrShade_03N280E_2m.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Fresh Crater East of Lents, ColorHillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrShade_03N280E_2m%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Fresh Crater East of Lents, ColorHillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Fresh_Crater_East_of_Lents_ColorHillshade/LRO_NAC_ClrShade_03N280E_2m.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Fresh_Crater_East_of_Lents_ColorHillshade/LRO_NAC_ClrShade_03N280E_2m.vrt deleted file mode 100644 index ee92bd9779..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Fresh_Crater_East_of_Lents_ColorHillshade/LRO_NAC_ClrShade_03N280E_2m.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",3],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrShade_03N280E_2m.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrShade_03N280E_2m.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrShade_03N280E_2m.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrShade_03N280E_2m.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Fresh_Crater_East_of_Lents_Colorized_Slope/LRO_LROC_DEM_Fresh_Crater_East_of_Lents_Colorized_Slope.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Fresh_Crater_East_of_Lents_Colorized_Slope/LRO_LROC_DEM_Fresh_Crater_East_of_Lents_Colorized_Slope.asset deleted file mode 100644 index 2f286610f4..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Fresh_Crater_East_of_Lents_Colorized_Slope/LRO_LROC_DEM_Fresh_Crater_East_of_Lents_Colorized_Slope.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Slope_03N280E_2m", - Name = [[LRO LROC DEM, Fresh Crater East of Lents, Colorized Slope]], - FilePath = asset.localResource("LRO_NAC_Slope_03N280E_2m.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Fresh Crater East of Lents, Colorized Slope]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Slope_03N280E_2m%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Fresh Crater East of Lents, Colorized Slope layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Fresh_Crater_East_of_Lents_Colorized_Slope/LRO_NAC_Slope_03N280E_2m.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Fresh_Crater_East_of_Lents_Colorized_Slope/LRO_NAC_Slope_03N280E_2m.vrt deleted file mode 100644 index d2d4d61f32..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Fresh_Crater_East_of_Lents_Colorized_Slope/LRO_NAC_Slope_03N280E_2m.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",3],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_Slope_03N280E_2m.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_Slope_03N280E_2m.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_Slope_03N280E_2m.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_Slope_03N280E_2m.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Fresh_Crater_East_of_Lents_Colorized_Slope/LRO_NAC_Slope_03N280E_2m.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Fresh_Crater_East_of_Lents_Colorized_Slope/LRO_NAC_Slope_03N280E_2m.wms deleted file mode 100644 index 8d01ef6053..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Fresh_Crater_East_of_Lents_Colorized_Slope/LRO_NAC_Slope_03N280E_2m.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Slope_03N280E_2m/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",3],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Fresh_Crater_East_of_Lents_Grayscale/LRO_LROC_DEM_Fresh_Crater_East_of_Lents_Grayscale.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Fresh_Crater_East_of_Lents_Grayscale/LRO_LROC_DEM_Fresh_Crater_East_of_Lents_Grayscale.asset deleted file mode 100644 index fa0eda812e..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Fresh_Crater_East_of_Lents_Grayscale/LRO_LROC_DEM_Fresh_Crater_East_of_Lents_Grayscale.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Gray_03N280E_2m", - Name = [[LRO LROC DEM, Fresh Crater East of Lents, Grayscale]], - FilePath = asset.localResource("LRO_NAC_Gray_03N280E_2m.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Fresh Crater East of Lents, Grayscale]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Gray_03N280E_2m%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Fresh Crater East of Lents, Grayscale layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Fresh_Crater_East_of_Lents_Grayscale/LRO_NAC_Gray_03N280E_2m.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Fresh_Crater_East_of_Lents_Grayscale/LRO_NAC_Gray_03N280E_2m.vrt deleted file mode 100644 index b28c7326a9..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Fresh_Crater_East_of_Lents_Grayscale/LRO_NAC_Gray_03N280E_2m.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",3],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Gray - - LRO_NAC_Gray_03N280E_2m.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Gray_03N280E_2m.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Fresh_Crater_East_of_Lents_Grayscale/LRO_NAC_Gray_03N280E_2m.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Fresh_Crater_East_of_Lents_Grayscale/LRO_NAC_Gray_03N280E_2m.wms deleted file mode 100644 index 413423ee85..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Fresh_Crater_East_of_Lents_Grayscale/LRO_NAC_Gray_03N280E_2m.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Gray_03N280E_2m/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",3],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 1 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_15m_Color_Roughness/LRO_LROC_DEM_Gruithuisen_Domes_15m_Color_Roughness.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_15m_Color_Roughness/LRO_LROC_DEM_Gruithuisen_Domes_15m_Color_Roughness.asset deleted file mode 100644 index 27c010600a..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_15m_Color_Roughness/LRO_LROC_DEM_Gruithuisen_Domes_15m_Color_Roughness.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrRoughness_15m_36N320E_2mp", - Name = [[LRO LROC DEM, Gruithuisen Domes, 15m Color Roughness]], - FilePath = asset.localResource("LRO_NAC_ClrRoughness_15m_36N320E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Gruithuisen Domes, 15m Color Roughness]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrRoughness_15m_36N320E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Gruithuisen Domes, 15m Color Roughness layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_36N320E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_36N320E_2mp.vrt deleted file mode 100644 index e6e7c6e490..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_36N320E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",36],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrRoughness_15m_36N320E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrRoughness_15m_36N320E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrRoughness_15m_36N320E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrRoughness_15m_36N320E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Gruithuisen_Domes_15m_Color_Roughness_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Gruithuisen_Domes_15m_Color_Roughness_Hazard.asset deleted file mode 100644 index fe7fec6b63..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Gruithuisen_Domes_15m_Color_Roughness_Hazard.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrRoughnessHaz_4m_36N320E_2mp", - Name = [[LRO LROC DEM, Gruithuisen Domes, 15m Color Roughness Hazard]], - FilePath = asset.localResource("LRO_NAC_ClrRoughnessHaz_4m_36N320E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Gruithuisen Domes, 15m Color Roughness Hazard]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrRoughnessHaz_4m_36N320E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Gruithuisen Domes, 15m Color Roughness Hazard layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_4m_36N320E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_4m_36N320E_2mp.vrt deleted file mode 100644 index f859a935a4..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_4m_36N320E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrRoughnessHaz_4m_36N320E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrRoughnessHaz_4m_36N320E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrRoughnessHaz_4m_36N320E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrRoughnessHaz_4m_36N320E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_4m_36N320E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_4m_36N320E_2mp.wms deleted file mode 100644 index 6f205192da..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_4m_36N320E_2mp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrRoughnessHaz_4m_36N320E_2mp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_15m_Color_Slope/LRO_LROC_DEM_Gruithuisen_Domes_15m_Color_Slope.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_15m_Color_Slope/LRO_LROC_DEM_Gruithuisen_Domes_15m_Color_Slope.asset deleted file mode 100644 index d76ef4038b..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_15m_Color_Slope/LRO_LROC_DEM_Gruithuisen_Domes_15m_Color_Slope.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrSlope_15m_36N320E_2mp", - Name = [[LRO LROC DEM, Gruithuisen Domes, 15m Color Slope]], - FilePath = asset.localResource("LRO_NAC_ClrSlope_15m_36N320E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Gruithuisen Domes, 15m Color Slope]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrSlope_15m_36N320E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Gruithuisen Domes, 15m Color Slope layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_15m_Color_Slope/LRO_NAC_ClrSlope_15m_36N320E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_15m_Color_Slope/LRO_NAC_ClrSlope_15m_36N320E_2mp.vrt deleted file mode 100644 index 3d1b2e0b06..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_15m_Color_Slope/LRO_NAC_ClrSlope_15m_36N320E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrSlope_15m_36N320E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrSlope_15m_36N320E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrSlope_15m_36N320E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrSlope_15m_36N320E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_15m_Color_Slope/LRO_NAC_ClrSlope_15m_36N320E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_15m_Color_Slope/LRO_NAC_ClrSlope_15m_36N320E_2mp.wms deleted file mode 100644 index 5385a037aa..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_15m_Color_Slope/LRO_NAC_ClrSlope_15m_36N320E_2mp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrSlope_15m_36N320E_2mp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_15m_Color_Slope_Hazard/LRO_LROC_DEM_Gruithuisen_Domes_15m_Color_Slope_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_15m_Color_Slope_Hazard/LRO_LROC_DEM_Gruithuisen_Domes_15m_Color_Slope_Hazard.asset deleted file mode 100644 index c8f50ca629..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_15m_Color_Slope_Hazard/LRO_LROC_DEM_Gruithuisen_Domes_15m_Color_Slope_Hazard.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrSlopeHaz_15m_36N320E_2mp", - Name = [[LRO LROC DEM, Gruithuisen Domes, 15m Color Slope Hazard]], - FilePath = asset.localResource("LRO_NAC_ClrSlopeHaz_15m_36N320E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Gruithuisen Domes, 15m Color Slope Hazard]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrSlopeHaz_15m_36N320E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Gruithuisen Domes, 15m Color Slope Hazard layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_36N320E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_36N320E_2mp.vrt deleted file mode 100644 index 6d410f477f..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_36N320E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",36],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrSlopeHaz_15m_36N320E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrSlopeHaz_15m_36N320E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrSlopeHaz_15m_36N320E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrSlopeHaz_15m_36N320E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_36N320E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_36N320E_2mp.wms deleted file mode 100644 index 0a1705de92..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_36N320E_2mp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrSlopeHaz_15m_36N320E_2mp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",36],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_4m_Color_Roughness/LRO_LROC_DEM_Gruithuisen_Domes_4m_Color_Roughness.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_4m_Color_Roughness/LRO_LROC_DEM_Gruithuisen_Domes_4m_Color_Roughness.asset deleted file mode 100644 index c21d9e9aa4..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_4m_Color_Roughness/LRO_LROC_DEM_Gruithuisen_Domes_4m_Color_Roughness.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrRoughness_4m_36N320E_2mp", - Name = [[LRO LROC DEM, Gruithuisen Domes, 4m Color Roughness]], - FilePath = asset.localResource("LRO_NAC_ClrRoughness_4m_36N320E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Gruithuisen Domes, 4m Color Roughness]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrRoughness_4m_36N320E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Gruithuisen Domes, 4m Color Roughness layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_4m_Color_Roughness/LRO_NAC_ClrRoughness_4m_36N320E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_4m_Color_Roughness/LRO_NAC_ClrRoughness_4m_36N320E_2mp.vrt deleted file mode 100644 index 6587efe132..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_4m_Color_Roughness/LRO_NAC_ClrRoughness_4m_36N320E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrRoughness_4m_36N320E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrRoughness_4m_36N320E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrRoughness_4m_36N320E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrRoughness_4m_36N320E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_4m_Color_Roughness/LRO_NAC_ClrRoughness_4m_36N320E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_4m_Color_Roughness/LRO_NAC_ClrRoughness_4m_36N320E_2mp.wms deleted file mode 100644 index a9f6a22d45..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_4m_Color_Roughness/LRO_NAC_ClrRoughness_4m_36N320E_2mp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrRoughness_4m_36N320E_2mp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_4m_Color_Roughness_Hazard/LRO_LROC_DEM_Gruithuisen_Domes_4m_Color_Roughness_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_4m_Color_Roughness_Hazard/LRO_LROC_DEM_Gruithuisen_Domes_4m_Color_Roughness_Hazard.asset deleted file mode 100644 index a3dfc41766..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_4m_Color_Roughness_Hazard/LRO_LROC_DEM_Gruithuisen_Domes_4m_Color_Roughness_Hazard.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrRoughnessHaz_15m_36N320E_2mp", - Name = [[LRO LROC DEM, Gruithuisen Domes, 4m Color Roughness Hazard]], - FilePath = asset.localResource("LRO_NAC_ClrRoughnessHaz_15m_36N320E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Gruithuisen Domes, 4m Color Roughness Hazard]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrRoughnessHaz_15m_36N320E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Gruithuisen Domes, 4m Color Roughness Hazard layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_4m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_36N320E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_4m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_36N320E_2mp.vrt deleted file mode 100644 index dda84a4911..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_4m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_36N320E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",36],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrRoughnessHaz_15m_36N320E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrRoughnessHaz_15m_36N320E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrRoughnessHaz_15m_36N320E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrRoughnessHaz_15m_36N320E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_4m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_36N320E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_4m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_36N320E_2mp.wms deleted file mode 100644 index d8d0abcc36..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_4m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_36N320E_2mp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrRoughnessHaz_15m_36N320E_2mp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",36],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_4m_Color_Slope/LRO_LROC_DEM_Gruithuisen_Domes_4m_Color_Slope.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_4m_Color_Slope/LRO_LROC_DEM_Gruithuisen_Domes_4m_Color_Slope.asset deleted file mode 100644 index cb71e56cd6..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_4m_Color_Slope/LRO_LROC_DEM_Gruithuisen_Domes_4m_Color_Slope.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrSlope_4m_36N320E_2mp", - Name = [[LRO LROC DEM, Gruithuisen Domes, 4m Color Slope]], - FilePath = asset.localResource("LRO_NAC_ClrSlope_4m_36N320E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Gruithuisen Domes, 4m Color Slope]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrSlope_4m_36N320E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Gruithuisen Domes, 4m Color Slope layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_4m_Color_Slope/LRO_NAC_ClrSlope_4m_36N320E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_4m_Color_Slope/LRO_NAC_ClrSlope_4m_36N320E_2mp.vrt deleted file mode 100644 index 34ff664754..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_4m_Color_Slope/LRO_NAC_ClrSlope_4m_36N320E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",36],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrSlope_4m_36N320E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrSlope_4m_36N320E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrSlope_4m_36N320E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrSlope_4m_36N320E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_4m_Color_Slope/LRO_NAC_ClrSlope_4m_36N320E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_4m_Color_Slope/LRO_NAC_ClrSlope_4m_36N320E_2mp.wms deleted file mode 100644 index f053584938..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_4m_Color_Slope/LRO_NAC_ClrSlope_4m_36N320E_2mp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrSlope_4m_36N320E_2mp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",36],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_4m_Color_Slope_Hazard/LRO_LROC_DEM_Gruithuisen_Domes_4m_Color_Slope_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_4m_Color_Slope_Hazard/LRO_LROC_DEM_Gruithuisen_Domes_4m_Color_Slope_Hazard.asset deleted file mode 100644 index a0eb01b044..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_4m_Color_Slope_Hazard/LRO_LROC_DEM_Gruithuisen_Domes_4m_Color_Slope_Hazard.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrSlopeHaz_4m_36N320E_2mp", - Name = [[LRO LROC DEM, Gruithuisen Domes, 4m Color Slope Hazard]], - FilePath = asset.localResource("LRO_NAC_ClrSlopeHaz_4m_36N320E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Gruithuisen Domes, 4m Color Slope Hazard]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrSlopeHaz_4m_36N320E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Gruithuisen Domes, 4m Color Slope Hazard layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_4m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_4m_36N320E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_4m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_4m_36N320E_2mp.vrt deleted file mode 100644 index ba5459f70e..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_4m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_4m_36N320E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",36],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrSlopeHaz_4m_36N320E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrSlopeHaz_4m_36N320E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrSlopeHaz_4m_36N320E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrSlopeHaz_4m_36N320E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_4m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_4m_36N320E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_4m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_4m_36N320E_2mp.wms deleted file mode 100644 index 5ddcdbbea2..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_4m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_4m_36N320E_2mp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrSlopeHaz_4m_36N320E_2mp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",36],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_ColorHillshade/LRO_LROC_DEM_Gruithuisen_Domes_ColorHillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_ColorHillshade/LRO_LROC_DEM_Gruithuisen_Domes_ColorHillshade.asset deleted file mode 100644 index 5dcd0d1e7b..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_ColorHillshade/LRO_LROC_DEM_Gruithuisen_Domes_ColorHillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrShade_36N320E_2mp", - Name = [[LRO LROC DEM, Gruithuisen Domes, ColorHillshade]], - FilePath = asset.localResource("LRO_NAC_ClrShade_36N320E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Gruithuisen Domes, ColorHillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrShade_36N320E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Gruithuisen Domes, ColorHillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_ColorHillshade/LRO_NAC_ClrShade_36N320E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_ColorHillshade/LRO_NAC_ClrShade_36N320E_2mp.vrt deleted file mode 100644 index 5781dc3354..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_ColorHillshade/LRO_NAC_ClrShade_36N320E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",36],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrShade_36N320E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrShade_36N320E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrShade_36N320E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrShade_36N320E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_ColorHillshade/LRO_NAC_ClrShade_36N320E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_ColorHillshade/LRO_NAC_ClrShade_36N320E_2mp.wms deleted file mode 100644 index ba664c8f9e..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_ColorHillshade/LRO_NAC_ClrShade_36N320E_2mp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrShade_36N320E_2mp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",36],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_ColorHillshade_Slope/LRO_LROC_DEM_Gruithuisen_Domes_ColorHillshade_Slope.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_ColorHillshade_Slope/LRO_LROC_DEM_Gruithuisen_Domes_ColorHillshade_Slope.asset deleted file mode 100644 index 3b4375aac0..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_ColorHillshade_Slope/LRO_LROC_DEM_Gruithuisen_Domes_ColorHillshade_Slope.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Slope_36N320E_2mp", - Name = [[LRO LROC DEM, Gruithuisen Domes, ColorHillshade Slope]], - FilePath = asset.localResource("LRO_NAC_Slope_36N320E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Gruithuisen Domes, ColorHillshade Slope]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Slope_36N320E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Gruithuisen Domes, ColorHillshade Slope layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_ColorHillshade_Slope/LRO_NAC_Slope_36N320E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_ColorHillshade_Slope/LRO_NAC_Slope_36N320E_2mp.vrt deleted file mode 100644 index 7fed50bcff..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_ColorHillshade_Slope/LRO_NAC_Slope_36N320E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",36],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_Slope_36N320E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_Slope_36N320E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_Slope_36N320E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_Slope_36N320E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_ColorHillshade_Slope/LRO_NAC_Slope_36N320E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_ColorHillshade_Slope/LRO_NAC_Slope_36N320E_2mp.wms deleted file mode 100644 index 24893ede65..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_ColorHillshade_Slope/LRO_NAC_Slope_36N320E_2mp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Slope_36N320E_2mp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",36],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_Colorized_Confidence/LRO_LROC_DEM_Gruithuisen_Domes_Colorized_Confidence.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_Colorized_Confidence/LRO_LROC_DEM_Gruithuisen_Domes_Colorized_Confidence.asset deleted file mode 100644 index 62adbda72c..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_Colorized_Confidence/LRO_LROC_DEM_Gruithuisen_Domes_Colorized_Confidence.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrConf_36N320E_2mp", - Name = [[LRO LROC DEM, Gruithuisen Domes, Colorized Confidence]], - FilePath = asset.localResource("LRO_NAC_ClrConf_36N320E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Gruithuisen Domes, Colorized Confidence]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrConf_36N320E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Gruithuisen Domes, Colorized Confidence layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_Colorized_Confidence/LRO_NAC_ClrConf_36N320E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_Colorized_Confidence/LRO_NAC_ClrConf_36N320E_2mp.vrt deleted file mode 100644 index 99f5584ba7..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_Colorized_Confidence/LRO_NAC_ClrConf_36N320E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrConf_36N320E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrConf_36N320E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrConf_36N320E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrConf_36N320E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_Colorized_Confidence/LRO_NAC_ClrConf_36N320E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_Colorized_Confidence/LRO_NAC_ClrConf_36N320E_2mp.wms deleted file mode 100644 index 6074a7852a..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_Colorized_Confidence/LRO_NAC_ClrConf_36N320E_2mp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrConf_36N320E_2mp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_Grayscale/LRO_LROC_DEM_Gruithuisen_Domes_Grayscale.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_Grayscale/LRO_LROC_DEM_Gruithuisen_Domes_Grayscale.asset deleted file mode 100644 index dc8508929b..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_Grayscale/LRO_LROC_DEM_Gruithuisen_Domes_Grayscale.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Gray_36N320E_2mp", - Name = [[LRO LROC DEM, Gruithuisen Domes, Grayscale]], - FilePath = asset.localResource("LRO_NAC_Gray_36N320E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Gruithuisen Domes, Grayscale]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Gray_36N320E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Gruithuisen Domes, Grayscale layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_Grayscale/LRO_NAC_Gray_36N320E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_Grayscale/LRO_NAC_Gray_36N320E_2mp.vrt deleted file mode 100644 index b19e9c3399..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_Grayscale/LRO_NAC_Gray_36N320E_2mp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Gray - - LRO_NAC_Gray_36N320E_2mp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Gray_36N320E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_Grayscale/LRO_NAC_Gray_36N320E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_Grayscale/LRO_NAC_Gray_36N320E_2mp.wms deleted file mode 100644 index 1eb6bff157..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_Grayscale/LRO_NAC_Gray_36N320E_2mp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Gray_36N320E_2mp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 1 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_Hillshade/LRO_LROC_DEM_Gruithuisen_Domes_Hillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_Hillshade/LRO_LROC_DEM_Gruithuisen_Domes_Hillshade.asset deleted file mode 100644 index c85a7a455e..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_Hillshade/LRO_LROC_DEM_Gruithuisen_Domes_Hillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Shade_36N320E_2mp", - Name = [[LRO LROC DEM, Gruithuisen Domes, Hillshade]], - FilePath = asset.localResource("LRO_NAC_Shade_36N320E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Gruithuisen Domes, Hillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Shade_36N320E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Gruithuisen Domes, Hillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_Hillshade/LRO_NAC_Shade_36N320E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_Hillshade/LRO_NAC_Shade_36N320E_2mp.vrt deleted file mode 100644 index 03728755ac..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_Hillshade/LRO_NAC_Shade_36N320E_2mp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",36],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Gray - - LRO_NAC_Shade_36N320E_2mp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Shade_36N320E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_Hillshade/LRO_NAC_Shade_36N320E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_Hillshade/LRO_NAC_Shade_36N320E_2mp.wms deleted file mode 100644 index 7b5c0e8743..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Gruithuisen_Domes_Hillshade/LRO_NAC_Shade_36N320E_2mp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Shade_36N320E_2mp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",36],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 1 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_15m_Color_Roughness/LRO_LROC_DEM_Hertzsprung_15m_Color_Roughness.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_15m_Color_Roughness/LRO_LROC_DEM_Hertzsprung_15m_Color_Roughness.asset deleted file mode 100644 index 9a8741f2e9..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_15m_Color_Roughness/LRO_LROC_DEM_Hertzsprung_15m_Color_Roughness.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrRoughness_15m_00N234E_150cmp", - Name = [[LRO LROC DEM, Hertzsprung, 15m Color Roughness]], - FilePath = asset.localResource("LRO_NAC_ClrRoughness_15m_00N234E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Hertzsprung, 15m Color Roughness]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrRoughness_15m_00N234E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Hertzsprung, 15m Color Roughness layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_00N234E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_00N234E_150cmp.vrt deleted file mode 100644 index 4cf078b996..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_00N234E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",0],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrRoughness_15m_00N234E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrRoughness_15m_00N234E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrRoughness_15m_00N234E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrRoughness_15m_00N234E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Hertzsprung_15m_Color_Roughness_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Hertzsprung_15m_Color_Roughness_Hazard.asset deleted file mode 100644 index db11da1c4b..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Hertzsprung_15m_Color_Roughness_Hazard.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrRoughnessHaz_15m_00N234E_150cmp", - Name = [[LRO LROC DEM, Hertzsprung, 15m Color Roughness Hazard]], - FilePath = asset.localResource("LRO_NAC_ClrRoughnessHaz_15m_00N234E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Hertzsprung, 15m Color Roughness Hazard]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrRoughnessHaz_15m_00N234E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Hertzsprung, 15m Color Roughness Hazard layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_00N234E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_00N234E_150cmp.vrt deleted file mode 100644 index e9c76ac806..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_00N234E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",0],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrRoughnessHaz_15m_00N234E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrRoughnessHaz_15m_00N234E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrRoughnessHaz_15m_00N234E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrRoughnessHaz_15m_00N234E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_00N234E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_00N234E_150cmp.wms deleted file mode 100644 index ed9f9b9f9c..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_00N234E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrRoughnessHaz_15m_00N234E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",0],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_15m_Color_Slope/LRO_LROC_DEM_Hertzsprung_15m_Color_Slope.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_15m_Color_Slope/LRO_LROC_DEM_Hertzsprung_15m_Color_Slope.asset deleted file mode 100644 index a663ee357d..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_15m_Color_Slope/LRO_LROC_DEM_Hertzsprung_15m_Color_Slope.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrSlope_15m_00N234E_150cmp", - Name = [[LRO LROC DEM, Hertzsprung, 15m Color Slope]], - FilePath = asset.localResource("LRO_NAC_ClrSlope_15m_00N234E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Hertzsprung, 15m Color Slope]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrSlope_15m_00N234E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Hertzsprung, 15m Color Slope layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_15m_Color_Slope/LRO_NAC_ClrSlope_15m_00N234E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_15m_Color_Slope/LRO_NAC_ClrSlope_15m_00N234E_150cmp.vrt deleted file mode 100644 index a211bc474c..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_15m_Color_Slope/LRO_NAC_ClrSlope_15m_00N234E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrSlope_15m_00N234E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrSlope_15m_00N234E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrSlope_15m_00N234E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrSlope_15m_00N234E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_15m_Color_Slope/LRO_NAC_ClrSlope_15m_00N234E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_15m_Color_Slope/LRO_NAC_ClrSlope_15m_00N234E_150cmp.wms deleted file mode 100644 index 75d49e30fc..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_15m_Color_Slope/LRO_NAC_ClrSlope_15m_00N234E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrSlope_15m_00N234E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_15m_Color_Slope_Hazard/LRO_LROC_DEM_Hertzsprung_15m_Color_Slope_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_15m_Color_Slope_Hazard/LRO_LROC_DEM_Hertzsprung_15m_Color_Slope_Hazard.asset deleted file mode 100644 index 39269c8ea7..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_15m_Color_Slope_Hazard/LRO_LROC_DEM_Hertzsprung_15m_Color_Slope_Hazard.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrSlopeHaz_15m_00N234E_150cmp", - Name = [[LRO LROC DEM, Hertzsprung, 15m Color Slope Hazard]], - FilePath = asset.localResource("LRO_NAC_ClrSlopeHaz_15m_00N234E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Hertzsprung, 15m Color Slope Hazard]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrSlopeHaz_15m_00N234E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Hertzsprung, 15m Color Slope Hazard layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_00N234E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_00N234E_150cmp.vrt deleted file mode 100644 index 5408f1dad5..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_00N234E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",0],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrSlopeHaz_15m_00N234E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrSlopeHaz_15m_00N234E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrSlopeHaz_15m_00N234E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrSlopeHaz_15m_00N234E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_00N234E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_00N234E_150cmp.wms deleted file mode 100644 index f6cc161390..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_00N234E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrSlopeHaz_15m_00N234E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",0],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_3m_Color_Roughness/LRO_LROC_DEM_Hertzsprung_3m_Color_Roughness.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_3m_Color_Roughness/LRO_LROC_DEM_Hertzsprung_3m_Color_Roughness.asset deleted file mode 100644 index a700b5e770..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_3m_Color_Roughness/LRO_LROC_DEM_Hertzsprung_3m_Color_Roughness.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrRoughness_3m_00N234E_150cmp", - Name = [[LRO LROC DEM, Hertzsprung, 3m Color Roughness]], - FilePath = asset.localResource("LRO_NAC_ClrRoughness_3m_00N234E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Hertzsprung, 3m Color Roughness]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrRoughness_3m_00N234E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Hertzsprung, 3m Color Roughness layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_00N234E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_00N234E_150cmp.vrt deleted file mode 100644 index 3ea2fd01ee..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_00N234E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrRoughness_3m_00N234E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrRoughness_3m_00N234E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrRoughness_3m_00N234E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrRoughness_3m_00N234E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_00N234E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_00N234E_150cmp.wms deleted file mode 100644 index f21037f4e7..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_00N234E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrRoughness_3m_00N234E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_3m_Color_Roughness_Hazard/LRO_LROC_DEM_Hertzsprung_3m_Color_Roughness_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_3m_Color_Roughness_Hazard/LRO_LROC_DEM_Hertzsprung_3m_Color_Roughness_Hazard.asset deleted file mode 100644 index 90706b5cb0..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_3m_Color_Roughness_Hazard/LRO_LROC_DEM_Hertzsprung_3m_Color_Roughness_Hazard.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrRoughnessHaz_3m_00N234E_150cmp", - Name = [[LRO LROC DEM, Hertzsprung, 3m Color Roughness Hazard]], - FilePath = asset.localResource("LRO_NAC_ClrRoughnessHaz_3m_00N234E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Hertzsprung, 3m Color Roughness Hazard]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrRoughnessHaz_3m_00N234E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Hertzsprung, 3m Color Roughness Hazard layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_00N234E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_00N234E_150cmp.vrt deleted file mode 100644 index 8d0846e6ef..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_00N234E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrRoughnessHaz_3m_00N234E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrRoughnessHaz_3m_00N234E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrRoughnessHaz_3m_00N234E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrRoughnessHaz_3m_00N234E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_00N234E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_00N234E_150cmp.wms deleted file mode 100644 index c51fbf9b6d..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_00N234E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrRoughnessHaz_3m_00N234E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_3m_Color_Slope/LRO_LROC_DEM_Hertzsprung_3m_Color_Slope.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_3m_Color_Slope/LRO_LROC_DEM_Hertzsprung_3m_Color_Slope.asset deleted file mode 100644 index f0539e5885..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_3m_Color_Slope/LRO_LROC_DEM_Hertzsprung_3m_Color_Slope.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrSlope_3m_00N234E_150cmp", - Name = [[LRO LROC DEM, Hertzsprung, 3m Color Slope]], - FilePath = asset.localResource("LRO_NAC_ClrSlope_3m_00N234E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Hertzsprung, 3m Color Slope]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrSlope_3m_00N234E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Hertzsprung, 3m Color Slope layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_3m_Color_Slope/LRO_NAC_ClrSlope_3m_00N234E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_3m_Color_Slope/LRO_NAC_ClrSlope_3m_00N234E_150cmp.vrt deleted file mode 100644 index b84953ac3e..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_3m_Color_Slope/LRO_NAC_ClrSlope_3m_00N234E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",0],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrSlope_3m_00N234E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrSlope_3m_00N234E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrSlope_3m_00N234E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrSlope_3m_00N234E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_3m_Color_Slope/LRO_NAC_ClrSlope_3m_00N234E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_3m_Color_Slope/LRO_NAC_ClrSlope_3m_00N234E_150cmp.wms deleted file mode 100644 index e9631e88f4..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_3m_Color_Slope/LRO_NAC_ClrSlope_3m_00N234E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrSlope_3m_00N234E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",0],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_3m_Color_Slope_Hazard/LRO_LROC_DEM_Hertzsprung_3m_Color_Slope_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_3m_Color_Slope_Hazard/LRO_LROC_DEM_Hertzsprung_3m_Color_Slope_Hazard.asset deleted file mode 100644 index 5421f1c8fc..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_3m_Color_Slope_Hazard/LRO_LROC_DEM_Hertzsprung_3m_Color_Slope_Hazard.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrSlopeHaz_3m_00N234E_150cmp", - Name = [[LRO LROC DEM, Hertzsprung, 3m Color Slope Hazard]], - FilePath = asset.localResource("LRO_NAC_ClrSlopeHaz_3m_00N234E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Hertzsprung, 3m Color Slope Hazard]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrSlopeHaz_3m_00N234E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Hertzsprung, 3m Color Slope Hazard layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_00N234E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_00N234E_150cmp.vrt deleted file mode 100644 index bdeeae098c..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_00N234E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",0],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrSlopeHaz_3m_00N234E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrSlopeHaz_3m_00N234E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrSlopeHaz_3m_00N234E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrSlopeHaz_3m_00N234E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_00N234E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_00N234E_150cmp.wms deleted file mode 100644 index 52230c08b1..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_00N234E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrSlopeHaz_3m_00N234E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",0],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_ColorHillshade/LRO_LROC_DEM_Hertzsprung_ColorHillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_ColorHillshade/LRO_LROC_DEM_Hertzsprung_ColorHillshade.asset deleted file mode 100644 index d617b92c73..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_ColorHillshade/LRO_LROC_DEM_Hertzsprung_ColorHillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrShade_00N234E_150cmp", - Name = [[LRO LROC DEM, Hertzsprung, ColorHillshade]], - FilePath = asset.localResource("LRO_NAC_ClrShade_00N234E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Hertzsprung, ColorHillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrShade_00N234E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Hertzsprung, ColorHillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_ColorHillshade/LRO_NAC_ClrShade_00N234E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_ColorHillshade/LRO_NAC_ClrShade_00N234E_150cmp.vrt deleted file mode 100644 index d178eda21d..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_ColorHillshade/LRO_NAC_ClrShade_00N234E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",0],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrShade_00N234E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrShade_00N234E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrShade_00N234E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrShade_00N234E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_ColorHillshade/LRO_NAC_ClrShade_00N234E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_ColorHillshade/LRO_NAC_ClrShade_00N234E_150cmp.wms deleted file mode 100644 index 07a32f7435..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_ColorHillshade/LRO_NAC_ClrShade_00N234E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrShade_00N234E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",0],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_Colorized_Confidence/LRO_LROC_DEM_Hertzsprung_Colorized_Confidence.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_Colorized_Confidence/LRO_LROC_DEM_Hertzsprung_Colorized_Confidence.asset deleted file mode 100644 index 98bc299961..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_Colorized_Confidence/LRO_LROC_DEM_Hertzsprung_Colorized_Confidence.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrConf_00N234E_150cmp", - Name = [[LRO LROC DEM, Hertzsprung, Colorized Confidence]], - FilePath = asset.localResource("LRO_NAC_ClrConf_00N234E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Hertzsprung, Colorized Confidence]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrConf_00N234E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Hertzsprung, Colorized Confidence layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_Colorized_Confidence/LRO_NAC_ClrConf_00N234E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_Colorized_Confidence/LRO_NAC_ClrConf_00N234E_150cmp.vrt deleted file mode 100644 index 55929d13ca..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_Colorized_Confidence/LRO_NAC_ClrConf_00N234E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrConf_00N234E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrConf_00N234E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrConf_00N234E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrConf_00N234E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_Colorized_Confidence/LRO_NAC_ClrConf_00N234E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_Colorized_Confidence/LRO_NAC_ClrConf_00N234E_150cmp.wms deleted file mode 100644 index 69bcafc6fc..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_Colorized_Confidence/LRO_NAC_ClrConf_00N234E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrConf_00N234E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_Colorized_Slope/LRO_LROC_DEM_Hertzsprung_Colorized_Slope.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_Colorized_Slope/LRO_LROC_DEM_Hertzsprung_Colorized_Slope.asset deleted file mode 100644 index 1dfaa769b6..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_Colorized_Slope/LRO_LROC_DEM_Hertzsprung_Colorized_Slope.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Slope_00N234E_150cmp", - Name = [[LRO LROC DEM, Hertzsprung, Colorized Slope]], - FilePath = asset.localResource("LRO_NAC_Slope_00N234E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Hertzsprung, Colorized Slope]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Slope_00N234E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Hertzsprung, Colorized Slope layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_Colorized_Slope/LRO_NAC_Slope_00N234E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_Colorized_Slope/LRO_NAC_Slope_00N234E_150cmp.vrt deleted file mode 100644 index 756df77b56..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_Colorized_Slope/LRO_NAC_Slope_00N234E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",0],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_Slope_00N234E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_Slope_00N234E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_Slope_00N234E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_Slope_00N234E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_Colorized_Slope/LRO_NAC_Slope_00N234E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_Colorized_Slope/LRO_NAC_Slope_00N234E_150cmp.wms deleted file mode 100644 index b68ab011cd..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_Colorized_Slope/LRO_NAC_Slope_00N234E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Slope_00N234E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",0],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_Grayscale/LRO_LROC_DEM_Hertzsprung_Grayscale.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_Grayscale/LRO_LROC_DEM_Hertzsprung_Grayscale.asset deleted file mode 100644 index d4fd7c8a84..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_Grayscale/LRO_LROC_DEM_Hertzsprung_Grayscale.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Gray_00N234E_150cmp", - Name = [[LRO LROC DEM, Hertzsprung, Grayscale]], - FilePath = asset.localResource("LRO_NAC_Gray_00N234E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Hertzsprung, Grayscale]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Gray_00N234E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Hertzsprung, Grayscale layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_Grayscale/LRO_NAC_Gray_00N234E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_Grayscale/LRO_NAC_Gray_00N234E_150cmp.vrt deleted file mode 100644 index a9b89360b0..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_Grayscale/LRO_NAC_Gray_00N234E_150cmp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Gray - - LRO_NAC_Gray_00N234E_150cmp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Gray_00N234E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_Grayscale/LRO_NAC_Gray_00N234E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_Grayscale/LRO_NAC_Gray_00N234E_150cmp.wms deleted file mode 100644 index 06455db393..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_Grayscale/LRO_NAC_Gray_00N234E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Gray_00N234E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 1 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_Hillshade/LRO_LROC_DEM_Hertzsprung_Hillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_Hillshade/LRO_LROC_DEM_Hertzsprung_Hillshade.asset deleted file mode 100644 index 68c9d3db56..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_Hillshade/LRO_LROC_DEM_Hertzsprung_Hillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Shade_00N234E_150cmp", - Name = [[LRO LROC DEM, Hertzsprung, Hillshade]], - FilePath = asset.localResource("LRO_NAC_Shade_00N234E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Hertzsprung, Hillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Shade_00N234E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Hertzsprung, Hillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_Hillshade/LRO_NAC_Shade_00N234E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_Hillshade/LRO_NAC_Shade_00N234E_150cmp.vrt deleted file mode 100644 index dc564a87f6..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_Hillshade/LRO_NAC_Shade_00N234E_150cmp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",0],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Gray - - LRO_NAC_Shade_00N234E_150cmp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Shade_00N234E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_Hillshade/LRO_NAC_Shade_00N234E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_Hillshade/LRO_NAC_Shade_00N234E_150cmp.wms deleted file mode 100644 index 42f22aebe2..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hertzsprung_Hillshade/LRO_NAC_Shade_00N234E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Shade_00N234E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",0],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 1 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_15m_Color_Roughness/LRO_LROC_DEM_Hortensius_Domes_15m_Color_Roughness.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_15m_Color_Roughness/LRO_LROC_DEM_Hortensius_Domes_15m_Color_Roughness.asset deleted file mode 100644 index b9f3fdbca1..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_15m_Color_Roughness/LRO_LROC_DEM_Hortensius_Domes_15m_Color_Roughness.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrRoughness_15m_08N332E_2mp", - Name = [[LRO LROC DEM, Hortensius Domes, 15m Color Roughness]], - FilePath = asset.localResource("LRO_NAC_ClrRoughness_15m_08N332E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Hortensius Domes, 15m Color Roughness]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrRoughness_15m_08N332E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Hortensius Domes, 15m Color Roughness layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_08N332E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_08N332E_2mp.vrt deleted file mode 100644 index 1c76633654..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_08N332E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",7],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrRoughness_15m_08N332E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrRoughness_15m_08N332E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrRoughness_15m_08N332E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrRoughness_15m_08N332E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Hortensius_Domes_15m_Color_Roughness_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Hortensius_Domes_15m_Color_Roughness_Hazard.asset deleted file mode 100644 index 2c1590eb58..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Hortensius_Domes_15m_Color_Roughness_Hazard.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrRoughnessHaz_15m_08N332E_2mp", - Name = [[LRO LROC DEM, Hortensius Domes, 15m Color Roughness Hazard]], - FilePath = asset.localResource("LRO_NAC_ClrRoughnessHaz_15m_08N332E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Hortensius Domes, 15m Color Roughness Hazard]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrRoughnessHaz_15m_08N332E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Hortensius Domes, 15m Color Roughness Hazard layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_08N332E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_08N332E_2mp.vrt deleted file mode 100644 index 7e99dacaab..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_08N332E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrRoughnessHaz_15m_08N332E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrRoughnessHaz_15m_08N332E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrRoughnessHaz_15m_08N332E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrRoughnessHaz_15m_08N332E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_08N332E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_08N332E_2mp.wms deleted file mode 100644 index b8bb9c01af..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_08N332E_2mp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrRoughnessHaz_15m_08N332E_2mp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_15m_Color_Slope/LRO_LROC_DEM_Hortensius_Domes_15m_Color_Slope.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_15m_Color_Slope/LRO_LROC_DEM_Hortensius_Domes_15m_Color_Slope.asset deleted file mode 100644 index e4132435f2..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_15m_Color_Slope/LRO_LROC_DEM_Hortensius_Domes_15m_Color_Slope.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrSlope_15m_08N332E_2mp", - Name = [[LRO LROC DEM, Hortensius Domes, 15m Color Slope]], - FilePath = asset.localResource("LRO_NAC_ClrSlope_15m_08N332E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Hortensius Domes, 15m Color Slope]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrSlope_15m_08N332E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Hortensius Domes, 15m Color Slope layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_15m_Color_Slope/LRO_NAC_ClrSlope_15m_08N332E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_15m_Color_Slope/LRO_NAC_ClrSlope_15m_08N332E_2mp.vrt deleted file mode 100644 index ed8736d752..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_15m_Color_Slope/LRO_NAC_ClrSlope_15m_08N332E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrSlope_15m_08N332E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrSlope_15m_08N332E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrSlope_15m_08N332E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrSlope_15m_08N332E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_15m_Color_Slope/LRO_NAC_ClrSlope_15m_08N332E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_15m_Color_Slope/LRO_NAC_ClrSlope_15m_08N332E_2mp.wms deleted file mode 100644 index bbc8886a1c..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_15m_Color_Slope/LRO_NAC_ClrSlope_15m_08N332E_2mp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrSlope_15m_08N332E_2mp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_15m_Color_Slope_Hazard/LRO_LROC_DEM_Hortensius_Domes_15m_Color_Slope_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_15m_Color_Slope_Hazard/LRO_LROC_DEM_Hortensius_Domes_15m_Color_Slope_Hazard.asset deleted file mode 100644 index 24f7d25ffa..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_15m_Color_Slope_Hazard/LRO_LROC_DEM_Hortensius_Domes_15m_Color_Slope_Hazard.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrSlopeHaz_15m_08N332E_2mp", - Name = [[LRO LROC DEM, Hortensius Domes, 15m Color Slope Hazard]], - FilePath = asset.localResource("LRO_NAC_ClrSlopeHaz_15m_08N332E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Hortensius Domes, 15m Color Slope Hazard]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrSlopeHaz_15m_08N332E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Hortensius Domes, 15m Color Slope Hazard layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_08N332E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_08N332E_2mp.vrt deleted file mode 100644 index dff63c7914..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_08N332E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",7],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrSlopeHaz_15m_08N332E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrSlopeHaz_15m_08N332E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrSlopeHaz_15m_08N332E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrSlopeHaz_15m_08N332E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_08N332E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_08N332E_2mp.wms deleted file mode 100644 index 9ad1c2828a..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_08N332E_2mp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrSlopeHaz_15m_08N332E_2mp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",7],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_4m_Color_Roughness/LRO_LROC_DEM_Hortensius_Domes_4m_Color_Roughness.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_4m_Color_Roughness/LRO_LROC_DEM_Hortensius_Domes_4m_Color_Roughness.asset deleted file mode 100644 index c52c458180..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_4m_Color_Roughness/LRO_LROC_DEM_Hortensius_Domes_4m_Color_Roughness.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrRoughness_4m_08N332E_2mp", - Name = [[LRO LROC DEM, Hortensius Domes, 4m Color Roughness]], - FilePath = asset.localResource("LRO_NAC_ClrRoughness_4m_08N332E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Hortensius Domes, 4m Color Roughness]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrRoughness_4m_08N332E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Hortensius Domes, 4m Color Roughness layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_4m_Color_Roughness/LRO_NAC_ClrRoughness_4m_08N332E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_4m_Color_Roughness/LRO_NAC_ClrRoughness_4m_08N332E_2mp.vrt deleted file mode 100644 index fe234cf4aa..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_4m_Color_Roughness/LRO_NAC_ClrRoughness_4m_08N332E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrRoughness_4m_08N332E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrRoughness_4m_08N332E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrRoughness_4m_08N332E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrRoughness_4m_08N332E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_4m_Color_Roughness/LRO_NAC_ClrRoughness_4m_08N332E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_4m_Color_Roughness/LRO_NAC_ClrRoughness_4m_08N332E_2mp.wms deleted file mode 100644 index 043dbd4022..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_4m_Color_Roughness/LRO_NAC_ClrRoughness_4m_08N332E_2mp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrRoughness_4m_08N332E_2mp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_4m_Color_Roughness_Hazard/LRO_LROC_DEM_Hortensius_Domes_4m_Color_Roughness_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_4m_Color_Roughness_Hazard/LRO_LROC_DEM_Hortensius_Domes_4m_Color_Roughness_Hazard.asset deleted file mode 100644 index fc4349de3b..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_4m_Color_Roughness_Hazard/LRO_LROC_DEM_Hortensius_Domes_4m_Color_Roughness_Hazard.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrRoughnessHaz_4m_08N332E_2mp", - Name = [[LRO LROC DEM, Hortensius Domes, 4m Color Roughness Hazard]], - FilePath = asset.localResource("LRO_NAC_ClrRoughnessHaz_4m_08N332E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Hortensius Domes, 4m Color Roughness Hazard]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrRoughnessHaz_4m_08N332E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Hortensius Domes, 4m Color Roughness Hazard layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_4m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_4m_08N332E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_4m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_4m_08N332E_2mp.vrt deleted file mode 100644 index 7f8a32c258..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_4m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_4m_08N332E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",7],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrRoughnessHaz_4m_08N332E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrRoughnessHaz_4m_08N332E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrRoughnessHaz_4m_08N332E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrRoughnessHaz_4m_08N332E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_4m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_4m_08N332E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_4m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_4m_08N332E_2mp.wms deleted file mode 100644 index a8848a6e1f..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_4m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_4m_08N332E_2mp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrRoughnessHaz_4m_08N332E_2mp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",7],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_4m_Color_Slope/LRO_LROC_DEM_Hortensius_Domes_4m_Color_Slope.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_4m_Color_Slope/LRO_LROC_DEM_Hortensius_Domes_4m_Color_Slope.asset deleted file mode 100644 index b3939e318d..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_4m_Color_Slope/LRO_LROC_DEM_Hortensius_Domes_4m_Color_Slope.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrSlope_4m_08N332E_2mp", - Name = [[LRO LROC DEM, Hortensius Domes, 4m Color Slope]], - FilePath = asset.localResource("LRO_NAC_ClrSlope_4m_08N332E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Hortensius Domes, 4m Color Slope]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrSlope_4m_08N332E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Hortensius Domes, 4m Color Slope layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_4m_Color_Slope/LRO_NAC_ClrSlope_4m_08N332E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_4m_Color_Slope/LRO_NAC_ClrSlope_4m_08N332E_2mp.vrt deleted file mode 100644 index 97aba1ae80..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_4m_Color_Slope/LRO_NAC_ClrSlope_4m_08N332E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrSlope_4m_08N332E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrSlope_4m_08N332E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrSlope_4m_08N332E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrSlope_4m_08N332E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_4m_Color_Slope/LRO_NAC_ClrSlope_4m_08N332E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_4m_Color_Slope/LRO_NAC_ClrSlope_4m_08N332E_2mp.wms deleted file mode 100644 index 071447859a..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_4m_Color_Slope/LRO_NAC_ClrSlope_4m_08N332E_2mp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrSlope_4m_08N332E_2mp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_4m_Color_Slope_Hazard/LRO_LROC_DEM_Hortensius_Domes_4m_Color_Slope_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_4m_Color_Slope_Hazard/LRO_LROC_DEM_Hortensius_Domes_4m_Color_Slope_Hazard.asset deleted file mode 100644 index ed0abc265c..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_4m_Color_Slope_Hazard/LRO_LROC_DEM_Hortensius_Domes_4m_Color_Slope_Hazard.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrSlopeHaz_4m_08N332E_2mp", - Name = [[LRO LROC DEM, Hortensius Domes, 4m Color Slope Hazard]], - FilePath = asset.localResource("LRO_NAC_ClrSlopeHaz_4m_08N332E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Hortensius Domes, 4m Color Slope Hazard]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrSlopeHaz_4m_08N332E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Hortensius Domes, 4m Color Slope Hazard layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_4m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_4m_08N332E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_4m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_4m_08N332E_2mp.vrt deleted file mode 100644 index fcb12b9277..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_4m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_4m_08N332E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrSlopeHaz_4m_08N332E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrSlopeHaz_4m_08N332E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrSlopeHaz_4m_08N332E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrSlopeHaz_4m_08N332E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_4m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_4m_08N332E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_4m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_4m_08N332E_2mp.wms deleted file mode 100644 index de4a043706..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_4m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_4m_08N332E_2mp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrSlopeHaz_4m_08N332E_2mp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_ColorHillshade/LRO_LROC_DEM_Hortensius_Domes_ColorHillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_ColorHillshade/LRO_LROC_DEM_Hortensius_Domes_ColorHillshade.asset deleted file mode 100644 index 4563577a05..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_ColorHillshade/LRO_LROC_DEM_Hortensius_Domes_ColorHillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrShade_08N332E_2mp", - Name = [[LRO LROC DEM, Hortensius Domes, ColorHillshade]], - FilePath = asset.localResource("LRO_NAC_ClrShade_08N332E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Hortensius Domes, ColorHillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrShade_08N332E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Hortensius Domes, ColorHillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_ColorHillshade/LRO_NAC_ClrShade_08N332E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_ColorHillshade/LRO_NAC_ClrShade_08N332E_2mp.vrt deleted file mode 100644 index bb037b8f4a..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_ColorHillshade/LRO_NAC_ClrShade_08N332E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrShade_08N332E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrShade_08N332E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrShade_08N332E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrShade_08N332E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_ColorHillshade/LRO_NAC_ClrShade_08N332E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_ColorHillshade/LRO_NAC_ClrShade_08N332E_2mp.wms deleted file mode 100644 index 2b4ee90669..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_ColorHillshade/LRO_NAC_ClrShade_08N332E_2mp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrShade_08N332E_2mp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_ColorHillshade_Slope/LRO_LROC_DEM_Hortensius_Domes_ColorHillshade_Slope.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_ColorHillshade_Slope/LRO_LROC_DEM_Hortensius_Domes_ColorHillshade_Slope.asset deleted file mode 100644 index 56693c580a..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_ColorHillshade_Slope/LRO_LROC_DEM_Hortensius_Domes_ColorHillshade_Slope.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Slope_08N332E_2mp", - Name = [[LRO LROC DEM, Hortensius Domes, ColorHillshade Slope]], - FilePath = asset.localResource("LRO_NAC_Slope_08N332E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Hortensius Domes, ColorHillshade Slope]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Slope_08N332E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Hortensius Domes, ColorHillshade Slope layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_ColorHillshade_Slope/LRO_NAC_Slope_08N332E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_ColorHillshade_Slope/LRO_NAC_Slope_08N332E_2mp.vrt deleted file mode 100644 index d38dbea57a..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_ColorHillshade_Slope/LRO_NAC_Slope_08N332E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",8],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_Slope_08N332E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_Slope_08N332E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_Slope_08N332E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_Slope_08N332E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_ColorHillshade_Slope/LRO_NAC_Slope_08N332E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_ColorHillshade_Slope/LRO_NAC_Slope_08N332E_2mp.wms deleted file mode 100644 index c268c6f07e..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_ColorHillshade_Slope/LRO_NAC_Slope_08N332E_2mp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Slope_08N332E_2mp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",8],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_Colorized_Confidence/LRO_LROC_DEM_Hortensius_Domes_Colorized_Confidence.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_Colorized_Confidence/LRO_LROC_DEM_Hortensius_Domes_Colorized_Confidence.asset deleted file mode 100644 index 9d3d5f7c56..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_Colorized_Confidence/LRO_LROC_DEM_Hortensius_Domes_Colorized_Confidence.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrConf_08N332E_2mp", - Name = [[LRO LROC DEM, Hortensius Domes, Colorized Confidence]], - FilePath = asset.localResource("LRO_NAC_ClrConf_08N332E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Hortensius Domes, Colorized Confidence]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrConf_08N332E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Hortensius Domes, Colorized Confidence layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_Colorized_Confidence/LRO_NAC_ClrConf_08N332E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_Colorized_Confidence/LRO_NAC_ClrConf_08N332E_2mp.vrt deleted file mode 100644 index f59543e25e..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_Colorized_Confidence/LRO_NAC_ClrConf_08N332E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrConf_08N332E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrConf_08N332E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrConf_08N332E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrConf_08N332E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_Colorized_Confidence/LRO_NAC_ClrConf_08N332E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_Colorized_Confidence/LRO_NAC_ClrConf_08N332E_2mp.wms deleted file mode 100644 index d94714a6f6..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_Colorized_Confidence/LRO_NAC_ClrConf_08N332E_2mp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrConf_08N332E_2mp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_Grayscale/LRO_LROC_DEM_Hortensius_Domes_Grayscale.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_Grayscale/LRO_LROC_DEM_Hortensius_Domes_Grayscale.asset deleted file mode 100644 index 721465fe5e..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_Grayscale/LRO_LROC_DEM_Hortensius_Domes_Grayscale.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Gray_08N332E_2mp", - Name = [[LRO LROC DEM, Hortensius Domes, Grayscale]], - FilePath = asset.localResource("LRO_NAC_Gray_08N332E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Hortensius Domes, Grayscale]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Gray_08N332E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Hortensius Domes, Grayscale layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_Grayscale/LRO_NAC_Gray_08N332E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_Grayscale/LRO_NAC_Gray_08N332E_2mp.vrt deleted file mode 100644 index 446e68a4ac..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_Grayscale/LRO_NAC_Gray_08N332E_2mp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Gray - - LRO_NAC_Gray_08N332E_2mp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Gray_08N332E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_Grayscale/LRO_NAC_Gray_08N332E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_Grayscale/LRO_NAC_Gray_08N332E_2mp.wms deleted file mode 100644 index f3c4db25c5..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_Grayscale/LRO_NAC_Gray_08N332E_2mp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Gray_08N332E_2mp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 1 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_Hillshade/LRO_LROC_DEM_Hortensius_Domes_Hillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_Hillshade/LRO_LROC_DEM_Hortensius_Domes_Hillshade.asset deleted file mode 100644 index 75115da2c1..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_Hillshade/LRO_LROC_DEM_Hortensius_Domes_Hillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Shade_08N332E_2mp", - Name = [[LRO LROC DEM, Hortensius Domes, Hillshade]], - FilePath = asset.localResource("LRO_NAC_Shade_08N332E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Hortensius Domes, Hillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Shade_08N332E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Hortensius Domes, Hillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_Hillshade/LRO_NAC_Shade_08N332E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_Hillshade/LRO_NAC_Shade_08N332E_2mp.vrt deleted file mode 100644 index 49824ea965..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_Hillshade/LRO_NAC_Shade_08N332E_2mp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",8],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Gray - - LRO_NAC_Shade_08N332E_2mp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Shade_08N332E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_Hillshade/LRO_NAC_Shade_08N332E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_Hillshade/LRO_NAC_Shade_08N332E_2mp.wms deleted file mode 100644 index c9f6951775..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Hortensius_Domes_Hillshade/LRO_NAC_Shade_08N332E_2mp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Shade_08N332E_2mp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",8],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 1 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Humboldtianum_Basin_ColorHillshade/LRO_LROC_DEM_Humboldtianum_Basin_ColorHillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Humboldtianum_Basin_ColorHillshade/LRO_LROC_DEM_Humboldtianum_Basin_ColorHillshade.asset deleted file mode 100644 index 0588c2a017..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Humboldtianum_Basin_ColorHillshade/LRO_LROC_DEM_Humboldtianum_Basin_ColorHillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrShade_55N077E_200cmp", - Name = [[LRO LROC DEM, Humboldtianum Basin, ColorHillshade]], - FilePath = asset.localResource("LRO_NAC_ClrShade_55N077E_200cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Humboldtianum Basin, ColorHillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrShade_55N077E_200cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Humboldtianum Basin, ColorHillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Humboldtianum_Basin_ColorHillshade/LRO_NAC_ClrShade_55N077E_200cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Humboldtianum_Basin_ColorHillshade/LRO_NAC_ClrShade_55N077E_200cmp.vrt deleted file mode 100644 index 3641800e7e..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Humboldtianum_Basin_ColorHillshade/LRO_NAC_ClrShade_55N077E_200cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",55],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrShade_55N077E_200cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrShade_55N077E_200cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrShade_55N077E_200cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrShade_55N077E_200cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Humboldtianum_Basin_Colorized_Confidence/LRO_LROC_DEM_Humboldtianum_Basin_Colorized_Confidence.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Humboldtianum_Basin_Colorized_Confidence/LRO_LROC_DEM_Humboldtianum_Basin_Colorized_Confidence.asset deleted file mode 100644 index 608f54d862..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Humboldtianum_Basin_Colorized_Confidence/LRO_LROC_DEM_Humboldtianum_Basin_Colorized_Confidence.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrConf_55N077E_200cmp", - Name = [[LRO LROC DEM, Humboldtianum Basin, Colorized Confidence]], - FilePath = asset.localResource("LRO_NAC_ClrConf_55N077E_200cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Humboldtianum Basin, Colorized Confidence]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrConf_55N077E_200cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Humboldtianum Basin, Colorized Confidence layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Humboldtianum_Basin_Colorized_Confidence/LRO_NAC_ClrConf_55N077E_200cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Humboldtianum_Basin_Colorized_Confidence/LRO_NAC_ClrConf_55N077E_200cmp.vrt deleted file mode 100644 index 4dde4534f1..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Humboldtianum_Basin_Colorized_Confidence/LRO_NAC_ClrConf_55N077E_200cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrConf_55N077E_200cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrConf_55N077E_200cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrConf_55N077E_200cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrConf_55N077E_200cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Humboldtianum_Basin_Colorized_Confidence/LRO_NAC_ClrConf_55N077E_200cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Humboldtianum_Basin_Colorized_Confidence/LRO_NAC_ClrConf_55N077E_200cmp.wms deleted file mode 100644 index 0d2d148e86..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Humboldtianum_Basin_Colorized_Confidence/LRO_NAC_ClrConf_55N077E_200cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrConf_55N077E_200cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Humboldtianum_Basin_Colorized_Slope/LRO_LROC_DEM_Humboldtianum_Basin_Colorized_Slope.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Humboldtianum_Basin_Colorized_Slope/LRO_LROC_DEM_Humboldtianum_Basin_Colorized_Slope.asset deleted file mode 100644 index 8b64e930fe..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Humboldtianum_Basin_Colorized_Slope/LRO_LROC_DEM_Humboldtianum_Basin_Colorized_Slope.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Slope_55N077E_200cmp", - Name = [[LRO LROC DEM, Humboldtianum Basin, Colorized Slope]], - FilePath = asset.localResource("LRO_NAC_Slope_55N077E_200cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Humboldtianum Basin, Colorized Slope]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Slope_55N077E_200cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Humboldtianum Basin, Colorized Slope layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Humboldtianum_Basin_Colorized_Slope/LRO_NAC_Slope_55N077E_200cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Humboldtianum_Basin_Colorized_Slope/LRO_NAC_Slope_55N077E_200cmp.vrt deleted file mode 100644 index d7edea6297..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Humboldtianum_Basin_Colorized_Slope/LRO_NAC_Slope_55N077E_200cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_Slope_55N077E_200cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_Slope_55N077E_200cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_Slope_55N077E_200cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_Slope_55N077E_200cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Humboldtianum_Basin_Colorized_Slope/LRO_NAC_Slope_55N077E_200cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Humboldtianum_Basin_Colorized_Slope/LRO_NAC_Slope_55N077E_200cmp.wms deleted file mode 100644 index ad9f610254..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Humboldtianum_Basin_Colorized_Slope/LRO_NAC_Slope_55N077E_200cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Slope_55N077E_200cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Humboldtianum_Basin_Grayscale/LRO_LROC_DEM_Humboldtianum_Basin_Grayscale.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Humboldtianum_Basin_Grayscale/LRO_LROC_DEM_Humboldtianum_Basin_Grayscale.asset deleted file mode 100644 index c165359698..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Humboldtianum_Basin_Grayscale/LRO_LROC_DEM_Humboldtianum_Basin_Grayscale.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Gray_55N077E_200cmp", - Name = [[LRO LROC DEM, Humboldtianum Basin, Grayscale]], - FilePath = asset.localResource("LRO_NAC_Gray_55N077E_200cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Humboldtianum Basin, Grayscale]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Gray_55N077E_200cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Humboldtianum Basin, Grayscale layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Humboldtianum_Basin_Grayscale/LRO_NAC_Gray_55N077E_200cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Humboldtianum_Basin_Grayscale/LRO_NAC_Gray_55N077E_200cmp.vrt deleted file mode 100644 index 69c2e87aaf..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Humboldtianum_Basin_Grayscale/LRO_NAC_Gray_55N077E_200cmp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Gray - - LRO_NAC_Gray_55N077E_200cmp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Gray_55N077E_200cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Humboldtianum_Basin_Grayscale/LRO_NAC_Gray_55N077E_200cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Humboldtianum_Basin_Grayscale/LRO_NAC_Gray_55N077E_200cmp.wms deleted file mode 100644 index bb8834a044..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Humboldtianum_Basin_Grayscale/LRO_NAC_Gray_55N077E_200cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Gray_55N077E_200cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 1 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Humboldtianum_Basin_Hillshade/LRO_LROC_DEM_Humboldtianum_Basin_Hillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Humboldtianum_Basin_Hillshade/LRO_LROC_DEM_Humboldtianum_Basin_Hillshade.asset deleted file mode 100644 index 07cf49aaf2..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Humboldtianum_Basin_Hillshade/LRO_LROC_DEM_Humboldtianum_Basin_Hillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Shade_55N077E_200cmp", - Name = [[LRO LROC DEM, Humboldtianum Basin, Hillshade]], - FilePath = asset.localResource("LRO_NAC_Shade_55N077E_200cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Humboldtianum Basin, Hillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Shade_55N077E_200cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Humboldtianum Basin, Hillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Humboldtianum_Basin_Hillshade/LRO_NAC_Shade_55N077E_200cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Humboldtianum_Basin_Hillshade/LRO_NAC_Shade_55N077E_200cmp.vrt deleted file mode 100644 index 1ffffb89b3..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Humboldtianum_Basin_Hillshade/LRO_NAC_Shade_55N077E_200cmp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",55],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Gray - - LRO_NAC_Shade_55N077E_200cmp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Shade_55N077E_200cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Humboldtianum_Basin_Hillshade/LRO_NAC_Shade_55N077E_200cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Humboldtianum_Basin_Hillshade/LRO_NAC_Shade_55N077E_200cmp.wms deleted file mode 100644 index 4e22a97a36..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Humboldtianum_Basin_Hillshade/LRO_NAC_Shade_55N077E_200cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Shade_55N077E_200cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",55],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 1 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Ina_(D-Caldera)_ColorHillshade/LRO_LROC_DEM_Ina_(D-Caldera)_ColorHillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Ina_(D-Caldera)_ColorHillshade/LRO_LROC_DEM_Ina_(D-Caldera)_ColorHillshade.asset deleted file mode 100644 index fe275e1c1c..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Ina_(D-Caldera)_ColorHillshade/LRO_LROC_DEM_Ina_(D-Caldera)_ColorHillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrShade_19N005E_2mp", - Name = [[LRO LROC DEM, Ina (D-Caldera), ColorHillshade]], - FilePath = asset.localResource("LRO_NAC_ClrShade_19N005E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Ina (D-Caldera), ColorHillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrShade_19N005E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Ina (D-Caldera), ColorHillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Ina_(D-Caldera)_ColorHillshade/LRO_NAC_ClrShade_19N005E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Ina_(D-Caldera)_ColorHillshade/LRO_NAC_ClrShade_19N005E_2mp.vrt deleted file mode 100644 index 0801d3e8c6..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Ina_(D-Caldera)_ColorHillshade/LRO_NAC_ClrShade_19N005E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",19],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrShade_19N005E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrShade_19N005E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrShade_19N005E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrShade_19N005E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Ina_D-Caldera_ColorHillshade_Slope/LRO_LROC_DEM_Ina_D-Caldera_ColorHillshade_Slope.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Ina_D-Caldera_ColorHillshade_Slope/LRO_LROC_DEM_Ina_D-Caldera_ColorHillshade_Slope.asset deleted file mode 100644 index 16467e6441..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Ina_D-Caldera_ColorHillshade_Slope/LRO_LROC_DEM_Ina_D-Caldera_ColorHillshade_Slope.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Slope_19N005E_2mp", - Name = [[LRO LROC DEM, Ina D-Caldera, ColorHillshade Slope]], - FilePath = asset.localResource("LRO_NAC_Slope_19N005E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Ina D-Caldera, ColorHillshade Slope]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Slope_19N005E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Ina D-Caldera, ColorHillshade Slope layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Ina_D-Caldera_ColorHillshade_Slope/LRO_NAC_Slope_19N005E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Ina_D-Caldera_ColorHillshade_Slope/LRO_NAC_Slope_19N005E_2mp.vrt deleted file mode 100644 index 0d5a9e4070..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Ina_D-Caldera_ColorHillshade_Slope/LRO_NAC_Slope_19N005E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_Slope_19N005E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_Slope_19N005E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_Slope_19N005E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_Slope_19N005E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Ina_D-Caldera_ColorHillshade_Slope/LRO_NAC_Slope_19N005E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Ina_D-Caldera_ColorHillshade_Slope/LRO_NAC_Slope_19N005E_2mp.wms deleted file mode 100644 index b392589ef4..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Ina_D-Caldera_ColorHillshade_Slope/LRO_NAC_Slope_19N005E_2mp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Slope_19N005E_2mp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Ina_D-Caldera_Colorized_Confidence/LRO_LROC_DEM_Ina_D-Caldera_Colorized_Confidence.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Ina_D-Caldera_Colorized_Confidence/LRO_LROC_DEM_Ina_D-Caldera_Colorized_Confidence.asset deleted file mode 100644 index b97af40688..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Ina_D-Caldera_Colorized_Confidence/LRO_LROC_DEM_Ina_D-Caldera_Colorized_Confidence.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrConf_19N005E_2mp", - Name = [[LRO LROC DEM, Ina D-Caldera, Colorized Confidence]], - FilePath = asset.localResource("LRO_NAC_ClrConf_19N005E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Ina D-Caldera, Colorized Confidence]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrConf_19N005E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Ina D-Caldera, Colorized Confidence layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Ina_D-Caldera_Colorized_Confidence/LRO_NAC_ClrConf_19N005E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Ina_D-Caldera_Colorized_Confidence/LRO_NAC_ClrConf_19N005E_2mp.vrt deleted file mode 100644 index 7b8784cc6e..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Ina_D-Caldera_Colorized_Confidence/LRO_NAC_ClrConf_19N005E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrConf_19N005E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrConf_19N005E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrConf_19N005E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrConf_19N005E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Ina_D-Caldera_Colorized_Confidence/LRO_NAC_ClrConf_19N005E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Ina_D-Caldera_Colorized_Confidence/LRO_NAC_ClrConf_19N005E_2mp.wms deleted file mode 100644 index 9b9c75d86a..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Ina_D-Caldera_Colorized_Confidence/LRO_NAC_ClrConf_19N005E_2mp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrConf_19N005E_2mp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Ina_D-Caldera_Grayscale/LRO_LROC_DEM_Ina_D-Caldera_Grayscale.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Ina_D-Caldera_Grayscale/LRO_LROC_DEM_Ina_D-Caldera_Grayscale.asset deleted file mode 100644 index a5e4de9c65..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Ina_D-Caldera_Grayscale/LRO_LROC_DEM_Ina_D-Caldera_Grayscale.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Gray_19N005E_2mp", - Name = [[LRO LROC DEM, Ina D-Caldera, Grayscale]], - FilePath = asset.localResource("LRO_NAC_Gray_19N005E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Ina D-Caldera, Grayscale]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Gray_19N005E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Ina D-Caldera, Grayscale layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Ina_D-Caldera_Grayscale/LRO_NAC_Gray_19N005E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Ina_D-Caldera_Grayscale/LRO_NAC_Gray_19N005E_2mp.vrt deleted file mode 100644 index 3b4c0dadce..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Ina_D-Caldera_Grayscale/LRO_NAC_Gray_19N005E_2mp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Gray - - LRO_NAC_Gray_19N005E_2mp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Gray_19N005E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Ina_D-Caldera_Grayscale/LRO_NAC_Gray_19N005E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Ina_D-Caldera_Grayscale/LRO_NAC_Gray_19N005E_2mp.wms deleted file mode 100644 index 5d2f7f17b7..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Ina_D-Caldera_Grayscale/LRO_NAC_Gray_19N005E_2mp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Gray_19N005E_2mp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 1 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Ina_D-Caldera_Hillshade/LRO_LROC_DEM_Ina_D-Caldera_Hillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Ina_D-Caldera_Hillshade/LRO_LROC_DEM_Ina_D-Caldera_Hillshade.asset deleted file mode 100644 index 8ac2131339..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Ina_D-Caldera_Hillshade/LRO_LROC_DEM_Ina_D-Caldera_Hillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Shade_19N005E_2mp", - Name = [[LRO LROC DEM, Ina D-Caldera, Hillshade]], - FilePath = asset.localResource("LRO_NAC_Shade_19N005E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Ina D-Caldera, Hillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Shade_19N005E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Ina D-Caldera, Hillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Ina_D-Caldera_Hillshade/LRO_NAC_Shade_19N005E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Ina_D-Caldera_Hillshade/LRO_NAC_Shade_19N005E_2mp.vrt deleted file mode 100644 index 1b0f6a3482..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Ina_D-Caldera_Hillshade/LRO_NAC_Shade_19N005E_2mp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",19],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Gray - - LRO_NAC_Shade_19N005E_2mp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Shade_19N005E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Ina_D-Caldera_Hillshade/LRO_NAC_Shade_19N005E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Ina_D-Caldera_Hillshade/LRO_NAC_Shade_19N005E_2mp.wms deleted file mode 100644 index 0e48673dbe..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Ina_D-Caldera_Hillshade/LRO_NAC_Shade_19N005E_2mp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Shade_19N005E_2mp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",19],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 1 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_15m_Color_Roughness/LRO_LROC_DEM_King_Crater_15m_Color_Roughness.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_15m_Color_Roughness/LRO_LROC_DEM_King_Crater_15m_Color_Roughness.asset deleted file mode 100644 index 0ee0e8b62d..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_15m_Color_Roughness/LRO_LROC_DEM_King_Crater_15m_Color_Roughness.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrRoughness_15m_06N120E_200cmp", - Name = [[LRO LROC DEM, King Crater, 15m Color Roughness]], - FilePath = asset.localResource("LRO_NAC_ClrRoughness_15m_06N120E_200cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, King Crater, 15m Color Roughness]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrRoughness_15m_06N120E_200cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, King Crater, 15m Color Roughness layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_06N120E_200cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_06N120E_200cmp.vrt deleted file mode 100644 index 6d5f0aac66..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_06N120E_200cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",6],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrRoughness_15m_06N120E_200cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrRoughness_15m_06N120E_200cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrRoughness_15m_06N120E_200cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrRoughness_15m_06N120E_200cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_15m_Color_Roughness_Hazard/LRO_LROC_DEM_King_Crater_15m_Color_Roughness_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_15m_Color_Roughness_Hazard/LRO_LROC_DEM_King_Crater_15m_Color_Roughness_Hazard.asset deleted file mode 100644 index 0ee99c767f..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_15m_Color_Roughness_Hazard/LRO_LROC_DEM_King_Crater_15m_Color_Roughness_Hazard.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrRoughnessHaz_15m_06N120E_200cmp", - Name = [[LRO LROC DEM, King Crater, 15m Color Roughness Hazard]], - FilePath = asset.localResource("LRO_NAC_ClrRoughnessHaz_15m_06N120E_200cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, King Crater, 15m Color Roughness Hazard]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrRoughnessHaz_15m_06N120E_200cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, King Crater, 15m Color Roughness Hazard layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_06N120E_200cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_06N120E_200cmp.vrt deleted file mode 100644 index de8631660f..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_06N120E_200cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",6],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrRoughnessHaz_15m_06N120E_200cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrRoughnessHaz_15m_06N120E_200cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrRoughnessHaz_15m_06N120E_200cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrRoughnessHaz_15m_06N120E_200cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_06N120E_200cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_06N120E_200cmp.wms deleted file mode 100644 index f863978069..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_06N120E_200cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrRoughnessHaz_15m_06N120E_200cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",6],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_15m_Color_Slope/LRO_LROC_DEM_King_Crater_15m_Color_Slope.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_15m_Color_Slope/LRO_LROC_DEM_King_Crater_15m_Color_Slope.asset deleted file mode 100644 index cad255750f..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_15m_Color_Slope/LRO_LROC_DEM_King_Crater_15m_Color_Slope.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrSlope_15m_06N120E_200cmp", - Name = [[LRO LROC DEM, King Crater, 15m Color Slope]], - FilePath = asset.localResource("LRO_NAC_ClrSlope_15m_06N120E_200cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, King Crater, 15m Color Slope]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrSlope_15m_06N120E_200cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, King Crater, 15m Color Slope layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_15m_Color_Slope/LRO_NAC_ClrSlope_15m_06N120E_200cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_15m_Color_Slope/LRO_NAC_ClrSlope_15m_06N120E_200cmp.vrt deleted file mode 100644 index 597d3c35e4..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_15m_Color_Slope/LRO_NAC_ClrSlope_15m_06N120E_200cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrSlope_15m_06N120E_200cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrSlope_15m_06N120E_200cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrSlope_15m_06N120E_200cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrSlope_15m_06N120E_200cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_15m_Color_Slope/LRO_NAC_ClrSlope_15m_06N120E_200cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_15m_Color_Slope/LRO_NAC_ClrSlope_15m_06N120E_200cmp.wms deleted file mode 100644 index 8551741407..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_15m_Color_Slope/LRO_NAC_ClrSlope_15m_06N120E_200cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrSlope_15m_06N120E_200cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_15m_Color_Slope_Hazard/LRO_LROC_DEM_King_Crater_15m_Color_Slope_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_15m_Color_Slope_Hazard/LRO_LROC_DEM_King_Crater_15m_Color_Slope_Hazard.asset deleted file mode 100644 index 43b50bfcf6..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_15m_Color_Slope_Hazard/LRO_LROC_DEM_King_Crater_15m_Color_Slope_Hazard.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrSlopeHaz_15m_06N120E_200cmp", - Name = [[LRO LROC DEM, King Crater, 15m Color Slope Hazard]], - FilePath = asset.localResource("LRO_NAC_ClrSlopeHaz_15m_06N120E_200cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, King Crater, 15m Color Slope Hazard]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrSlopeHaz_15m_06N120E_200cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, King Crater, 15m Color Slope Hazard layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_06N120E_200cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_06N120E_200cmp.vrt deleted file mode 100644 index ec5890fa66..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_06N120E_200cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrSlopeHaz_15m_06N120E_200cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrSlopeHaz_15m_06N120E_200cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrSlopeHaz_15m_06N120E_200cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrSlopeHaz_15m_06N120E_200cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_06N120E_200cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_06N120E_200cmp.wms deleted file mode 100644 index edb1a876b5..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_06N120E_200cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrSlopeHaz_15m_06N120E_200cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_4m_Color_Roughness/LRO_LROC_DEM_King_Crater_4m_Color_Roughness.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_4m_Color_Roughness/LRO_LROC_DEM_King_Crater_4m_Color_Roughness.asset deleted file mode 100644 index 26a79a8bc0..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_4m_Color_Roughness/LRO_LROC_DEM_King_Crater_4m_Color_Roughness.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrRoughness_4m_06N120E_200cmp", - Name = [[LRO LROC DEM, King Crater, 4m Color Roughness]], - FilePath = asset.localResource("LRO_NAC_ClrRoughness_4m_06N120E_200cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, King Crater, 4m Color Roughness]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrRoughness_4m_06N120E_200cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, King Crater, 4m Color Roughness layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_4m_Color_Roughness/LRO_NAC_ClrRoughness_4m_06N120E_200cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_4m_Color_Roughness/LRO_NAC_ClrRoughness_4m_06N120E_200cmp.vrt deleted file mode 100644 index 89f0f837b2..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_4m_Color_Roughness/LRO_NAC_ClrRoughness_4m_06N120E_200cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",6],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrRoughness_4m_06N120E_200cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrRoughness_4m_06N120E_200cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrRoughness_4m_06N120E_200cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrRoughness_4m_06N120E_200cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_4m_Color_Roughness/LRO_NAC_ClrRoughness_4m_06N120E_200cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_4m_Color_Roughness/LRO_NAC_ClrRoughness_4m_06N120E_200cmp.wms deleted file mode 100644 index c639235db8..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_4m_Color_Roughness/LRO_NAC_ClrRoughness_4m_06N120E_200cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrRoughness_4m_06N120E_200cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",6],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_4m_Color_Roughness_Hazard/LRO_LROC_DEM_King_Crater_4m_Color_Roughness_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_4m_Color_Roughness_Hazard/LRO_LROC_DEM_King_Crater_4m_Color_Roughness_Hazard.asset deleted file mode 100644 index 5583af2bb4..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_4m_Color_Roughness_Hazard/LRO_LROC_DEM_King_Crater_4m_Color_Roughness_Hazard.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrRoughnessHaz_4m_06N120E_200cmp", - Name = [[LRO LROC DEM, King Crater, 4m Color Roughness Hazard]], - FilePath = asset.localResource("LRO_NAC_ClrRoughnessHaz_4m_06N120E_200cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, King Crater, 4m Color Roughness Hazard]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrRoughnessHaz_4m_06N120E_200cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, King Crater, 4m Color Roughness Hazard layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_4m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_4m_06N120E_200cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_4m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_4m_06N120E_200cmp.vrt deleted file mode 100644 index 278720cf25..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_4m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_4m_06N120E_200cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",6],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrRoughnessHaz_4m_06N120E_200cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrRoughnessHaz_4m_06N120E_200cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrRoughnessHaz_4m_06N120E_200cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrRoughnessHaz_4m_06N120E_200cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_4m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_4m_06N120E_200cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_4m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_4m_06N120E_200cmp.wms deleted file mode 100644 index 05e0ff67de..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_4m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_4m_06N120E_200cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrRoughnessHaz_4m_06N120E_200cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",6],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_4m_Color_Slope/LRO_LROC_DEM_King_Crater_4m_Color_Slope.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_4m_Color_Slope/LRO_LROC_DEM_King_Crater_4m_Color_Slope.asset deleted file mode 100644 index 5adfefffce..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_4m_Color_Slope/LRO_LROC_DEM_King_Crater_4m_Color_Slope.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrSlope_4m_06N120E_200cmp", - Name = [[LRO LROC DEM, King Crater, 4m Color Slope]], - FilePath = asset.localResource("LRO_NAC_ClrSlope_4m_06N120E_200cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, King Crater, 4m Color Slope]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrSlope_4m_06N120E_200cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, King Crater, 4m Color Slope layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_4m_Color_Slope/LRO_NAC_ClrSlope_4m_06N120E_200cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_4m_Color_Slope/LRO_NAC_ClrSlope_4m_06N120E_200cmp.vrt deleted file mode 100644 index b533e2d831..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_4m_Color_Slope/LRO_NAC_ClrSlope_4m_06N120E_200cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrSlope_4m_06N120E_200cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrSlope_4m_06N120E_200cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrSlope_4m_06N120E_200cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrSlope_4m_06N120E_200cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_4m_Color_Slope/LRO_NAC_ClrSlope_4m_06N120E_200cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_4m_Color_Slope/LRO_NAC_ClrSlope_4m_06N120E_200cmp.wms deleted file mode 100644 index 06b94944a8..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_4m_Color_Slope/LRO_NAC_ClrSlope_4m_06N120E_200cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrSlope_4m_06N120E_200cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_4m_Color_Slope_Hazard/LRO_LROC_DEM_King_Crater_4m_Color_Slope_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_4m_Color_Slope_Hazard/LRO_LROC_DEM_King_Crater_4m_Color_Slope_Hazard.asset deleted file mode 100644 index 132711d949..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_4m_Color_Slope_Hazard/LRO_LROC_DEM_King_Crater_4m_Color_Slope_Hazard.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrSlopeHaz_4m_06N120E_200cmp", - Name = [[LRO LROC DEM, King Crater, 4m Color Slope Hazard]], - FilePath = asset.localResource("LRO_NAC_ClrSlopeHaz_4m_06N120E_200cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, King Crater, 4m Color Slope Hazard]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrSlopeHaz_4m_06N120E_200cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, King Crater, 4m Color Slope Hazard layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_4m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_4m_06N120E_200cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_4m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_4m_06N120E_200cmp.vrt deleted file mode 100644 index 80220e096b..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_4m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_4m_06N120E_200cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrSlopeHaz_4m_06N120E_200cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrSlopeHaz_4m_06N120E_200cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrSlopeHaz_4m_06N120E_200cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrSlopeHaz_4m_06N120E_200cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_4m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_4m_06N120E_200cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_4m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_4m_06N120E_200cmp.wms deleted file mode 100644 index 167a52e24f..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_4m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_4m_06N120E_200cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrSlopeHaz_4m_06N120E_200cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_ColorHillshade/LRO_LROC_DEM_King_Crater_ColorHillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_ColorHillshade/LRO_LROC_DEM_King_Crater_ColorHillshade.asset deleted file mode 100644 index c405e18204..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_ColorHillshade/LRO_LROC_DEM_King_Crater_ColorHillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrShade_06N120E_200cmp", - Name = [[LRO LROC DEM, King Crater, ColorHillshade]], - FilePath = asset.localResource("LRO_NAC_ClrShade_06N120E_200cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, King Crater, ColorHillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrShade_06N120E_200cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, King Crater, ColorHillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_ColorHillshade/LRO_NAC_ClrShade_06N120E_200cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_ColorHillshade/LRO_NAC_ClrShade_06N120E_200cmp.vrt deleted file mode 100644 index 29d113bb99..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_ColorHillshade/LRO_NAC_ClrShade_06N120E_200cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",6],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrShade_06N120E_200cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrShade_06N120E_200cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrShade_06N120E_200cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrShade_06N120E_200cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_ColorHillshade/LRO_NAC_ClrShade_06N120E_200cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_ColorHillshade/LRO_NAC_ClrShade_06N120E_200cmp.wms deleted file mode 100644 index 60b092ad54..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_ColorHillshade/LRO_NAC_ClrShade_06N120E_200cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrShade_06N120E_200cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",6],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_Colorized_Confidence/LRO_LROC_DEM_King_Crater_Colorized_Confidence.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_Colorized_Confidence/LRO_LROC_DEM_King_Crater_Colorized_Confidence.asset deleted file mode 100644 index 67cbbe75db..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_Colorized_Confidence/LRO_LROC_DEM_King_Crater_Colorized_Confidence.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrConf_06N120E_200cmp", - Name = [[LRO LROC DEM, King Crater, Colorized Confidence]], - FilePath = asset.localResource("LRO_NAC_ClrConf_06N120E_200cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, King Crater, Colorized Confidence]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrConf_06N120E_200cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, King Crater, Colorized Confidence layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_Colorized_Confidence/LRO_NAC_ClrConf_06N120E_200cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_Colorized_Confidence/LRO_NAC_ClrConf_06N120E_200cmp.vrt deleted file mode 100644 index 24a6ebd2bb..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_Colorized_Confidence/LRO_NAC_ClrConf_06N120E_200cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrConf_06N120E_200cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrConf_06N120E_200cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrConf_06N120E_200cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrConf_06N120E_200cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_Colorized_Confidence/LRO_NAC_ClrConf_06N120E_200cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_Colorized_Confidence/LRO_NAC_ClrConf_06N120E_200cmp.wms deleted file mode 100644 index 873daa1df0..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_Colorized_Confidence/LRO_NAC_ClrConf_06N120E_200cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrConf_06N120E_200cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_Colorized_Slope/LRO_LROC_DEM_King_Crater_Colorized_Slope.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_Colorized_Slope/LRO_LROC_DEM_King_Crater_Colorized_Slope.asset deleted file mode 100644 index 1ad4d0e80a..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_Colorized_Slope/LRO_LROC_DEM_King_Crater_Colorized_Slope.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Slope_06N120E_200cmp", - Name = [[LRO LROC DEM, King Crater, Colorized Slope]], - FilePath = asset.localResource("LRO_NAC_Slope_06N120E_200cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, King Crater, Colorized Slope]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Slope_06N120E_200cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, King Crater, Colorized Slope layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_Colorized_Slope/LRO_NAC_Slope_06N120E_200cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_Colorized_Slope/LRO_NAC_Slope_06N120E_200cmp.vrt deleted file mode 100644 index 76c3a024cc..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_Colorized_Slope/LRO_NAC_Slope_06N120E_200cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",6],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_Slope_06N120E_200cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_Slope_06N120E_200cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_Slope_06N120E_200cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_Slope_06N120E_200cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_Colorized_Slope/LRO_NAC_Slope_06N120E_200cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_Colorized_Slope/LRO_NAC_Slope_06N120E_200cmp.wms deleted file mode 100644 index 29148f3104..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_Colorized_Slope/LRO_NAC_Slope_06N120E_200cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Slope_06N120E_200cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",6],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_Grayscale/LRO_LROC_DEM_King_Crater_Grayscale.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_Grayscale/LRO_LROC_DEM_King_Crater_Grayscale.asset deleted file mode 100644 index 63fcb7c97d..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_Grayscale/LRO_LROC_DEM_King_Crater_Grayscale.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Gray_06N120E_200cmp", - Name = [[LRO LROC DEM, King Crater, Grayscale]], - FilePath = asset.localResource("LRO_NAC_Gray_06N120E_200cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, King Crater, Grayscale]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Gray_06N120E_200cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, King Crater, Grayscale layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_Grayscale/LRO_NAC_Gray_06N120E_200cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_Grayscale/LRO_NAC_Gray_06N120E_200cmp.vrt deleted file mode 100644 index da96b7e215..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_Grayscale/LRO_NAC_Gray_06N120E_200cmp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Gray - - LRO_NAC_Gray_06N120E_200cmp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Gray_06N120E_200cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_Grayscale/LRO_NAC_Gray_06N120E_200cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_Grayscale/LRO_NAC_Gray_06N120E_200cmp.wms deleted file mode 100644 index 24c6e7fefd..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_Grayscale/LRO_NAC_Gray_06N120E_200cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Gray_06N120E_200cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 1 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_Hillshade/LRO_LROC_DEM_King_Crater_Hillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_Hillshade/LRO_LROC_DEM_King_Crater_Hillshade.asset deleted file mode 100644 index 08b835392e..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_Hillshade/LRO_LROC_DEM_King_Crater_Hillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Shade_06N120E_200cmp", - Name = [[LRO LROC DEM, King Crater, Hillshade]], - FilePath = asset.localResource("LRO_NAC_Shade_06N120E_200cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, King Crater, Hillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Shade_06N120E_200cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, King Crater, Hillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_Hillshade/LRO_NAC_Shade_06N120E_200cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_Hillshade/LRO_NAC_Shade_06N120E_200cmp.vrt deleted file mode 100644 index ff64db00fe..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_Hillshade/LRO_NAC_Shade_06N120E_200cmp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Gray - - LRO_NAC_Shade_06N120E_200cmp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Shade_06N120E_200cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_Hillshade/LRO_NAC_Shade_06N120E_200cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_Hillshade/LRO_NAC_Shade_06N120E_200cmp.wms deleted file mode 100644 index e65b58b560..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_King_Crater_Hillshade/LRO_NAC_Shade_06N120E_200cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Shade_06N120E_200cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 1 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_15m_Color_Roughness/LRO_LROC_DEM_Lichtenberg_Crater_15m_Color_Roughness.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_15m_Color_Roughness/LRO_LROC_DEM_Lichtenberg_Crater_15m_Color_Roughness.asset deleted file mode 100644 index 90a6fa8240..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_15m_Color_Roughness/LRO_LROC_DEM_Lichtenberg_Crater_15m_Color_Roughness.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrRoughness_15m_32N292E_2mp", - Name = [[LRO LROC DEM, Lichtenberg Crater, 15m Color Roughness]], - FilePath = asset.localResource("LRO_NAC_ClrRoughness_15m_32N292E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Lichtenberg Crater, 15m Color Roughness]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrRoughness_15m_32N292E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Lichtenberg Crater, 15m Color Roughness layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_32N292E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_32N292E_2mp.vrt deleted file mode 100644 index 81907f87dc..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_32N292E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",32],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrRoughness_15m_32N292E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrRoughness_15m_32N292E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrRoughness_15m_32N292E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrRoughness_15m_32N292E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Lichtenberg_Crater_15m_Color_Roughness_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Lichtenberg_Crater_15m_Color_Roughness_Hazard.asset deleted file mode 100644 index 08d8bdf29c..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Lichtenberg_Crater_15m_Color_Roughness_Hazard.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrRoughnessHaz_15m_32N292E_2mp", - Name = [[LRO LROC DEM, Lichtenberg Crater, 15m Color Roughness Hazard]], - FilePath = asset.localResource("LRO_NAC_ClrRoughnessHaz_15m_32N292E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Lichtenberg Crater, 15m Color Roughness Hazard]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrRoughnessHaz_15m_32N292E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Lichtenberg Crater, 15m Color Roughness Hazard layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_32N292E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_32N292E_2mp.vrt deleted file mode 100644 index ecc5ab0a51..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_32N292E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",32],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrRoughnessHaz_15m_32N292E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrRoughnessHaz_15m_32N292E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrRoughnessHaz_15m_32N292E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrRoughnessHaz_15m_32N292E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_32N292E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_32N292E_2mp.wms deleted file mode 100644 index bd3e262728..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_32N292E_2mp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrRoughnessHaz_15m_32N292E_2mp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",32],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_15m_Color_Slope/LRO_LROC_DEM_Lichtenberg_Crater_15m_Color_Slope.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_15m_Color_Slope/LRO_LROC_DEM_Lichtenberg_Crater_15m_Color_Slope.asset deleted file mode 100644 index e436f37f53..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_15m_Color_Slope/LRO_LROC_DEM_Lichtenberg_Crater_15m_Color_Slope.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrSlope_15m_32N292E_2mp", - Name = [[LRO LROC DEM, Lichtenberg Crater, 15m Color Slope]], - FilePath = asset.localResource("LRO_NAC_ClrSlope_15m_32N292E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Lichtenberg Crater, 15m Color Slope]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrSlope_15m_32N292E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Lichtenberg Crater, 15m Color Slope layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_15m_Color_Slope/LRO_NAC_ClrSlope_15m_32N292E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_15m_Color_Slope/LRO_NAC_ClrSlope_15m_32N292E_2mp.vrt deleted file mode 100644 index b00da30cc0..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_15m_Color_Slope/LRO_NAC_ClrSlope_15m_32N292E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",32],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrSlope_15m_32N292E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrSlope_15m_32N292E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrSlope_15m_32N292E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrSlope_15m_32N292E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_15m_Color_Slope/LRO_NAC_ClrSlope_15m_32N292E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_15m_Color_Slope/LRO_NAC_ClrSlope_15m_32N292E_2mp.wms deleted file mode 100644 index 33e6cf1b2a..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_15m_Color_Slope/LRO_NAC_ClrSlope_15m_32N292E_2mp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrSlope_15m_32N292E_2mp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",32],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_15m_Color_Slope_Hazard/LRO_LROC_DEM_Lichtenberg_Crater_15m_Color_Slope_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_15m_Color_Slope_Hazard/LRO_LROC_DEM_Lichtenberg_Crater_15m_Color_Slope_Hazard.asset deleted file mode 100644 index 6e6b9ca80f..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_15m_Color_Slope_Hazard/LRO_LROC_DEM_Lichtenberg_Crater_15m_Color_Slope_Hazard.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrSlopeHaz_15m_32N292E_2mp", - Name = [[LRO LROC DEM, Lichtenberg Crater, 15m Color Slope Hazard]], - FilePath = asset.localResource("LRO_NAC_ClrSlopeHaz_15m_32N292E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Lichtenberg Crater, 15m Color Slope Hazard]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrSlopeHaz_15m_32N292E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Lichtenberg Crater, 15m Color Slope Hazard layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_32N292E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_32N292E_2mp.vrt deleted file mode 100644 index eecd9ddfde..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_32N292E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",32],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrSlopeHaz_15m_32N292E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrSlopeHaz_15m_32N292E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrSlopeHaz_15m_32N292E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrSlopeHaz_15m_32N292E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_32N292E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_32N292E_2mp.wms deleted file mode 100644 index 83d91ffae4..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_32N292E_2mp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrSlopeHaz_15m_32N292E_2mp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",32],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_4m_Color_Roughness/LRO_LROC_DEM_Lichtenberg_Crater_4m_Color_Roughness.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_4m_Color_Roughness/LRO_LROC_DEM_Lichtenberg_Crater_4m_Color_Roughness.asset deleted file mode 100644 index b42c4e5570..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_4m_Color_Roughness/LRO_LROC_DEM_Lichtenberg_Crater_4m_Color_Roughness.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrRoughness_4m_32N292E_2mp", - Name = [[LRO LROC DEM, Lichtenberg Crater, 4m Color Roughness]], - FilePath = asset.localResource("LRO_NAC_ClrRoughness_4m_32N292E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Lichtenberg Crater, 4m Color Roughness]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrRoughness_4m_32N292E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Lichtenberg Crater, 4m Color Roughness layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_4m_Color_Roughness/LRO_NAC_ClrRoughness_4m_32N292E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_4m_Color_Roughness/LRO_NAC_ClrRoughness_4m_32N292E_2mp.vrt deleted file mode 100644 index 126e7a96e2..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_4m_Color_Roughness/LRO_NAC_ClrRoughness_4m_32N292E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrRoughness_4m_32N292E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrRoughness_4m_32N292E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrRoughness_4m_32N292E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrRoughness_4m_32N292E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_4m_Color_Roughness/LRO_NAC_ClrRoughness_4m_32N292E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_4m_Color_Roughness/LRO_NAC_ClrRoughness_4m_32N292E_2mp.wms deleted file mode 100644 index 1c829bddab..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_4m_Color_Roughness/LRO_NAC_ClrRoughness_4m_32N292E_2mp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrRoughness_4m_32N292E_2mp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_4m_Color_Roughness_Hazard/LRO_LROC_DEM_Lichtenberg_Crater_4m_Color_Roughness_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_4m_Color_Roughness_Hazard/LRO_LROC_DEM_Lichtenberg_Crater_4m_Color_Roughness_Hazard.asset deleted file mode 100644 index df567ecfdb..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_4m_Color_Roughness_Hazard/LRO_LROC_DEM_Lichtenberg_Crater_4m_Color_Roughness_Hazard.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrRoughnessHaz_4m_32N292E_2mp", - Name = [[LRO LROC DEM, Lichtenberg Crater, 4m Color Roughness Hazard]], - FilePath = asset.localResource("LRO_NAC_ClrRoughnessHaz_4m_32N292E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Lichtenberg Crater, 4m Color Roughness Hazard]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrRoughnessHaz_4m_32N292E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Lichtenberg Crater, 4m Color Roughness Hazard layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_4m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_4m_32N292E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_4m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_4m_32N292E_2mp.vrt deleted file mode 100644 index 7e8cba5bca..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_4m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_4m_32N292E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrRoughnessHaz_4m_32N292E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrRoughnessHaz_4m_32N292E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrRoughnessHaz_4m_32N292E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrRoughnessHaz_4m_32N292E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_4m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_4m_32N292E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_4m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_4m_32N292E_2mp.wms deleted file mode 100644 index 753a78c747..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_4m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_4m_32N292E_2mp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrRoughnessHaz_4m_32N292E_2mp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_4m_Color_Slope/LRO_LROC_DEM_Lichtenberg_Crater_4m_Color_Slope.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_4m_Color_Slope/LRO_LROC_DEM_Lichtenberg_Crater_4m_Color_Slope.asset deleted file mode 100644 index 8fde68cd15..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_4m_Color_Slope/LRO_LROC_DEM_Lichtenberg_Crater_4m_Color_Slope.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrSlope_4m_32N292E_2mp", - Name = [[LRO LROC DEM, Lichtenberg Crater, 4m Color Slope]], - FilePath = asset.localResource("LRO_NAC_ClrSlope_4m_32N292E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Lichtenberg Crater, 4m Color Slope]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrSlope_4m_32N292E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Lichtenberg Crater, 4m Color Slope layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_4m_Color_Slope/LRO_NAC_ClrSlope_4m_32N292E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_4m_Color_Slope/LRO_NAC_ClrSlope_4m_32N292E_2mp.vrt deleted file mode 100644 index 9a3eb20c1f..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_4m_Color_Slope/LRO_NAC_ClrSlope_4m_32N292E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",32],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrSlope_4m_32N292E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrSlope_4m_32N292E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrSlope_4m_32N292E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrSlope_4m_32N292E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_4m_Color_Slope/LRO_NAC_ClrSlope_4m_32N292E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_4m_Color_Slope/LRO_NAC_ClrSlope_4m_32N292E_2mp.wms deleted file mode 100644 index a6df26eafa..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_4m_Color_Slope/LRO_NAC_ClrSlope_4m_32N292E_2mp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrSlope_4m_32N292E_2mp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",32],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_4m_Color_Slope_Hazard/LRO_LROC_DEM_Lichtenberg_Crater_4m_Color_Slope_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_4m_Color_Slope_Hazard/LRO_LROC_DEM_Lichtenberg_Crater_4m_Color_Slope_Hazard.asset deleted file mode 100644 index 9cfa2c6419..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_4m_Color_Slope_Hazard/LRO_LROC_DEM_Lichtenberg_Crater_4m_Color_Slope_Hazard.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrSlopeHaz_4m_32N292E_2mp", - Name = [[LRO LROC DEM, Lichtenberg Crater, 4m Color Slope Hazard]], - FilePath = asset.localResource("LRO_NAC_ClrSlopeHaz_4m_32N292E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Lichtenberg Crater, 4m Color Slope Hazard]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrSlopeHaz_4m_32N292E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Lichtenberg Crater, 4m Color Slope Hazard layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_4m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_4m_32N292E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_4m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_4m_32N292E_2mp.vrt deleted file mode 100644 index f008787725..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_4m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_4m_32N292E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",32],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrSlopeHaz_4m_32N292E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrSlopeHaz_4m_32N292E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrSlopeHaz_4m_32N292E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrSlopeHaz_4m_32N292E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_4m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_4m_32N292E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_4m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_4m_32N292E_2mp.wms deleted file mode 100644 index 9a339ef05e..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_4m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_4m_32N292E_2mp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrSlopeHaz_4m_32N292E_2mp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",32],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_ColorHillshade/LRO_LROC_DEM_Lichtenberg_Crater_ColorHillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_ColorHillshade/LRO_LROC_DEM_Lichtenberg_Crater_ColorHillshade.asset deleted file mode 100644 index af321ec4c5..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_ColorHillshade/LRO_LROC_DEM_Lichtenberg_Crater_ColorHillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrShade_32N292E_2mp", - Name = [[LRO LROC DEM, Lichtenberg Crater, ColorHillshade]], - FilePath = asset.localResource("LRO_NAC_ClrShade_32N292E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Lichtenberg Crater, ColorHillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrShade_32N292E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Lichtenberg Crater, ColorHillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_ColorHillshade/LRO_NAC_ClrShade_32N292E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_ColorHillshade/LRO_NAC_ClrShade_32N292E_2mp.vrt deleted file mode 100644 index 500849b527..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_ColorHillshade/LRO_NAC_ClrShade_32N292E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",32],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrShade_32N292E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrShade_32N292E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrShade_32N292E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrShade_32N292E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_ColorHillshade/LRO_NAC_ClrShade_32N292E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_ColorHillshade/LRO_NAC_ClrShade_32N292E_2mp.wms deleted file mode 100644 index de1dae3188..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_ColorHillshade/LRO_NAC_ClrShade_32N292E_2mp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrShade_32N292E_2mp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",32],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_ColorHillshade_Slope/LRO_LROC_DEM_Lichtenberg_Crater_ColorHillshade_Slope.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_ColorHillshade_Slope/LRO_LROC_DEM_Lichtenberg_Crater_ColorHillshade_Slope.asset deleted file mode 100644 index c5380dd672..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_ColorHillshade_Slope/LRO_LROC_DEM_Lichtenberg_Crater_ColorHillshade_Slope.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Slope_32N292E_2mp", - Name = [[LRO LROC DEM, Lichtenberg Crater, ColorHillshade Slope]], - FilePath = asset.localResource("LRO_NAC_Slope_32N292E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Lichtenberg Crater, ColorHillshade Slope]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Slope_32N292E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Lichtenberg Crater, ColorHillshade Slope layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_ColorHillshade_Slope/LRO_NAC_Slope_32N292E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_ColorHillshade_Slope/LRO_NAC_Slope_32N292E_2mp.vrt deleted file mode 100644 index 857792434e..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_ColorHillshade_Slope/LRO_NAC_Slope_32N292E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",32],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_Slope_32N292E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_Slope_32N292E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_Slope_32N292E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_Slope_32N292E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_ColorHillshade_Slope/LRO_NAC_Slope_32N292E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_ColorHillshade_Slope/LRO_NAC_Slope_32N292E_2mp.wms deleted file mode 100644 index e2fec1b557..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_ColorHillshade_Slope/LRO_NAC_Slope_32N292E_2mp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Slope_32N292E_2mp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",32],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_Colorized_Confidence/LRO_LROC_DEM_Lichtenberg_Crater_Colorized_Confidence.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_Colorized_Confidence/LRO_LROC_DEM_Lichtenberg_Crater_Colorized_Confidence.asset deleted file mode 100644 index 7c3e7ff0f5..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_Colorized_Confidence/LRO_LROC_DEM_Lichtenberg_Crater_Colorized_Confidence.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrConf_32N292E_2mp", - Name = [[LRO LROC DEM, Lichtenberg Crater, Colorized Confidence]], - FilePath = asset.localResource("LRO_NAC_ClrConf_32N292E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Lichtenberg Crater, Colorized Confidence]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrConf_32N292E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Lichtenberg Crater, Colorized Confidence layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_Colorized_Confidence/LRO_NAC_ClrConf_32N292E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_Colorized_Confidence/LRO_NAC_ClrConf_32N292E_2mp.vrt deleted file mode 100644 index 184349c488..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_Colorized_Confidence/LRO_NAC_ClrConf_32N292E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",32],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrConf_32N292E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrConf_32N292E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrConf_32N292E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrConf_32N292E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_Colorized_Confidence/LRO_NAC_ClrConf_32N292E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_Colorized_Confidence/LRO_NAC_ClrConf_32N292E_2mp.wms deleted file mode 100644 index b031ee17d1..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_Colorized_Confidence/LRO_NAC_ClrConf_32N292E_2mp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrConf_32N292E_2mp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",32],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_Grayscale/LRO_LROC_DEM_Lichtenberg_Crater_Grayscale.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_Grayscale/LRO_LROC_DEM_Lichtenberg_Crater_Grayscale.asset deleted file mode 100644 index b2c87c28cb..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_Grayscale/LRO_LROC_DEM_Lichtenberg_Crater_Grayscale.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Gray_32N292E_2mp", - Name = [[LRO LROC DEM, Lichtenberg Crater, Grayscale]], - FilePath = asset.localResource("LRO_NAC_Gray_32N292E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Lichtenberg Crater, Grayscale]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Gray_32N292E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Lichtenberg Crater, Grayscale layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_Grayscale/LRO_NAC_Gray_32N292E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_Grayscale/LRO_NAC_Gray_32N292E_2mp.vrt deleted file mode 100644 index e54be333a0..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_Grayscale/LRO_NAC_Gray_32N292E_2mp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",32],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Gray - - LRO_NAC_Gray_32N292E_2mp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Gray_32N292E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_Grayscale/LRO_NAC_Gray_32N292E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_Grayscale/LRO_NAC_Gray_32N292E_2mp.wms deleted file mode 100644 index 6447774ca0..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_Grayscale/LRO_NAC_Gray_32N292E_2mp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Gray_32N292E_2mp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",32],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 1 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_Hillshade/LRO_LROC_DEM_Lichtenberg_Crater_Hillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_Hillshade/LRO_LROC_DEM_Lichtenberg_Crater_Hillshade.asset deleted file mode 100644 index e1cc33db40..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_Hillshade/LRO_LROC_DEM_Lichtenberg_Crater_Hillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Shade_32N292E_2mp", - Name = [[LRO LROC DEM, Lichtenberg Crater, Hillshade]], - FilePath = asset.localResource("LRO_NAC_Shade_32N292E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Lichtenberg Crater, Hillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Shade_32N292E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Lichtenberg Crater, Hillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_Hillshade/LRO_NAC_Shade_32N292E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_Hillshade/LRO_NAC_Shade_32N292E_2mp.vrt deleted file mode 100644 index 2a08106846..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_Hillshade/LRO_NAC_Shade_32N292E_2mp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",32],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Gray - - LRO_NAC_Shade_32N292E_2mp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Shade_32N292E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_Hillshade/LRO_NAC_Shade_32N292E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_Hillshade/LRO_NAC_Shade_32N292E_2mp.wms deleted file mode 100644 index 4806134ad9..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Lichtenberg_Crater_Hillshade/LRO_NAC_Shade_32N292E_2mp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Shade_32N292E_2mp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",32],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 1 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_15m_Color_Roughness/LRO_LROC_DEM_Mare_Crisium_15m_Color_Roughness.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_15m_Color_Roughness/LRO_LROC_DEM_Mare_Crisium_15m_Color_Roughness.asset deleted file mode 100644 index d64b580642..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_15m_Color_Roughness/LRO_LROC_DEM_Mare_Crisium_15m_Color_Roughness.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrRoughness_15m_10N58E_150cmp", - Name = [[LRO LROC DEM, Mare Crisium, 15m Color Roughness]], - FilePath = asset.localResource("LRO_NAC_ClrRoughness_15m_10N58E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Mare Crisium, 15m Color Roughness]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrRoughness_15m_10N58E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Mare Crisium, 15m Color Roughness layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_10N58E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_10N58E_150cmp.vrt deleted file mode 100644 index d0bd4d534c..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_10N58E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrRoughness_15m_10N58E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrRoughness_15m_10N58E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrRoughness_15m_10N58E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrRoughness_15m_10N58E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Mare_Crisium_15m_Color_Roughness_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Mare_Crisium_15m_Color_Roughness_Hazard.asset deleted file mode 100644 index c92a6db320..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Mare_Crisium_15m_Color_Roughness_Hazard.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrRoughnessHaz_15m_10N58E_150cmp", - Name = [[LRO LROC DEM, Mare Crisium, 15m Color Roughness Hazard]], - FilePath = asset.localResource("LRO_NAC_ClrRoughnessHaz_15m_10N58E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Mare Crisium, 15m Color Roughness Hazard]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrRoughnessHaz_15m_10N58E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Mare Crisium, 15m Color Roughness Hazard layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_10N58E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_10N58E_150cmp.vrt deleted file mode 100644 index a19ed7d441..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_10N58E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrRoughnessHaz_15m_10N58E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrRoughnessHaz_15m_10N58E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrRoughnessHaz_15m_10N58E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrRoughnessHaz_15m_10N58E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_10N58E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_10N58E_150cmp.wms deleted file mode 100644 index 333110a397..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_10N58E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrRoughnessHaz_15m_10N58E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_15m_Color_Slope/LRO_LROC_DEM_Mare_Crisium_15m_Color_Slope.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_15m_Color_Slope/LRO_LROC_DEM_Mare_Crisium_15m_Color_Slope.asset deleted file mode 100644 index 40044d8ddb..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_15m_Color_Slope/LRO_LROC_DEM_Mare_Crisium_15m_Color_Slope.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrSlope_15m_10N58E_150cmp", - Name = [[LRO LROC DEM, Mare Crisium, 15m Color Slope]], - FilePath = asset.localResource("LRO_NAC_ClrSlope_15m_10N58E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Mare Crisium, 15m Color Slope]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrSlope_15m_10N58E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Mare Crisium, 15m Color Slope layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_15m_Color_Slope/LRO_NAC_ClrSlope_15m_10N58E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_15m_Color_Slope/LRO_NAC_ClrSlope_15m_10N58E_150cmp.vrt deleted file mode 100644 index 169eb8f6bf..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_15m_Color_Slope/LRO_NAC_ClrSlope_15m_10N58E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrSlope_15m_10N58E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrSlope_15m_10N58E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrSlope_15m_10N58E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrSlope_15m_10N58E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_15m_Color_Slope/LRO_NAC_ClrSlope_15m_10N58E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_15m_Color_Slope/LRO_NAC_ClrSlope_15m_10N58E_150cmp.wms deleted file mode 100644 index 3d661f6254..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_15m_Color_Slope/LRO_NAC_ClrSlope_15m_10N58E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrSlope_15m_10N58E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_15m_Color_Slope_Hazard/LRO_LROC_DEM_Mare_Crisium_15m_Color_Slope_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_15m_Color_Slope_Hazard/LRO_LROC_DEM_Mare_Crisium_15m_Color_Slope_Hazard.asset deleted file mode 100644 index e7fe298b85..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_15m_Color_Slope_Hazard/LRO_LROC_DEM_Mare_Crisium_15m_Color_Slope_Hazard.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrSlopeHaz_15m_10N58E_150cmp", - Name = [[LRO LROC DEM, Mare Crisium, 15m Color Slope Hazard]], - FilePath = asset.localResource("LRO_NAC_ClrSlopeHaz_15m_10N58E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Mare Crisium, 15m Color Slope Hazard]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrSlopeHaz_15m_10N58E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Mare Crisium, 15m Color Slope Hazard layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_10N58E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_10N58E_150cmp.vrt deleted file mode 100644 index b695bb4ef9..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_10N58E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrSlopeHaz_15m_10N58E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrSlopeHaz_15m_10N58E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrSlopeHaz_15m_10N58E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrSlopeHaz_15m_10N58E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_10N58E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_10N58E_150cmp.wms deleted file mode 100644 index 2220755d97..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_10N58E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrSlopeHaz_15m_10N58E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_3m_Color_Roughness/LRO_LROC_DEM_Mare_Crisium_3m_Color_Roughness.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_3m_Color_Roughness/LRO_LROC_DEM_Mare_Crisium_3m_Color_Roughness.asset deleted file mode 100644 index eca8ed8953..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_3m_Color_Roughness/LRO_LROC_DEM_Mare_Crisium_3m_Color_Roughness.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrRoughness_3m_10N58E_150cmp", - Name = [[LRO LROC DEM, Mare Crisium, 3m Color Roughness]], - FilePath = asset.localResource("LRO_NAC_ClrRoughness_3m_10N58E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Mare Crisium, 3m Color Roughness]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrRoughness_3m_10N58E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Mare Crisium, 3m Color Roughness layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_10N58E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_10N58E_150cmp.vrt deleted file mode 100644 index 1fbb712a82..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_10N58E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrRoughness_3m_10N58E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrRoughness_3m_10N58E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrRoughness_3m_10N58E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrRoughness_3m_10N58E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_10N58E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_10N58E_150cmp.wms deleted file mode 100644 index 6f40e83e29..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_10N58E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrRoughness_3m_10N58E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_3m_Color_Roughness_Hazard/LRO_LROC_DEM_Mare_Crisium_3m_Color_Roughness_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_3m_Color_Roughness_Hazard/LRO_LROC_DEM_Mare_Crisium_3m_Color_Roughness_Hazard.asset deleted file mode 100644 index 482c3a0682..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_3m_Color_Roughness_Hazard/LRO_LROC_DEM_Mare_Crisium_3m_Color_Roughness_Hazard.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrRoughnessHaz_3m_10N58E_150cmp", - Name = [[LRO LROC DEM, Mare Crisium, 3m Color Roughness Hazard]], - FilePath = asset.localResource("LRO_NAC_ClrRoughnessHaz_3m_10N58E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Mare Crisium, 3m Color Roughness Hazard]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrRoughnessHaz_3m_10N58E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Mare Crisium, 3m Color Roughness Hazard layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_10N58E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_10N58E_150cmp.vrt deleted file mode 100644 index 2c73fa51af..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_10N58E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular_MOON_10N",GEOGCS["GCS_MOON",DATUM["MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",10],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrRoughnessHaz_3m_10N58E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrRoughnessHaz_3m_10N58E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrRoughnessHaz_3m_10N58E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrRoughnessHaz_3m_10N58E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_10N58E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_10N58E_150cmp.wms deleted file mode 100644 index fef7694fac..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_10N58E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrRoughnessHaz_3m_10N58E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular_MOON_10N",GEOGCS["GCS_MOON",DATUM["MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",10],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_3m_Color_Slope/LRO_LROC_DEM_Mare_Crisium_3m_Color_Slope.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_3m_Color_Slope/LRO_LROC_DEM_Mare_Crisium_3m_Color_Slope.asset deleted file mode 100644 index e77f47f8ad..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_3m_Color_Slope/LRO_LROC_DEM_Mare_Crisium_3m_Color_Slope.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrSlope_3m_10N58E_150cmp", - Name = [[LRO LROC DEM, Mare Crisium, 3m Color Slope]], - FilePath = asset.localResource("LRO_NAC_ClrSlope_3m_10N58E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Mare Crisium, 3m Color Slope]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrSlope_3m_10N58E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Mare Crisium, 3m Color Slope layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_3m_Color_Slope/LRO_NAC_ClrSlope_3m_10N58E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_3m_Color_Slope/LRO_NAC_ClrSlope_3m_10N58E_150cmp.vrt deleted file mode 100644 index dd663e3161..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_3m_Color_Slope/LRO_NAC_ClrSlope_3m_10N58E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrSlope_3m_10N58E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrSlope_3m_10N58E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrSlope_3m_10N58E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrSlope_3m_10N58E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_3m_Color_Slope/LRO_NAC_ClrSlope_3m_10N58E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_3m_Color_Slope/LRO_NAC_ClrSlope_3m_10N58E_150cmp.wms deleted file mode 100644 index eb166292c2..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_3m_Color_Slope/LRO_NAC_ClrSlope_3m_10N58E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrSlope_3m_10N58E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_3m_Color_Slope_Hazard/LRO_LROC_DEM_Mare_Crisium_3m_Color_Slope_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_3m_Color_Slope_Hazard/LRO_LROC_DEM_Mare_Crisium_3m_Color_Slope_Hazard.asset deleted file mode 100644 index 5db514a92b..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_3m_Color_Slope_Hazard/LRO_LROC_DEM_Mare_Crisium_3m_Color_Slope_Hazard.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrSlopeHaz_3m_10N58E_150cmp", - Name = [[LRO LROC DEM, Mare Crisium, 3m Color Slope Hazard]], - FilePath = asset.localResource("LRO_NAC_ClrSlopeHaz_3m_10N58E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Mare Crisium, 3m Color Slope Hazard]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrSlopeHaz_3m_10N58E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Mare Crisium, 3m Color Slope Hazard layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_10N58E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_10N58E_150cmp.vrt deleted file mode 100644 index de5695391f..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_10N58E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular_MOON_10N",GEOGCS["GCS_MOON",DATUM["MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",10],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrSlopeHaz_3m_10N58E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrSlopeHaz_3m_10N58E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrSlopeHaz_3m_10N58E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrSlopeHaz_3m_10N58E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_10N58E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_10N58E_150cmp.wms deleted file mode 100644 index 184fa70999..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_10N58E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrSlopeHaz_3m_10N58E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular_MOON_10N",GEOGCS["GCS_MOON",DATUM["MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",10],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_ColorHillshade/LRO_LROC_DEM_Mare_Crisium_ColorHillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_ColorHillshade/LRO_LROC_DEM_Mare_Crisium_ColorHillshade.asset deleted file mode 100644 index 6626483a64..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_ColorHillshade/LRO_LROC_DEM_Mare_Crisium_ColorHillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrShade_10N058E_150cmp", - Name = [[LRO LROC DEM, Mare Crisium, ColorHillshade]], - FilePath = asset.localResource("LRO_NAC_ClrShade_10N058E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Mare Crisium, ColorHillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrShade_10N058E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Mare Crisium, ColorHillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_ColorHillshade/LRO_NAC_ClrShade_10N058E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_ColorHillshade/LRO_NAC_ClrShade_10N058E_150cmp.vrt deleted file mode 100644 index 7efd43b3ae..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_ColorHillshade/LRO_NAC_ClrShade_10N058E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular_MOON_10N",GEOGCS["GCS_MOON",DATUM["MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",0],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrShade_10N058E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrShade_10N058E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrShade_10N058E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrShade_10N058E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_ColorHillshade/LRO_NAC_ClrShade_10N058E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_ColorHillshade/LRO_NAC_ClrShade_10N058E_150cmp.wms deleted file mode 100644 index 5d5a42a7e1..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_ColorHillshade/LRO_NAC_ClrShade_10N058E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrShade_10N058E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular_MOON_10N",GEOGCS["GCS_MOON",DATUM["MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",0],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_Colorized_Confidence/LRO_LROC_DEM_Mare_Crisium_Colorized_Confidence.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_Colorized_Confidence/LRO_LROC_DEM_Mare_Crisium_Colorized_Confidence.asset deleted file mode 100644 index 6a38fc0309..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_Colorized_Confidence/LRO_LROC_DEM_Mare_Crisium_Colorized_Confidence.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrConf_10N058E_150cmp", - Name = [[LRO LROC DEM, Mare Crisium, Colorized Confidence]], - FilePath = asset.localResource("LRO_NAC_ClrConf_10N058E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Mare Crisium, Colorized Confidence]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrConf_10N058E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Mare Crisium, Colorized Confidence layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_Colorized_Confidence/LRO_NAC_ClrConf_10N058E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_Colorized_Confidence/LRO_NAC_ClrConf_10N058E_150cmp.vrt deleted file mode 100644 index 44771a12c3..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_Colorized_Confidence/LRO_NAC_ClrConf_10N058E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrConf_10N058E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrConf_10N058E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrConf_10N058E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrConf_10N058E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_Colorized_Confidence/LRO_NAC_ClrConf_10N058E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_Colorized_Confidence/LRO_NAC_ClrConf_10N058E_150cmp.wms deleted file mode 100644 index 1bf3128d26..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_Colorized_Confidence/LRO_NAC_ClrConf_10N058E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrConf_10N058E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_Colorized_Slope/LRO_LROC_DEM_Mare_Crisium_Colorized_Slope.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_Colorized_Slope/LRO_LROC_DEM_Mare_Crisium_Colorized_Slope.asset deleted file mode 100644 index 4685dfbf01..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_Colorized_Slope/LRO_LROC_DEM_Mare_Crisium_Colorized_Slope.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Slope_10N058E_150cmp", - Name = [[LRO LROC DEM, Mare Crisium, Colorized Slope]], - FilePath = asset.localResource("LRO_NAC_Slope_10N058E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Mare Crisium, Colorized Slope]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Slope_10N058E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Mare Crisium, Colorized Slope layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_Colorized_Slope/LRO_NAC_Slope_10N058E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_Colorized_Slope/LRO_NAC_Slope_10N058E_150cmp.vrt deleted file mode 100644 index 91b1051d5a..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_Colorized_Slope/LRO_NAC_Slope_10N058E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_Slope_10N058E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_Slope_10N058E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_Slope_10N058E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_Slope_10N058E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_Colorized_Slope/LRO_NAC_Slope_10N058E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_Colorized_Slope/LRO_NAC_Slope_10N058E_150cmp.wms deleted file mode 100644 index f26d463272..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_Colorized_Slope/LRO_NAC_Slope_10N058E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Slope_10N058E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_Grayscale/LRO_LROC_DEM_Mare_Crisium_Grayscale.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_Grayscale/LRO_LROC_DEM_Mare_Crisium_Grayscale.asset deleted file mode 100644 index 44b3746cfe..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_Grayscale/LRO_LROC_DEM_Mare_Crisium_Grayscale.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Gray_10N058E_150cmp", - Name = [[LRO LROC DEM, Mare Crisium, Grayscale]], - FilePath = asset.localResource("LRO_NAC_Gray_10N058E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Mare Crisium, Grayscale]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Gray_10N058E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Mare Crisium, Grayscale layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_Grayscale/LRO_NAC_Gray_10N058E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_Grayscale/LRO_NAC_Gray_10N058E_150cmp.vrt deleted file mode 100644 index 3b9775c459..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_Grayscale/LRO_NAC_Gray_10N058E_150cmp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Gray - - LRO_NAC_Gray_10N058E_150cmp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Gray_10N058E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_Grayscale/LRO_NAC_Gray_10N058E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_Grayscale/LRO_NAC_Gray_10N058E_150cmp.wms deleted file mode 100644 index 463d409b83..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_Grayscale/LRO_NAC_Gray_10N058E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Gray_10N058E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 1 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_Hillshade/LRO_LROC_DEM_Mare_Crisium_Hillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_Hillshade/LRO_LROC_DEM_Mare_Crisium_Hillshade.asset deleted file mode 100644 index 80a83b8614..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_Hillshade/LRO_LROC_DEM_Mare_Crisium_Hillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Shade_10N058E_150cmp", - Name = [[LRO LROC DEM, Mare Crisium, Hillshade]], - FilePath = asset.localResource("LRO_NAC_Shade_10N058E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Mare Crisium, Hillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Shade_10N058E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Mare Crisium, Hillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_Hillshade/LRO_NAC_Shade_10N058E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_Hillshade/LRO_NAC_Shade_10N058E_150cmp.vrt deleted file mode 100644 index b3c15694be..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_Hillshade/LRO_NAC_Shade_10N058E_150cmp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Gray - - LRO_NAC_Shade_10N058E_150cmp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Shade_10N058E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_Hillshade/LRO_NAC_Shade_10N058E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_Hillshade/LRO_NAC_Shade_10N058E_150cmp.wms deleted file mode 100644 index d7e645bfc5..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Crisium_Hillshade/LRO_NAC_Shade_10N058E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Shade_10N058E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 1 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Ingenii_ColorHillshade/LRO_LROC_DEM_Mare_Ingenii_ColorHillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Ingenii_ColorHillshade/LRO_LROC_DEM_Mare_Ingenii_ColorHillshade.asset deleted file mode 100644 index b5496cd85b..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Ingenii_ColorHillshade/LRO_LROC_DEM_Mare_Ingenii_ColorHillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrShade_36S164E_2mp", - Name = [[LRO LROC DEM, Mare Ingenii, ColorHillshade]], - FilePath = asset.localResource("LRO_NAC_ClrShade_36S164E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Mare Ingenii, ColorHillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrShade_36S164E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Mare Ingenii, ColorHillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Ingenii_ColorHillshade/LRO_NAC_ClrShade_36S164E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Ingenii_ColorHillshade/LRO_NAC_ClrShade_36S164E_2mp.vrt deleted file mode 100644 index d51e14b954..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Ingenii_ColorHillshade/LRO_NAC_ClrShade_36S164E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrShade_36S164E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrShade_36S164E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrShade_36S164E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrShade_36S164E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Ingenii_ColorHillshade_Slope/LRO_LROC_DEM_Mare_Ingenii_ColorHillshade_Slope.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Ingenii_ColorHillshade_Slope/LRO_LROC_DEM_Mare_Ingenii_ColorHillshade_Slope.asset deleted file mode 100644 index 5d878eff8c..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Ingenii_ColorHillshade_Slope/LRO_LROC_DEM_Mare_Ingenii_ColorHillshade_Slope.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Slope_36S164E_2mp", - Name = [[LRO LROC DEM, Mare Ingenii, ColorHillshade Slope]], - FilePath = asset.localResource("LRO_NAC_Slope_36S164E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Mare Ingenii, ColorHillshade Slope]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Slope_36S164E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Mare Ingenii, ColorHillshade Slope layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Ingenii_ColorHillshade_Slope/LRO_NAC_Slope_36S164E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Ingenii_ColorHillshade_Slope/LRO_NAC_Slope_36S164E_2mp.vrt deleted file mode 100644 index 28615b6b84..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Ingenii_ColorHillshade_Slope/LRO_NAC_Slope_36S164E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_Slope_36S164E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_Slope_36S164E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_Slope_36S164E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_Slope_36S164E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Ingenii_ColorHillshade_Slope/LRO_NAC_Slope_36S164E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Ingenii_ColorHillshade_Slope/LRO_NAC_Slope_36S164E_2mp.wms deleted file mode 100644 index 43ed83c30a..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Ingenii_ColorHillshade_Slope/LRO_NAC_Slope_36S164E_2mp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Slope_36S164E_2mp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Ingenii_Colorized_Confidence/LRO_LROC_DEM_Mare_Ingenii_Colorized_Confidence.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Ingenii_Colorized_Confidence/LRO_LROC_DEM_Mare_Ingenii_Colorized_Confidence.asset deleted file mode 100644 index 4dde2a7ca8..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Ingenii_Colorized_Confidence/LRO_LROC_DEM_Mare_Ingenii_Colorized_Confidence.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrConf_36S164E_2mp", - Name = [[LRO LROC DEM, Mare Ingenii, Colorized Confidence]], - FilePath = asset.localResource("LRO_NAC_ClrConf_36S164E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Mare Ingenii, Colorized Confidence]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrConf_36S164E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Mare Ingenii, Colorized Confidence layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Ingenii_Colorized_Confidence/LRO_NAC_ClrConf_36S164E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Ingenii_Colorized_Confidence/LRO_NAC_ClrConf_36S164E_2mp.vrt deleted file mode 100644 index aea94424d8..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Ingenii_Colorized_Confidence/LRO_NAC_ClrConf_36S164E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrConf_36S164E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrConf_36S164E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrConf_36S164E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrConf_36S164E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Ingenii_Colorized_Confidence/LRO_NAC_ClrConf_36S164E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Ingenii_Colorized_Confidence/LRO_NAC_ClrConf_36S164E_2mp.wms deleted file mode 100644 index 2e4a4d5866..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Ingenii_Colorized_Confidence/LRO_NAC_ClrConf_36S164E_2mp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrConf_36S164E_2mp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Ingenii_Grayscale/LRO_LROC_DEM_Mare_Ingenii_Grayscale.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Ingenii_Grayscale/LRO_LROC_DEM_Mare_Ingenii_Grayscale.asset deleted file mode 100644 index 1804767c69..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Ingenii_Grayscale/LRO_LROC_DEM_Mare_Ingenii_Grayscale.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Gray_36S164E_2mp", - Name = [[LRO LROC DEM, Mare Ingenii, Grayscale]], - FilePath = asset.localResource("LRO_NAC_Gray_36S164E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Mare Ingenii, Grayscale]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Gray_36S164E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Mare Ingenii, Grayscale layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Ingenii_Grayscale/LRO_NAC_Gray_36S164E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Ingenii_Grayscale/LRO_NAC_Gray_36S164E_2mp.vrt deleted file mode 100644 index fe74d9575f..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Ingenii_Grayscale/LRO_NAC_Gray_36S164E_2mp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Gray - - LRO_NAC_Gray_36S164E_2mp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Gray_36S164E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Ingenii_Grayscale/LRO_NAC_Gray_36S164E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Ingenii_Grayscale/LRO_NAC_Gray_36S164E_2mp.wms deleted file mode 100644 index 8d2f9b5c81..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Ingenii_Grayscale/LRO_NAC_Gray_36S164E_2mp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Gray_36S164E_2mp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 1 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Ingenii_Hillshade/LRO_LROC_DEM_Mare_Ingenii_Hillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Ingenii_Hillshade/LRO_LROC_DEM_Mare_Ingenii_Hillshade.asset deleted file mode 100644 index ed26371ce1..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Ingenii_Hillshade/LRO_LROC_DEM_Mare_Ingenii_Hillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Shade_36S164E_2mp", - Name = [[LRO LROC DEM, Mare Ingenii, Hillshade]], - FilePath = asset.localResource("LRO_NAC_Shade_36S164E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Mare Ingenii, Hillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Shade_36S164E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Mare Ingenii, Hillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Ingenii_Hillshade/LRO_NAC_Shade_36S164E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Ingenii_Hillshade/LRO_NAC_Shade_36S164E_2mp.vrt deleted file mode 100644 index 4e613dca0f..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Ingenii_Hillshade/LRO_NAC_Shade_36S164E_2mp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",-36],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Gray - - LRO_NAC_Shade_36S164E_2mp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Shade_36S164E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Ingenii_Hillshade/LRO_NAC_Shade_36S164E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Ingenii_Hillshade/LRO_NAC_Shade_36S164E_2mp.wms deleted file mode 100644 index cd6957eb9b..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Ingenii_Hillshade/LRO_NAC_Shade_36S164E_2mp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Shade_36S164E_2mp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",-36],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 1 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Moscoviense_ColorHillshade/LRO_LROC_DEM_Mare_Moscoviense_ColorHillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Moscoviense_ColorHillshade/LRO_LROC_DEM_Mare_Moscoviense_ColorHillshade.asset deleted file mode 100644 index eb2c2f29c2..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Moscoviense_ColorHillshade/LRO_LROC_DEM_Mare_Moscoviense_ColorHillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrShade_26N150E_200cmp", - Name = [[LRO LROC DEM, Mare Moscoviense, ColorHillshade]], - FilePath = asset.localResource("LRO_NAC_ClrShade_26N150E_200cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Mare Moscoviense, ColorHillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrShade_26N150E_200cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Mare Moscoviense, ColorHillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Moscoviense_ColorHillshade/LRO_NAC_ClrShade_26N150E_200cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Moscoviense_ColorHillshade/LRO_NAC_ClrShade_26N150E_200cmp.vrt deleted file mode 100644 index 693493be21..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Moscoviense_ColorHillshade/LRO_NAC_ClrShade_26N150E_200cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",26],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrShade_26N150E_200cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrShade_26N150E_200cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrShade_26N150E_200cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrShade_26N150E_200cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Moscoviense_Colorized_Confidence/LRO_LROC_DEM_Mare_Moscoviense_Colorized_Confidence.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Moscoviense_Colorized_Confidence/LRO_LROC_DEM_Mare_Moscoviense_Colorized_Confidence.asset deleted file mode 100644 index 53e5e373c6..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Moscoviense_Colorized_Confidence/LRO_LROC_DEM_Mare_Moscoviense_Colorized_Confidence.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrConf_26N150E_200cmp", - Name = [[LRO LROC DEM, Mare Moscoviense, Colorized Confidence]], - FilePath = asset.localResource("LRO_NAC_ClrConf_26N150E_200cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Mare Moscoviense, Colorized Confidence]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrConf_26N150E_200cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Mare Moscoviense, Colorized Confidence layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Moscoviense_Colorized_Confidence/LRO_NAC_ClrConf_26N150E_200cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Moscoviense_Colorized_Confidence/LRO_NAC_ClrConf_26N150E_200cmp.vrt deleted file mode 100644 index 2a35c42c44..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Moscoviense_Colorized_Confidence/LRO_NAC_ClrConf_26N150E_200cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrConf_26N150E_200cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrConf_26N150E_200cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrConf_26N150E_200cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrConf_26N150E_200cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Moscoviense_Colorized_Confidence/LRO_NAC_ClrConf_26N150E_200cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Moscoviense_Colorized_Confidence/LRO_NAC_ClrConf_26N150E_200cmp.wms deleted file mode 100644 index 16978c9900..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Moscoviense_Colorized_Confidence/LRO_NAC_ClrConf_26N150E_200cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrConf_26N150E_200cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Moscoviense_Colorized_Slope/LRO_LROC_DEM_Mare_Moscoviense_Colorized_Slope.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Moscoviense_Colorized_Slope/LRO_LROC_DEM_Mare_Moscoviense_Colorized_Slope.asset deleted file mode 100644 index df4afbaf14..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Moscoviense_Colorized_Slope/LRO_LROC_DEM_Mare_Moscoviense_Colorized_Slope.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Slope_26N150E_200cmp", - Name = [[LRO LROC DEM, Mare Moscoviense, Colorized Slope]], - FilePath = asset.localResource("LRO_NAC_Slope_26N150E_200cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Mare Moscoviense, Colorized Slope]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Slope_26N150E_200cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Mare Moscoviense, Colorized Slope layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Moscoviense_Colorized_Slope/LRO_NAC_Slope_26N150E_200cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Moscoviense_Colorized_Slope/LRO_NAC_Slope_26N150E_200cmp.vrt deleted file mode 100644 index aced4fc65a..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Moscoviense_Colorized_Slope/LRO_NAC_Slope_26N150E_200cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",26],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_Slope_26N150E_200cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_Slope_26N150E_200cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_Slope_26N150E_200cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_Slope_26N150E_200cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Moscoviense_Colorized_Slope/LRO_NAC_Slope_26N150E_200cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Moscoviense_Colorized_Slope/LRO_NAC_Slope_26N150E_200cmp.wms deleted file mode 100644 index f65662ec79..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Moscoviense_Colorized_Slope/LRO_NAC_Slope_26N150E_200cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Slope_26N150E_200cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",26],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Moscoviense_Grayscale/LRO_LROC_DEM_Mare_Moscoviense_Grayscale.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Moscoviense_Grayscale/LRO_LROC_DEM_Mare_Moscoviense_Grayscale.asset deleted file mode 100644 index 0a6c74e4bb..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Moscoviense_Grayscale/LRO_LROC_DEM_Mare_Moscoviense_Grayscale.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Gray_26N150E_200cmp", - Name = [[LRO LROC DEM, Mare Moscoviense, Grayscale]], - FilePath = asset.localResource("LRO_NAC_Gray_26N150E_200cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Mare Moscoviense, Grayscale]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Gray_26N150E_200cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Mare Moscoviense, Grayscale layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Moscoviense_Grayscale/LRO_NAC_Gray_26N150E_200cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Moscoviense_Grayscale/LRO_NAC_Gray_26N150E_200cmp.vrt deleted file mode 100644 index 13d2ddf3c3..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Moscoviense_Grayscale/LRO_NAC_Gray_26N150E_200cmp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Gray - - LRO_NAC_Gray_26N150E_200cmp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Gray_26N150E_200cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Moscoviense_Grayscale/LRO_NAC_Gray_26N150E_200cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Moscoviense_Grayscale/LRO_NAC_Gray_26N150E_200cmp.wms deleted file mode 100644 index dae09d05d9..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Moscoviense_Grayscale/LRO_NAC_Gray_26N150E_200cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Gray_26N150E_200cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 1 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Moscoviense_Hillshade/LRO_LROC_DEM_Mare_Moscoviense_Hillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Moscoviense_Hillshade/LRO_LROC_DEM_Mare_Moscoviense_Hillshade.asset deleted file mode 100644 index 4cc3899b42..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Moscoviense_Hillshade/LRO_LROC_DEM_Mare_Moscoviense_Hillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Shade_26N150E_200cmp", - Name = [[LRO LROC DEM, Mare Moscoviense, Hillshade]], - FilePath = asset.localResource("LRO_NAC_Shade_26N150E_200cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Mare Moscoviense, Hillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Shade_26N150E_200cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Mare Moscoviense, Hillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Moscoviense_Hillshade/LRO_NAC_Shade_26N150E_200cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Moscoviense_Hillshade/LRO_NAC_Shade_26N150E_200cmp.vrt deleted file mode 100644 index abe5286481..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Moscoviense_Hillshade/LRO_NAC_Shade_26N150E_200cmp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",26],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Gray - - LRO_NAC_Shade_26N150E_200cmp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Shade_26N150E_200cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Moscoviense_Hillshade/LRO_NAC_Shade_26N150E_200cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Moscoviense_Hillshade/LRO_NAC_Shade_26N150E_200cmp.wms deleted file mode 100644 index 1107d3ec21..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Moscoviense_Hillshade/LRO_NAC_Shade_26N150E_200cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Shade_26N150E_200cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",26],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 1 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Smythii_ColorHillshade/LRO_LROC_DEM_Mare_Smythii_ColorHillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Smythii_ColorHillshade/LRO_LROC_DEM_Mare_Smythii_ColorHillshade.asset deleted file mode 100644 index 09e80b3d3f..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Smythii_ColorHillshade/LRO_LROC_DEM_Mare_Smythii_ColorHillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrShade_02N085E_150cmp", - Name = [[LRO LROC DEM, Mare Smythii, ColorHillshade]], - FilePath = asset.localResource("LRO_NAC_ClrShade_02N085E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Mare Smythii, ColorHillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrShade_02N085E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Mare Smythii, ColorHillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Smythii_ColorHillshade/LRO_NAC_ClrShade_02N085E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Smythii_ColorHillshade/LRO_NAC_ClrShade_02N085E_150cmp.vrt deleted file mode 100644 index 0e4e12cf30..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Smythii_ColorHillshade/LRO_NAC_ClrShade_02N085E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrShade_02N085E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrShade_02N085E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrShade_02N085E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrShade_02N085E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Smythii_Colorized_Confidence/LRO_LROC_DEM_Mare_Smythii_Colorized_Confidence.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Smythii_Colorized_Confidence/LRO_LROC_DEM_Mare_Smythii_Colorized_Confidence.asset deleted file mode 100644 index ca0431ca73..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Smythii_Colorized_Confidence/LRO_LROC_DEM_Mare_Smythii_Colorized_Confidence.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrConf_02N085E_150cmp", - Name = [[LRO LROC DEM, Mare Smythii, Colorized Confidence]], - FilePath = asset.localResource("LRO_NAC_ClrConf_02N085E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Mare Smythii, Colorized Confidence]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrConf_02N085E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Mare Smythii, Colorized Confidence layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Smythii_Colorized_Confidence/LRO_NAC_ClrConf_02N085E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Smythii_Colorized_Confidence/LRO_NAC_ClrConf_02N085E_150cmp.vrt deleted file mode 100644 index d9ca1077a8..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Smythii_Colorized_Confidence/LRO_NAC_ClrConf_02N085E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrConf_02N085E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrConf_02N085E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrConf_02N085E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrConf_02N085E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Smythii_Colorized_Confidence/LRO_NAC_ClrConf_02N085E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Smythii_Colorized_Confidence/LRO_NAC_ClrConf_02N085E_150cmp.wms deleted file mode 100644 index 4582335fee..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Smythii_Colorized_Confidence/LRO_NAC_ClrConf_02N085E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrConf_02N085E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Smythii_Colorized_Slope/LRO_LROC_DEM_Mare_Smythii_Colorized_Slope.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Smythii_Colorized_Slope/LRO_LROC_DEM_Mare_Smythii_Colorized_Slope.asset deleted file mode 100644 index 330c432f63..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Smythii_Colorized_Slope/LRO_LROC_DEM_Mare_Smythii_Colorized_Slope.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Slope_02N085E_150cmp", - Name = [[LRO LROC DEM, Mare Smythii, Colorized Slope]], - FilePath = asset.localResource("LRO_NAC_Slope_02N085E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Mare Smythii, Colorized Slope]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Slope_02N085E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Mare Smythii, Colorized Slope layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Smythii_Colorized_Slope/LRO_NAC_Slope_02N085E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Smythii_Colorized_Slope/LRO_NAC_Slope_02N085E_150cmp.vrt deleted file mode 100644 index 571a3a4ca0..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Smythii_Colorized_Slope/LRO_NAC_Slope_02N085E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_Slope_02N085E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_Slope_02N085E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_Slope_02N085E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_Slope_02N085E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Smythii_Colorized_Slope/LRO_NAC_Slope_02N085E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Smythii_Colorized_Slope/LRO_NAC_Slope_02N085E_150cmp.wms deleted file mode 100644 index 4de85e6212..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Smythii_Colorized_Slope/LRO_NAC_Slope_02N085E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Slope_02N085E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Smythii_Grayscale/LRO_LROC_DEM_Mare_Smythii_Grayscale.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Smythii_Grayscale/LRO_LROC_DEM_Mare_Smythii_Grayscale.asset deleted file mode 100644 index df9bcb3f0a..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Smythii_Grayscale/LRO_LROC_DEM_Mare_Smythii_Grayscale.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Gray_02N085E_150cmp", - Name = [[LRO LROC DEM, Mare Smythii, Grayscale]], - FilePath = asset.localResource("LRO_NAC_Gray_02N085E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Mare Smythii, Grayscale]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Gray_02N085E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Mare Smythii, Grayscale layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Smythii_Grayscale/LRO_NAC_Gray_02N085E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Smythii_Grayscale/LRO_NAC_Gray_02N085E_150cmp.vrt deleted file mode 100644 index 889a0a6ee8..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Smythii_Grayscale/LRO_NAC_Gray_02N085E_150cmp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Gray - - LRO_NAC_Gray_02N085E_150cmp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Gray_02N085E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Smythii_Grayscale/LRO_NAC_Gray_02N085E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Smythii_Grayscale/LRO_NAC_Gray_02N085E_150cmp.wms deleted file mode 100644 index 7c9de1d278..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Smythii_Grayscale/LRO_NAC_Gray_02N085E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Gray_02N085E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 1 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Smythii_Hillshade/LRO_LROC_DEM_Mare_Smythii_Hillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Smythii_Hillshade/LRO_LROC_DEM_Mare_Smythii_Hillshade.asset deleted file mode 100644 index 382e72a92d..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Smythii_Hillshade/LRO_LROC_DEM_Mare_Smythii_Hillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Shade_02N085E_150cmp", - Name = [[LRO LROC DEM, Mare Smythii, Hillshade]], - FilePath = asset.localResource("LRO_NAC_Shade_02N085E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Mare Smythii, Hillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Shade_02N085E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Mare Smythii, Hillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Smythii_Hillshade/LRO_NAC_Shade_02N085E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Smythii_Hillshade/LRO_NAC_Shade_02N085E_150cmp.vrt deleted file mode 100644 index 4684aab739..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Smythii_Hillshade/LRO_NAC_Shade_02N085E_150cmp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Gray - - LRO_NAC_Shade_02N085E_150cmp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Shade_02N085E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Smythii_Hillshade/LRO_NAC_Shade_02N085E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Smythii_Hillshade/LRO_NAC_Shade_02N085E_150cmp.wms deleted file mode 100644 index a687be47b0..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Smythii_Hillshade/LRO_NAC_Shade_02N085E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Shade_02N085E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 1 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Tranquillitatis_ColorHillshade/LRO_LROC_DEM_Mare_Tranquillitatis_ColorHillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Tranquillitatis_ColorHillshade/LRO_LROC_DEM_Mare_Tranquillitatis_ColorHillshade.asset deleted file mode 100644 index fda724590d..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Tranquillitatis_ColorHillshade/LRO_LROC_DEM_Mare_Tranquillitatis_ColorHillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrShade_07N022E_150cmp", - Name = [[LRO LROC DEM, Mare Tranquillitatis, ColorHillshade]], - FilePath = asset.localResource("LRO_NAC_ClrShade_07N022E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Mare Tranquillitatis, ColorHillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrShade_07N022E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Mare Tranquillitatis, ColorHillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Tranquillitatis_ColorHillshade/LRO_NAC_ClrShade_07N022E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Tranquillitatis_ColorHillshade/LRO_NAC_ClrShade_07N022E_150cmp.vrt deleted file mode 100644 index 976b9a5ccf..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Tranquillitatis_ColorHillshade/LRO_NAC_ClrShade_07N022E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrShade_07N022E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrShade_07N022E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrShade_07N022E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrShade_07N022E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Tranquillitatis_Colorized_Confidence/LRO_LROC_DEM_Mare_Tranquillitatis_Colorized_Confidence.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Tranquillitatis_Colorized_Confidence/LRO_LROC_DEM_Mare_Tranquillitatis_Colorized_Confidence.asset deleted file mode 100644 index efb50ece20..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Tranquillitatis_Colorized_Confidence/LRO_LROC_DEM_Mare_Tranquillitatis_Colorized_Confidence.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrConf_07N022E_150cmp", - Name = [[LRO LROC DEM, Mare Tranquillitatis, Colorized Confidence]], - FilePath = asset.localResource("LRO_NAC_ClrConf_07N022E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Mare Tranquillitatis, Colorized Confidence]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrConf_07N022E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Mare Tranquillitatis, Colorized Confidence layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Tranquillitatis_Colorized_Confidence/LRO_NAC_ClrConf_07N022E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Tranquillitatis_Colorized_Confidence/LRO_NAC_ClrConf_07N022E_150cmp.vrt deleted file mode 100644 index 4a22866eaa..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Tranquillitatis_Colorized_Confidence/LRO_NAC_ClrConf_07N022E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrConf_07N022E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrConf_07N022E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrConf_07N022E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrConf_07N022E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Tranquillitatis_Colorized_Confidence/LRO_NAC_ClrConf_07N022E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Tranquillitatis_Colorized_Confidence/LRO_NAC_ClrConf_07N022E_150cmp.wms deleted file mode 100644 index 4ae631d390..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Tranquillitatis_Colorized_Confidence/LRO_NAC_ClrConf_07N022E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrConf_07N022E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Tranquillitatis_Colorized_Slope/LRO_LROC_DEM_Mare_Tranquillitatis_Colorized_Slope.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Tranquillitatis_Colorized_Slope/LRO_LROC_DEM_Mare_Tranquillitatis_Colorized_Slope.asset deleted file mode 100644 index 3a48d16ef4..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Tranquillitatis_Colorized_Slope/LRO_LROC_DEM_Mare_Tranquillitatis_Colorized_Slope.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Slope_07N022E_150cmp", - Name = [[LRO LROC DEM, Mare Tranquillitatis, Colorized Slope]], - FilePath = asset.localResource("LRO_NAC_Slope_07N022E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Mare Tranquillitatis, Colorized Slope]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Slope_07N022E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Mare Tranquillitatis, Colorized Slope layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Tranquillitatis_Colorized_Slope/LRO_NAC_Slope_07N022E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Tranquillitatis_Colorized_Slope/LRO_NAC_Slope_07N022E_150cmp.vrt deleted file mode 100644 index 40eea5ede8..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Tranquillitatis_Colorized_Slope/LRO_NAC_Slope_07N022E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",7],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_Slope_07N022E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_Slope_07N022E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_Slope_07N022E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_Slope_07N022E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Tranquillitatis_Colorized_Slope/LRO_NAC_Slope_07N022E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Tranquillitatis_Colorized_Slope/LRO_NAC_Slope_07N022E_150cmp.wms deleted file mode 100644 index 9b84b0c02f..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Tranquillitatis_Colorized_Slope/LRO_NAC_Slope_07N022E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Slope_07N022E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",7],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Tranquillitatis_Grayscale/LRO_LROC_DEM_Mare_Tranquillitatis_Grayscale.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Tranquillitatis_Grayscale/LRO_LROC_DEM_Mare_Tranquillitatis_Grayscale.asset deleted file mode 100644 index 4ae1817c29..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Tranquillitatis_Grayscale/LRO_LROC_DEM_Mare_Tranquillitatis_Grayscale.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Gray_07N022E_150cmp", - Name = [[LRO LROC DEM, Mare Tranquillitatis, Grayscale]], - FilePath = asset.localResource("LRO_NAC_Gray_07N022E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Mare Tranquillitatis, Grayscale]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Gray_07N022E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Mare Tranquillitatis, Grayscale layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Tranquillitatis_Grayscale/LRO_NAC_Gray_07N022E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Tranquillitatis_Grayscale/LRO_NAC_Gray_07N022E_150cmp.vrt deleted file mode 100644 index 9804576eb6..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Tranquillitatis_Grayscale/LRO_NAC_Gray_07N022E_150cmp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Gray - - LRO_NAC_Gray_07N022E_150cmp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Gray_07N022E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Tranquillitatis_Grayscale/LRO_NAC_Gray_07N022E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Tranquillitatis_Grayscale/LRO_NAC_Gray_07N022E_150cmp.wms deleted file mode 100644 index 23f181cfc3..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Tranquillitatis_Grayscale/LRO_NAC_Gray_07N022E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Gray_07N022E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 1 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Tranquillitatis_Hillshade/LRO_LROC_DEM_Mare_Tranquillitatis_Hillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Tranquillitatis_Hillshade/LRO_LROC_DEM_Mare_Tranquillitatis_Hillshade.asset deleted file mode 100644 index d2c583852e..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Tranquillitatis_Hillshade/LRO_LROC_DEM_Mare_Tranquillitatis_Hillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Shade_07N022E_150cmp", - Name = [[LRO LROC DEM, Mare Tranquillitatis, Hillshade]], - FilePath = asset.localResource("LRO_NAC_Shade_07N022E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Mare Tranquillitatis, Hillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Shade_07N022E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Mare Tranquillitatis, Hillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Tranquillitatis_Hillshade/LRO_NAC_Shade_07N022E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Tranquillitatis_Hillshade/LRO_NAC_Shade_07N022E_150cmp.vrt deleted file mode 100644 index 6f2f275327..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Tranquillitatis_Hillshade/LRO_NAC_Shade_07N022E_150cmp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Gray - - LRO_NAC_Shade_07N022E_150cmp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Shade_07N022E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Tranquillitatis_Hillshade/LRO_NAC_Shade_07N022E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Tranquillitatis_Hillshade/LRO_NAC_Shade_07N022E_150cmp.wms deleted file mode 100644 index 72287f6510..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Mare_Tranquillitatis_Hillshade/LRO_NAC_Shade_07N022E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Shade_07N022E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 1 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Marius_Hills_ColorHillshade/LRO_LROC_DEM_Marius_Hills_ColorHillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Marius_Hills_ColorHillshade/LRO_LROC_DEM_Marius_Hills_ColorHillshade.asset deleted file mode 100644 index 8f588427a7..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Marius_Hills_ColorHillshade/LRO_LROC_DEM_Marius_Hills_ColorHillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrShade_14N304E_2mp", - Name = [[LRO LROC DEM, Marius Hills, ColorHillshade]], - FilePath = asset.localResource("LRO_NAC_ClrShade_14N304E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Marius Hills, ColorHillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrShade_14N304E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Marius Hills, ColorHillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Marius_Hills_ColorHillshade/LRO_NAC_ClrShade_14N304E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Marius_Hills_ColorHillshade/LRO_NAC_ClrShade_14N304E_2mp.vrt deleted file mode 100644 index a1cc63e1ce..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Marius_Hills_ColorHillshade/LRO_NAC_ClrShade_14N304E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrShade_14N304E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrShade_14N304E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrShade_14N304E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrShade_14N304E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Marius_Hills_ColorHillshade_Slope/LRO_LROC_DEM_Marius_Hills_ColorHillshade_Slope.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Marius_Hills_ColorHillshade_Slope/LRO_LROC_DEM_Marius_Hills_ColorHillshade_Slope.asset deleted file mode 100644 index f0dec4d0a0..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Marius_Hills_ColorHillshade_Slope/LRO_LROC_DEM_Marius_Hills_ColorHillshade_Slope.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Slope_14N304E_2mp", - Name = [[LRO LROC DEM, Marius Hills, ColorHillshade Slope]], - FilePath = asset.localResource("LRO_NAC_Slope_14N304E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Marius Hills, ColorHillshade Slope]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Slope_14N304E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Marius Hills, ColorHillshade Slope layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Marius_Hills_ColorHillshade_Slope/LRO_NAC_Slope_14N304E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Marius_Hills_ColorHillshade_Slope/LRO_NAC_Slope_14N304E_2mp.vrt deleted file mode 100644 index e0b5d03896..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Marius_Hills_ColorHillshade_Slope/LRO_NAC_Slope_14N304E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",14],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_Slope_14N304E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_Slope_14N304E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_Slope_14N304E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_Slope_14N304E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Marius_Hills_ColorHillshade_Slope/LRO_NAC_Slope_14N304E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Marius_Hills_ColorHillshade_Slope/LRO_NAC_Slope_14N304E_2mp.wms deleted file mode 100644 index 028f9261d6..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Marius_Hills_ColorHillshade_Slope/LRO_NAC_Slope_14N304E_2mp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Slope_14N304E_2mp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",14],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Marius_Hills_Colorized_Confidence/LRO_LROC_DEM_Marius_Hills_Colorized_Confidence.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Marius_Hills_Colorized_Confidence/LRO_LROC_DEM_Marius_Hills_Colorized_Confidence.asset deleted file mode 100644 index 8389ea75c8..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Marius_Hills_Colorized_Confidence/LRO_LROC_DEM_Marius_Hills_Colorized_Confidence.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrConf_14N304E_2mp", - Name = [[LRO LROC DEM, Marius Hills, Colorized Confidence]], - FilePath = asset.localResource("LRO_NAC_ClrConf_14N304E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Marius Hills, Colorized Confidence]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrConf_14N304E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Marius Hills, Colorized Confidence layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Marius_Hills_Colorized_Confidence/LRO_NAC_ClrConf_14N304E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Marius_Hills_Colorized_Confidence/LRO_NAC_ClrConf_14N304E_2mp.vrt deleted file mode 100644 index 55532bc2bc..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Marius_Hills_Colorized_Confidence/LRO_NAC_ClrConf_14N304E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrConf_14N304E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrConf_14N304E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrConf_14N304E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrConf_14N304E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Marius_Hills_Colorized_Confidence/LRO_NAC_ClrConf_14N304E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Marius_Hills_Colorized_Confidence/LRO_NAC_ClrConf_14N304E_2mp.wms deleted file mode 100644 index a5ac5c4066..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Marius_Hills_Colorized_Confidence/LRO_NAC_ClrConf_14N304E_2mp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrConf_14N304E_2mp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Marius_Hills_Grayscale/LRO_LROC_DEM_Marius_Hills_Grayscale.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Marius_Hills_Grayscale/LRO_LROC_DEM_Marius_Hills_Grayscale.asset deleted file mode 100644 index bfc3cb6d50..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Marius_Hills_Grayscale/LRO_LROC_DEM_Marius_Hills_Grayscale.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Gray_14N304E_2mp", - Name = [[LRO LROC DEM, Marius Hills, Grayscale]], - FilePath = asset.localResource("LRO_NAC_Gray_14N304E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Marius Hills, Grayscale]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Gray_14N304E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Marius Hills, Grayscale layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Marius_Hills_Grayscale/LRO_NAC_Gray_14N304E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Marius_Hills_Grayscale/LRO_NAC_Gray_14N304E_2mp.vrt deleted file mode 100644 index 6c3bb0758f..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Marius_Hills_Grayscale/LRO_NAC_Gray_14N304E_2mp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Gray - - LRO_NAC_Gray_14N304E_2mp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Gray_14N304E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Marius_Hills_Grayscale/LRO_NAC_Gray_14N304E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Marius_Hills_Grayscale/LRO_NAC_Gray_14N304E_2mp.wms deleted file mode 100644 index f2465a69ca..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Marius_Hills_Grayscale/LRO_NAC_Gray_14N304E_2mp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Gray_14N304E_2mp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 1 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Marius_Hills_Hillshade/LRO_LROC_DEM_Marius_Hills_Hillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Marius_Hills_Hillshade/LRO_LROC_DEM_Marius_Hills_Hillshade.asset deleted file mode 100644 index 13085be326..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Marius_Hills_Hillshade/LRO_LROC_DEM_Marius_Hills_Hillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Shade_14N304E_2mp", - Name = [[LRO LROC DEM, Marius Hills, Hillshade]], - FilePath = asset.localResource("LRO_NAC_Shade_14N304E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Marius Hills, Hillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Shade_14N304E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Marius Hills, Hillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Marius_Hills_Hillshade/LRO_NAC_Shade_14N304E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Marius_Hills_Hillshade/LRO_NAC_Shade_14N304E_2mp.vrt deleted file mode 100644 index 8ff644e8ca..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Marius_Hills_Hillshade/LRO_NAC_Shade_14N304E_2mp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",14],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Gray - - LRO_NAC_Shade_14N304E_2mp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Shade_14N304E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Marius_Hills_Hillshade/LRO_NAC_Shade_14N304E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Marius_Hills_Hillshade/LRO_NAC_Shade_14N304E_2mp.wms deleted file mode 100644 index 180ed8570f..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Marius_Hills_Hillshade/LRO_NAC_Shade_14N304E_2mp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Shade_14N304E_2mp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",14],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 1 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_15m_Color_Roughness/LRO_LROC_DEM_Montes_Pyrenaeus_15m_Color_Roughness.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_15m_Color_Roughness/LRO_LROC_DEM_Montes_Pyrenaeus_15m_Color_Roughness.asset deleted file mode 100644 index 80955d3ed3..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_15m_Color_Roughness/LRO_LROC_DEM_Montes_Pyrenaeus_15m_Color_Roughness.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrRoughness_15m_16S041E_150cmp", - Name = [[LRO LROC DEM, Montes Pyrenaeus, 15m Color Roughness]], - FilePath = asset.localResource("LRO_NAC_ClrRoughness_15m_16S041E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Montes Pyrenaeus, 15m Color Roughness]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrRoughness_15m_16S041E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Montes Pyrenaeus, 15m Color Roughness layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_16S041E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_16S041E_150cmp.vrt deleted file mode 100644 index 50ccb0e522..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_16S041E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrRoughness_15m_16S041E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrRoughness_15m_16S041E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrRoughness_15m_16S041E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrRoughness_15m_16S041E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Montes_Pyrenaeus_15m_Color_Roughness_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Montes_Pyrenaeus_15m_Color_Roughness_Hazard.asset deleted file mode 100644 index 0d2647f95c..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Montes_Pyrenaeus_15m_Color_Roughness_Hazard.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrRoughnessHaz_15m_16S041E_150cmp", - Name = [[LRO LROC DEM, Montes Pyrenaeus, 15m Color Roughness Hazard]], - FilePath = asset.localResource("LRO_NAC_ClrRoughnessHaz_15m_16S041E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Montes Pyrenaeus, 15m Color Roughness Hazard]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrRoughnessHaz_15m_16S041E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Montes Pyrenaeus, 15m Color Roughness Hazard layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_16S041E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_16S041E_150cmp.vrt deleted file mode 100644 index 684d4089a0..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_16S041E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-19],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrRoughnessHaz_15m_16S041E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrRoughnessHaz_15m_16S041E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrRoughnessHaz_15m_16S041E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrRoughnessHaz_15m_16S041E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_16S041E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_16S041E_150cmp.wms deleted file mode 100644 index f00212fd13..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_16S041E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrRoughnessHaz_15m_16S041E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-19],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_15m_Color_Slope/LRO_LROC_DEM_Montes_Pyrenaeus_15m_Color_Slope.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_15m_Color_Slope/LRO_LROC_DEM_Montes_Pyrenaeus_15m_Color_Slope.asset deleted file mode 100644 index fcb86eb09c..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_15m_Color_Slope/LRO_LROC_DEM_Montes_Pyrenaeus_15m_Color_Slope.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrSlope_15m_16S041E_150cmp", - Name = [[LRO LROC DEM, Montes Pyrenaeus, 15m Color Slope]], - FilePath = asset.localResource("LRO_NAC_ClrSlope_15m_16S041E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Montes Pyrenaeus, 15m Color Slope]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrSlope_15m_16S041E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Montes Pyrenaeus, 15m Color Slope layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_15m_Color_Slope/LRO_NAC_ClrSlope_15m_16S041E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_15m_Color_Slope/LRO_NAC_ClrSlope_15m_16S041E_150cmp.vrt deleted file mode 100644 index 0e8e9c3aed..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_15m_Color_Slope/LRO_NAC_ClrSlope_15m_16S041E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrSlope_15m_16S041E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrSlope_15m_16S041E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrSlope_15m_16S041E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrSlope_15m_16S041E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_15m_Color_Slope/LRO_NAC_ClrSlope_15m_16S041E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_15m_Color_Slope/LRO_NAC_ClrSlope_15m_16S041E_150cmp.wms deleted file mode 100644 index a139a186f9..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_15m_Color_Slope/LRO_NAC_ClrSlope_15m_16S041E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrSlope_15m_16S041E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_15m_Color_Slope_Hazard/LRO_LROC_DEM_Montes_Pyrenaeus_15m_Color_Slope_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_15m_Color_Slope_Hazard/LRO_LROC_DEM_Montes_Pyrenaeus_15m_Color_Slope_Hazard.asset deleted file mode 100644 index d537a9c179..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_15m_Color_Slope_Hazard/LRO_LROC_DEM_Montes_Pyrenaeus_15m_Color_Slope_Hazard.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrSlopeHaz_15m_16S041E_150cmp", - Name = [[LRO LROC DEM, Montes Pyrenaeus, 15m Color Slope Hazard]], - FilePath = asset.localResource("LRO_NAC_ClrSlopeHaz_15m_16S041E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Montes Pyrenaeus, 15m Color Slope Hazard]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrSlopeHaz_15m_16S041E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Montes Pyrenaeus, 15m Color Slope Hazard layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_16S041E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_16S041E_150cmp.vrt deleted file mode 100644 index 3e47beeb35..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_16S041E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrSlopeHaz_15m_16S041E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrSlopeHaz_15m_16S041E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrSlopeHaz_15m_16S041E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrSlopeHaz_15m_16S041E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_16S041E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_16S041E_150cmp.wms deleted file mode 100644 index fa30328ab4..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_16S041E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrSlopeHaz_15m_16S041E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_3m_Color_Roughness/LRO_LROC_DEM_Montes_Pyrenaeus_3m_Color_Roughness.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_3m_Color_Roughness/LRO_LROC_DEM_Montes_Pyrenaeus_3m_Color_Roughness.asset deleted file mode 100644 index df36c9678c..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_3m_Color_Roughness/LRO_LROC_DEM_Montes_Pyrenaeus_3m_Color_Roughness.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrRoughness_3m_16S041E_150cmp", - Name = [[LRO LROC DEM, Montes Pyrenaeus, 3m Color Roughness]], - FilePath = asset.localResource("LRO_NAC_ClrRoughness_3m_16S041E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Montes Pyrenaeus, 3m Color Roughness]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrRoughness_3m_16S041E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Montes Pyrenaeus, 3m Color Roughness layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_16S041E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_16S041E_150cmp.vrt deleted file mode 100644 index dc1d7c70a9..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_16S041E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrRoughness_3m_16S041E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrRoughness_3m_16S041E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrRoughness_3m_16S041E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrRoughness_3m_16S041E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_16S041E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_16S041E_150cmp.wms deleted file mode 100644 index 89f4459646..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_16S041E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrRoughness_3m_16S041E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_3m_Color_Roughness_Hazard/LRO_LROC_DEM_Montes_Pyrenaeus_3m_Color_Roughness_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_3m_Color_Roughness_Hazard/LRO_LROC_DEM_Montes_Pyrenaeus_3m_Color_Roughness_Hazard.asset deleted file mode 100644 index cb1096a0a9..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_3m_Color_Roughness_Hazard/LRO_LROC_DEM_Montes_Pyrenaeus_3m_Color_Roughness_Hazard.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrRoughnessHaz_3m_16S041E_150cmp", - Name = [[LRO LROC DEM, Montes Pyrenaeus, 3m Color Roughness Hazard]], - FilePath = asset.localResource("LRO_NAC_ClrRoughnessHaz_3m_16S041E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Montes Pyrenaeus, 3m Color Roughness Hazard]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrRoughnessHaz_3m_16S041E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Montes Pyrenaeus, 3m Color Roughness Hazard layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_16S041E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_16S041E_150cmp.vrt deleted file mode 100644 index 924e5b6de8..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_16S041E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-19],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrRoughnessHaz_3m_16S041E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrRoughnessHaz_3m_16S041E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrRoughnessHaz_3m_16S041E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrRoughnessHaz_3m_16S041E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_16S041E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_16S041E_150cmp.wms deleted file mode 100644 index 47df18ca73..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_16S041E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrRoughnessHaz_3m_16S041E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-19],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_3m_Color_Slope/LRO_LROC_DEM_Montes_Pyrenaeus_3m_Color_Slope.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_3m_Color_Slope/LRO_LROC_DEM_Montes_Pyrenaeus_3m_Color_Slope.asset deleted file mode 100644 index d87fcdc85d..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_3m_Color_Slope/LRO_LROC_DEM_Montes_Pyrenaeus_3m_Color_Slope.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrSlope_3m_16S041E_150cmp", - Name = [[LRO LROC DEM, Montes Pyrenaeus, 3m Color Slope]], - FilePath = asset.localResource("LRO_NAC_ClrSlope_3m_16S041E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Montes Pyrenaeus, 3m Color Slope]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrSlope_3m_16S041E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Montes Pyrenaeus, 3m Color Slope layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_3m_Color_Slope/LRO_NAC_ClrSlope_3m_16S041E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_3m_Color_Slope/LRO_NAC_ClrSlope_3m_16S041E_150cmp.vrt deleted file mode 100644 index 0a33ce757e..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_3m_Color_Slope/LRO_NAC_ClrSlope_3m_16S041E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-19],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrSlope_3m_16S041E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrSlope_3m_16S041E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrSlope_3m_16S041E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrSlope_3m_16S041E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_3m_Color_Slope/LRO_NAC_ClrSlope_3m_16S041E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_3m_Color_Slope/LRO_NAC_ClrSlope_3m_16S041E_150cmp.wms deleted file mode 100644 index ae1a85fdfb..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_3m_Color_Slope/LRO_NAC_ClrSlope_3m_16S041E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrSlope_3m_16S041E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-19],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_3m_Color_Slope_Hazard/LRO_LROC_DEM_Montes_Pyrenaeus_3m_Color_Slope_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_3m_Color_Slope_Hazard/LRO_LROC_DEM_Montes_Pyrenaeus_3m_Color_Slope_Hazard.asset deleted file mode 100644 index c31e4cab65..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_3m_Color_Slope_Hazard/LRO_LROC_DEM_Montes_Pyrenaeus_3m_Color_Slope_Hazard.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrSlopeHaz_3m_16S041E_150cmp", - Name = [[LRO LROC DEM, Montes Pyrenaeus, 3m Color Slope Hazard]], - FilePath = asset.localResource("LRO_NAC_ClrSlopeHaz_3m_16S041E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Montes Pyrenaeus, 3m Color Slope Hazard]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrSlopeHaz_3m_16S041E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Montes Pyrenaeus, 3m Color Slope Hazard layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_16S041E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_16S041E_150cmp.vrt deleted file mode 100644 index 032def5ebc..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_16S041E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-19],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrSlopeHaz_3m_16S041E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrSlopeHaz_3m_16S041E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrSlopeHaz_3m_16S041E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrSlopeHaz_3m_16S041E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_16S041E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_16S041E_150cmp.wms deleted file mode 100644 index 3861298309..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_16S041E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrSlopeHaz_3m_16S041E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-19],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_ColorHillshade/LRO_LROC_DEM_Montes_Pyrenaeus_ColorHillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_ColorHillshade/LRO_LROC_DEM_Montes_Pyrenaeus_ColorHillshade.asset deleted file mode 100644 index 2ab0f95239..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_ColorHillshade/LRO_LROC_DEM_Montes_Pyrenaeus_ColorHillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrShade_16S041E_150cmp", - Name = [[LRO LROC DEM, Montes Pyrenaeus, ColorHillshade]], - FilePath = asset.localResource("LRO_NAC_ClrShade_16S041E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Montes Pyrenaeus, ColorHillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrShade_16S041E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Montes Pyrenaeus, ColorHillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_ColorHillshade/LRO_NAC_ClrShade_16S041E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_ColorHillshade/LRO_NAC_ClrShade_16S041E_150cmp.vrt deleted file mode 100644 index e14fb51eca..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_ColorHillshade/LRO_NAC_ClrShade_16S041E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrShade_16S041E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrShade_16S041E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrShade_16S041E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrShade_16S041E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_ColorHillshade/LRO_NAC_ClrShade_16S041E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_ColorHillshade/LRO_NAC_ClrShade_16S041E_150cmp.wms deleted file mode 100644 index 608fe80352..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_ColorHillshade/LRO_NAC_ClrShade_16S041E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrShade_16S041E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_Colorized_Confidence/LRO_LROC_DEM_Montes_Pyrenaeus_Colorized_Confidence.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_Colorized_Confidence/LRO_LROC_DEM_Montes_Pyrenaeus_Colorized_Confidence.asset deleted file mode 100644 index d7c770fa47..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_Colorized_Confidence/LRO_LROC_DEM_Montes_Pyrenaeus_Colorized_Confidence.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrConf_16S041E_150cmp", - Name = [[LRO LROC DEM, Montes Pyrenaeus, Colorized Confidence]], - FilePath = asset.localResource("LRO_NAC_ClrConf_16S041E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Montes Pyrenaeus, Colorized Confidence]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrConf_16S041E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Montes Pyrenaeus, Colorized Confidence layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_Colorized_Confidence/LRO_NAC_ClrConf_16S041E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_Colorized_Confidence/LRO_NAC_ClrConf_16S041E_150cmp.vrt deleted file mode 100644 index 7a2e9e35b9..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_Colorized_Confidence/LRO_NAC_ClrConf_16S041E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrConf_16S041E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrConf_16S041E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrConf_16S041E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrConf_16S041E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_Colorized_Confidence/LRO_NAC_ClrConf_16S041E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_Colorized_Confidence/LRO_NAC_ClrConf_16S041E_150cmp.wms deleted file mode 100644 index 702acda178..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_Colorized_Confidence/LRO_NAC_ClrConf_16S041E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrConf_16S041E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_Colorized_Slope/LRO_LROC_DEM_Montes_Pyrenaeus_Colorized_Slope.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_Colorized_Slope/LRO_LROC_DEM_Montes_Pyrenaeus_Colorized_Slope.asset deleted file mode 100644 index 5e1fbc3a81..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_Colorized_Slope/LRO_LROC_DEM_Montes_Pyrenaeus_Colorized_Slope.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Slope_16S041E_150cmp", - Name = [[LRO LROC DEM, Montes Pyrenaeus, Colorized Slope]], - FilePath = asset.localResource("LRO_NAC_Slope_16S041E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Montes Pyrenaeus, Colorized Slope]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Slope_16S041E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Montes Pyrenaeus, Colorized Slope layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_Colorized_Slope/LRO_NAC_Slope_16S041E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_Colorized_Slope/LRO_NAC_Slope_16S041E_150cmp.vrt deleted file mode 100644 index 9c5148d474..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_Colorized_Slope/LRO_NAC_Slope_16S041E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_Slope_16S041E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_Slope_16S041E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_Slope_16S041E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_Slope_16S041E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_Colorized_Slope/LRO_NAC_Slope_16S041E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_Colorized_Slope/LRO_NAC_Slope_16S041E_150cmp.wms deleted file mode 100644 index c3b5cb1009..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_Colorized_Slope/LRO_NAC_Slope_16S041E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Slope_16S041E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_Grayscale/LRO_LROC_DEM_Montes_Pyrenaeus_Grayscale.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_Grayscale/LRO_LROC_DEM_Montes_Pyrenaeus_Grayscale.asset deleted file mode 100644 index a14ed905b4..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_Grayscale/LRO_LROC_DEM_Montes_Pyrenaeus_Grayscale.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Gray_16S041E_150cmp", - Name = [[LRO LROC DEM, Montes Pyrenaeus, Grayscale]], - FilePath = asset.localResource("LRO_NAC_Gray_16S041E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Montes Pyrenaeus, Grayscale]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Gray_16S041E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Montes Pyrenaeus, Grayscale layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_Grayscale/LRO_NAC_Gray_16S041E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_Grayscale/LRO_NAC_Gray_16S041E_150cmp.vrt deleted file mode 100644 index 1816e94200..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_Grayscale/LRO_NAC_Gray_16S041E_150cmp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Gray - - LRO_NAC_Gray_16S041E_150cmp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Gray_16S041E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_Grayscale/LRO_NAC_Gray_16S041E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_Grayscale/LRO_NAC_Gray_16S041E_150cmp.wms deleted file mode 100644 index 600eb5ec29..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_Grayscale/LRO_NAC_Gray_16S041E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Gray_16S041E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 1 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_Hillshade/LRO_LROC_DEM_Montes_Pyrenaeus_Hillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_Hillshade/LRO_LROC_DEM_Montes_Pyrenaeus_Hillshade.asset deleted file mode 100644 index 1a7d094027..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_Hillshade/LRO_LROC_DEM_Montes_Pyrenaeus_Hillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Shade_16S041E_150cmp", - Name = [[LRO LROC DEM, Montes Pyrenaeus, Hillshade]], - FilePath = asset.localResource("LRO_NAC_Shade_16S041E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Montes Pyrenaeus, Hillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Shade_16S041E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Montes Pyrenaeus, Hillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_Hillshade/LRO_NAC_Shade_16S041E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_Hillshade/LRO_NAC_Shade_16S041E_150cmp.vrt deleted file mode 100644 index 293dcfc12d..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_Hillshade/LRO_NAC_Shade_16S041E_150cmp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Gray - - LRO_NAC_Shade_16S041E_150cmp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Shade_16S041E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_Hillshade/LRO_NAC_Shade_16S041E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_Hillshade/LRO_NAC_Shade_16S041E_150cmp.wms deleted file mode 100644 index 96fcdb5ae4..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Montes_Pyrenaeus_Hillshade/LRO_NAC_Shade_16S041E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Shade_16S041E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 1 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Murchison_Crater_ColorHillshade/LRO_LROC_DEM_Murchison_Crater_ColorHillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Murchison_Crater_ColorHillshade/LRO_LROC_DEM_Murchison_Crater_ColorHillshade.asset deleted file mode 100644 index e0621e58e0..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Murchison_Crater_ColorHillshade/LRO_LROC_DEM_Murchison_Crater_ColorHillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrShade_05N000E_150cmp", - Name = [[LRO LROC DEM, Murchison Crater, ColorHillshade]], - FilePath = asset.localResource("LRO_NAC_ClrShade_05N000E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Murchison Crater, ColorHillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrShade_05N000E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Murchison Crater, ColorHillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Murchison_Crater_ColorHillshade/LRO_NAC_ClrShade_05N000E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Murchison_Crater_ColorHillshade/LRO_NAC_ClrShade_05N000E_150cmp.vrt deleted file mode 100644 index 218935b856..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Murchison_Crater_ColorHillshade/LRO_NAC_ClrShade_05N000E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrShade_05N000E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrShade_05N000E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrShade_05N000E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrShade_05N000E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Murchison_Crater_Colorized_Confidence/LRO_LROC_DEM_Murchison_Crater_Colorized_Confidence.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Murchison_Crater_Colorized_Confidence/LRO_LROC_DEM_Murchison_Crater_Colorized_Confidence.asset deleted file mode 100644 index 03a4da016c..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Murchison_Crater_Colorized_Confidence/LRO_LROC_DEM_Murchison_Crater_Colorized_Confidence.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrConf_05N000E_150cmp", - Name = [[LRO LROC DEM, Murchison Crater, Colorized Confidence]], - FilePath = asset.localResource("LRO_NAC_ClrConf_05N000E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Murchison Crater, Colorized Confidence]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrConf_05N000E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Murchison Crater, Colorized Confidence layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Murchison_Crater_Colorized_Confidence/LRO_NAC_ClrConf_05N000E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Murchison_Crater_Colorized_Confidence/LRO_NAC_ClrConf_05N000E_150cmp.vrt deleted file mode 100644 index a72fc67840..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Murchison_Crater_Colorized_Confidence/LRO_NAC_ClrConf_05N000E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrConf_05N000E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrConf_05N000E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrConf_05N000E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrConf_05N000E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Murchison_Crater_Colorized_Confidence/LRO_NAC_ClrConf_05N000E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Murchison_Crater_Colorized_Confidence/LRO_NAC_ClrConf_05N000E_150cmp.wms deleted file mode 100644 index 103d714904..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Murchison_Crater_Colorized_Confidence/LRO_NAC_ClrConf_05N000E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrConf_05N000E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Murchison_Crater_Colorized_Slope/LRO_LROC_DEM_Murchison_Crater_Colorized_Slope.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Murchison_Crater_Colorized_Slope/LRO_LROC_DEM_Murchison_Crater_Colorized_Slope.asset deleted file mode 100644 index 0a0aaf7ddf..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Murchison_Crater_Colorized_Slope/LRO_LROC_DEM_Murchison_Crater_Colorized_Slope.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Slope_05N000E_150cmp", - Name = [[LRO LROC DEM, Murchison Crater, Colorized Slope]], - FilePath = asset.localResource("LRO_NAC_Slope_05N000E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Murchison Crater, Colorized Slope]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Slope_05N000E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Murchison Crater, Colorized Slope layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Murchison_Crater_Colorized_Slope/LRO_NAC_Slope_05N000E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Murchison_Crater_Colorized_Slope/LRO_NAC_Slope_05N000E_150cmp.vrt deleted file mode 100644 index 4324ab3ae1..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Murchison_Crater_Colorized_Slope/LRO_NAC_Slope_05N000E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",5],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_Slope_05N000E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_Slope_05N000E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_Slope_05N000E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_Slope_05N000E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Murchison_Crater_Colorized_Slope/LRO_NAC_Slope_05N000E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Murchison_Crater_Colorized_Slope/LRO_NAC_Slope_05N000E_150cmp.wms deleted file mode 100644 index e960844354..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Murchison_Crater_Colorized_Slope/LRO_NAC_Slope_05N000E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Slope_05N000E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",5],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Murchison_Crater_Grayscale/LRO_LROC_DEM_Murchison_Crater_Grayscale.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Murchison_Crater_Grayscale/LRO_LROC_DEM_Murchison_Crater_Grayscale.asset deleted file mode 100644 index 55e43a777f..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Murchison_Crater_Grayscale/LRO_LROC_DEM_Murchison_Crater_Grayscale.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Gray_05N000E_150cmp", - Name = [[LRO LROC DEM, Murchison Crater, Grayscale]], - FilePath = asset.localResource("LRO_NAC_Gray_05N000E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Murchison Crater, Grayscale]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Gray_05N000E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Murchison Crater, Grayscale layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Murchison_Crater_Grayscale/LRO_NAC_Gray_05N000E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Murchison_Crater_Grayscale/LRO_NAC_Gray_05N000E_150cmp.vrt deleted file mode 100644 index 8b6350fa28..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Murchison_Crater_Grayscale/LRO_NAC_Gray_05N000E_150cmp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Gray - - LRO_NAC_Gray_05N000E_150cmp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Gray_05N000E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Murchison_Crater_Grayscale/LRO_NAC_Gray_05N000E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Murchison_Crater_Grayscale/LRO_NAC_Gray_05N000E_150cmp.wms deleted file mode 100644 index 603b2e9c27..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Murchison_Crater_Grayscale/LRO_NAC_Gray_05N000E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Gray_05N000E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 1 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Murchison_Crater_Hillshade/LRO_LROC_DEM_Murchison_Crater_Hillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Murchison_Crater_Hillshade/LRO_LROC_DEM_Murchison_Crater_Hillshade.asset deleted file mode 100644 index 2502aed733..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Murchison_Crater_Hillshade/LRO_LROC_DEM_Murchison_Crater_Hillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Shade_05N000E_150cmp", - Name = [[LRO LROC DEM, Murchison Crater, Hillshade]], - FilePath = asset.localResource("LRO_NAC_Shade_05N000E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Murchison Crater, Hillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Shade_05N000E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Murchison Crater, Hillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Murchison_Crater_Hillshade/LRO_NAC_Shade_05N000E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Murchison_Crater_Hillshade/LRO_NAC_Shade_05N000E_150cmp.vrt deleted file mode 100644 index 59dca2da02..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Murchison_Crater_Hillshade/LRO_NAC_Shade_05N000E_150cmp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Gray - - LRO_NAC_Shade_05N000E_150cmp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Shade_05N000E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Murchison_Crater_Hillshade/LRO_NAC_Shade_05N000E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Murchison_Crater_Hillshade/LRO_NAC_Shade_05N000E_150cmp.wms deleted file mode 100644 index 58a8eb5c5b..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Murchison_Crater_Hillshade/LRO_NAC_Shade_05N000E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Shade_05N000E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 1 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_15m_Color_Roughness/LRO_LROC_DEM_Orientale_1_15m_Color_Roughness.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_15m_Color_Roughness/LRO_LROC_DEM_Orientale_1_15m_Color_Roughness.asset deleted file mode 100644 index eaa0b17fe5..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_15m_Color_Roughness/LRO_LROC_DEM_Orientale_1_15m_Color_Roughness.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrRoughness_15m_26S265E_200cmp", - Name = [[LRO LROC DEM, Orientale 1, 15m Color Roughness]], - FilePath = asset.localResource("LRO_NAC_ClrRoughness_15m_26S265E_200cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Orientale 1, 15m Color Roughness]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrRoughness_15m_26S265E_200cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Orientale 1, 15m Color Roughness layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_26S265E_200cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_26S265E_200cmp.vrt deleted file mode 100644 index 28a40beca0..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_26S265E_200cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-26],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrRoughness_15m_26S265E_200cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrRoughness_15m_26S265E_200cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrRoughness_15m_26S265E_200cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrRoughness_15m_26S265E_200cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Orientale_1_15m_Color_Roughness_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Orientale_1_15m_Color_Roughness_Hazard.asset deleted file mode 100644 index 47005968e9..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Orientale_1_15m_Color_Roughness_Hazard.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrRoughnessHaz_15m_26S265E_200cmp", - Name = [[LRO LROC DEM, Orientale 1, 15m Color Roughness Hazard]], - FilePath = asset.localResource("LRO_NAC_ClrRoughnessHaz_15m_26S265E_200cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Orientale 1, 15m Color Roughness Hazard]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrRoughnessHaz_15m_26S265E_200cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Orientale 1, 15m Color Roughness Hazard layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_26S265E_200cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_26S265E_200cmp.vrt deleted file mode 100644 index b500bde3c3..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_26S265E_200cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-26],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrRoughnessHaz_15m_26S265E_200cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrRoughnessHaz_15m_26S265E_200cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrRoughnessHaz_15m_26S265E_200cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrRoughnessHaz_15m_26S265E_200cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_26S265E_200cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_26S265E_200cmp.wms deleted file mode 100644 index 93b31d5952..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_26S265E_200cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrRoughnessHaz_15m_26S265E_200cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-26],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_15m_Color_Slope/LRO_LROC_DEM_Orientale_1_15m_Color_Slope.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_15m_Color_Slope/LRO_LROC_DEM_Orientale_1_15m_Color_Slope.asset deleted file mode 100644 index c814c967eb..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_15m_Color_Slope/LRO_LROC_DEM_Orientale_1_15m_Color_Slope.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrSlope_15m_26S265E_200cmp", - Name = [[LRO LROC DEM, Orientale 1, 15m Color Slope]], - FilePath = asset.localResource("LRO_NAC_ClrSlope_15m_26S265E_200cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Orientale 1, 15m Color Slope]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrSlope_15m_26S265E_200cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Orientale 1, 15m Color Slope layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_15m_Color_Slope/LRO_NAC_ClrSlope_15m_26S265E_200cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_15m_Color_Slope/LRO_NAC_ClrSlope_15m_26S265E_200cmp.vrt deleted file mode 100644 index 1c6c3ea164..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_15m_Color_Slope/LRO_NAC_ClrSlope_15m_26S265E_200cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrSlope_15m_26S265E_200cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrSlope_15m_26S265E_200cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrSlope_15m_26S265E_200cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrSlope_15m_26S265E_200cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_15m_Color_Slope/LRO_NAC_ClrSlope_15m_26S265E_200cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_15m_Color_Slope/LRO_NAC_ClrSlope_15m_26S265E_200cmp.wms deleted file mode 100644 index 64de6f1223..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_15m_Color_Slope/LRO_NAC_ClrSlope_15m_26S265E_200cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrSlope_15m_26S265E_200cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_15m_Color_Slope_Hazard/LRO_LROC_DEM_Orientale_1_15m_Color_Slope_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_15m_Color_Slope_Hazard/LRO_LROC_DEM_Orientale_1_15m_Color_Slope_Hazard.asset deleted file mode 100644 index d1c01f3fa7..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_15m_Color_Slope_Hazard/LRO_LROC_DEM_Orientale_1_15m_Color_Slope_Hazard.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrSlopeHaz_15m_26S265E_200cmp", - Name = [[LRO LROC DEM, Orientale 1, 15m Color Slope Hazard]], - FilePath = asset.localResource("LRO_NAC_ClrSlopeHaz_15m_26S265E_200cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Orientale 1, 15m Color Slope Hazard]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrSlopeHaz_15m_26S265E_200cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Orientale 1, 15m Color Slope Hazard layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_26S265E_200cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_26S265E_200cmp.vrt deleted file mode 100644 index 5dd0405010..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_26S265E_200cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-26],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrSlopeHaz_15m_26S265E_200cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrSlopeHaz_15m_26S265E_200cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrSlopeHaz_15m_26S265E_200cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrSlopeHaz_15m_26S265E_200cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_26S265E_200cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_26S265E_200cmp.wms deleted file mode 100644 index 4382909e97..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_26S265E_200cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrSlopeHaz_15m_26S265E_200cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-26],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_4m_Color_Roughness/LRO_LROC_DEM_Orientale_1_4m_Color_Roughness.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_4m_Color_Roughness/LRO_LROC_DEM_Orientale_1_4m_Color_Roughness.asset deleted file mode 100644 index f032e2081f..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_4m_Color_Roughness/LRO_LROC_DEM_Orientale_1_4m_Color_Roughness.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrRoughness_4m_26S265E_200cmp", - Name = [[LRO LROC DEM, Orientale 1, 4m Color Roughness]], - FilePath = asset.localResource("LRO_NAC_ClrRoughness_4m_26S265E_200cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Orientale 1, 4m Color Roughness]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrRoughness_4m_26S265E_200cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Orientale 1, 4m Color Roughness layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_4m_Color_Roughness/LRO_NAC_ClrRoughness_4m_26S265E_200cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_4m_Color_Roughness/LRO_NAC_ClrRoughness_4m_26S265E_200cmp.vrt deleted file mode 100644 index bf12c82b07..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_4m_Color_Roughness/LRO_NAC_ClrRoughness_4m_26S265E_200cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrRoughness_4m_26S265E_200cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrRoughness_4m_26S265E_200cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrRoughness_4m_26S265E_200cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrRoughness_4m_26S265E_200cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_4m_Color_Roughness/LRO_NAC_ClrRoughness_4m_26S265E_200cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_4m_Color_Roughness/LRO_NAC_ClrRoughness_4m_26S265E_200cmp.wms deleted file mode 100644 index 01f82e4c26..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_4m_Color_Roughness/LRO_NAC_ClrRoughness_4m_26S265E_200cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrRoughness_4m_26S265E_200cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_4m_Color_Roughness_Hazard/LRO_LROC_DEM_Orientale_1_4m_Color_Roughness_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_4m_Color_Roughness_Hazard/LRO_LROC_DEM_Orientale_1_4m_Color_Roughness_Hazard.asset deleted file mode 100644 index c9db113055..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_4m_Color_Roughness_Hazard/LRO_LROC_DEM_Orientale_1_4m_Color_Roughness_Hazard.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrRoughnessHaz_4m_26S265E_200cmp", - Name = [[LRO LROC DEM, Orientale 1, 4m Color Roughness Hazard]], - FilePath = asset.localResource("LRO_NAC_ClrRoughnessHaz_4m_26S265E_200cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Orientale 1, 4m Color Roughness Hazard]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrRoughnessHaz_4m_26S265E_200cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Orientale 1, 4m Color Roughness Hazard layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_4m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_4m_26S265E_200cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_4m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_4m_26S265E_200cmp.vrt deleted file mode 100644 index 2ff27504f9..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_4m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_4m_26S265E_200cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-26],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrRoughnessHaz_4m_26S265E_200cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrRoughnessHaz_4m_26S265E_200cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrRoughnessHaz_4m_26S265E_200cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrRoughnessHaz_4m_26S265E_200cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_4m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_4m_26S265E_200cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_4m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_4m_26S265E_200cmp.wms deleted file mode 100644 index d5776818a6..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_4m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_4m_26S265E_200cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrRoughnessHaz_4m_26S265E_200cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-26],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_4m_Color_Slope/LRO_LROC_DEM_Orientale_1_4m_Color_Slope.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_4m_Color_Slope/LRO_LROC_DEM_Orientale_1_4m_Color_Slope.asset deleted file mode 100644 index ffcd2130d3..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_4m_Color_Slope/LRO_LROC_DEM_Orientale_1_4m_Color_Slope.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrSlope_4m_26S265E_200cmp", - Name = [[LRO LROC DEM, Orientale 1, 4m Color Slope]], - FilePath = asset.localResource("LRO_NAC_ClrSlope_4m_26S265E_200cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Orientale 1, 4m Color Slope]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrSlope_4m_26S265E_200cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Orientale 1, 4m Color Slope layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_4m_Color_Slope/LRO_NAC_ClrSlope_4m_26S265E_200cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_4m_Color_Slope/LRO_NAC_ClrSlope_4m_26S265E_200cmp.vrt deleted file mode 100644 index cde364d37c..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_4m_Color_Slope/LRO_NAC_ClrSlope_4m_26S265E_200cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrSlope_4m_26S265E_200cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrSlope_4m_26S265E_200cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrSlope_4m_26S265E_200cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrSlope_4m_26S265E_200cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_4m_Color_Slope/LRO_NAC_ClrSlope_4m_26S265E_200cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_4m_Color_Slope/LRO_NAC_ClrSlope_4m_26S265E_200cmp.wms deleted file mode 100644 index 58a0233926..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_4m_Color_Slope/LRO_NAC_ClrSlope_4m_26S265E_200cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrSlope_4m_26S265E_200cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_4m_Color_Slope_Hazard/LRO_LROC_DEM_Orientale_1_4m_Color_Slope_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_4m_Color_Slope_Hazard/LRO_LROC_DEM_Orientale_1_4m_Color_Slope_Hazard.asset deleted file mode 100644 index 18111a9ceb..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_4m_Color_Slope_Hazard/LRO_LROC_DEM_Orientale_1_4m_Color_Slope_Hazard.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrSlopeHaz_4m_26S265E_200cmp", - Name = [[LRO LROC DEM, Orientale 1, 4m Color Slope Hazard]], - FilePath = asset.localResource("LRO_NAC_ClrSlopeHaz_4m_26S265E_200cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Orientale 1, 4m Color Slope Hazard]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrSlopeHaz_4m_26S265E_200cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Orientale 1, 4m Color Slope Hazard layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_4m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_4m_26S265E_200cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_4m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_4m_26S265E_200cmp.vrt deleted file mode 100644 index 93d0e8c74e..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_4m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_4m_26S265E_200cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-26],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrSlopeHaz_4m_26S265E_200cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrSlopeHaz_4m_26S265E_200cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrSlopeHaz_4m_26S265E_200cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrSlopeHaz_4m_26S265E_200cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_4m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_4m_26S265E_200cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_4m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_4m_26S265E_200cmp.wms deleted file mode 100644 index d1e17231ad..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_4m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_4m_26S265E_200cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrSlopeHaz_4m_26S265E_200cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-26],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_ColorHillshade/LRO_LROC_DEM_Orientale_1_ColorHillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_ColorHillshade/LRO_LROC_DEM_Orientale_1_ColorHillshade.asset deleted file mode 100644 index 636ed00ad5..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_ColorHillshade/LRO_LROC_DEM_Orientale_1_ColorHillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrShade_26S265E_200cmp", - Name = [[LRO LROC DEM, Orientale 1, ColorHillshade]], - FilePath = asset.localResource("LRO_NAC_ClrShade_26S265E_200cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Orientale 1, ColorHillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrShade_26S265E_200cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Orientale 1, ColorHillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_ColorHillshade/LRO_NAC_ClrShade_26S265E_200cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_ColorHillshade/LRO_NAC_ClrShade_26S265E_200cmp.vrt deleted file mode 100644 index 8d2ca198e6..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_ColorHillshade/LRO_NAC_ClrShade_26S265E_200cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-26],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrShade_26S265E_200cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrShade_26S265E_200cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrShade_26S265E_200cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrShade_26S265E_200cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_ColorHillshade/LRO_NAC_ClrShade_26S265E_200cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_ColorHillshade/LRO_NAC_ClrShade_26S265E_200cmp.wms deleted file mode 100644 index a0d210bb73..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_ColorHillshade/LRO_NAC_ClrShade_26S265E_200cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrShade_26S265E_200cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-26],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_Colorized_Confidence/LRO_LROC_DEM_Orientale_1_Colorized_Confidence.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_Colorized_Confidence/LRO_LROC_DEM_Orientale_1_Colorized_Confidence.asset deleted file mode 100644 index 624c4788a2..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_Colorized_Confidence/LRO_LROC_DEM_Orientale_1_Colorized_Confidence.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrConf_26S265E_200cmp", - Name = [[LRO LROC DEM, Orientale 1, Colorized Confidence]], - FilePath = asset.localResource("LRO_NAC_ClrConf_26S265E_200cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Orientale 1, Colorized Confidence]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrConf_26S265E_200cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Orientale 1, Colorized Confidence layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_Colorized_Confidence/LRO_NAC_ClrConf_26S265E_200cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_Colorized_Confidence/LRO_NAC_ClrConf_26S265E_200cmp.vrt deleted file mode 100644 index af0b609407..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_Colorized_Confidence/LRO_NAC_ClrConf_26S265E_200cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrConf_26S265E_200cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrConf_26S265E_200cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrConf_26S265E_200cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrConf_26S265E_200cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_Colorized_Confidence/LRO_NAC_ClrConf_26S265E_200cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_Colorized_Confidence/LRO_NAC_ClrConf_26S265E_200cmp.wms deleted file mode 100644 index 00ffb41967..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_Colorized_Confidence/LRO_NAC_ClrConf_26S265E_200cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrConf_26S265E_200cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_Colorized_Slope/LRO_LROC_DEM_Orientale_1_Colorized_Slope.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_Colorized_Slope/LRO_LROC_DEM_Orientale_1_Colorized_Slope.asset deleted file mode 100644 index 02af492c23..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_Colorized_Slope/LRO_LROC_DEM_Orientale_1_Colorized_Slope.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Slope_26S265E_200cmp", - Name = [[LRO LROC DEM, Orientale 1, Colorized Slope]], - FilePath = asset.localResource("LRO_NAC_Slope_26S265E_200cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Orientale 1, Colorized Slope]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Slope_26S265E_200cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Orientale 1, Colorized Slope layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_Colorized_Slope/LRO_NAC_Slope_26S265E_200cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_Colorized_Slope/LRO_NAC_Slope_26S265E_200cmp.vrt deleted file mode 100644 index 4e9cbaa1ec..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_Colorized_Slope/LRO_NAC_Slope_26S265E_200cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-26],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_Slope_26S265E_200cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_Slope_26S265E_200cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_Slope_26S265E_200cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_Slope_26S265E_200cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_Colorized_Slope/LRO_NAC_Slope_26S265E_200cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_Colorized_Slope/LRO_NAC_Slope_26S265E_200cmp.wms deleted file mode 100644 index cc06beeb56..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_Colorized_Slope/LRO_NAC_Slope_26S265E_200cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Slope_26S265E_200cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-26],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_Grayscale/LRO_LROC_DEM_Orientale_1_Grayscale.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_Grayscale/LRO_LROC_DEM_Orientale_1_Grayscale.asset deleted file mode 100644 index 216564fba9..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_Grayscale/LRO_LROC_DEM_Orientale_1_Grayscale.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Gray_26S265E_200cmp", - Name = [[LRO LROC DEM, Orientale 1, Grayscale]], - FilePath = asset.localResource("LRO_NAC_Gray_26S265E_200cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Orientale 1, Grayscale]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Gray_26S265E_200cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Orientale 1, Grayscale layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_Grayscale/LRO_NAC_Gray_26S265E_200cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_Grayscale/LRO_NAC_Gray_26S265E_200cmp.vrt deleted file mode 100644 index 914fc383c8..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_Grayscale/LRO_NAC_Gray_26S265E_200cmp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Gray - - LRO_NAC_Gray_26S265E_200cmp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Gray_26S265E_200cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_Grayscale/LRO_NAC_Gray_26S265E_200cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_Grayscale/LRO_NAC_Gray_26S265E_200cmp.wms deleted file mode 100644 index 151f58bc5f..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_Grayscale/LRO_NAC_Gray_26S265E_200cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Gray_26S265E_200cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 1 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_Hillshade/LRO_LROC_DEM_Orientale_1_Hillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_Hillshade/LRO_LROC_DEM_Orientale_1_Hillshade.asset deleted file mode 100644 index 3bec6f1de5..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_Hillshade/LRO_LROC_DEM_Orientale_1_Hillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Shade_26S265E_200cmp", - Name = [[LRO LROC DEM, Orientale 1, Hillshade]], - FilePath = asset.localResource("LRO_NAC_Shade_26S265E_200cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Orientale 1, Hillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Shade_26S265E_200cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Orientale 1, Hillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_Hillshade/LRO_NAC_Shade_26S265E_200cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_Hillshade/LRO_NAC_Shade_26S265E_200cmp.vrt deleted file mode 100644 index 1fe068108f..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_Hillshade/LRO_NAC_Shade_26S265E_200cmp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Gray - - LRO_NAC_Shade_26S265E_200cmp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Shade_26S265E_200cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_Hillshade/LRO_NAC_Shade_26S265E_200cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_Hillshade/LRO_NAC_Shade_26S265E_200cmp.wms deleted file mode 100644 index 1fafdfe4ec..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Orientale_1_Hillshade/LRO_NAC_Shade_26S265E_200cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Shade_26S265E_200cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 1 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_15m_Color_Roughness/LRO_LROC_DEM_Plato_Ejecta_15m_Color_Roughness.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_15m_Color_Roughness/LRO_LROC_DEM_Plato_Ejecta_15m_Color_Roughness.asset deleted file mode 100644 index 600b1ebf50..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_15m_Color_Roughness/LRO_LROC_DEM_Plato_Ejecta_15m_Color_Roughness.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrRoughness_15m_53N354E_150cmp", - Name = [[LRO LROC DEM, Plato Ejecta, 15m Color Roughness]], - FilePath = asset.localResource("LRO_NAC_ClrRoughness_15m_53N354E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Plato Ejecta, 15m Color Roughness]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrRoughness_15m_53N354E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Plato Ejecta, 15m Color Roughness layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_53N354E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_53N354E_150cmp.vrt deleted file mode 100644 index d5b4b2c714..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_53N354E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular_MOON_53N",GEOGCS["GCS_MOON",DATUM["MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",53],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrRoughness_15m_53N354E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrRoughness_15m_53N354E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrRoughness_15m_53N354E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrRoughness_15m_53N354E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Plato_Ejecta_15m_Color_Roughness_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Plato_Ejecta_15m_Color_Roughness_Hazard.asset deleted file mode 100644 index 9be41d2116..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Plato_Ejecta_15m_Color_Roughness_Hazard.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrRoughnessHaz_15m_53N354E_150cmp", - Name = [[LRO LROC DEM, Plato Ejecta, 15m Color Roughness Hazard]], - FilePath = asset.localResource("LRO_NAC_ClrRoughnessHaz_15m_53N354E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Plato Ejecta, 15m Color Roughness Hazard]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrRoughnessHaz_15m_53N354E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Plato Ejecta, 15m Color Roughness Hazard layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_53N354E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_53N354E_150cmp.vrt deleted file mode 100644 index 2a2446b2fa..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_53N354E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular_MOON_53N",GEOGCS["GCS_MOON",DATUM["MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",53],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrRoughnessHaz_15m_53N354E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrRoughnessHaz_15m_53N354E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrRoughnessHaz_15m_53N354E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrRoughnessHaz_15m_53N354E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_53N354E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_53N354E_150cmp.wms deleted file mode 100644 index 66021f1556..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_53N354E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrRoughnessHaz_15m_53N354E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - PROJCS["Equirectangular_MOON_53N",GEOGCS["GCS_MOON",DATUM["MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",53],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_15m_Color_Slope/LRO_LROC_DEM_Plato_Ejecta_15m_Color_Slope.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_15m_Color_Slope/LRO_LROC_DEM_Plato_Ejecta_15m_Color_Slope.asset deleted file mode 100644 index 40b5e51517..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_15m_Color_Slope/LRO_LROC_DEM_Plato_Ejecta_15m_Color_Slope.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrSlope_15m_53N354E_150cmp", - Name = [[LRO LROC DEM, Plato Ejecta, 15m Color Slope]], - FilePath = asset.localResource("LRO_NAC_ClrSlope_15m_53N354E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Plato Ejecta, 15m Color Slope]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrSlope_15m_53N354E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Plato Ejecta, 15m Color Slope layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_15m_Color_Slope/LRO_NAC_ClrSlope_15m_53N354E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_15m_Color_Slope/LRO_NAC_ClrSlope_15m_53N354E_150cmp.vrt deleted file mode 100644 index 76c540c293..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_15m_Color_Slope/LRO_NAC_ClrSlope_15m_53N354E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrSlope_15m_53N354E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrSlope_15m_53N354E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrSlope_15m_53N354E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrSlope_15m_53N354E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_15m_Color_Slope/LRO_NAC_ClrSlope_15m_53N354E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_15m_Color_Slope/LRO_NAC_ClrSlope_15m_53N354E_150cmp.wms deleted file mode 100644 index e1c0bc0a75..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_15m_Color_Slope/LRO_NAC_ClrSlope_15m_53N354E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrSlope_15m_53N354E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_15m_Color_Slope_Hazard/LRO_LROC_DEM_Plato_Ejecta_15m_Color_Slope_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_15m_Color_Slope_Hazard/LRO_LROC_DEM_Plato_Ejecta_15m_Color_Slope_Hazard.asset deleted file mode 100644 index 0d0a0bcacd..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_15m_Color_Slope_Hazard/LRO_LROC_DEM_Plato_Ejecta_15m_Color_Slope_Hazard.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrSlopeHaz_15m_53N354E_150cmp", - Name = [[LRO LROC DEM, Plato Ejecta, 15m Color Slope Hazard]], - FilePath = asset.localResource("LRO_NAC_ClrSlopeHaz_15m_53N354E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Plato Ejecta, 15m Color Slope Hazard]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrSlopeHaz_15m_53N354E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Plato Ejecta, 15m Color Slope Hazard layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_53N354E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_53N354E_150cmp.vrt deleted file mode 100644 index 4b1b086346..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_53N354E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular_MOON_53N",GEOGCS["GCS_MOON",DATUM["MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",53],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrSlopeHaz_15m_53N354E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrSlopeHaz_15m_53N354E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrSlopeHaz_15m_53N354E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrSlopeHaz_15m_53N354E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_53N354E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_53N354E_150cmp.wms deleted file mode 100644 index 007cfd18d8..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_53N354E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrSlopeHaz_15m_53N354E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - PROJCS["Equirectangular_MOON_53N",GEOGCS["GCS_MOON",DATUM["MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",53],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_3m_Color_Roughness/LRO_LROC_DEM_Plato_Ejecta_3m_Color_Roughness.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_3m_Color_Roughness/LRO_LROC_DEM_Plato_Ejecta_3m_Color_Roughness.asset deleted file mode 100644 index c7f6bee5a4..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_3m_Color_Roughness/LRO_LROC_DEM_Plato_Ejecta_3m_Color_Roughness.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrRoughness_3m_53N354E_150cmp", - Name = [[LRO LROC DEM, Plato Ejecta, 3m Color Roughness]], - FilePath = asset.localResource("LRO_NAC_ClrRoughness_3m_53N354E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Plato Ejecta, 3m Color Roughness]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrRoughness_3m_53N354E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Plato Ejecta, 3m Color Roughness layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_53N354E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_53N354E_150cmp.vrt deleted file mode 100644 index df72b07822..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_53N354E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrRoughness_3m_53N354E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrRoughness_3m_53N354E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrRoughness_3m_53N354E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrRoughness_3m_53N354E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_53N354E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_53N354E_150cmp.wms deleted file mode 100644 index 455a633e7d..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_53N354E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrRoughness_3m_53N354E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_3m_Color_Roughness_Hazard/LRO_LROC_DEM_Plato_Ejecta_3m_Color_Roughness_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_3m_Color_Roughness_Hazard/LRO_LROC_DEM_Plato_Ejecta_3m_Color_Roughness_Hazard.asset deleted file mode 100644 index 2d4822d0d5..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_3m_Color_Roughness_Hazard/LRO_LROC_DEM_Plato_Ejecta_3m_Color_Roughness_Hazard.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrRoughnessHaz_3m_53N354E_150cmp", - Name = [[LRO LROC DEM, Plato Ejecta, 3m Color Roughness Hazard]], - FilePath = asset.localResource("LRO_NAC_ClrRoughnessHaz_3m_53N354E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Plato Ejecta, 3m Color Roughness Hazard]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrRoughnessHaz_3m_53N354E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Plato Ejecta, 3m Color Roughness Hazard layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_53N354E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_53N354E_150cmp.vrt deleted file mode 100644 index 31867f46dc..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_53N354E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrRoughnessHaz_3m_53N354E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrRoughnessHaz_3m_53N354E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrRoughnessHaz_3m_53N354E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrRoughnessHaz_3m_53N354E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_53N354E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_53N354E_150cmp.wms deleted file mode 100644 index 21d2ce1613..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_53N354E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrRoughnessHaz_3m_53N354E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_3m_Color_Slope/LRO_LROC_DEM_Plato_Ejecta_3m_Color_Slope.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_3m_Color_Slope/LRO_LROC_DEM_Plato_Ejecta_3m_Color_Slope.asset deleted file mode 100644 index bab476e42e..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_3m_Color_Slope/LRO_LROC_DEM_Plato_Ejecta_3m_Color_Slope.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrSlope_3m_53N354E_150cmp", - Name = [[LRO LROC DEM, Plato Ejecta, 3m Color Slope]], - FilePath = asset.localResource("LRO_NAC_ClrSlope_3m_53N354E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Plato Ejecta, 3m Color Slope]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrSlope_3m_53N354E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Plato Ejecta, 3m Color Slope layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_3m_Color_Slope/LRO_NAC_ClrSlope_3m_53N354E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_3m_Color_Slope/LRO_NAC_ClrSlope_3m_53N354E_150cmp.vrt deleted file mode 100644 index 371a87d98b..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_3m_Color_Slope/LRO_NAC_ClrSlope_3m_53N354E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrSlope_3m_53N354E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrSlope_3m_53N354E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrSlope_3m_53N354E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrSlope_3m_53N354E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_3m_Color_Slope/LRO_NAC_ClrSlope_3m_53N354E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_3m_Color_Slope/LRO_NAC_ClrSlope_3m_53N354E_150cmp.wms deleted file mode 100644 index 3566febbe4..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_3m_Color_Slope/LRO_NAC_ClrSlope_3m_53N354E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrSlope_3m_53N354E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_3m_Color_Slope_Hazard/LRO_LROC_DEM_Plato_Ejecta_3m_Color_Slope_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_3m_Color_Slope_Hazard/LRO_LROC_DEM_Plato_Ejecta_3m_Color_Slope_Hazard.asset deleted file mode 100644 index 7f98e21583..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_3m_Color_Slope_Hazard/LRO_LROC_DEM_Plato_Ejecta_3m_Color_Slope_Hazard.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrSlopeHaz_3m_53N354E_150cmp", - Name = [[LRO LROC DEM, Plato Ejecta, 3m Color Slope Hazard]], - FilePath = asset.localResource("LRO_NAC_ClrSlopeHaz_3m_53N354E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Plato Ejecta, 3m Color Slope Hazard]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrSlopeHaz_3m_53N354E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Plato Ejecta, 3m Color Slope Hazard layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_53N354E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_53N354E_150cmp.vrt deleted file mode 100644 index 391d08dd69..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_53N354E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular_MOON_53N",GEOGCS["GCS_MOON",DATUM["MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",53],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrSlopeHaz_3m_53N354E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrSlopeHaz_3m_53N354E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrSlopeHaz_3m_53N354E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrSlopeHaz_3m_53N354E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_53N354E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_53N354E_150cmp.wms deleted file mode 100644 index 7234841c3d..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_53N354E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrSlopeHaz_3m_53N354E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - PROJCS["Equirectangular_MOON_53N",GEOGCS["GCS_MOON",DATUM["MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",53],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_ColorHillshade/LRO_LROC_DEM_Plato_Ejecta_ColorHillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_ColorHillshade/LRO_LROC_DEM_Plato_Ejecta_ColorHillshade.asset deleted file mode 100644 index 3edd28893a..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_ColorHillshade/LRO_LROC_DEM_Plato_Ejecta_ColorHillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrShade_53N354E_150cmp", - Name = [[LRO LROC DEM, Plato Ejecta, ColorHillshade]], - FilePath = asset.localResource("LRO_NAC_ClrShade_53N354E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Plato Ejecta, ColorHillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrShade_53N354E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Plato Ejecta, ColorHillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_ColorHillshade/LRO_NAC_ClrShade_53N354E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_ColorHillshade/LRO_NAC_ClrShade_53N354E_150cmp.vrt deleted file mode 100644 index 3b8a31d7b3..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_ColorHillshade/LRO_NAC_ClrShade_53N354E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrShade_53N354E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrShade_53N354E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrShade_53N354E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrShade_53N354E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_ColorHillshade/LRO_NAC_ClrShade_53N354E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_ColorHillshade/LRO_NAC_ClrShade_53N354E_150cmp.wms deleted file mode 100644 index 21a7c7be51..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_ColorHillshade/LRO_NAC_ClrShade_53N354E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrShade_53N354E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_Colorized_Confidence/LRO_LROC_DEM_Plato_Ejecta_Colorized_Confidence.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_Colorized_Confidence/LRO_LROC_DEM_Plato_Ejecta_Colorized_Confidence.asset deleted file mode 100644 index 110aa29dea..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_Colorized_Confidence/LRO_LROC_DEM_Plato_Ejecta_Colorized_Confidence.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrConf_53N354E_150cmp", - Name = [[LRO LROC DEM, Plato Ejecta, Colorized Confidence]], - FilePath = asset.localResource("LRO_NAC_ClrConf_53N354E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Plato Ejecta, Colorized Confidence]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrConf_53N354E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Plato Ejecta, Colorized Confidence layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_Colorized_Confidence/LRO_NAC_ClrConf_53N354E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_Colorized_Confidence/LRO_NAC_ClrConf_53N354E_150cmp.vrt deleted file mode 100644 index 9b071c10b7..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_Colorized_Confidence/LRO_NAC_ClrConf_53N354E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrConf_53N354E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrConf_53N354E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrConf_53N354E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrConf_53N354E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_Colorized_Confidence/LRO_NAC_ClrConf_53N354E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_Colorized_Confidence/LRO_NAC_ClrConf_53N354E_150cmp.wms deleted file mode 100644 index f6f2c548e7..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_Colorized_Confidence/LRO_NAC_ClrConf_53N354E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrConf_53N354E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_Colorized_Slope/LRO_LROC_DEM_Plato_Ejecta_Colorized_Slope.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_Colorized_Slope/LRO_LROC_DEM_Plato_Ejecta_Colorized_Slope.asset deleted file mode 100644 index 3c06d29be9..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_Colorized_Slope/LRO_LROC_DEM_Plato_Ejecta_Colorized_Slope.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Slope_53N354E_150cmp", - Name = [[LRO LROC DEM, Plato Ejecta, Colorized Slope]], - FilePath = asset.localResource("LRO_NAC_Slope_53N354E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Plato Ejecta, Colorized Slope]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Slope_53N354E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Plato Ejecta, Colorized Slope layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_Colorized_Slope/LRO_NAC_Slope_53N354E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_Colorized_Slope/LRO_NAC_Slope_53N354E_150cmp.vrt deleted file mode 100644 index 51a4dbb0d5..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_Colorized_Slope/LRO_NAC_Slope_53N354E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular_MOON_53N",GEOGCS["GCS_MOON",DATUM["MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",0],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_Slope_53N354E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_Slope_53N354E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_Slope_53N354E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_Slope_53N354E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_Colorized_Slope/LRO_NAC_Slope_53N354E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_Colorized_Slope/LRO_NAC_Slope_53N354E_150cmp.wms deleted file mode 100644 index 03b15388cc..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_Colorized_Slope/LRO_NAC_Slope_53N354E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Slope_53N354E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular_MOON_53N",GEOGCS["GCS_MOON",DATUM["MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",0],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_Grayscale/LRO_LROC_DEM_Plato_Ejecta_Grayscale.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_Grayscale/LRO_LROC_DEM_Plato_Ejecta_Grayscale.asset deleted file mode 100644 index 7ba5cc750b..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_Grayscale/LRO_LROC_DEM_Plato_Ejecta_Grayscale.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Gray_53N354E_150cmp", - Name = [[LRO LROC DEM, Plato Ejecta, Grayscale]], - FilePath = asset.localResource("LRO_NAC_Gray_53N354E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Plato Ejecta, Grayscale]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Gray_53N354E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Plato Ejecta, Grayscale layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_Grayscale/LRO_NAC_Gray_53N354E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_Grayscale/LRO_NAC_Gray_53N354E_150cmp.vrt deleted file mode 100644 index 028f6b0c65..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_Grayscale/LRO_NAC_Gray_53N354E_150cmp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Gray - - LRO_NAC_Gray_53N354E_150cmp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Gray_53N354E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_Grayscale/LRO_NAC_Gray_53N354E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_Grayscale/LRO_NAC_Gray_53N354E_150cmp.wms deleted file mode 100644 index 62113a9f9b..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_Grayscale/LRO_NAC_Gray_53N354E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Gray_53N354E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 1 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_Hillshade/LRO_LROC_DEM_Plato_Ejecta_Hillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_Hillshade/LRO_LROC_DEM_Plato_Ejecta_Hillshade.asset deleted file mode 100644 index 06136dbefc..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_Hillshade/LRO_LROC_DEM_Plato_Ejecta_Hillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Shade_53N354E_150cmp", - Name = [[LRO LROC DEM, Plato Ejecta, Hillshade]], - FilePath = asset.localResource("LRO_NAC_Shade_53N354E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Plato Ejecta, Hillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Shade_53N354E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Plato Ejecta, Hillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_Hillshade/LRO_NAC_Shade_53N354E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_Hillshade/LRO_NAC_Shade_53N354E_150cmp.vrt deleted file mode 100644 index 7ed7fb937f..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_Hillshade/LRO_NAC_Shade_53N354E_150cmp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Gray - - LRO_NAC_Shade_53N354E_150cmp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Shade_53N354E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_Hillshade/LRO_NAC_Shade_53N354E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_Hillshade/LRO_NAC_Shade_53N354E_150cmp.wms deleted file mode 100644 index d8a188d0e1..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Plato_Ejecta_Hillshade/LRO_NAC_Shade_53N354E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Shade_53N354E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 1 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Reiner_Gamma_ColorHillshade/LRO_LROC_DEM_Reiner_Gamma_ColorHillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Reiner_Gamma_ColorHillshade/LRO_LROC_DEM_Reiner_Gamma_ColorHillshade.asset deleted file mode 100644 index 2315d1fde2..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Reiner_Gamma_ColorHillshade/LRO_LROC_DEM_Reiner_Gamma_ColorHillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrShade_07N301E_2mp", - Name = [[LRO LROC DEM, Reiner Gamma, ColorHillshade]], - FilePath = asset.localResource("LRO_NAC_ClrShade_07N301E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Reiner Gamma, ColorHillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrShade_07N301E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Reiner Gamma, ColorHillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Reiner_Gamma_ColorHillshade/LRO_NAC_ClrShade_07N301E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Reiner_Gamma_ColorHillshade/LRO_NAC_ClrShade_07N301E_2mp.vrt deleted file mode 100644 index 3424759622..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Reiner_Gamma_ColorHillshade/LRO_NAC_ClrShade_07N301E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",7],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrShade_07N301E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrShade_07N301E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrShade_07N301E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrShade_07N301E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Reiner_Gamma_ColorHillshade_Slope/LRO_LROC_DEM_Reiner_Gamma_ColorHillshade_Slope.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Reiner_Gamma_ColorHillshade_Slope/LRO_LROC_DEM_Reiner_Gamma_ColorHillshade_Slope.asset deleted file mode 100644 index 5baa9d4412..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Reiner_Gamma_ColorHillshade_Slope/LRO_LROC_DEM_Reiner_Gamma_ColorHillshade_Slope.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Slope_07N301E_2mp", - Name = [[LRO LROC DEM, Reiner Gamma, ColorHillshade Slope]], - FilePath = asset.localResource("LRO_NAC_Slope_07N301E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Reiner Gamma, ColorHillshade Slope]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Slope_07N301E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Reiner Gamma, ColorHillshade Slope layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Reiner_Gamma_ColorHillshade_Slope/LRO_NAC_Slope_07N301E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Reiner_Gamma_ColorHillshade_Slope/LRO_NAC_Slope_07N301E_2mp.vrt deleted file mode 100644 index 3958a715cf..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Reiner_Gamma_ColorHillshade_Slope/LRO_NAC_Slope_07N301E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",7],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_Slope_07N301E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_Slope_07N301E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_Slope_07N301E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_Slope_07N301E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Reiner_Gamma_ColorHillshade_Slope/LRO_NAC_Slope_07N301E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Reiner_Gamma_ColorHillshade_Slope/LRO_NAC_Slope_07N301E_2mp.wms deleted file mode 100644 index 0d52a6ca1b..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Reiner_Gamma_ColorHillshade_Slope/LRO_NAC_Slope_07N301E_2mp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Slope_07N301E_2mp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",7],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Reiner_Gamma_Colorized_Confidence/LRO_LROC_DEM_Reiner_Gamma_Colorized_Confidence.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Reiner_Gamma_Colorized_Confidence/LRO_LROC_DEM_Reiner_Gamma_Colorized_Confidence.asset deleted file mode 100644 index b71fdc2e4c..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Reiner_Gamma_Colorized_Confidence/LRO_LROC_DEM_Reiner_Gamma_Colorized_Confidence.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrConf_07N301E_2mp", - Name = [[LRO LROC DEM, Reiner Gamma, Colorized Confidence]], - FilePath = asset.localResource("LRO_NAC_ClrConf_07N301E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Reiner Gamma, Colorized Confidence]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrConf_07N301E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Reiner Gamma, Colorized Confidence layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Reiner_Gamma_Colorized_Confidence/LRO_NAC_ClrConf_07N301E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Reiner_Gamma_Colorized_Confidence/LRO_NAC_ClrConf_07N301E_2mp.vrt deleted file mode 100644 index 038f52d593..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Reiner_Gamma_Colorized_Confidence/LRO_NAC_ClrConf_07N301E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrConf_07N301E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrConf_07N301E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrConf_07N301E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrConf_07N301E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Reiner_Gamma_Colorized_Confidence/LRO_NAC_ClrConf_07N301E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Reiner_Gamma_Colorized_Confidence/LRO_NAC_ClrConf_07N301E_2mp.wms deleted file mode 100644 index 637351ac4f..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Reiner_Gamma_Colorized_Confidence/LRO_NAC_ClrConf_07N301E_2mp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrConf_07N301E_2mp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Reiner_Gamma_Grayscale/LRO_LROC_DEM_Reiner_Gamma_Grayscale.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Reiner_Gamma_Grayscale/LRO_LROC_DEM_Reiner_Gamma_Grayscale.asset deleted file mode 100644 index 08020ff9af..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Reiner_Gamma_Grayscale/LRO_LROC_DEM_Reiner_Gamma_Grayscale.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Gray_07N301E_2mp", - Name = [[LRO LROC DEM, Reiner Gamma, Grayscale]], - FilePath = asset.localResource("LRO_NAC_Gray_07N301E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Reiner Gamma, Grayscale]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Gray_07N301E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Reiner Gamma, Grayscale layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Reiner_Gamma_Grayscale/LRO_NAC_Gray_07N301E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Reiner_Gamma_Grayscale/LRO_NAC_Gray_07N301E_2mp.vrt deleted file mode 100644 index 4cfa3ed991..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Reiner_Gamma_Grayscale/LRO_NAC_Gray_07N301E_2mp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Gray - - LRO_NAC_Gray_07N301E_2mp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Gray_07N301E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Reiner_Gamma_Grayscale/LRO_NAC_Gray_07N301E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Reiner_Gamma_Grayscale/LRO_NAC_Gray_07N301E_2mp.wms deleted file mode 100644 index 3f6b0eb0d0..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Reiner_Gamma_Grayscale/LRO_NAC_Gray_07N301E_2mp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Gray_07N301E_2mp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 1 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Reiner_Gamma_Hillshade/LRO_LROC_DEM_Reiner_Gamma_Hillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Reiner_Gamma_Hillshade/LRO_LROC_DEM_Reiner_Gamma_Hillshade.asset deleted file mode 100644 index b49229f422..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Reiner_Gamma_Hillshade/LRO_LROC_DEM_Reiner_Gamma_Hillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Shade_07N301E_2mp", - Name = [[LRO LROC DEM, Reiner Gamma, Hillshade]], - FilePath = asset.localResource("LRO_NAC_Shade_07N301E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Reiner Gamma, Hillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Shade_07N301E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Reiner Gamma, Hillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Reiner_Gamma_Hillshade/LRO_NAC_Shade_07N301E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Reiner_Gamma_Hillshade/LRO_NAC_Shade_07N301E_2mp.vrt deleted file mode 100644 index 3fc492dd67..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Reiner_Gamma_Hillshade/LRO_NAC_Shade_07N301E_2mp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Gray - - LRO_NAC_Shade_07N301E_2mp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Shade_07N301E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Reiner_Gamma_Hillshade/LRO_NAC_Shade_07N301E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Reiner_Gamma_Hillshade/LRO_NAC_Shade_07N301E_2mp.wms deleted file mode 100644 index beed98c8aa..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Reiner_Gamma_Hillshade/LRO_NAC_Shade_07N301E_2mp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Shade_07N301E_2mp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 1 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Riccioli_Crater_ColorHillshade/LRO_LROC_DEM_Riccioli_Crater_ColorHillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Riccioli_Crater_ColorHillshade/LRO_LROC_DEM_Riccioli_Crater_ColorHillshade.asset deleted file mode 100644 index 9acf8f27e7..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Riccioli_Crater_ColorHillshade/LRO_LROC_DEM_Riccioli_Crater_ColorHillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrShade_03S286E_150cmp", - Name = [[LRO LROC DEM, Riccioli Crater, ColorHillshade]], - FilePath = asset.localResource("LRO_NAC_ClrShade_03S286E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Riccioli Crater, ColorHillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrShade_03S286E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Riccioli Crater, ColorHillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Riccioli_Crater_ColorHillshade/LRO_NAC_ClrShade_03S286E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Riccioli_Crater_ColorHillshade/LRO_NAC_ClrShade_03S286E_150cmp.vrt deleted file mode 100644 index bdcef1a002..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Riccioli_Crater_ColorHillshade/LRO_NAC_ClrShade_03S286E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrShade_03S286E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrShade_03S286E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrShade_03S286E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrShade_03S286E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Riccioli_Crater_Colorized_Confidence/LRO_LROC_DEM_Riccioli_Crater_Colorized_Confidence.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Riccioli_Crater_Colorized_Confidence/LRO_LROC_DEM_Riccioli_Crater_Colorized_Confidence.asset deleted file mode 100644 index 36871df35b..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Riccioli_Crater_Colorized_Confidence/LRO_LROC_DEM_Riccioli_Crater_Colorized_Confidence.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrConf_03S286E_150cmp", - Name = [[LRO LROC DEM, Riccioli Crater, Colorized Confidence]], - FilePath = asset.localResource("LRO_NAC_ClrConf_03S286E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Riccioli Crater, Colorized Confidence]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrConf_03S286E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Riccioli Crater, Colorized Confidence layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Riccioli_Crater_Colorized_Confidence/LRO_NAC_ClrConf_03S286E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Riccioli_Crater_Colorized_Confidence/LRO_NAC_ClrConf_03S286E_150cmp.vrt deleted file mode 100644 index 60615e9df8..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Riccioli_Crater_Colorized_Confidence/LRO_NAC_ClrConf_03S286E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrConf_03S286E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrConf_03S286E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrConf_03S286E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrConf_03S286E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Riccioli_Crater_Colorized_Confidence/LRO_NAC_ClrConf_03S286E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Riccioli_Crater_Colorized_Confidence/LRO_NAC_ClrConf_03S286E_150cmp.wms deleted file mode 100644 index 1e36a0c025..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Riccioli_Crater_Colorized_Confidence/LRO_NAC_ClrConf_03S286E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrConf_03S286E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Riccioli_Crater_Colorized_Slope/LRO_LROC_DEM_Riccioli_Crater_Colorized_Slope.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Riccioli_Crater_Colorized_Slope/LRO_LROC_DEM_Riccioli_Crater_Colorized_Slope.asset deleted file mode 100644 index 240536e5d7..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Riccioli_Crater_Colorized_Slope/LRO_LROC_DEM_Riccioli_Crater_Colorized_Slope.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Slope_03S286E_150cmp", - Name = [[LRO LROC DEM, Riccioli Crater, Colorized Slope]], - FilePath = asset.localResource("LRO_NAC_Slope_03S286E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Riccioli Crater, Colorized Slope]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Slope_03S286E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Riccioli Crater, Colorized Slope layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Riccioli_Crater_Colorized_Slope/LRO_NAC_Slope_03S286E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Riccioli_Crater_Colorized_Slope/LRO_NAC_Slope_03S286E_150cmp.vrt deleted file mode 100644 index e6730fefd9..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Riccioli_Crater_Colorized_Slope/LRO_NAC_Slope_03S286E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_Slope_03S286E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_Slope_03S286E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_Slope_03S286E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_Slope_03S286E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Riccioli_Crater_Colorized_Slope/LRO_NAC_Slope_03S286E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Riccioli_Crater_Colorized_Slope/LRO_NAC_Slope_03S286E_150cmp.wms deleted file mode 100644 index dc24b9c13b..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Riccioli_Crater_Colorized_Slope/LRO_NAC_Slope_03S286E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Slope_03S286E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Riccioli_Crater_Grayscale/LRO_LROC_DEM_Riccioli_Crater_Grayscale.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Riccioli_Crater_Grayscale/LRO_LROC_DEM_Riccioli_Crater_Grayscale.asset deleted file mode 100644 index b8a45ae333..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Riccioli_Crater_Grayscale/LRO_LROC_DEM_Riccioli_Crater_Grayscale.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Gray_03S286E_150cmp", - Name = [[LRO LROC DEM, Riccioli Crater, Grayscale]], - FilePath = asset.localResource("LRO_NAC_Gray_03S286E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Riccioli Crater, Grayscale]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Gray_03S286E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Riccioli Crater, Grayscale layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Riccioli_Crater_Grayscale/LRO_NAC_Gray_03S286E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Riccioli_Crater_Grayscale/LRO_NAC_Gray_03S286E_150cmp.vrt deleted file mode 100644 index 2543994ced..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Riccioli_Crater_Grayscale/LRO_NAC_Gray_03S286E_150cmp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Gray - - LRO_NAC_Gray_03S286E_150cmp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Gray_03S286E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Riccioli_Crater_Grayscale/LRO_NAC_Gray_03S286E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Riccioli_Crater_Grayscale/LRO_NAC_Gray_03S286E_150cmp.wms deleted file mode 100644 index a72852975c..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Riccioli_Crater_Grayscale/LRO_NAC_Gray_03S286E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Gray_03S286E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 1 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Riccioli_Crater_Hillshade/LRO_LROC_DEM_Riccioli_Crater_Hillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Riccioli_Crater_Hillshade/LRO_LROC_DEM_Riccioli_Crater_Hillshade.asset deleted file mode 100644 index 2e5c608065..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Riccioli_Crater_Hillshade/LRO_LROC_DEM_Riccioli_Crater_Hillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Shade_03S286E_150cmp", - Name = [[LRO LROC DEM, Riccioli Crater, Hillshade]], - FilePath = asset.localResource("LRO_NAC_Shade_03S286E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Riccioli Crater, Hillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Shade_03S286E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Riccioli Crater, Hillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Riccioli_Crater_Hillshade/LRO_NAC_Shade_03S286E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Riccioli_Crater_Hillshade/LRO_NAC_Shade_03S286E_150cmp.vrt deleted file mode 100644 index 2c27711491..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Riccioli_Crater_Hillshade/LRO_NAC_Shade_03S286E_150cmp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Gray - - LRO_NAC_Shade_03S286E_150cmp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Shade_03S286E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Riccioli_Crater_Hillshade/LRO_NAC_Shade_03S286E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Riccioli_Crater_Hillshade/LRO_NAC_Shade_03S286E_150cmp.wms deleted file mode 100644 index cf90f8e0cd..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Riccioli_Crater_Hillshade/LRO_NAC_Shade_03S286E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Shade_03S286E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 1 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rima_Bode_ColorHillshade/LRO_LROC_DEM_Rima_Bode_ColorHillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rima_Bode_ColorHillshade/LRO_LROC_DEM_Rima_Bode_ColorHillshade.asset deleted file mode 100644 index 68500ef5b6..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rima_Bode_ColorHillshade/LRO_LROC_DEM_Rima_Bode_ColorHillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrShade_13N356E_150cmp", - Name = [[LRO LROC DEM, Rima Bode, ColorHillshade]], - FilePath = asset.localResource("LRO_NAC_ClrShade_13N356E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Rima Bode, ColorHillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrShade_13N356E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Rima Bode, ColorHillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rima_Bode_ColorHillshade/LRO_NAC_ClrShade_13N356E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rima_Bode_ColorHillshade/LRO_NAC_ClrShade_13N356E_150cmp.vrt deleted file mode 100644 index e7cde5c698..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rima_Bode_ColorHillshade/LRO_NAC_ClrShade_13N356E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",13],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrShade_13N356E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrShade_13N356E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrShade_13N356E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrShade_13N356E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rima_Bode_Colorized_Confidence/LRO_LROC_DEM_Rima_Bode_Colorized_Confidence.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rima_Bode_Colorized_Confidence/LRO_LROC_DEM_Rima_Bode_Colorized_Confidence.asset deleted file mode 100644 index 173bdd5962..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rima_Bode_Colorized_Confidence/LRO_LROC_DEM_Rima_Bode_Colorized_Confidence.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrConf_13N356E_150cmp", - Name = [[LRO LROC DEM, Rima Bode, Colorized Confidence]], - FilePath = asset.localResource("LRO_NAC_ClrConf_13N356E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Rima Bode, Colorized Confidence]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrConf_13N356E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Rima Bode, Colorized Confidence layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rima_Bode_Colorized_Confidence/LRO_NAC_ClrConf_13N356E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rima_Bode_Colorized_Confidence/LRO_NAC_ClrConf_13N356E_150cmp.vrt deleted file mode 100644 index b6342718c8..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rima_Bode_Colorized_Confidence/LRO_NAC_ClrConf_13N356E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrConf_13N356E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrConf_13N356E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrConf_13N356E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrConf_13N356E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rima_Bode_Colorized_Confidence/LRO_NAC_ClrConf_13N356E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rima_Bode_Colorized_Confidence/LRO_NAC_ClrConf_13N356E_150cmp.wms deleted file mode 100644 index 982a64abcf..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rima_Bode_Colorized_Confidence/LRO_NAC_ClrConf_13N356E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrConf_13N356E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rima_Bode_Colorized_Slope/LRO_LROC_DEM_Rima_Bode_Colorized_Slope.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rima_Bode_Colorized_Slope/LRO_LROC_DEM_Rima_Bode_Colorized_Slope.asset deleted file mode 100644 index 8055c49a60..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rima_Bode_Colorized_Slope/LRO_LROC_DEM_Rima_Bode_Colorized_Slope.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Slope_13N356E_150cmp", - Name = [[LRO LROC DEM, Rima Bode, Colorized Slope]], - FilePath = asset.localResource("LRO_NAC_Slope_13N356E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Rima Bode, Colorized Slope]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Slope_13N356E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Rima Bode, Colorized Slope layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rima_Bode_Colorized_Slope/LRO_NAC_Slope_13N356E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rima_Bode_Colorized_Slope/LRO_NAC_Slope_13N356E_150cmp.vrt deleted file mode 100644 index 54d4235203..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rima_Bode_Colorized_Slope/LRO_NAC_Slope_13N356E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_Slope_13N356E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_Slope_13N356E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_Slope_13N356E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_Slope_13N356E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rima_Bode_Colorized_Slope/LRO_NAC_Slope_13N356E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rima_Bode_Colorized_Slope/LRO_NAC_Slope_13N356E_150cmp.wms deleted file mode 100644 index 4afc58375d..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rima_Bode_Colorized_Slope/LRO_NAC_Slope_13N356E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Slope_13N356E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rima_Bode_Grayscale/LRO_LROC_DEM_Rima_Bode_Grayscale.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rima_Bode_Grayscale/LRO_LROC_DEM_Rima_Bode_Grayscale.asset deleted file mode 100644 index 220e3291f0..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rima_Bode_Grayscale/LRO_LROC_DEM_Rima_Bode_Grayscale.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Gray_13N356E_150cmp", - Name = [[LRO LROC DEM, Rima Bode, Grayscale]], - FilePath = asset.localResource("LRO_NAC_Gray_13N356E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Rima Bode, Grayscale]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Gray_13N356E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Rima Bode, Grayscale layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rima_Bode_Grayscale/LRO_NAC_Gray_13N356E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rima_Bode_Grayscale/LRO_NAC_Gray_13N356E_150cmp.vrt deleted file mode 100644 index 74bbe956bb..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rima_Bode_Grayscale/LRO_NAC_Gray_13N356E_150cmp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Gray - - LRO_NAC_Gray_13N356E_150cmp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Gray_13N356E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rima_Bode_Grayscale/LRO_NAC_Gray_13N356E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rima_Bode_Grayscale/LRO_NAC_Gray_13N356E_150cmp.wms deleted file mode 100644 index 1f4ab703ab..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rima_Bode_Grayscale/LRO_NAC_Gray_13N356E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Gray_13N356E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 1 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rima_Bode_Hillshade/LRO_LROC_DEM_Rima_Bode_Hillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rima_Bode_Hillshade/LRO_LROC_DEM_Rima_Bode_Hillshade.asset deleted file mode 100644 index 0aa3e6f8bd..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rima_Bode_Hillshade/LRO_LROC_DEM_Rima_Bode_Hillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Shade_13N356E_150cmp", - Name = [[LRO LROC DEM, Rima Bode, Hillshade]], - FilePath = asset.localResource("LRO_NAC_Shade_13N356E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Rima Bode, Hillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Shade_13N356E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Rima Bode, Hillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rima_Bode_Hillshade/LRO_NAC_Shade_13N356E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rima_Bode_Hillshade/LRO_NAC_Shade_13N356E_150cmp.vrt deleted file mode 100644 index 082ed4b606..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rima_Bode_Hillshade/LRO_NAC_Shade_13N356E_150cmp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",13],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Gray - - LRO_NAC_Shade_13N356E_150cmp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Shade_13N356E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rima_Bode_Hillshade/LRO_NAC_Shade_13N356E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rima_Bode_Hillshade/LRO_NAC_Shade_13N356E_150cmp.wms deleted file mode 100644 index b675255e90..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rima_Bode_Hillshade/LRO_NAC_Shade_13N356E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Shade_13N356E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",13],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 1 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rimae_Prinz_ColorHillshade/LRO_LROC_DEM_Rimae_Prinz_ColorHillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rimae_Prinz_ColorHillshade/LRO_LROC_DEM_Rimae_Prinz_ColorHillshade.asset deleted file mode 100644 index 72ffc82e5a..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rimae_Prinz_ColorHillshade/LRO_LROC_DEM_Rimae_Prinz_ColorHillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrShade_27N318E_150cmp", - Name = [[LRO LROC DEM, Rimae Prinz, ColorHillshade]], - FilePath = asset.localResource("LRO_NAC_ClrShade_27N318E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Rimae Prinz, ColorHillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrShade_27N318E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Rimae Prinz, ColorHillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rimae_Prinz_ColorHillshade/LRO_NAC_ClrShade_27N318E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rimae_Prinz_ColorHillshade/LRO_NAC_ClrShade_27N318E_150cmp.vrt deleted file mode 100644 index bde0d1c2f1..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rimae_Prinz_ColorHillshade/LRO_NAC_ClrShade_27N318E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrShade_27N318E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrShade_27N318E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrShade_27N318E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrShade_27N318E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rimae_Prinz_Colorized_Confidence/LRO_LROC_DEM_Rimae_Prinz_Colorized_Confidence.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rimae_Prinz_Colorized_Confidence/LRO_LROC_DEM_Rimae_Prinz_Colorized_Confidence.asset deleted file mode 100644 index a028464e39..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rimae_Prinz_Colorized_Confidence/LRO_LROC_DEM_Rimae_Prinz_Colorized_Confidence.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrConf_27N318E_150cmp", - Name = [[LRO LROC DEM, Rimae Prinz, Colorized Confidence]], - FilePath = asset.localResource("LRO_NAC_ClrConf_27N318E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Rimae Prinz, Colorized Confidence]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrConf_27N318E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Rimae Prinz, Colorized Confidence layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rimae_Prinz_Colorized_Confidence/LRO_NAC_ClrConf_27N318E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rimae_Prinz_Colorized_Confidence/LRO_NAC_ClrConf_27N318E_150cmp.vrt deleted file mode 100644 index 0f5cd72e25..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rimae_Prinz_Colorized_Confidence/LRO_NAC_ClrConf_27N318E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrConf_27N318E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrConf_27N318E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrConf_27N318E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrConf_27N318E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rimae_Prinz_Colorized_Confidence/LRO_NAC_ClrConf_27N318E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rimae_Prinz_Colorized_Confidence/LRO_NAC_ClrConf_27N318E_150cmp.wms deleted file mode 100644 index 51c7c98f9c..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rimae_Prinz_Colorized_Confidence/LRO_NAC_ClrConf_27N318E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrConf_27N318E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rimae_Prinz_Colorized_Slope/LRO_LROC_DEM_Rimae_Prinz_Colorized_Slope.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rimae_Prinz_Colorized_Slope/LRO_LROC_DEM_Rimae_Prinz_Colorized_Slope.asset deleted file mode 100644 index b89d2ff2a5..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rimae_Prinz_Colorized_Slope/LRO_LROC_DEM_Rimae_Prinz_Colorized_Slope.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Slope_27N318E_150cmp", - Name = [[LRO LROC DEM, Rimae Prinz, Colorized Slope]], - FilePath = asset.localResource("LRO_NAC_Slope_27N318E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Rimae Prinz, Colorized Slope]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Slope_27N318E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Rimae Prinz, Colorized Slope layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rimae_Prinz_Colorized_Slope/LRO_NAC_Slope_27N318E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rimae_Prinz_Colorized_Slope/LRO_NAC_Slope_27N318E_150cmp.vrt deleted file mode 100644 index cbcf9eac48..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rimae_Prinz_Colorized_Slope/LRO_NAC_Slope_27N318E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",27],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_Slope_27N318E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_Slope_27N318E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_Slope_27N318E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_Slope_27N318E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rimae_Prinz_Colorized_Slope/LRO_NAC_Slope_27N318E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rimae_Prinz_Colorized_Slope/LRO_NAC_Slope_27N318E_150cmp.wms deleted file mode 100644 index c10781a6cb..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rimae_Prinz_Colorized_Slope/LRO_NAC_Slope_27N318E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Slope_27N318E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",27],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rimae_Prinz_Grayscale/LRO_LROC_DEM_Rimae_Prinz_Grayscale.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rimae_Prinz_Grayscale/LRO_LROC_DEM_Rimae_Prinz_Grayscale.asset deleted file mode 100644 index 2a43de4f22..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rimae_Prinz_Grayscale/LRO_LROC_DEM_Rimae_Prinz_Grayscale.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Gray_27N318E_150cmp", - Name = [[LRO LROC DEM, Rimae Prinz, Grayscale]], - FilePath = asset.localResource("LRO_NAC_Gray_27N318E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Rimae Prinz, Grayscale]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Gray_27N318E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Rimae Prinz, Grayscale layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rimae_Prinz_Grayscale/LRO_NAC_Gray_27N318E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rimae_Prinz_Grayscale/LRO_NAC_Gray_27N318E_150cmp.vrt deleted file mode 100644 index 93f8e83bcf..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rimae_Prinz_Grayscale/LRO_NAC_Gray_27N318E_150cmp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Gray - - LRO_NAC_Gray_27N318E_150cmp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Gray_27N318E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rimae_Prinz_Grayscale/LRO_NAC_Gray_27N318E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rimae_Prinz_Grayscale/LRO_NAC_Gray_27N318E_150cmp.wms deleted file mode 100644 index 5d097cca3d..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rimae_Prinz_Grayscale/LRO_NAC_Gray_27N318E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Gray_27N318E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 1 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rimae_Prinz_Hillshade/LRO_LROC_DEM_Rimae_Prinz_Hillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rimae_Prinz_Hillshade/LRO_LROC_DEM_Rimae_Prinz_Hillshade.asset deleted file mode 100644 index ee8a7281fc..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rimae_Prinz_Hillshade/LRO_LROC_DEM_Rimae_Prinz_Hillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Shade_27N318E_150cmp", - Name = [[LRO LROC DEM, Rimae Prinz, Hillshade]], - FilePath = asset.localResource("LRO_NAC_Shade_27N318E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Rimae Prinz, Hillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Shade_27N318E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Rimae Prinz, Hillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rimae_Prinz_Hillshade/LRO_NAC_Shade_27N318E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rimae_Prinz_Hillshade/LRO_NAC_Shade_27N318E_150cmp.vrt deleted file mode 100644 index ead5d79eaa..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rimae_Prinz_Hillshade/LRO_NAC_Shade_27N318E_150cmp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Gray - - LRO_NAC_Shade_27N318E_150cmp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Shade_27N318E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rimae_Prinz_Hillshade/LRO_NAC_Shade_27N318E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rimae_Prinz_Hillshade/LRO_NAC_Shade_27N318E_150cmp.wms deleted file mode 100644 index ab34e96b93..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Rimae_Prinz_Hillshade/LRO_NAC_Shade_27N318E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Shade_27N318E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 1 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_15m_Color_Roughness/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_15m_Color_Roughness.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_15m_Color_Roughness/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_15m_Color_Roughness.asset deleted file mode 100644 index fb738067dd..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_15m_Color_Roughness/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_15m_Color_Roughness.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrRoughness_15m_60S200E_150cmp", - Name = [[LRO LROC DEM, South Pole-Aitken Basin Interior, 15m Color Roughness]], - FilePath = asset.localResource("LRO_NAC_ClrRoughness_15m_60S200E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, South Pole-Aitken Basin Interior, 15m Color Roughness]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrRoughness_15m_60S200E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, South Pole-Aitken Basin Interior, 15m Color Roughness layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_60S200E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_60S200E_150cmp.vrt deleted file mode 100644 index 7f5e1dec75..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_60S200E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-60],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrRoughness_15m_60S200E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrRoughness_15m_60S200E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrRoughness_15m_60S200E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrRoughness_15m_60S200E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_15m_Color_Roughness_Hazard/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_15m_Color_Roughness_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_15m_Color_Roughness_Hazard/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_15m_Color_Roughness_Hazard.asset deleted file mode 100644 index 369fbdc5ee..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_15m_Color_Roughness_Hazard/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_15m_Color_Roughness_Hazard.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrRoughnessHaz_15m_60S200E_150cmp", - Name = [[LRO LROC DEM, South Pole-Aitken Basin Interior, 15m Color Roughness Hazard]], - FilePath = asset.localResource("LRO_NAC_ClrRoughnessHaz_15m_60S200E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, South Pole-Aitken Basin Interior, 15m Color Roughness Hazard]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrRoughnessHaz_15m_60S200E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, South Pole-Aitken Basin Interior, 15m Color Roughness Hazard layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_60S200E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_60S200E_150cmp.vrt deleted file mode 100644 index 70dc57c992..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_60S200E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-60],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrRoughnessHaz_15m_60S200E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrRoughnessHaz_15m_60S200E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrRoughnessHaz_15m_60S200E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrRoughnessHaz_15m_60S200E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_60S200E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_60S200E_150cmp.wms deleted file mode 100644 index fbcc7327a6..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_60S200E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrRoughnessHaz_15m_60S200E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-60],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_15m_Color_Slope/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_15m_Color_Slope.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_15m_Color_Slope/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_15m_Color_Slope.asset deleted file mode 100644 index 2d47e9f1cc..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_15m_Color_Slope/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_15m_Color_Slope.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrSlope_15m_60S200E_150cmp", - Name = [[LRO LROC DEM, South Pole-Aitken Basin Interior, 15m Color Slope]], - FilePath = asset.localResource("LRO_NAC_ClrSlope_15m_60S200E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, South Pole-Aitken Basin Interior, 15m Color Slope]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrSlope_15m_60S200E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, South Pole-Aitken Basin Interior, 15m Color Slope layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_15m_Color_Slope/LRO_NAC_ClrSlope_15m_60S200E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_15m_Color_Slope/LRO_NAC_ClrSlope_15m_60S200E_150cmp.vrt deleted file mode 100644 index f05ef48527..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_15m_Color_Slope/LRO_NAC_ClrSlope_15m_60S200E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-60],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrSlope_15m_60S200E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrSlope_15m_60S200E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrSlope_15m_60S200E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrSlope_15m_60S200E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_15m_Color_Slope/LRO_NAC_ClrSlope_15m_60S200E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_15m_Color_Slope/LRO_NAC_ClrSlope_15m_60S200E_150cmp.wms deleted file mode 100644 index 8aae71d7a3..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_15m_Color_Slope/LRO_NAC_ClrSlope_15m_60S200E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrSlope_15m_60S200E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-60],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_15m_Color_Slope_Hazard/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_15m_Color_Slope_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_15m_Color_Slope_Hazard/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_15m_Color_Slope_Hazard.asset deleted file mode 100644 index eaea4618b7..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_15m_Color_Slope_Hazard/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_15m_Color_Slope_Hazard.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrSlopeHaz_15m_60S200E_150cmp", - Name = [[LRO LROC DEM, South Pole-Aitken Basin Interior, 15m Color Slope Hazard]], - FilePath = asset.localResource("LRO_NAC_ClrSlopeHaz_15m_60S200E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, South Pole-Aitken Basin Interior, 15m Color Slope Hazard]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrSlopeHaz_15m_60S200E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, South Pole-Aitken Basin Interior, 15m Color Slope Hazard layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_60S200E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_60S200E_150cmp.vrt deleted file mode 100644 index fb719ed8c9..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_60S200E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrSlopeHaz_15m_60S200E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrSlopeHaz_15m_60S200E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrSlopeHaz_15m_60S200E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrSlopeHaz_15m_60S200E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_60S200E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_60S200E_150cmp.wms deleted file mode 100644 index 36f72ec529..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_60S200E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrSlopeHaz_15m_60S200E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_3m_Color_Roughness/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_3m_Color_Roughness.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_3m_Color_Roughness/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_3m_Color_Roughness.asset deleted file mode 100644 index f0c2172a4e..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_3m_Color_Roughness/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_3m_Color_Roughness.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrRoughness_3m_60S200E_150cmp", - Name = [[LRO LROC DEM, South Pole-Aitken Basin Interior, 3m Color Roughness]], - FilePath = asset.localResource("LRO_NAC_ClrRoughness_3m_60S200E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, South Pole-Aitken Basin Interior, 3m Color Roughness]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrRoughness_3m_60S200E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, South Pole-Aitken Basin Interior, 3m Color Roughness layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_60S200E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_60S200E_150cmp.vrt deleted file mode 100644 index adf9fed16b..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_60S200E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-60],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrRoughness_3m_60S200E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrRoughness_3m_60S200E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrRoughness_3m_60S200E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrRoughness_3m_60S200E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_60S200E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_60S200E_150cmp.wms deleted file mode 100644 index d2fbaeee95..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_60S200E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrRoughness_3m_60S200E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-60],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_3m_Color_Roughness_Hazard/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_3m_Color_Roughness_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_3m_Color_Roughness_Hazard/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_3m_Color_Roughness_Hazard.asset deleted file mode 100644 index ba7d47026a..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_3m_Color_Roughness_Hazard/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_3m_Color_Roughness_Hazard.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrRoughnessHaz_3m_60S200E_150cmp", - Name = [[LRO LROC DEM, South Pole-Aitken Basin Interior, 3m Color Roughness Hazard]], - FilePath = asset.localResource("LRO_NAC_ClrRoughnessHaz_3m_60S200E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, South Pole-Aitken Basin Interior, 3m Color Roughness Hazard]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrRoughnessHaz_3m_60S200E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, South Pole-Aitken Basin Interior, 3m Color Roughness Hazard layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_60S200E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_60S200E_150cmp.vrt deleted file mode 100644 index dbc620e706..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_60S200E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrRoughnessHaz_3m_60S200E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrRoughnessHaz_3m_60S200E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrRoughnessHaz_3m_60S200E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrRoughnessHaz_3m_60S200E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_60S200E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_60S200E_150cmp.wms deleted file mode 100644 index 23b0b4dd94..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_60S200E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrRoughnessHaz_3m_60S200E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_3m_Color_Slope/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_3m_Color_Slope.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_3m_Color_Slope/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_3m_Color_Slope.asset deleted file mode 100644 index 7a3ac54e73..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_3m_Color_Slope/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_3m_Color_Slope.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrSlope_3m_60S200E_150cmp", - Name = [[LRO LROC DEM, South Pole-Aitken Basin Interior, 3m Color Slope]], - FilePath = asset.localResource("LRO_NAC_ClrSlope_3m_60S200E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, South Pole-Aitken Basin Interior, 3m Color Slope]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrSlope_3m_60S200E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, South Pole-Aitken Basin Interior, 3m Color Slope layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_3m_Color_Slope/LRO_NAC_ClrSlope_3m_60S200E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_3m_Color_Slope/LRO_NAC_ClrSlope_3m_60S200E_150cmp.vrt deleted file mode 100644 index 0efb9a724c..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_3m_Color_Slope/LRO_NAC_ClrSlope_3m_60S200E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-60],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrSlope_3m_60S200E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrSlope_3m_60S200E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrSlope_3m_60S200E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrSlope_3m_60S200E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_3m_Color_Slope/LRO_NAC_ClrSlope_3m_60S200E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_3m_Color_Slope/LRO_NAC_ClrSlope_3m_60S200E_150cmp.wms deleted file mode 100644 index 3d946b5723..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_3m_Color_Slope/LRO_NAC_ClrSlope_3m_60S200E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrSlope_3m_60S200E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-60],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_3m_Color_Slope_Hazard/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_3m_Color_Slope_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_3m_Color_Slope_Hazard/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_3m_Color_Slope_Hazard.asset deleted file mode 100644 index cdddeacd8b..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_3m_Color_Slope_Hazard/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_3m_Color_Slope_Hazard.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrSlopeHaz_3m_60S200E_150cmp", - Name = [[LRO LROC DEM, South Pole-Aitken Basin Interior, 3m Color Slope Hazard]], - FilePath = asset.localResource("LRO_NAC_ClrSlopeHaz_3m_60S200E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, South Pole-Aitken Basin Interior, 3m Color Slope Hazard]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrSlopeHaz_3m_60S200E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, South Pole-Aitken Basin Interior, 3m Color Slope Hazard layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_60S200E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_60S200E_150cmp.vrt deleted file mode 100644 index e54aa97e0d..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_60S200E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-60],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrSlopeHaz_3m_60S200E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrSlopeHaz_3m_60S200E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrSlopeHaz_3m_60S200E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrSlopeHaz_3m_60S200E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_60S200E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_60S200E_150cmp.wms deleted file mode 100644 index fb11e01953..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_60S200E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrSlopeHaz_3m_60S200E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-60],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_ColorHillshade/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_ColorHillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_ColorHillshade/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_ColorHillshade.asset deleted file mode 100644 index 34774669f3..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_ColorHillshade/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_ColorHillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrShade_60S200E_150cmp", - Name = [[LRO LROC DEM, South Pole-Aitken Basin Interior, ColorHillshade]], - FilePath = asset.localResource("LRO_NAC_ClrShade_60S200E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, South Pole-Aitken Basin Interior, ColorHillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrShade_60S200E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, South Pole-Aitken Basin Interior, ColorHillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_ColorHillshade/LRO_NAC_ClrShade_60S200E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_ColorHillshade/LRO_NAC_ClrShade_60S200E_150cmp.vrt deleted file mode 100644 index 832a9eb44d..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_ColorHillshade/LRO_NAC_ClrShade_60S200E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrShade_60S200E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrShade_60S200E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrShade_60S200E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrShade_60S200E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_ColorHillshade/LRO_NAC_ClrShade_60S200E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_ColorHillshade/LRO_NAC_ClrShade_60S200E_150cmp.wms deleted file mode 100644 index f530165e9b..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_ColorHillshade/LRO_NAC_ClrShade_60S200E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrShade_60S200E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_Colorized_Confidence/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_Colorized_Confidence.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_Colorized_Confidence/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_Colorized_Confidence.asset deleted file mode 100644 index 3100b962f8..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_Colorized_Confidence/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_Colorized_Confidence.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrConf_60S200E_150cmp", - Name = [[LRO LROC DEM, South Pole-Aitken Basin Interior, Colorized Confidence]], - FilePath = asset.localResource("LRO_NAC_ClrConf_60S200E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, South Pole-Aitken Basin Interior, Colorized Confidence]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrConf_60S200E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, South Pole-Aitken Basin Interior, Colorized Confidence layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_Colorized_Confidence/LRO_NAC_ClrConf_60S200E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_Colorized_Confidence/LRO_NAC_ClrConf_60S200E_150cmp.vrt deleted file mode 100644 index 87a6813fd9..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_Colorized_Confidence/LRO_NAC_ClrConf_60S200E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrConf_60S200E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrConf_60S200E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrConf_60S200E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrConf_60S200E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_Colorized_Confidence/LRO_NAC_ClrConf_60S200E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_Colorized_Confidence/LRO_NAC_ClrConf_60S200E_150cmp.wms deleted file mode 100644 index e2b0c78276..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_Colorized_Confidence/LRO_NAC_ClrConf_60S200E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrConf_60S200E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_Colorized_Slope/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_Colorized_Slope.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_Colorized_Slope/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_Colorized_Slope.asset deleted file mode 100644 index dd541dc2ec..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_Colorized_Slope/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_Colorized_Slope.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Slope_60S200E_150cmp", - Name = [[LRO LROC DEM, South Pole-Aitken Basin Interior, Colorized Slope]], - FilePath = asset.localResource("LRO_NAC_Slope_60S200E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, South Pole-Aitken Basin Interior, Colorized Slope]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Slope_60S200E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, South Pole-Aitken Basin Interior, Colorized Slope layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_Colorized_Slope/LRO_NAC_Slope_60S200E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_Colorized_Slope/LRO_NAC_Slope_60S200E_150cmp.vrt deleted file mode 100644 index 828646e5fc..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_Colorized_Slope/LRO_NAC_Slope_60S200E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-60],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_Slope_60S200E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_Slope_60S200E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_Slope_60S200E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_Slope_60S200E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_Colorized_Slope/LRO_NAC_Slope_60S200E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_Colorized_Slope/LRO_NAC_Slope_60S200E_150cmp.wms deleted file mode 100644 index f7c4c19523..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_Colorized_Slope/LRO_NAC_Slope_60S200E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Slope_60S200E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-60],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_Grayscale/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_Grayscale.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_Grayscale/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_Grayscale.asset deleted file mode 100644 index dccc19a2ff..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_Grayscale/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_Grayscale.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Gray_60S200E_150cmp", - Name = [[LRO LROC DEM, South Pole-Aitken Basin Interior, Grayscale]], - FilePath = asset.localResource("LRO_NAC_Gray_60S200E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, South Pole-Aitken Basin Interior, Grayscale]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Gray_60S200E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, South Pole-Aitken Basin Interior, Grayscale layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_Grayscale/LRO_NAC_Gray_60S200E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_Grayscale/LRO_NAC_Gray_60S200E_150cmp.vrt deleted file mode 100644 index fa67468033..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_Grayscale/LRO_NAC_Gray_60S200E_150cmp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Gray - - LRO_NAC_Gray_60S200E_150cmp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Gray_60S200E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_Grayscale/LRO_NAC_Gray_60S200E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_Grayscale/LRO_NAC_Gray_60S200E_150cmp.wms deleted file mode 100644 index b2cd0b3ee5..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_Grayscale/LRO_NAC_Gray_60S200E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Gray_60S200E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 1 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_Hillshade/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_Hillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_Hillshade/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_Hillshade.asset deleted file mode 100644 index 5cf12fc442..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_Hillshade/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_Hillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Shade_60S200E_150cmp", - Name = [[LRO LROC DEM, South Pole-Aitken Basin Interior, Hillshade]], - FilePath = asset.localResource("LRO_NAC_Shade_60S200E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, South Pole-Aitken Basin Interior, Hillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Shade_60S200E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, South Pole-Aitken Basin Interior, Hillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_Hillshade/LRO_NAC_Shade_60S200E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_Hillshade/LRO_NAC_Shade_60S200E_150cmp.vrt deleted file mode 100644 index 45fdec0cfb..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_Hillshade/LRO_NAC_Shade_60S200E_150cmp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Gray - - LRO_NAC_Shade_60S200E_150cmp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Shade_60S200E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_Hillshade/LRO_NAC_Shade_60S200E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_Hillshade/LRO_NAC_Shade_60S200E_150cmp.wms deleted file mode 100644 index 7862027d83..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_Hillshade/LRO_NAC_Shade_60S200E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Shade_60S200E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 1 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Rim_ColorHillshade/LRO_LROC_DEM_South_Pole-Aitken_Rim_ColorHillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Rim_ColorHillshade/LRO_LROC_DEM_South_Pole-Aitken_Rim_ColorHillshade.asset deleted file mode 100644 index 072c7344c6..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Rim_ColorHillshade/LRO_LROC_DEM_South_Pole-Aitken_Rim_ColorHillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrShade_51S171E_2mp", - Name = [[LRO LROC DEM, South Pole-Aitken Rim, ColorHillshade]], - FilePath = asset.localResource("LRO_NAC_ClrShade_51S171E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, South Pole-Aitken Rim, ColorHillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrShade_51S171E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, South Pole-Aitken Rim, ColorHillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Rim_ColorHillshade/LRO_NAC_ClrShade_51S171E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Rim_ColorHillshade/LRO_NAC_ClrShade_51S171E_2mp.vrt deleted file mode 100644 index 6167599b5b..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Rim_ColorHillshade/LRO_NAC_ClrShade_51S171E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",-51],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrShade_51S171E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrShade_51S171E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrShade_51S171E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrShade_51S171E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Rim_ColorHillshade_Slope/LRO_LROC_DEM_South_Pole-Aitken_Rim_ColorHillshade_Slope.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Rim_ColorHillshade_Slope/LRO_LROC_DEM_South_Pole-Aitken_Rim_ColorHillshade_Slope.asset deleted file mode 100644 index 7a6f50b945..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Rim_ColorHillshade_Slope/LRO_LROC_DEM_South_Pole-Aitken_Rim_ColorHillshade_Slope.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Slope_51S171E_2mp", - Name = [[LRO LROC DEM, South Pole-Aitken Rim, ColorHillshade Slope]], - FilePath = asset.localResource("LRO_NAC_Slope_51S171E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, South Pole-Aitken Rim, ColorHillshade Slope]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Slope_51S171E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, South Pole-Aitken Rim, ColorHillshade Slope layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Rim_ColorHillshade_Slope/LRO_NAC_Slope_51S171E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Rim_ColorHillshade_Slope/LRO_NAC_Slope_51S171E_2mp.vrt deleted file mode 100644 index f24c06747a..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Rim_ColorHillshade_Slope/LRO_NAC_Slope_51S171E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",-51],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_Slope_51S171E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_Slope_51S171E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_Slope_51S171E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_Slope_51S171E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Rim_ColorHillshade_Slope/LRO_NAC_Slope_51S171E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Rim_ColorHillshade_Slope/LRO_NAC_Slope_51S171E_2mp.wms deleted file mode 100644 index 5e325382b5..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Rim_ColorHillshade_Slope/LRO_NAC_Slope_51S171E_2mp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Slope_51S171E_2mp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",-51],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Rim_Colorized_Confidence/LRO_LROC_DEM_South_Pole-Aitken_Rim_Colorized_Confidence.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Rim_Colorized_Confidence/LRO_LROC_DEM_South_Pole-Aitken_Rim_Colorized_Confidence.asset deleted file mode 100644 index e830864707..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Rim_Colorized_Confidence/LRO_LROC_DEM_South_Pole-Aitken_Rim_Colorized_Confidence.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrConf_51S171E_2mp", - Name = [[LRO LROC DEM, South Pole-Aitken Rim, Colorized Confidence]], - FilePath = asset.localResource("LRO_NAC_ClrConf_51S171E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, South Pole-Aitken Rim, Colorized Confidence]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrConf_51S171E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, South Pole-Aitken Rim, Colorized Confidence layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Rim_Colorized_Confidence/LRO_NAC_ClrConf_51S171E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Rim_Colorized_Confidence/LRO_NAC_ClrConf_51S171E_2mp.vrt deleted file mode 100644 index 38de31e4c6..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Rim_Colorized_Confidence/LRO_NAC_ClrConf_51S171E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrConf_51S171E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrConf_51S171E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrConf_51S171E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrConf_51S171E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Rim_Colorized_Confidence/LRO_NAC_ClrConf_51S171E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Rim_Colorized_Confidence/LRO_NAC_ClrConf_51S171E_2mp.wms deleted file mode 100644 index 46a3c61e3f..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Rim_Colorized_Confidence/LRO_NAC_ClrConf_51S171E_2mp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrConf_51S171E_2mp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Rim_Grayscale/LRO_LROC_DEM_South_Pole-Aitken_Rim_Grayscale.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Rim_Grayscale/LRO_LROC_DEM_South_Pole-Aitken_Rim_Grayscale.asset deleted file mode 100644 index ef1a4d9ba1..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Rim_Grayscale/LRO_LROC_DEM_South_Pole-Aitken_Rim_Grayscale.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Gray_51S171E_2mp", - Name = [[LRO LROC DEM, South Pole-Aitken Rim, Grayscale]], - FilePath = asset.localResource("LRO_NAC_Gray_51S171E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, South Pole-Aitken Rim, Grayscale]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Gray_51S171E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, South Pole-Aitken Rim, Grayscale layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Rim_Grayscale/LRO_NAC_Gray_51S171E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Rim_Grayscale/LRO_NAC_Gray_51S171E_2mp.vrt deleted file mode 100644 index b9732a98ed..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Rim_Grayscale/LRO_NAC_Gray_51S171E_2mp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Gray - - LRO_NAC_Gray_51S171E_2mp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Gray_51S171E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Rim_Grayscale/LRO_NAC_Gray_51S171E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Rim_Grayscale/LRO_NAC_Gray_51S171E_2mp.wms deleted file mode 100644 index ba0ba042a4..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Rim_Grayscale/LRO_NAC_Gray_51S171E_2mp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Gray_51S171E_2mp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 1 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Rim_Hillshade/LRO_LROC_DEM_South_Pole-Aitken_Rim_Hillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Rim_Hillshade/LRO_LROC_DEM_South_Pole-Aitken_Rim_Hillshade.asset deleted file mode 100644 index bd1f84960a..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Rim_Hillshade/LRO_LROC_DEM_South_Pole-Aitken_Rim_Hillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Shade_51S171E_2mp", - Name = [[LRO LROC DEM, South Pole-Aitken Rim, Hillshade]], - FilePath = asset.localResource("LRO_NAC_Shade_51S171E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, South Pole-Aitken Rim, Hillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Shade_51S171E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, South Pole-Aitken Rim, Hillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Rim_Hillshade/LRO_NAC_Shade_51S171E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Rim_Hillshade/LRO_NAC_Shade_51S171E_2mp.vrt deleted file mode 100644 index bc98890a91..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Rim_Hillshade/LRO_NAC_Shade_51S171E_2mp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Gray - - LRO_NAC_Shade_51S171E_2mp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Shade_51S171E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Rim_Hillshade/LRO_NAC_Shade_51S171E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Rim_Hillshade/LRO_NAC_Shade_51S171E_2mp.wms deleted file mode 100644 index 8caf622a51..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_South_Pole-Aitken_Rim_Hillshade/LRO_NAC_Shade_51S171E_2mp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Shade_51S171E_2mp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 1 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_ColorHillshade/LRO_LROC_DEM_Stratton_(Dewar)_ColorHillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_ColorHillshade/LRO_LROC_DEM_Stratton_(Dewar)_ColorHillshade.asset deleted file mode 100644 index ebc0ef0f3e..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_ColorHillshade/LRO_LROC_DEM_Stratton_(Dewar)_ColorHillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrShade_02S167E_150cmp", - Name = [[LRO LROC DEM, Stratton (Dewar), ColorHillshade]], - FilePath = asset.localResource("LRO_NAC_ClrShade_02S167E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Stratton (Dewar), ColorHillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrShade_02S167E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Stratton (Dewar), ColorHillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_ColorHillshade/LRO_NAC_ClrShade_02S167E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_ColorHillshade/LRO_NAC_ClrShade_02S167E_150cmp.vrt deleted file mode 100644 index 10779903b6..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_ColorHillshade/LRO_NAC_ClrShade_02S167E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrShade_02S167E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrShade_02S167E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrShade_02S167E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrShade_02S167E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_Colorized_Confidence/LRO_LROC_DEM_Stratton_(Dewar)_Colorized_Confidence.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_Colorized_Confidence/LRO_LROC_DEM_Stratton_(Dewar)_Colorized_Confidence.asset deleted file mode 100644 index ef5bc80800..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_Colorized_Confidence/LRO_LROC_DEM_Stratton_(Dewar)_Colorized_Confidence.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrConf_02S167E_150cmp", - Name = [[LRO LROC DEM, Stratton (Dewar), Colorized Confidence]], - FilePath = asset.localResource("LRO_NAC_ClrConf_02S167E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Stratton (Dewar), Colorized Confidence]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrConf_02S167E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Stratton (Dewar), Colorized Confidence layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_Colorized_Confidence/LRO_NAC_ClrConf_02S167E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_Colorized_Confidence/LRO_NAC_ClrConf_02S167E_150cmp.vrt deleted file mode 100644 index 1dd1e6336a..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_Colorized_Confidence/LRO_NAC_ClrConf_02S167E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrConf_02S167E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrConf_02S167E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrConf_02S167E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrConf_02S167E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_Colorized_Confidence/LRO_NAC_ClrConf_02S167E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_Colorized_Confidence/LRO_NAC_ClrConf_02S167E_150cmp.wms deleted file mode 100644 index aa85b6588f..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_Colorized_Confidence/LRO_NAC_ClrConf_02S167E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrConf_02S167E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_Colorized_Slope/LRO_LROC_DEM_Stratton_(Dewar)_Colorized_Slope.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_Colorized_Slope/LRO_LROC_DEM_Stratton_(Dewar)_Colorized_Slope.asset deleted file mode 100644 index 72743cad87..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_Colorized_Slope/LRO_LROC_DEM_Stratton_(Dewar)_Colorized_Slope.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Slope_02S167E_150cmp", - Name = [[LRO LROC DEM, Stratton (Dewar), Colorized Slope]], - FilePath = asset.localResource("LRO_NAC_Slope_02S167E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Stratton (Dewar), Colorized Slope]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Slope_02S167E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Stratton (Dewar), Colorized Slope layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_Colorized_Slope/LRO_NAC_Slope_02S167E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_Colorized_Slope/LRO_NAC_Slope_02S167E_150cmp.vrt deleted file mode 100644 index 2ef56a14e5..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_Colorized_Slope/LRO_NAC_Slope_02S167E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_Slope_02S167E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_Slope_02S167E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_Slope_02S167E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_Slope_02S167E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_Colorized_Slope/LRO_NAC_Slope_02S167E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_Colorized_Slope/LRO_NAC_Slope_02S167E_150cmp.wms deleted file mode 100644 index 1523e14a88..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_Colorized_Slope/LRO_NAC_Slope_02S167E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Slope_02S167E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_Grayscale/LRO_LROC_DEM_Stratton_(Dewar)_Grayscale.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_Grayscale/LRO_LROC_DEM_Stratton_(Dewar)_Grayscale.asset deleted file mode 100644 index e13299623d..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_Grayscale/LRO_LROC_DEM_Stratton_(Dewar)_Grayscale.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Gray_02S167E_150cmp", - Name = [[LRO LROC DEM, Stratton (Dewar), Grayscale]], - FilePath = asset.localResource("LRO_NAC_Gray_02S167E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Stratton (Dewar), Grayscale]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Gray_02S167E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Stratton (Dewar), Grayscale layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_Grayscale/LRO_NAC_Gray_02S167E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_Grayscale/LRO_NAC_Gray_02S167E_150cmp.vrt deleted file mode 100644 index 3713def4ee..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_Grayscale/LRO_NAC_Gray_02S167E_150cmp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Gray - - LRO_NAC_Gray_02S167E_150cmp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Gray_02S167E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_Grayscale/LRO_NAC_Gray_02S167E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_Grayscale/LRO_NAC_Gray_02S167E_150cmp.wms deleted file mode 100644 index b7a8c20b16..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_Grayscale/LRO_NAC_Gray_02S167E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Gray_02S167E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 1 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_15m_Color_Roughness/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_15m_Color_Roughness.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_15m_Color_Roughness/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_15m_Color_Roughness.asset deleted file mode 100644 index 7887ac201c..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_15m_Color_Roughness/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_15m_Color_Roughness.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrRoughness_15m_02S167E_150cmp", - Name = [[LRO LROC DEM, Stratton (Dewar) High Fe Anomaly, 15m Color Roughness]], - FilePath = asset.localResource("LRO_NAC_ClrRoughness_15m_02S167E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Stratton (Dewar) High Fe Anomaly, 15m Color Roughness]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrRoughness_15m_02S167E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Stratton (Dewar) High Fe Anomaly, 15m Color Roughness layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_02S167E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_02S167E_150cmp.vrt deleted file mode 100644 index a275e8b302..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_02S167E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrRoughness_15m_02S167E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrRoughness_15m_02S167E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrRoughness_15m_02S167E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrRoughness_15m_02S167E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_15m_Color_Roughness_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_15m_Color_Roughness_Hazard.asset deleted file mode 100644 index 42cb883ce1..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_15m_Color_Roughness_Hazard.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrRoughnessHaz_15m_02S167E_150cmp", - Name = [[LRO LROC DEM, Stratton (Dewar) High Fe Anomaly, 15m Color Roughness Hazard]], - FilePath = asset.localResource("LRO_NAC_ClrRoughnessHaz_15m_02S167E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Stratton (Dewar) High Fe Anomaly, 15m Color Roughness Hazard]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrRoughnessHaz_15m_02S167E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Stratton (Dewar) High Fe Anomaly, 15m Color Roughness Hazard layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_02S167E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_02S167E_150cmp.vrt deleted file mode 100644 index aa92907d42..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_02S167E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrRoughnessHaz_15m_02S167E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrRoughnessHaz_15m_02S167E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrRoughnessHaz_15m_02S167E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrRoughnessHaz_15m_02S167E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_02S167E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_02S167E_150cmp.wms deleted file mode 100644 index b64f2a89b5..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_02S167E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrRoughnessHaz_15m_02S167E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_15m_Color_Slope/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_15m_Color_Slope.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_15m_Color_Slope/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_15m_Color_Slope.asset deleted file mode 100644 index 51df1286a1..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_15m_Color_Slope/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_15m_Color_Slope.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrSlope_15m_02S167E_150cmp", - Name = [[LRO LROC DEM, Stratton (Dewar) High Fe Anomaly, 15m Color Slope]], - FilePath = asset.localResource("LRO_NAC_ClrSlope_15m_02S167E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Stratton (Dewar) High Fe Anomaly, 15m Color Slope]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrSlope_15m_02S167E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Stratton (Dewar) High Fe Anomaly, 15m Color Slope layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_15m_Color_Slope/LRO_NAC_ClrSlope_15m_02S167E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_15m_Color_Slope/LRO_NAC_ClrSlope_15m_02S167E_150cmp.vrt deleted file mode 100644 index 21a3dfec0d..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_15m_Color_Slope/LRO_NAC_ClrSlope_15m_02S167E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrSlope_15m_02S167E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrSlope_15m_02S167E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrSlope_15m_02S167E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrSlope_15m_02S167E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_15m_Color_Slope/LRO_NAC_ClrSlope_15m_02S167E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_15m_Color_Slope/LRO_NAC_ClrSlope_15m_02S167E_150cmp.wms deleted file mode 100644 index 0d18269f92..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_15m_Color_Slope/LRO_NAC_ClrSlope_15m_02S167E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrSlope_15m_02S167E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_15m_Color_Slope_Hazard/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_15m_Color_Slope_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_15m_Color_Slope_Hazard/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_15m_Color_Slope_Hazard.asset deleted file mode 100644 index 60af52e03d..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_15m_Color_Slope_Hazard/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_15m_Color_Slope_Hazard.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrSlopeHaz_15m_02S167E_150cmp", - Name = [[LRO LROC DEM, Stratton (Dewar) High Fe Anomaly, 15m Color Slope Hazard]], - FilePath = asset.localResource("LRO_NAC_ClrSlopeHaz_15m_02S167E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Stratton (Dewar) High Fe Anomaly, 15m Color Slope Hazard]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrSlopeHaz_15m_02S167E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Stratton (Dewar) High Fe Anomaly, 15m Color Slope Hazard layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_02S167E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_02S167E_150cmp.vrt deleted file mode 100644 index 3cfbe2a5fa..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_02S167E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrSlopeHaz_15m_02S167E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrSlopeHaz_15m_02S167E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrSlopeHaz_15m_02S167E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrSlopeHaz_15m_02S167E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_02S167E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_02S167E_150cmp.wms deleted file mode 100644 index ee6f711f4b..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_02S167E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrSlopeHaz_15m_02S167E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_3m_Color_Roughness/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_3m_Color_Roughness.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_3m_Color_Roughness/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_3m_Color_Roughness.asset deleted file mode 100644 index 4e81fa2bec..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_3m_Color_Roughness/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_3m_Color_Roughness.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrRoughness_3m_02S167E_150cmp", - Name = [[LRO LROC DEM, Stratton (Dewar) High Fe Anomaly, 3m Color Roughness]], - FilePath = asset.localResource("LRO_NAC_ClrRoughness_3m_02S167E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Stratton (Dewar) High Fe Anomaly, 3m Color Roughness]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrRoughness_3m_02S167E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Stratton (Dewar) High Fe Anomaly, 3m Color Roughness layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_02S167E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_02S167E_150cmp.vrt deleted file mode 100644 index f714d50131..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_02S167E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrRoughness_3m_02S167E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrRoughness_3m_02S167E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrRoughness_3m_02S167E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrRoughness_3m_02S167E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_02S167E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_02S167E_150cmp.wms deleted file mode 100644 index ad3498d66a..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_02S167E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrRoughness_3m_02S167E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_3m_Color_Roughness_Hazard/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_3m_Color_Roughness_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_3m_Color_Roughness_Hazard/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_3m_Color_Roughness_Hazard.asset deleted file mode 100644 index f1383a2ec1..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_3m_Color_Roughness_Hazard/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_3m_Color_Roughness_Hazard.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrRoughnessHaz_3m_02S167E_150cmp", - Name = [[LRO LROC DEM, Stratton (Dewar) High Fe Anomaly, 3m Color Roughness Hazard]], - FilePath = asset.localResource("LRO_NAC_ClrRoughnessHaz_3m_02S167E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Stratton (Dewar) High Fe Anomaly, 3m Color Roughness Hazard]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrRoughnessHaz_3m_02S167E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Stratton (Dewar) High Fe Anomaly, 3m Color Roughness Hazard layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_02S167E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_02S167E_150cmp.vrt deleted file mode 100644 index 6aada0f800..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_02S167E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrRoughnessHaz_3m_02S167E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrRoughnessHaz_3m_02S167E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrRoughnessHaz_3m_02S167E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrRoughnessHaz_3m_02S167E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_02S167E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_02S167E_150cmp.wms deleted file mode 100644 index fdc1d6b670..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_02S167E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrRoughnessHaz_3m_02S167E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_3m_Color_Slope/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_3m_Color_Slope.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_3m_Color_Slope/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_3m_Color_Slope.asset deleted file mode 100644 index d5f576ba61..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_3m_Color_Slope/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_3m_Color_Slope.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrSlope_3m_02S167E_150cmp", - Name = [[LRO LROC DEM, Stratton (Dewar) High Fe Anomaly, 3m Color Slope]], - FilePath = asset.localResource("LRO_NAC_ClrSlope_3m_02S167E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Stratton (Dewar) High Fe Anomaly, 3m Color Slope]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrSlope_3m_02S167E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Stratton (Dewar) High Fe Anomaly, 3m Color Slope layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_3m_Color_Slope/LRO_NAC_ClrSlope_3m_02S167E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_3m_Color_Slope/LRO_NAC_ClrSlope_3m_02S167E_150cmp.vrt deleted file mode 100644 index 6286b25cc1..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_3m_Color_Slope/LRO_NAC_ClrSlope_3m_02S167E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrSlope_3m_02S167E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrSlope_3m_02S167E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrSlope_3m_02S167E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrSlope_3m_02S167E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_3m_Color_Slope/LRO_NAC_ClrSlope_3m_02S167E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_3m_Color_Slope/LRO_NAC_ClrSlope_3m_02S167E_150cmp.wms deleted file mode 100644 index c8743edb75..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_3m_Color_Slope/LRO_NAC_ClrSlope_3m_02S167E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrSlope_3m_02S167E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_3m_Color_Slope_Hazard/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_3m_Color_Slope_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_3m_Color_Slope_Hazard/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_3m_Color_Slope_Hazard.asset deleted file mode 100644 index 7a5f5a6648..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_3m_Color_Slope_Hazard/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_3m_Color_Slope_Hazard.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrSlopeHaz_3m_02S167E_150cmp", - Name = [[LRO LROC DEM, Stratton (Dewar) High Fe Anomaly, 3m Color Slope Hazard]], - FilePath = asset.localResource("LRO_NAC_ClrSlopeHaz_3m_02S167E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Stratton (Dewar) High Fe Anomaly, 3m Color Slope Hazard]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrSlopeHaz_3m_02S167E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Stratton (Dewar) High Fe Anomaly, 3m Color Slope Hazard layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_02S167E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_02S167E_150cmp.vrt deleted file mode 100644 index 7253e21332..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_02S167E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrSlopeHaz_3m_02S167E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrSlopeHaz_3m_02S167E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrSlopeHaz_3m_02S167E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrSlopeHaz_3m_02S167E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_02S167E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_02S167E_150cmp.wms deleted file mode 100644 index 6b0e19b09e..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_02S167E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrSlopeHaz_3m_02S167E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_Hillshade/LRO_LROC_DEM_Stratton_(Dewar)_Hillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_Hillshade/LRO_LROC_DEM_Stratton_(Dewar)_Hillshade.asset deleted file mode 100644 index 0184c00876..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_Hillshade/LRO_LROC_DEM_Stratton_(Dewar)_Hillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Shade_02S167E_150cmp", - Name = [[LRO LROC DEM, Stratton (Dewar), Hillshade]], - FilePath = asset.localResource("LRO_NAC_Shade_02S167E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Stratton (Dewar), Hillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Shade_02S167E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Stratton (Dewar), Hillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_Hillshade/LRO_NAC_Shade_02S167E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_Hillshade/LRO_NAC_Shade_02S167E_150cmp.vrt deleted file mode 100644 index 9d6b6054f0..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_Hillshade/LRO_NAC_Shade_02S167E_150cmp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Gray - - LRO_NAC_Shade_02S167E_150cmp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Shade_02S167E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_Hillshade/LRO_NAC_Shade_02S167E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_Hillshade/LRO_NAC_Shade_02S167E_150cmp.wms deleted file mode 100644 index 3adf77b6a4..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Stratton_(Dewar)_Hillshade/LRO_NAC_Shade_02S167E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Shade_02S167E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 1 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_15m_Color_Roughness/LRO_LROC_DEM_Sulpicius_Gallus_15m_Color_Roughness.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_15m_Color_Roughness/LRO_LROC_DEM_Sulpicius_Gallus_15m_Color_Roughness.asset deleted file mode 100644 index d181c4df7c..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_15m_Color_Roughness/LRO_LROC_DEM_Sulpicius_Gallus_15m_Color_Roughness.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrRoughness_15m_20N010E_2mp", - Name = [[LRO LROC DEM, Sulpicius Gallus, 15m Color Roughness]], - FilePath = asset.localResource("LRO_NAC_ClrRoughness_15m_20N010E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Sulpicius Gallus, 15m Color Roughness]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrRoughness_15m_20N010E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Sulpicius Gallus, 15m Color Roughness layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_20N010E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_20N010E_2mp.vrt deleted file mode 100644 index c6a28b2bc9..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_20N010E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",20],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrRoughness_15m_20N010E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrRoughness_15m_20N010E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrRoughness_15m_20N010E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrRoughness_15m_20N010E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Sulpicius_Gallus_15m_Color_Roughness_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Sulpicius_Gallus_15m_Color_Roughness_Hazard.asset deleted file mode 100644 index 0475e693b8..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Sulpicius_Gallus_15m_Color_Roughness_Hazard.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrRoughnessHaz_15m_20N010E_2mp", - Name = [[LRO LROC DEM, Sulpicius Gallus, 15m Color Roughness Hazard]], - FilePath = asset.localResource("LRO_NAC_ClrRoughnessHaz_15m_20N010E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Sulpicius Gallus, 15m Color Roughness Hazard]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrRoughnessHaz_15m_20N010E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Sulpicius Gallus, 15m Color Roughness Hazard layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_20N010E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_20N010E_2mp.vrt deleted file mode 100644 index b8020da61f..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_20N010E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",20],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrRoughnessHaz_15m_20N010E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrRoughnessHaz_15m_20N010E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrRoughnessHaz_15m_20N010E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrRoughnessHaz_15m_20N010E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_20N010E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_20N010E_2mp.wms deleted file mode 100644 index 859e777dc4..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_20N010E_2mp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrRoughnessHaz_15m_20N010E_2mp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",20],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_15m_Color_Slope/LRO_LROC_DEM_Sulpicius_Gallus_15m_Color_Slope.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_15m_Color_Slope/LRO_LROC_DEM_Sulpicius_Gallus_15m_Color_Slope.asset deleted file mode 100644 index bb3ec1a768..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_15m_Color_Slope/LRO_LROC_DEM_Sulpicius_Gallus_15m_Color_Slope.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrSlope_15m_20N010E_2mp", - Name = [[LRO LROC DEM, Sulpicius Gallus, 15m Color Slope]], - FilePath = asset.localResource("LRO_NAC_ClrSlope_15m_20N010E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Sulpicius Gallus, 15m Color Slope]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrSlope_15m_20N010E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Sulpicius Gallus, 15m Color Slope layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_15m_Color_Slope/LRO_NAC_ClrSlope_15m_20N010E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_15m_Color_Slope/LRO_NAC_ClrSlope_15m_20N010E_2mp.vrt deleted file mode 100644 index eaa05b503c..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_15m_Color_Slope/LRO_NAC_ClrSlope_15m_20N010E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",20],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrSlope_15m_20N010E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrSlope_15m_20N010E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrSlope_15m_20N010E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrSlope_15m_20N010E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_15m_Color_Slope/LRO_NAC_ClrSlope_15m_20N010E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_15m_Color_Slope/LRO_NAC_ClrSlope_15m_20N010E_2mp.wms deleted file mode 100644 index 667b4a17bc..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_15m_Color_Slope/LRO_NAC_ClrSlope_15m_20N010E_2mp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrSlope_15m_20N010E_2mp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",20],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_15m_Color_Slope_Hazard/LRO_LROC_DEM_Sulpicius_Gallus_15m_Color_Slope_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_15m_Color_Slope_Hazard/LRO_LROC_DEM_Sulpicius_Gallus_15m_Color_Slope_Hazard.asset deleted file mode 100644 index bd3b218bd4..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_15m_Color_Slope_Hazard/LRO_LROC_DEM_Sulpicius_Gallus_15m_Color_Slope_Hazard.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrSlopeHaz_15m_20N010E_2mp", - Name = [[LRO LROC DEM, Sulpicius Gallus, 15m Color Slope Hazard]], - FilePath = asset.localResource("LRO_NAC_ClrSlopeHaz_15m_20N010E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Sulpicius Gallus, 15m Color Slope Hazard]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrSlopeHaz_15m_20N010E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Sulpicius Gallus, 15m Color Slope Hazard layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_20N010E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_20N010E_2mp.vrt deleted file mode 100644 index 7481a8ba5b..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_20N010E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",20],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrSlopeHaz_15m_20N010E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrSlopeHaz_15m_20N010E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrSlopeHaz_15m_20N010E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrSlopeHaz_15m_20N010E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_20N010E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_20N010E_2mp.wms deleted file mode 100644 index ce878645d4..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_20N010E_2mp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrSlopeHaz_15m_20N010E_2mp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",20],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_4m_Color_Roughness/LRO_LROC_DEM_Sulpicius_Gallus_4m_Color_Roughness.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_4m_Color_Roughness/LRO_LROC_DEM_Sulpicius_Gallus_4m_Color_Roughness.asset deleted file mode 100644 index 8167dbbcdc..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_4m_Color_Roughness/LRO_LROC_DEM_Sulpicius_Gallus_4m_Color_Roughness.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrRoughness_4m_20N010E_2mp", - Name = [[LRO LROC DEM, Sulpicius Gallus, 4m Color Roughness]], - FilePath = asset.localResource("LRO_NAC_ClrRoughness_4m_20N010E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Sulpicius Gallus, 4m Color Roughness]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrRoughness_4m_20N010E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Sulpicius Gallus, 4m Color Roughness layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_4m_Color_Roughness/LRO_NAC_ClrRoughness_4m_20N010E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_4m_Color_Roughness/LRO_NAC_ClrRoughness_4m_20N010E_2mp.vrt deleted file mode 100644 index 10a2408120..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_4m_Color_Roughness/LRO_NAC_ClrRoughness_4m_20N010E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrRoughness_4m_20N010E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrRoughness_4m_20N010E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrRoughness_4m_20N010E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrRoughness_4m_20N010E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_4m_Color_Roughness/LRO_NAC_ClrRoughness_4m_20N010E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_4m_Color_Roughness/LRO_NAC_ClrRoughness_4m_20N010E_2mp.wms deleted file mode 100644 index c19e03863a..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_4m_Color_Roughness/LRO_NAC_ClrRoughness_4m_20N010E_2mp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrRoughness_4m_20N010E_2mp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_4m_Color_Roughness_Hazard/LRO_LROC_DEM_Sulpicius_Gallus_4m_Color_Roughness_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_4m_Color_Roughness_Hazard/LRO_LROC_DEM_Sulpicius_Gallus_4m_Color_Roughness_Hazard.asset deleted file mode 100644 index 96e9038434..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_4m_Color_Roughness_Hazard/LRO_LROC_DEM_Sulpicius_Gallus_4m_Color_Roughness_Hazard.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrRoughnessHaz_4m_20N010E_2mp", - Name = [[LRO LROC DEM, Sulpicius Gallus, 4m Color Roughness Hazard]], - FilePath = asset.localResource("LRO_NAC_ClrRoughnessHaz_4m_20N010E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Sulpicius Gallus, 4m Color Roughness Hazard]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrRoughnessHaz_4m_20N010E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Sulpicius Gallus, 4m Color Roughness Hazard layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_4m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_4m_20N010E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_4m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_4m_20N010E_2mp.vrt deleted file mode 100644 index e3c76e896c..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_4m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_4m_20N010E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",20],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrRoughnessHaz_4m_20N010E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrRoughnessHaz_4m_20N010E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrRoughnessHaz_4m_20N010E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrRoughnessHaz_4m_20N010E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_4m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_4m_20N010E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_4m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_4m_20N010E_2mp.wms deleted file mode 100644 index 3ece974e13..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_4m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_4m_20N010E_2mp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrRoughnessHaz_4m_20N010E_2mp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",20],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_4m_Color_Slope/LRO_LROC_DEM_Sulpicius_Gallus_4m_Color_Slope.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_4m_Color_Slope/LRO_LROC_DEM_Sulpicius_Gallus_4m_Color_Slope.asset deleted file mode 100644 index a1368eade7..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_4m_Color_Slope/LRO_LROC_DEM_Sulpicius_Gallus_4m_Color_Slope.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrSlope_4m_20N010E_2mp", - Name = [[LRO LROC DEM, Sulpicius Gallus, 4m Color Slope]], - FilePath = asset.localResource("LRO_NAC_ClrSlope_4m_20N010E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Sulpicius Gallus, 4m Color Slope]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrSlope_4m_20N010E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Sulpicius Gallus, 4m Color Slope layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_4m_Color_Slope/LRO_NAC_ClrSlope_4m_20N010E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_4m_Color_Slope/LRO_NAC_ClrSlope_4m_20N010E_2mp.vrt deleted file mode 100644 index 97ed3f7190..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_4m_Color_Slope/LRO_NAC_ClrSlope_4m_20N010E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",20],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrSlope_4m_20N010E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrSlope_4m_20N010E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrSlope_4m_20N010E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrSlope_4m_20N010E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_4m_Color_Slope/LRO_NAC_ClrSlope_4m_20N010E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_4m_Color_Slope/LRO_NAC_ClrSlope_4m_20N010E_2mp.wms deleted file mode 100644 index cd8412b42b..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_4m_Color_Slope/LRO_NAC_ClrSlope_4m_20N010E_2mp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrSlope_4m_20N010E_2mp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",20],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_4m_Color_Slope_Hazard/LRO_LROC_DEM_Sulpicius_Gallus_4m_Color_Slope_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_4m_Color_Slope_Hazard/LRO_LROC_DEM_Sulpicius_Gallus_4m_Color_Slope_Hazard.asset deleted file mode 100644 index d3192e5891..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_4m_Color_Slope_Hazard/LRO_LROC_DEM_Sulpicius_Gallus_4m_Color_Slope_Hazard.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrSlopeHaz_4m_20N010E_2mp", - Name = [[LRO LROC DEM, Sulpicius Gallus, 4m Color Slope Hazard]], - FilePath = asset.localResource("LRO_NAC_ClrSlopeHaz_4m_20N010E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Sulpicius Gallus, 4m Color Slope Hazard]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrSlopeHaz_4m_20N010E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Sulpicius Gallus, 4m Color Slope Hazard layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_4m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_4m_20N010E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_4m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_4m_20N010E_2mp.vrt deleted file mode 100644 index fc4774a7f7..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_4m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_4m_20N010E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrSlopeHaz_4m_20N010E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrSlopeHaz_4m_20N010E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrSlopeHaz_4m_20N010E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrSlopeHaz_4m_20N010E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_4m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_4m_20N010E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_4m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_4m_20N010E_2mp.wms deleted file mode 100644 index 0b0e50487e..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_4m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_4m_20N010E_2mp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrSlopeHaz_4m_20N010E_2mp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_ColorHillshade/LRO_LROC_DEM_Sulpicius_Gallus_ColorHillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_ColorHillshade/LRO_LROC_DEM_Sulpicius_Gallus_ColorHillshade.asset deleted file mode 100644 index 2619a50608..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_ColorHillshade/LRO_LROC_DEM_Sulpicius_Gallus_ColorHillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrShade_20N010E_2mp", - Name = [[LRO LROC DEM, Sulpicius Gallus, ColorHillshade]], - FilePath = asset.localResource("LRO_NAC_ClrShade_20N010E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Sulpicius Gallus, ColorHillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrShade_20N010E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Sulpicius Gallus, ColorHillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_ColorHillshade/LRO_NAC_ClrShade_20N010E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_ColorHillshade/LRO_NAC_ClrShade_20N010E_2mp.vrt deleted file mode 100644 index 2ef8821c7c..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_ColorHillshade/LRO_NAC_ClrShade_20N010E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",20],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrShade_20N010E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrShade_20N010E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrShade_20N010E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrShade_20N010E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_ColorHillshade/LRO_NAC_ClrShade_20N010E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_ColorHillshade/LRO_NAC_ClrShade_20N010E_2mp.wms deleted file mode 100644 index 344f2b8647..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_ColorHillshade/LRO_NAC_ClrShade_20N010E_2mp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrShade_20N010E_2mp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",20],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_ColorHillshade_Slope/LRO_LROC_DEM_Sulpicius_Gallus_ColorHillshade_Slope.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_ColorHillshade_Slope/LRO_LROC_DEM_Sulpicius_Gallus_ColorHillshade_Slope.asset deleted file mode 100644 index c6bec0ce01..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_ColorHillshade_Slope/LRO_LROC_DEM_Sulpicius_Gallus_ColorHillshade_Slope.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Slope_20N010E_2mp", - Name = [[LRO LROC DEM, Sulpicius Gallus, ColorHillshade Slope]], - FilePath = asset.localResource("LRO_NAC_Slope_20N010E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Sulpicius Gallus, ColorHillshade Slope]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Slope_20N010E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Sulpicius Gallus, ColorHillshade Slope layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_ColorHillshade_Slope/LRO_NAC_Slope_20N010E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_ColorHillshade_Slope/LRO_NAC_Slope_20N010E_2mp.vrt deleted file mode 100644 index 06c7df5e2e..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_ColorHillshade_Slope/LRO_NAC_Slope_20N010E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_Slope_20N010E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_Slope_20N010E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_Slope_20N010E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_Slope_20N010E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_ColorHillshade_Slope/LRO_NAC_Slope_20N010E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_ColorHillshade_Slope/LRO_NAC_Slope_20N010E_2mp.wms deleted file mode 100644 index 71385b0d90..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_ColorHillshade_Slope/LRO_NAC_Slope_20N010E_2mp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Slope_20N010E_2mp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_Colorized_Confidence/LRO_LROC_DEM_Sulpicius_Gallus_Colorized_Confidence.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_Colorized_Confidence/LRO_LROC_DEM_Sulpicius_Gallus_Colorized_Confidence.asset deleted file mode 100644 index 460d65ed34..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_Colorized_Confidence/LRO_LROC_DEM_Sulpicius_Gallus_Colorized_Confidence.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrConf_20N010E_2mp", - Name = [[LRO LROC DEM, Sulpicius Gallus, Colorized Confidence]], - FilePath = asset.localResource("LRO_NAC_ClrConf_20N010E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Sulpicius Gallus, Colorized Confidence]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrConf_20N010E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Sulpicius Gallus, Colorized Confidence layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_Colorized_Confidence/LRO_NAC_ClrConf_20N010E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_Colorized_Confidence/LRO_NAC_ClrConf_20N010E_2mp.vrt deleted file mode 100644 index 8b51f02177..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_Colorized_Confidence/LRO_NAC_ClrConf_20N010E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - LRO_NAC_ClrConf_20N010E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrConf_20N010E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrConf_20N010E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrConf_20N010E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_Colorized_Confidence/LRO_NAC_ClrConf_20N010E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_Colorized_Confidence/LRO_NAC_ClrConf_20N010E_2mp.wms deleted file mode 100644 index 7e593ee440..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_Colorized_Confidence/LRO_NAC_ClrConf_20N010E_2mp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrConf_20N010E_2mp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_Grayscale/LRO_LROC_DEM_Sulpicius_Gallus_Grayscale.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_Grayscale/LRO_LROC_DEM_Sulpicius_Gallus_Grayscale.asset deleted file mode 100644 index 67703b1bdf..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_Grayscale/LRO_LROC_DEM_Sulpicius_Gallus_Grayscale.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Gray_20N010E_2mp", - Name = [[LRO LROC DEM, Sulpicius Gallus, Grayscale]], - FilePath = asset.localResource("LRO_NAC_Gray_20N010E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Sulpicius Gallus, Grayscale]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Gray_20N010E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Sulpicius Gallus, Grayscale layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_Grayscale/LRO_NAC_Gray_20N010E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_Grayscale/LRO_NAC_Gray_20N010E_2mp.vrt deleted file mode 100644 index 3892d33eb7..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_Grayscale/LRO_NAC_Gray_20N010E_2mp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Gray - - LRO_NAC_Gray_20N010E_2mp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Gray_20N010E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_Grayscale/LRO_NAC_Gray_20N010E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_Grayscale/LRO_NAC_Gray_20N010E_2mp.wms deleted file mode 100644 index cc0ec10f66..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_Grayscale/LRO_NAC_Gray_20N010E_2mp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Gray_20N010E_2mp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 1 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_Hillshade/LRO_LROC_DEM_Sulpicius_Gallus_Hillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_Hillshade/LRO_LROC_DEM_Sulpicius_Gallus_Hillshade.asset deleted file mode 100644 index 1de17db2c0..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_Hillshade/LRO_LROC_DEM_Sulpicius_Gallus_Hillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Shade_20N010E_2mp", - Name = [[LRO LROC DEM, Sulpicius Gallus, Hillshade]], - FilePath = asset.localResource("LRO_NAC_Shade_20N010E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Sulpicius Gallus, Hillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Shade_20N010E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Sulpicius Gallus, Hillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_Hillshade/LRO_NAC_Shade_20N010E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_Hillshade/LRO_NAC_Shade_20N010E_2mp.vrt deleted file mode 100644 index 6eef25476c..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_Hillshade/LRO_NAC_Shade_20N010E_2mp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Gray - - LRO_NAC_Shade_20N010E_2mp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Shade_20N010E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_Hillshade/LRO_NAC_Shade_20N010E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_Hillshade/LRO_NAC_Shade_20N010E_2mp.wms deleted file mode 100644 index 6bb609e69f..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Sulpicius_Gallus_Hillshade/LRO_NAC_Shade_20N010E_2mp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Shade_20N010E_2mp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 13 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 1 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_15m_Color_Roughness/LRO_LROC_DEM_Tsiolkovskiy_Crater_15m_Color_Roughness.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_15m_Color_Roughness/LRO_LROC_DEM_Tsiolkovskiy_Crater_15m_Color_Roughness.asset deleted file mode 100644 index d1e92650de..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_15m_Color_Roughness/LRO_LROC_DEM_Tsiolkovskiy_Crater_15m_Color_Roughness.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrRoughness_15m_19S129E_150cmp", - Name = [[LRO LROC DEM, Tsiolkovskiy Crater, 15m Color Roughness]], - FilePath = asset.localResource("LRO_NAC_ClrRoughness_15m_19S129E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Tsiolkovskiy Crater, 15m Color Roughness]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrRoughness_15m_19S129E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Tsiolkovskiy Crater, 15m Color Roughness layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_19S129E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_19S129E_150cmp.vrt deleted file mode 100644 index 786babb856..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_19S129E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-19],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrRoughness_15m_19S129E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrRoughness_15m_19S129E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrRoughness_15m_19S129E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrRoughness_15m_19S129E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Tsiolkovskiy_Crater_15m_Color_Roughness_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Tsiolkovskiy_Crater_15m_Color_Roughness_Hazard.asset deleted file mode 100644 index f03020f84e..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Tsiolkovskiy_Crater_15m_Color_Roughness_Hazard.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrRoughnessHaz_15m_19S129E_150cmp", - Name = [[LRO LROC DEM, Tsiolkovskiy Crater, 15m Color Roughness Hazard]], - FilePath = asset.localResource("LRO_NAC_ClrRoughnessHaz_15m_19S129E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Tsiolkovskiy Crater, 15m Color Roughness Hazard]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrRoughnessHaz_15m_19S129E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Tsiolkovskiy Crater, 15m Color Roughness Hazard layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_19S129E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_19S129E_150cmp.vrt deleted file mode 100644 index 73fd25b6ee..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_19S129E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-19],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrRoughnessHaz_15m_19S129E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrRoughnessHaz_15m_19S129E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrRoughnessHaz_15m_19S129E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrRoughnessHaz_15m_19S129E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_19S129E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_19S129E_150cmp.wms deleted file mode 100644 index 59f7a256bc..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_19S129E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrRoughnessHaz_15m_19S129E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-19],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_15m_Color_Slope/LRO_LROC_DEM_Tsiolkovskiy_Crater_15m_Color_Slope.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_15m_Color_Slope/LRO_LROC_DEM_Tsiolkovskiy_Crater_15m_Color_Slope.asset deleted file mode 100644 index c56a683f9b..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_15m_Color_Slope/LRO_LROC_DEM_Tsiolkovskiy_Crater_15m_Color_Slope.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrSlope_15m_19S129E_150cmp", - Name = [[LRO LROC DEM, Tsiolkovskiy Crater, 15m Color Slope]], - FilePath = asset.localResource("LRO_NAC_ClrSlope_15m_19S129E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Tsiolkovskiy Crater, 15m Color Slope]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrSlope_15m_19S129E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Tsiolkovskiy Crater, 15m Color Slope layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_15m_Color_Slope/LRO_NAC_ClrSlope_15m_19S129E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_15m_Color_Slope/LRO_NAC_ClrSlope_15m_19S129E_150cmp.vrt deleted file mode 100644 index e82896e765..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_15m_Color_Slope/LRO_NAC_ClrSlope_15m_19S129E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrSlope_15m_19S129E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrSlope_15m_19S129E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrSlope_15m_19S129E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrSlope_15m_19S129E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_15m_Color_Slope/LRO_NAC_ClrSlope_15m_19S129E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_15m_Color_Slope/LRO_NAC_ClrSlope_15m_19S129E_150cmp.wms deleted file mode 100644 index cd37e08f33..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_15m_Color_Slope/LRO_NAC_ClrSlope_15m_19S129E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrSlope_15m_19S129E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_15m_Color_Slope_Hazard/LRO_LROC_DEM_Tsiolkovskiy_Crater_15m_Color_Slope_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_15m_Color_Slope_Hazard/LRO_LROC_DEM_Tsiolkovskiy_Crater_15m_Color_Slope_Hazard.asset deleted file mode 100644 index 1b111607a6..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_15m_Color_Slope_Hazard/LRO_LROC_DEM_Tsiolkovskiy_Crater_15m_Color_Slope_Hazard.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrSlopeHaz_15m_19S129E_150cmp", - Name = [[LRO LROC DEM, Tsiolkovskiy Crater, 15m Color Slope Hazard]], - FilePath = asset.localResource("LRO_NAC_ClrSlopeHaz_15m_19S129E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Tsiolkovskiy Crater, 15m Color Slope Hazard]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrSlopeHaz_15m_19S129E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Tsiolkovskiy Crater, 15m Color Slope Hazard layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_19S129E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_19S129E_150cmp.vrt deleted file mode 100644 index c874cfa1d4..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_19S129E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrSlopeHaz_15m_19S129E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrSlopeHaz_15m_19S129E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrSlopeHaz_15m_19S129E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrSlopeHaz_15m_19S129E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_19S129E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_19S129E_150cmp.wms deleted file mode 100644 index a286443671..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_19S129E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrSlopeHaz_15m_19S129E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_3m_Color_Roughness/LRO_LROC_DEM_Tsiolkovskiy_Crater_3m_Color_Roughness.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_3m_Color_Roughness/LRO_LROC_DEM_Tsiolkovskiy_Crater_3m_Color_Roughness.asset deleted file mode 100644 index 178853d70c..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_3m_Color_Roughness/LRO_LROC_DEM_Tsiolkovskiy_Crater_3m_Color_Roughness.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrRoughness_3m_19S129E_150cmp", - Name = [[LRO LROC DEM, Tsiolkovskiy Crater, 3m Color Roughness]], - FilePath = asset.localResource("LRO_NAC_ClrRoughness_3m_19S129E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Tsiolkovskiy Crater, 3m Color Roughness]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrRoughness_3m_19S129E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Tsiolkovskiy Crater, 3m Color Roughness layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_19S129E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_19S129E_150cmp.vrt deleted file mode 100644 index 7ddda17d4b..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_19S129E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-19],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrRoughness_3m_19S129E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrRoughness_3m_19S129E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrRoughness_3m_19S129E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrRoughness_3m_19S129E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_19S129E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_19S129E_150cmp.wms deleted file mode 100644 index c2a71c7f32..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_19S129E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrRoughness_3m_19S129E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-19],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_3m_Color_Roughness_Hazard/LRO_LROC_DEM_Tsiolkovskiy_Crater_3m_Color_Roughness_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_3m_Color_Roughness_Hazard/LRO_LROC_DEM_Tsiolkovskiy_Crater_3m_Color_Roughness_Hazard.asset deleted file mode 100644 index b5a42dc8db..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_3m_Color_Roughness_Hazard/LRO_LROC_DEM_Tsiolkovskiy_Crater_3m_Color_Roughness_Hazard.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrRoughnessHaz_3m_19S129E_150cmp", - Name = [[LRO LROC DEM, Tsiolkovskiy Crater, 3m Color Roughness Hazard]], - FilePath = asset.localResource("LRO_NAC_ClrRoughnessHaz_3m_19S129E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Tsiolkovskiy Crater, 3m Color Roughness Hazard]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrRoughnessHaz_3m_19S129E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Tsiolkovskiy Crater, 3m Color Roughness Hazard layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_19S129E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_19S129E_150cmp.vrt deleted file mode 100644 index 7b84bbae18..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_19S129E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-19],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrRoughnessHaz_3m_19S129E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrRoughnessHaz_3m_19S129E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrRoughnessHaz_3m_19S129E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrRoughnessHaz_3m_19S129E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_19S129E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_19S129E_150cmp.wms deleted file mode 100644 index cad59e2bdd..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_19S129E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrRoughnessHaz_3m_19S129E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-19],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_3m_Color_Slope/LRO_LROC_DEM_Tsiolkovskiy_Crater_3m_Color_Slope.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_3m_Color_Slope/LRO_LROC_DEM_Tsiolkovskiy_Crater_3m_Color_Slope.asset deleted file mode 100644 index 41c1e65547..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_3m_Color_Slope/LRO_LROC_DEM_Tsiolkovskiy_Crater_3m_Color_Slope.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrSlope_3m_19S129E_150cmp", - Name = [[LRO LROC DEM, Tsiolkovskiy Crater, 3m Color Slope]], - FilePath = asset.localResource("LRO_NAC_ClrSlope_3m_19S129E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Tsiolkovskiy Crater, 3m Color Slope]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrSlope_3m_19S129E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Tsiolkovskiy Crater, 3m Color Slope layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_3m_Color_Slope/LRO_NAC_ClrSlope_3m_19S129E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_3m_Color_Slope/LRO_NAC_ClrSlope_3m_19S129E_150cmp.vrt deleted file mode 100644 index dd09e35d09..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_3m_Color_Slope/LRO_NAC_ClrSlope_3m_19S129E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrSlope_3m_19S129E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrSlope_3m_19S129E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrSlope_3m_19S129E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrSlope_3m_19S129E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_3m_Color_Slope/LRO_NAC_ClrSlope_3m_19S129E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_3m_Color_Slope/LRO_NAC_ClrSlope_3m_19S129E_150cmp.wms deleted file mode 100644 index 408fe3f0fc..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_3m_Color_Slope/LRO_NAC_ClrSlope_3m_19S129E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrSlope_3m_19S129E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_3m_Color_Slope_Hazard/LRO_LROC_DEM_Tsiolkovskiy_Crater_3m_Color_Slope_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_3m_Color_Slope_Hazard/LRO_LROC_DEM_Tsiolkovskiy_Crater_3m_Color_Slope_Hazard.asset deleted file mode 100644 index 41b2953c8b..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_3m_Color_Slope_Hazard/LRO_LROC_DEM_Tsiolkovskiy_Crater_3m_Color_Slope_Hazard.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrSlopeHaz_3m_19S129E_150cmp", - Name = [[LRO LROC DEM, Tsiolkovskiy Crater, 3m Color Slope Hazard]], - FilePath = asset.localResource("LRO_NAC_ClrSlopeHaz_3m_19S129E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Tsiolkovskiy Crater, 3m Color Slope Hazard]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrSlopeHaz_3m_19S129E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Tsiolkovskiy Crater, 3m Color Slope Hazard layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_19S129E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_19S129E_150cmp.vrt deleted file mode 100644 index fde2c09fc1..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_19S129E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-19],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrSlopeHaz_3m_19S129E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrSlopeHaz_3m_19S129E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrSlopeHaz_3m_19S129E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrSlopeHaz_3m_19S129E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_19S129E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_19S129E_150cmp.wms deleted file mode 100644 index d10f2a67f8..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_19S129E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrSlopeHaz_3m_19S129E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-19],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_ColorHillshade/LRO_LROC_DEM_Tsiolkovskiy_Crater_ColorHillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_ColorHillshade/LRO_LROC_DEM_Tsiolkovskiy_Crater_ColorHillshade.asset deleted file mode 100644 index e480431224..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_ColorHillshade/LRO_LROC_DEM_Tsiolkovskiy_Crater_ColorHillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrShade_19S129E_150cmp", - Name = [[LRO LROC DEM, Tsiolkovskiy Crater, ColorHillshade]], - FilePath = asset.localResource("LRO_NAC_ClrShade_19S129E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Tsiolkovskiy Crater, ColorHillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrShade_19S129E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Tsiolkovskiy Crater, ColorHillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_ColorHillshade/LRO_NAC_ClrShade_19S129E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_ColorHillshade/LRO_NAC_ClrShade_19S129E_150cmp.vrt deleted file mode 100644 index 2fe7cacdbc..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_ColorHillshade/LRO_NAC_ClrShade_19S129E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-19],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrShade_19S129E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrShade_19S129E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrShade_19S129E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrShade_19S129E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_ColorHillshade/LRO_NAC_ClrShade_19S129E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_ColorHillshade/LRO_NAC_ClrShade_19S129E_150cmp.wms deleted file mode 100644 index bd028810b1..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_ColorHillshade/LRO_NAC_ClrShade_19S129E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrShade_19S129E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-19],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_Colorized_Confidence/LRO_LROC_DEM_Tsiolkovskiy_Crater_Colorized_Confidence.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_Colorized_Confidence/LRO_LROC_DEM_Tsiolkovskiy_Crater_Colorized_Confidence.asset deleted file mode 100644 index 1338812b4f..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_Colorized_Confidence/LRO_LROC_DEM_Tsiolkovskiy_Crater_Colorized_Confidence.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrConf_19S129E_150cmp", - Name = [[LRO LROC DEM, Tsiolkovskiy Crater, Colorized Confidence]], - FilePath = asset.localResource("LRO_NAC_ClrConf_19S129E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Tsiolkovskiy Crater, Colorized Confidence]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrConf_19S129E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Tsiolkovskiy Crater, Colorized Confidence layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_Colorized_Confidence/LRO_NAC_ClrConf_19S129E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_Colorized_Confidence/LRO_NAC_ClrConf_19S129E_150cmp.vrt deleted file mode 100644 index bf106de722..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_Colorized_Confidence/LRO_NAC_ClrConf_19S129E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrConf_19S129E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrConf_19S129E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrConf_19S129E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrConf_19S129E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_Colorized_Confidence/LRO_NAC_ClrConf_19S129E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_Colorized_Confidence/LRO_NAC_ClrConf_19S129E_150cmp.wms deleted file mode 100644 index 228a6e7bd8..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_Colorized_Confidence/LRO_NAC_ClrConf_19S129E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrConf_19S129E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_Colorized_Slope/LRO_LROC_DEM_Tsiolkovskiy_Crater_Colorized_Slope.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_Colorized_Slope/LRO_LROC_DEM_Tsiolkovskiy_Crater_Colorized_Slope.asset deleted file mode 100644 index 0aaf7482e9..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_Colorized_Slope/LRO_LROC_DEM_Tsiolkovskiy_Crater_Colorized_Slope.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Slope_19S129E_150cmp", - Name = [[LRO LROC DEM, Tsiolkovskiy Crater, Colorized Slope]], - FilePath = asset.localResource("LRO_NAC_Slope_19S129E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Tsiolkovskiy Crater, Colorized Slope]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Slope_19S129E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Tsiolkovskiy Crater, Colorized Slope layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_Colorized_Slope/LRO_NAC_Slope_19S129E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_Colorized_Slope/LRO_NAC_Slope_19S129E_150cmp.vrt deleted file mode 100644 index 2dd03aa4ae..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_Colorized_Slope/LRO_NAC_Slope_19S129E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-19],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_Slope_19S129E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_Slope_19S129E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_Slope_19S129E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_Slope_19S129E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_Colorized_Slope/LRO_NAC_Slope_19S129E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_Colorized_Slope/LRO_NAC_Slope_19S129E_150cmp.wms deleted file mode 100644 index 817aff903d..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_Colorized_Slope/LRO_NAC_Slope_19S129E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Slope_19S129E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-19],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_Grayscale/LRO_LROC_DEM_Tsiolkovskiy_Crater_Grayscale.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_Grayscale/LRO_LROC_DEM_Tsiolkovskiy_Crater_Grayscale.asset deleted file mode 100644 index c2d2907624..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_Grayscale/LRO_LROC_DEM_Tsiolkovskiy_Crater_Grayscale.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Gray_19S129E_150cmp", - Name = [[LRO LROC DEM, Tsiolkovskiy Crater, Grayscale]], - FilePath = asset.localResource("LRO_NAC_Gray_19S129E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Tsiolkovskiy Crater, Grayscale]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Gray_19S129E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Tsiolkovskiy Crater, Grayscale layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_Grayscale/LRO_NAC_Gray_19S129E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_Grayscale/LRO_NAC_Gray_19S129E_150cmp.vrt deleted file mode 100644 index 7f36dd3925..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_Grayscale/LRO_NAC_Gray_19S129E_150cmp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Gray - - LRO_NAC_Gray_19S129E_150cmp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Gray_19S129E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_Grayscale/LRO_NAC_Gray_19S129E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_Grayscale/LRO_NAC_Gray_19S129E_150cmp.wms deleted file mode 100644 index 1a673b029d..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_Grayscale/LRO_NAC_Gray_19S129E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Gray_19S129E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 1 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_Hillshade/LRO_LROC_DEM_Tsiolkovskiy_Crater_Hillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_Hillshade/LRO_LROC_DEM_Tsiolkovskiy_Crater_Hillshade.asset deleted file mode 100644 index e30775ac4e..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_Hillshade/LRO_LROC_DEM_Tsiolkovskiy_Crater_Hillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Shade_19S129E_150cmp", - Name = [[LRO LROC DEM, Tsiolkovskiy Crater, Hillshade]], - FilePath = asset.localResource("LRO_NAC_Shade_19S129E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Tsiolkovskiy Crater, Hillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Shade_19S129E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Tsiolkovskiy Crater, Hillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_Hillshade/LRO_NAC_Shade_19S129E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_Hillshade/LRO_NAC_Shade_19S129E_150cmp.vrt deleted file mode 100644 index dfa07e28a5..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_Hillshade/LRO_NAC_Shade_19S129E_150cmp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-19],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Gray - - LRO_NAC_Shade_19S129E_150cmp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Shade_19S129E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_Hillshade/LRO_NAC_Shade_19S129E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_Hillshade/LRO_NAC_Shade_19S129E_150cmp.wms deleted file mode 100644 index 8d20c9f1e5..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tsiolkovskiy_Crater_Hillshade/LRO_NAC_Shade_19S129E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Shade_19S129E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-19],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 1 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_15m_Color_Roughness/LRO_LROC_DEM_Tycho_Crater_15m_Color_Roughness.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_15m_Color_Roughness/LRO_LROC_DEM_Tycho_Crater_15m_Color_Roughness.asset deleted file mode 100644 index ff0d597425..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_15m_Color_Roughness/LRO_LROC_DEM_Tycho_Crater_15m_Color_Roughness.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrRoughness_15m_43S349E_150cmp", - Name = [[LRO LROC DEM, Tycho Crater, 15m Color Roughness]], - FilePath = asset.localResource("LRO_NAC_ClrRoughness_15m_43S349E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Tycho Crater, 15m Color Roughness]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrRoughness_15m_43S349E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Tycho Crater, 15m Color Roughness layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_43S349E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_43S349E_150cmp.vrt deleted file mode 100644 index bb6b936961..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_15m_Color_Roughness/LRO_NAC_ClrRoughness_15m_43S349E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-43],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrRoughness_15m_43S349E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrRoughness_15m_43S349E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrRoughness_15m_43S349E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrRoughness_15m_43S349E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Tycho_Crater_15m_Color_Roughness_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Tycho_Crater_15m_Color_Roughness_Hazard.asset deleted file mode 100644 index 58127f8371..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Tycho_Crater_15m_Color_Roughness_Hazard.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrRoughnessHaz_15m_43S349E_150cmp", - Name = [[LRO LROC DEM, Tycho Crater, 15m Color Roughness Hazard]], - FilePath = asset.localResource("LRO_NAC_ClrRoughnessHaz_15m_43S349E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Tycho Crater, 15m Color Roughness Hazard]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrRoughnessHaz_15m_43S349E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Tycho Crater, 15m Color Roughness Hazard layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_43S349E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_43S349E_150cmp.vrt deleted file mode 100644 index 2963b864f2..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_43S349E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-43],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrRoughnessHaz_15m_43S349E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrRoughnessHaz_15m_43S349E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrRoughnessHaz_15m_43S349E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrRoughnessHaz_15m_43S349E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_43S349E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_43S349E_150cmp.wms deleted file mode 100644 index e4382442ed..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_15m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_15m_43S349E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrRoughnessHaz_15m_43S349E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-43],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_15m_Color_Slope/LRO_LROC_DEM_Tycho_Crater_15m_Color_Slope.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_15m_Color_Slope/LRO_LROC_DEM_Tycho_Crater_15m_Color_Slope.asset deleted file mode 100644 index 94dbc0649e..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_15m_Color_Slope/LRO_LROC_DEM_Tycho_Crater_15m_Color_Slope.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrSlope_15m_43S349E_150cmp", - Name = [[LRO LROC DEM, Tycho Crater, 15m Color Slope]], - FilePath = asset.localResource("LRO_NAC_ClrSlope_15m_43S349E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Tycho Crater, 15m Color Slope]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrSlope_15m_43S349E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Tycho Crater, 15m Color Slope layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_15m_Color_Slope/LRO_NAC_ClrSlope_15m_43S349E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_15m_Color_Slope/LRO_NAC_ClrSlope_15m_43S349E_150cmp.vrt deleted file mode 100644 index 0d899bfdae..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_15m_Color_Slope/LRO_NAC_ClrSlope_15m_43S349E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-43],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrSlope_15m_43S349E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrSlope_15m_43S349E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrSlope_15m_43S349E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrSlope_15m_43S349E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_15m_Color_Slope/LRO_NAC_ClrSlope_15m_43S349E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_15m_Color_Slope/LRO_NAC_ClrSlope_15m_43S349E_150cmp.wms deleted file mode 100644 index 6fb9fa6c48..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_15m_Color_Slope/LRO_NAC_ClrSlope_15m_43S349E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrSlope_15m_43S349E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-43],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_15m_Color_Slope_Hazard/LRO_LROC_DEM_Tycho_Crater_15m_Color_Slope_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_15m_Color_Slope_Hazard/LRO_LROC_DEM_Tycho_Crater_15m_Color_Slope_Hazard.asset deleted file mode 100644 index b19093642e..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_15m_Color_Slope_Hazard/LRO_LROC_DEM_Tycho_Crater_15m_Color_Slope_Hazard.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrSlopeHaz_15m_43S349E_150cmp", - Name = [[LRO LROC DEM, Tycho Crater, 15m Color Slope Hazard]], - FilePath = asset.localResource("LRO_NAC_ClrSlopeHaz_15m_43S349E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Tycho Crater, 15m Color Slope Hazard]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrSlopeHaz_15m_43S349E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Tycho Crater, 15m Color Slope Hazard layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_43S349E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_43S349E_150cmp.vrt deleted file mode 100644 index a9de05bc90..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_43S349E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-43],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrSlopeHaz_15m_43S349E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrSlopeHaz_15m_43S349E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrSlopeHaz_15m_43S349E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrSlopeHaz_15m_43S349E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_43S349E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_43S349E_150cmp.wms deleted file mode 100644 index d5e3e548ea..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_15m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_15m_43S349E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrSlopeHaz_15m_43S349E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-43],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_3m_Color_Roughness/LRO_LROC_DEM_Tycho_Crater_3m_Color_Roughness.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_3m_Color_Roughness/LRO_LROC_DEM_Tycho_Crater_3m_Color_Roughness.asset deleted file mode 100644 index d673375108..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_3m_Color_Roughness/LRO_LROC_DEM_Tycho_Crater_3m_Color_Roughness.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrRoughness_3m_43S349E_150cmp", - Name = [[LRO LROC DEM, Tycho Crater, 3m Color Roughness]], - FilePath = asset.localResource("LRO_NAC_ClrRoughness_3m_43S349E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Tycho Crater, 3m Color Roughness]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrRoughness_3m_43S349E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Tycho Crater, 3m Color Roughness layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_43S349E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_43S349E_150cmp.vrt deleted file mode 100644 index 8ee1432b93..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_43S349E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-43],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrRoughness_3m_43S349E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrRoughness_3m_43S349E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrRoughness_3m_43S349E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrRoughness_3m_43S349E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_43S349E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_43S349E_150cmp.wms deleted file mode 100644 index ac69da8ab6..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_3m_Color_Roughness/LRO_NAC_ClrRoughness_3m_43S349E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrRoughness_3m_43S349E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-43],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_3m_Color_Roughness_Hazard/LRO_LROC_DEM_Tycho_Crater_3m_Color_Roughness_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_3m_Color_Roughness_Hazard/LRO_LROC_DEM_Tycho_Crater_3m_Color_Roughness_Hazard.asset deleted file mode 100644 index 826222a289..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_3m_Color_Roughness_Hazard/LRO_LROC_DEM_Tycho_Crater_3m_Color_Roughness_Hazard.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrRoughnessHaz_3m_43S349E_150cmp", - Name = [[LRO LROC DEM, Tycho Crater, 3m Color Roughness Hazard]], - FilePath = asset.localResource("LRO_NAC_ClrRoughnessHaz_3m_43S349E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Tycho Crater, 3m Color Roughness Hazard]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrRoughnessHaz_3m_43S349E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Tycho Crater, 3m Color Roughness Hazard layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_43S349E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_43S349E_150cmp.vrt deleted file mode 100644 index 9d07b70217..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_43S349E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-43],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrRoughnessHaz_3m_43S349E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrRoughnessHaz_3m_43S349E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrRoughnessHaz_3m_43S349E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrRoughnessHaz_3m_43S349E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_43S349E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_43S349E_150cmp.wms deleted file mode 100644 index 6c300c3a4c..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_3m_Color_Roughness_Hazard/LRO_NAC_ClrRoughnessHaz_3m_43S349E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrRoughnessHaz_3m_43S349E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-43],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_3m_Color_Slope/LRO_LROC_DEM_Tycho_Crater_3m_Color_Slope.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_3m_Color_Slope/LRO_LROC_DEM_Tycho_Crater_3m_Color_Slope.asset deleted file mode 100644 index d9b99161ca..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_3m_Color_Slope/LRO_LROC_DEM_Tycho_Crater_3m_Color_Slope.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrSlope_3m_43S349E_150cmp", - Name = [[LRO LROC DEM, Tycho Crater, 3m Color Slope]], - FilePath = asset.localResource("LRO_NAC_ClrSlope_3m_43S349E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Tycho Crater, 3m Color Slope]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrSlope_3m_43S349E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Tycho Crater, 3m Color Slope layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_3m_Color_Slope/LRO_NAC_ClrSlope_3m_43S349E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_3m_Color_Slope/LRO_NAC_ClrSlope_3m_43S349E_150cmp.vrt deleted file mode 100644 index d6fd24e68f..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_3m_Color_Slope/LRO_NAC_ClrSlope_3m_43S349E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-43],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrSlope_3m_43S349E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrSlope_3m_43S349E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrSlope_3m_43S349E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrSlope_3m_43S349E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_3m_Color_Slope/LRO_NAC_ClrSlope_3m_43S349E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_3m_Color_Slope/LRO_NAC_ClrSlope_3m_43S349E_150cmp.wms deleted file mode 100644 index c34be021c6..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_3m_Color_Slope/LRO_NAC_ClrSlope_3m_43S349E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrSlope_3m_43S349E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-43],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_3m_Color_Slope_Hazard/LRO_LROC_DEM_Tycho_Crater_3m_Color_Slope_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_3m_Color_Slope_Hazard/LRO_LROC_DEM_Tycho_Crater_3m_Color_Slope_Hazard.asset deleted file mode 100644 index c9a6e2ed84..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_3m_Color_Slope_Hazard/LRO_LROC_DEM_Tycho_Crater_3m_Color_Slope_Hazard.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrSlopeHaz_3m_43S349E_150cmp", - Name = [[LRO LROC DEM, Tycho Crater, 3m Color Slope Hazard]], - FilePath = asset.localResource("LRO_NAC_ClrSlopeHaz_3m_43S349E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Tycho Crater, 3m Color Slope Hazard]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrSlopeHaz_3m_43S349E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Tycho Crater, 3m Color Slope Hazard layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_43S349E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_43S349E_150cmp.vrt deleted file mode 100644 index 7960aacb69..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_43S349E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-43],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrSlopeHaz_3m_43S349E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrSlopeHaz_3m_43S349E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrSlopeHaz_3m_43S349E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrSlopeHaz_3m_43S349E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_43S349E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_43S349E_150cmp.wms deleted file mode 100644 index dd36d0d115..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_3m_Color_Slope_Hazard/LRO_NAC_ClrSlopeHaz_3m_43S349E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrSlopeHaz_3m_43S349E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-43],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_ColorHillshade/LRO_LROC_DEM_Tycho_Crater_ColorHillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_ColorHillshade/LRO_LROC_DEM_Tycho_Crater_ColorHillshade.asset deleted file mode 100644 index e526283656..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_ColorHillshade/LRO_LROC_DEM_Tycho_Crater_ColorHillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrShade_43S349E_150cmp", - Name = [[LRO LROC DEM, Tycho Crater, ColorHillshade]], - FilePath = asset.localResource("LRO_NAC_ClrShade_43S349E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Tycho Crater, ColorHillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrShade_43S349E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Tycho Crater, ColorHillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_ColorHillshade/LRO_NAC_ClrShade_43S349E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_ColorHillshade/LRO_NAC_ClrShade_43S349E_150cmp.vrt deleted file mode 100644 index 3b28150032..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_ColorHillshade/LRO_NAC_ClrShade_43S349E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-43],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrShade_43S349E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrShade_43S349E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrShade_43S349E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrShade_43S349E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_ColorHillshade/LRO_NAC_ClrShade_43S349E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_ColorHillshade/LRO_NAC_ClrShade_43S349E_150cmp.wms deleted file mode 100644 index b13d9bab5d..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_ColorHillshade/LRO_NAC_ClrShade_43S349E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrShade_43S349E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-43],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_Colorized_Confidence/LRO_LROC_DEM_Tycho_Crater_Colorized_Confidence.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_Colorized_Confidence/LRO_LROC_DEM_Tycho_Crater_Colorized_Confidence.asset deleted file mode 100644 index 0ceec09c74..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_Colorized_Confidence/LRO_LROC_DEM_Tycho_Crater_Colorized_Confidence.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_ClrConf_43S349E_150cmp", - Name = [[LRO LROC DEM, Tycho Crater, Colorized Confidence]], - FilePath = asset.localResource("LRO_NAC_ClrConf_43S349E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Tycho Crater, Colorized Confidence]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_ClrConf_43S349E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Tycho Crater, Colorized Confidence layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_Colorized_Confidence/LRO_NAC_ClrConf_43S349E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_Colorized_Confidence/LRO_NAC_ClrConf_43S349E_150cmp.vrt deleted file mode 100644 index b6813cc929..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_Colorized_Confidence/LRO_NAC_ClrConf_43S349E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_ClrConf_43S349E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_ClrConf_43S349E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_ClrConf_43S349E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_ClrConf_43S349E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_Colorized_Confidence/LRO_NAC_ClrConf_43S349E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_Colorized_Confidence/LRO_NAC_ClrConf_43S349E_150cmp.wms deleted file mode 100644 index 0dfa3c1499..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_Colorized_Confidence/LRO_NAC_ClrConf_43S349E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_ClrConf_43S349E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_Colorized_Slope/LRO_LROC_DEM_Tycho_Crater_Colorized_Slope.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_Colorized_Slope/LRO_LROC_DEM_Tycho_Crater_Colorized_Slope.asset deleted file mode 100644 index 5268a4f4c0..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_Colorized_Slope/LRO_LROC_DEM_Tycho_Crater_Colorized_Slope.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Slope_43S349E_150cmp", - Name = [[LRO LROC DEM, Tycho Crater, Colorized Slope]], - FilePath = asset.localResource("LRO_NAC_Slope_43S349E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Tycho Crater, Colorized Slope]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Slope_43S349E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Tycho Crater, Colorized Slope layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_Colorized_Slope/LRO_NAC_Slope_43S349E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_Colorized_Slope/LRO_NAC_Slope_43S349E_150cmp.vrt deleted file mode 100644 index 34ca907493..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_Colorized_Slope/LRO_NAC_Slope_43S349E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-43],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - LRO_NAC_Slope_43S349E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_Slope_43S349E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_Slope_43S349E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_Slope_43S349E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_Colorized_Slope/LRO_NAC_Slope_43S349E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_Colorized_Slope/LRO_NAC_Slope_43S349E_150cmp.wms deleted file mode 100644 index 4da33605c3..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_Colorized_Slope/LRO_NAC_Slope_43S349E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Slope_43S349E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-43],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 3 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_Grayscale/LRO_LROC_DEM_Tycho_Crater_Grayscale.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_Grayscale/LRO_LROC_DEM_Tycho_Crater_Grayscale.asset deleted file mode 100644 index 18584df4ec..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_Grayscale/LRO_LROC_DEM_Tycho_Crater_Grayscale.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Gray_43S349E_150cmp", - Name = [[LRO LROC DEM, Tycho Crater, Grayscale]], - FilePath = asset.localResource("LRO_NAC_Gray_43S349E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Tycho Crater, Grayscale]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Gray_43S349E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Tycho Crater, Grayscale layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_Grayscale/LRO_NAC_Gray_43S349E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_Grayscale/LRO_NAC_Gray_43S349E_150cmp.vrt deleted file mode 100644 index be7717bd5a..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_Grayscale/LRO_NAC_Gray_43S349E_150cmp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Gray - - LRO_NAC_Gray_43S349E_150cmp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Gray_43S349E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_Grayscale/LRO_NAC_Gray_43S349E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_Grayscale/LRO_NAC_Gray_43S349E_150cmp.wms deleted file mode 100644 index 8e9bab0343..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_Grayscale/LRO_NAC_Gray_43S349E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Gray_43S349E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 1 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_Hillshade/LRO_LROC_DEM_Tycho_Crater_Hillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_Hillshade/LRO_LROC_DEM_Tycho_Crater_Hillshade.asset deleted file mode 100644 index c5836cd1d6..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_Hillshade/LRO_LROC_DEM_Tycho_Crater_Hillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Shade_43S349E_150cmp", - Name = [[LRO LROC DEM, Tycho Crater, Hillshade]], - FilePath = asset.localResource("LRO_NAC_Shade_43S349E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC DEM, Tycho Crater, Hillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Shade_43S349E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC DEM, Tycho Crater, Hillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_Hillshade/LRO_NAC_Shade_43S349E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_Hillshade/LRO_NAC_Shade_43S349E_150cmp.vrt deleted file mode 100644 index 107732a6bf..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_Hillshade/LRO_NAC_Shade_43S349E_150cmp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-43],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Gray - - LRO_NAC_Shade_43S349E_150cmp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Shade_43S349E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_Hillshade/LRO_NAC_Shade_43S349E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_Hillshade/LRO_NAC_Shade_43S349E_150cmp.wms deleted file mode 100644 index 3444faac3d..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_DEM_Tycho_Crater_Hillshade/LRO_NAC_Shade_43S349E_150cmp.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Shade_43S349E_150cmp/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 14 - top - - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-43],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - - 256 - 256 - 1 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic.asset new file mode 100644 index 0000000000..bc910b1954 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic.asset @@ -0,0 +1,364 @@ +-- This file was automatically generated using a script found at +-- https://github.com/OpenSpace/scripts/treks-to-openspace. See the README.md file +-- in that repository for more information on how to run the script to update these +-- files. In particular in the case of errors, prefer to change that script rather +-- than the individual files + +local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier + +local treks_LRO_NAC_Mosaic_17S173E_50cmp = { + Identifier = "LRO_NAC_Mosaic_17S173E_50cmp", + Name = [[LRO LROC Image Mosaic, Aitken Crater]], + FilePath = asset.localResource("LRO_LROC_Image_Mosaic/Aitken_Crater.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_Mosaic_13S358E_50cmp = { + Identifier = "LRO_NAC_Mosaic_13S358E_50cmp", + Name = [[LRO LROC Image Mosaic, Alphonsus]], + FilePath = asset.localResource("LRO_LROC_Image_Mosaic/Alphonsus.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_Mosaic_26N004E_50cmp = { + Identifier = "LRO_NAC_Mosaic_26N004E_50cmp", + Name = [[LRO LROC Image Mosaic, Apollo 15]], + FilePath = asset.localResource("LRO_LROC_Image_Mosaic/Apollo_15.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_Mosaic_09S015E_50cmp = { + Identifier = "LRO_NAC_Mosaic_09S015E_50cmp", + Name = [[LRO LROC Image Mosaic, Apollo 16]], + FilePath = asset.localResource("LRO_LROC_Image_Mosaic/Apollo_16.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_Mosaic_25N311E_50cmp = { + Identifier = "LRO_NAC_Mosaic_25N311E_50cmp", + Name = [[LRO LROC Image Mosaic, Aristarchus 1]], + FilePath = asset.localResource("LRO_LROC_Image_Mosaic/Aristarchus_1.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_Mosaic_28N307E_50cmp = { + Identifier = "LRO_NAC_Mosaic_28N307E_50cmp", + Name = [[LRO LROC Image Mosaic, Aristarchus 2]], + FilePath = asset.localResource("LRO_LROC_Image_Mosaic/Aristarchus_2.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_Mosaic_19S070E_50cmp = { + Identifier = "LRO_NAC_Mosaic_19S070E_50cmp", + Name = [[LRO LROC Image Mosaic, Balmer Basin]], + FilePath = asset.localResource("LRO_LROC_Image_Mosaic/Balmer_Basin.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_Mosaic_61N099E_50cmp = { + Identifier = "LRO_NAC_Mosaic_61N099E_50cmp", + Name = [[LRO LROC Image Mosaic, Compton Belkovich Th Anomaly]], + FilePath = asset.localResource("LRO_LROC_Image_Mosaic/Compton_Belkovich_Th_Anomaly.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_Mosaic_02S317E_50cmp = { + Identifier = "LRO_NAC_Mosaic_02S317E_50cmp", + Name = [[LRO LROC Image Mosaic, Flamsteed Crater]], + FilePath = asset.localResource("LRO_LROC_Image_Mosaic/Flamsteed_Crater.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_Mosaic_36N320E_50cmp = { + Identifier = "LRO_NAC_Mosaic_36N320E_50cmp", + Name = [[LRO LROC Image Mosaic, Gruithuisen Domes]], + FilePath = asset.localResource("LRO_LROC_Image_Mosaic/Gruithuisen_Domes.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_Mosaic_00N234E_50cmp = { + Identifier = "LRO_NAC_Mosaic_00N234E_50cmp", + Name = [[LRO LROC Image Mosaic, Hertzsprung]], + FilePath = asset.localResource("LRO_LROC_Image_Mosaic/Hertzsprung.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_Mosaic_08N332E_50cmp = { + Identifier = "LRO_NAC_Mosaic_08N332E_50cmp", + Name = [[LRO LROC Image Mosaic, Hortensius Domes]], + FilePath = asset.localResource("LRO_LROC_Image_Mosaic/Hortensius_Domes.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_Mosaic_55N077E_50cmp = { + Identifier = "LRO_NAC_Mosaic_55N077E_50cmp", + Name = [[LRO LROC Image Mosaic, Humboldtianum Basin]], + FilePath = asset.localResource("LRO_LROC_Image_Mosaic/Humboldtianum_Basin.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_Mosaic_19N005E_50cmp = { + Identifier = "LRO_NAC_Mosaic_19N005E_50cmp", + Name = [[LRO LROC Image Mosaic, Ina D-Caldera]], + FilePath = asset.localResource("LRO_LROC_Image_Mosaic/Ina_D-Caldera.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_Mosaic_06N120E_50cmp = { + Identifier = "LRO_NAC_Mosaic_06N120E_50cmp", + Name = [[LRO LROC Image Mosaic, King Crater]], + FilePath = asset.localResource("LRO_LROC_Image_Mosaic/King_Crater.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_Mosaic_32N292E_50cmp = { + Identifier = "LRO_NAC_Mosaic_32N292E_50cmp", + Name = [[LRO LROC Image Mosaic, Lichtenberg Crater]], + FilePath = asset.localResource("LRO_LROC_Image_Mosaic/Lichtenberg_Crater.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_Mosaic_36S164E_70cmp = { + Identifier = "LRO_NAC_Mosaic_36S164E_70cmp", + Name = [[LRO LROC Image Mosaic, Mare Ingenii]], + FilePath = asset.localResource("LRO_LROC_Image_Mosaic/Mare_Ingenii.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_Mosaic_26N150E_50cmp = { + Identifier = "LRO_NAC_Mosaic_26N150E_50cmp", + Name = [[LRO LROC Image Mosaic, Mare Moscoviense]], + FilePath = asset.localResource("LRO_LROC_Image_Mosaic/Mare_Moscoviense.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_Mosaic_02N085E_50cmp = { + Identifier = "LRO_NAC_Mosaic_02N085E_50cmp", + Name = [[LRO LROC Image Mosaic, Mare Smythii]], + FilePath = asset.localResource("LRO_LROC_Image_Mosaic/Mare_Smythii.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_Mosaic_07N022E_50cmp = { + Identifier = "LRO_NAC_Mosaic_07N022E_50cmp", + Name = [[LRO LROC Image Mosaic, Mare Tranquillitatis]], + FilePath = asset.localResource("LRO_LROC_Image_Mosaic/Mare_Tranquillitatis.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_Mosaic_14N304E_50cmp = { + Identifier = "LRO_NAC_Mosaic_14N304E_50cmp", + Name = [[LRO LROC Image Mosaic, Marius Hills]], + FilePath = asset.localResource("LRO_LROC_Image_Mosaic/Marius_Hills.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_Mosaic_16S041E_50cmp = { + Identifier = "LRO_NAC_Mosaic_16S041E_50cmp", + Name = [[LRO LROC Image Mosaic, Montes Pyrenaeus]], + FilePath = asset.localResource("LRO_LROC_Image_Mosaic/Montes_Pyrenaeus.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_Mosaic_05N000E_50cmp = { + Identifier = "LRO_NAC_Mosaic_05N000E_50cmp", + Name = [[LRO LROC Image Mosaic, Murchison Crater]], + FilePath = asset.localResource("LRO_LROC_Image_Mosaic/Murchison_Crater.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_Mosaic_26S265E_50cmp = { + Identifier = "LRO_NAC_Mosaic_26S265E_50cmp", + Name = [[LRO LROC Image Mosaic, Orientale 1]], + FilePath = asset.localResource("LRO_LROC_Image_Mosaic/Orientale_1.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_Mosaic_07N301E_50cmp = { + Identifier = "LRO_NAC_Mosaic_07N301E_50cmp", + Name = [[LRO LROC Image Mosaic, Reiner Gamma]], + FilePath = asset.localResource("LRO_LROC_Image_Mosaic/Reiner_Gamma.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_Mosaic_03S286E_50cmp = { + Identifier = "LRO_NAC_Mosaic_03S286E_50cmp", + Name = [[LRO LROC Image Mosaic, Riccioli Crater]], + FilePath = asset.localResource("LRO_LROC_Image_Mosaic/Riccioli_Crater.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_Mosaic_13N356E_50cmp = { + Identifier = "LRO_NAC_Mosaic_13N356E_50cmp", + Name = [[LRO LROC Image Mosaic, Rima Bode]], + FilePath = asset.localResource("LRO_LROC_Image_Mosaic/Rima_Bode.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_Mosaic_27N318E_50cmp = { + Identifier = "LRO_NAC_Mosaic_27N318E_50cmp", + Name = [[LRO LROC Image Mosaic, Rimae Prinz]], + FilePath = asset.localResource("LRO_LROC_Image_Mosaic/Rimae_Prinz.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_Mosaic_60S200E_50cmp = { + Identifier = "LRO_NAC_Mosaic_60S200E_50cmp", + Name = [[LRO LROC Image Mosaic, South Pole-Aitken Basin Interior]], + FilePath = asset.localResource("LRO_LROC_Image_Mosaic/South_Pole-Aitken_Basin_Interior.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_Mosaic_51S171E_60cmp = { + Identifier = "LRO_NAC_Mosaic_51S171E_60cmp", + Name = [[LRO LROC Image Mosaic, South Pole-Aitken Rim]], + FilePath = asset.localResource("LRO_LROC_Image_Mosaic/South_Pole-Aitken_Rim.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_Mosaic_02S167E_50cmp = { + Identifier = "LRO_NAC_Mosaic_02S167E_50cmp", + Name = [[LRO LROC Image Mosaic, Stratton (Dewar)]], + FilePath = asset.localResource("LRO_LROC_Image_Mosaic/Stratton_Dewar.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_Mosaic_20N010E_60cmp = { + Identifier = "LRO_NAC_Mosaic_20N010E_60cmp", + Name = [[LRO LROC Image Mosaic, Sulpicius Gallus]], + FilePath = asset.localResource("LRO_LROC_Image_Mosaic/Sulpicius_Gallus.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_Mosaic_19S129E_50cmp = { + Identifier = "LRO_NAC_Mosaic_19S129E_50cmp", + Name = [[LRO LROC Image Mosaic, Tsiolkovskiy Crater]], + FilePath = asset.localResource("LRO_LROC_Image_Mosaic/Tsiolkovskiy_Crater.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_Mosaic_43S349E_50cmp = { + Identifier = "LRO_NAC_Mosaic_43S349E_50cmp", + Name = [[LRO LROC Image Mosaic, Tycho Crater]], + FilePath = asset.localResource("LRO_LROC_Image_Mosaic/Tycho_Crater.vrt"), + Description = [[]] +} + +asset.onInitialize(function() + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_Mosaic_17S173E_50cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_Mosaic_13S358E_50cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_Mosaic_26N004E_50cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_Mosaic_09S015E_50cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_Mosaic_25N311E_50cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_Mosaic_28N307E_50cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_Mosaic_19S070E_50cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_Mosaic_61N099E_50cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_Mosaic_02S317E_50cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_Mosaic_36N320E_50cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_Mosaic_00N234E_50cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_Mosaic_08N332E_50cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_Mosaic_55N077E_50cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_Mosaic_19N005E_50cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_Mosaic_06N120E_50cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_Mosaic_32N292E_50cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_Mosaic_36S164E_70cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_Mosaic_26N150E_50cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_Mosaic_02N085E_50cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_Mosaic_07N022E_50cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_Mosaic_14N304E_50cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_Mosaic_16S041E_50cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_Mosaic_05N000E_50cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_Mosaic_26S265E_50cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_Mosaic_07N301E_50cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_Mosaic_03S286E_50cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_Mosaic_13N356E_50cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_Mosaic_27N318E_50cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_Mosaic_60S200E_50cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_Mosaic_51S171E_60cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_Mosaic_02S167E_50cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_Mosaic_20N010E_60cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_Mosaic_19S129E_50cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_Mosaic_43S349E_50cmp) +end) + +asset.onDeinitialize(function() + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_Mosaic_17S173E_50cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_Mosaic_13S358E_50cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_Mosaic_26N004E_50cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_Mosaic_09S015E_50cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_Mosaic_25N311E_50cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_Mosaic_28N307E_50cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_Mosaic_19S070E_50cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_Mosaic_61N099E_50cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_Mosaic_02S317E_50cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_Mosaic_36N320E_50cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_Mosaic_00N234E_50cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_Mosaic_08N332E_50cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_Mosaic_55N077E_50cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_Mosaic_19N005E_50cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_Mosaic_06N120E_50cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_Mosaic_32N292E_50cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_Mosaic_36S164E_70cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_Mosaic_26N150E_50cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_Mosaic_02N085E_50cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_Mosaic_07N022E_50cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_Mosaic_14N304E_50cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_Mosaic_16S041E_50cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_Mosaic_05N000E_50cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_Mosaic_26S265E_50cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_Mosaic_07N301E_50cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_Mosaic_03S286E_50cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_Mosaic_13N356E_50cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_Mosaic_27N318E_50cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_Mosaic_60S200E_50cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_Mosaic_51S171E_60cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_Mosaic_02S167E_50cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_Mosaic_20N010E_60cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_Mosaic_19S129E_50cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_Mosaic_43S349E_50cmp") +end) + +asset.export("LRO_NAC_Mosaic_17S173E_50cmp", treks_LRO_NAC_Mosaic_17S173E_50cmp) +asset.export("LRO_NAC_Mosaic_13S358E_50cmp", treks_LRO_NAC_Mosaic_13S358E_50cmp) +asset.export("LRO_NAC_Mosaic_26N004E_50cmp", treks_LRO_NAC_Mosaic_26N004E_50cmp) +asset.export("LRO_NAC_Mosaic_09S015E_50cmp", treks_LRO_NAC_Mosaic_09S015E_50cmp) +asset.export("LRO_NAC_Mosaic_25N311E_50cmp", treks_LRO_NAC_Mosaic_25N311E_50cmp) +asset.export("LRO_NAC_Mosaic_28N307E_50cmp", treks_LRO_NAC_Mosaic_28N307E_50cmp) +asset.export("LRO_NAC_Mosaic_19S070E_50cmp", treks_LRO_NAC_Mosaic_19S070E_50cmp) +asset.export("LRO_NAC_Mosaic_61N099E_50cmp", treks_LRO_NAC_Mosaic_61N099E_50cmp) +asset.export("LRO_NAC_Mosaic_02S317E_50cmp", treks_LRO_NAC_Mosaic_02S317E_50cmp) +asset.export("LRO_NAC_Mosaic_36N320E_50cmp", treks_LRO_NAC_Mosaic_36N320E_50cmp) +asset.export("LRO_NAC_Mosaic_00N234E_50cmp", treks_LRO_NAC_Mosaic_00N234E_50cmp) +asset.export("LRO_NAC_Mosaic_08N332E_50cmp", treks_LRO_NAC_Mosaic_08N332E_50cmp) +asset.export("LRO_NAC_Mosaic_55N077E_50cmp", treks_LRO_NAC_Mosaic_55N077E_50cmp) +asset.export("LRO_NAC_Mosaic_19N005E_50cmp", treks_LRO_NAC_Mosaic_19N005E_50cmp) +asset.export("LRO_NAC_Mosaic_06N120E_50cmp", treks_LRO_NAC_Mosaic_06N120E_50cmp) +asset.export("LRO_NAC_Mosaic_32N292E_50cmp", treks_LRO_NAC_Mosaic_32N292E_50cmp) +asset.export("LRO_NAC_Mosaic_36S164E_70cmp", treks_LRO_NAC_Mosaic_36S164E_70cmp) +asset.export("LRO_NAC_Mosaic_26N150E_50cmp", treks_LRO_NAC_Mosaic_26N150E_50cmp) +asset.export("LRO_NAC_Mosaic_02N085E_50cmp", treks_LRO_NAC_Mosaic_02N085E_50cmp) +asset.export("LRO_NAC_Mosaic_07N022E_50cmp", treks_LRO_NAC_Mosaic_07N022E_50cmp) +asset.export("LRO_NAC_Mosaic_14N304E_50cmp", treks_LRO_NAC_Mosaic_14N304E_50cmp) +asset.export("LRO_NAC_Mosaic_16S041E_50cmp", treks_LRO_NAC_Mosaic_16S041E_50cmp) +asset.export("LRO_NAC_Mosaic_05N000E_50cmp", treks_LRO_NAC_Mosaic_05N000E_50cmp) +asset.export("LRO_NAC_Mosaic_26S265E_50cmp", treks_LRO_NAC_Mosaic_26S265E_50cmp) +asset.export("LRO_NAC_Mosaic_07N301E_50cmp", treks_LRO_NAC_Mosaic_07N301E_50cmp) +asset.export("LRO_NAC_Mosaic_03S286E_50cmp", treks_LRO_NAC_Mosaic_03S286E_50cmp) +asset.export("LRO_NAC_Mosaic_13N356E_50cmp", treks_LRO_NAC_Mosaic_13N356E_50cmp) +asset.export("LRO_NAC_Mosaic_27N318E_50cmp", treks_LRO_NAC_Mosaic_27N318E_50cmp) +asset.export("LRO_NAC_Mosaic_60S200E_50cmp", treks_LRO_NAC_Mosaic_60S200E_50cmp) +asset.export("LRO_NAC_Mosaic_51S171E_60cmp", treks_LRO_NAC_Mosaic_51S171E_60cmp) +asset.export("LRO_NAC_Mosaic_02S167E_50cmp", treks_LRO_NAC_Mosaic_02S167E_50cmp) +asset.export("LRO_NAC_Mosaic_20N010E_60cmp", treks_LRO_NAC_Mosaic_20N010E_60cmp) +asset.export("LRO_NAC_Mosaic_19S129E_50cmp", treks_LRO_NAC_Mosaic_19S129E_50cmp) +asset.export("LRO_NAC_Mosaic_43S349E_50cmp", treks_LRO_NAC_Mosaic_43S349E_50cmp) + + +asset.meta = { + Name = [[NASA Treks Layers for Moon LRO_LROC_Image_Mosaic], + Version = "1.0", + Author = "NASA/Treks", + URL = "https://trek.nasa.gov/moon", + License = "NASA/Treks", + Description = [[LRO_LROC_Image_Mosaic layers from NASA/Treks for Moon]] +} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Aitken_Crater.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Aitken_Crater.vrt new file mode 100644 index 0000000000..e90d1b3e0f --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Aitken_Crater.vrt @@ -0,0 +1,29 @@ + + PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-17],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] + -1.8000000000000000e+02, 2.1457672119140625e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.1457672119140625e-05 + + 0 + Gray + + Aitken_Crater.wms + 1 + + + + 0 + + + + Alpha + + Aitken_Crater.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Aitken_Crater/LRO_NAC_Mosaic_17S173E_50cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Aitken_Crater.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Aitken_Crater/LRO_NAC_Mosaic_17S173E_50cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Aitken_Crater.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Alphonsus.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Alphonsus.vrt new file mode 100644 index 0000000000..028691b79b --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Alphonsus.vrt @@ -0,0 +1,29 @@ + + PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-13],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] + -1.8000000000000000e+02, 2.1457672119140625e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.1457672119140625e-05 + + 0 + Gray + + Alphonsus.wms + 1 + + + + 0 + + + + Alpha + + Alphonsus.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Alphonsus/LRO_NAC_Mosaic_13S358E_50cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Alphonsus.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Alphonsus/LRO_NAC_Mosaic_13S358E_50cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Alphonsus.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Apollo_15.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Apollo_15.vrt new file mode 100644 index 0000000000..662eac3f9a --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Apollo_15.vrt @@ -0,0 +1,29 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.1457672119140625e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.1457672119140625e-05 + + 0 + Gray + + Apollo_15.wms + 1 + + + + 0 + + + + Alpha + + Apollo_15.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Apollo_15/LRO_NAC_Mosaic_26N004E_50cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Apollo_15.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Apollo_15/LRO_NAC_Mosaic_26N004E_50cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Apollo_15.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Apollo_16.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Apollo_16.vrt new file mode 100644 index 0000000000..135221bccf --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Apollo_16.vrt @@ -0,0 +1,29 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.0728836059570313e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.0728836059570313e-05 + + 0 + Gray + + Apollo_16.wms + 1 + + + + 0 + + + + Alpha + + Apollo_16.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Apollo_16/LRO_NAC_Mosaic_09S015E_50cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Apollo_16.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Apollo_16/LRO_NAC_Mosaic_09S015E_50cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Apollo_16.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Aristarchus_1.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Aristarchus_1.vrt new file mode 100644 index 0000000000..094d0ab3fb --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Aristarchus_1.vrt @@ -0,0 +1,29 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.1457672119140625e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.1457672119140625e-05 + + 0 + Gray + + Aristarchus_1.wms + 1 + + + + 0 + + + + Alpha + + Aristarchus_1.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Aristarchus_1/LRO_NAC_Mosaic_25N311E_50cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Aristarchus_1.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Aristarchus_1/LRO_NAC_Mosaic_25N311E_50cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Aristarchus_1.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Aristarchus_2.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Aristarchus_2.vrt new file mode 100644 index 0000000000..772e2bcb4a --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Aristarchus_2.vrt @@ -0,0 +1,29 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.1457672119140625e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.1457672119140625e-05 + + 0 + Gray + + Aristarchus_2.wms + 1 + + + + 0 + + + + Alpha + + Aristarchus_2.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Aristarchus_2/LRO_NAC_Mosaic_28N307E_50cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Aristarchus_2.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Aristarchus_2/LRO_NAC_Mosaic_28N307E_50cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Aristarchus_2.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Balmer_Basin.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Balmer_Basin.vrt new file mode 100644 index 0000000000..09cc935275 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Balmer_Basin.vrt @@ -0,0 +1,29 @@ + + PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-19],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] + -1.8000000000000000e+02, 2.1457672119140625e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.1457672119140625e-05 + + 0 + Gray + + Balmer_Basin.wms + 1 + + + + 0 + + + + Alpha + + Balmer_Basin.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Balmer_Basin/LRO_NAC_Mosaic_19S070E_50cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Balmer_Basin.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Balmer_Basin/LRO_NAC_Mosaic_19S070E_50cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Balmer_Basin.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Compton_Belkovich_Th_Anomaly.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Compton_Belkovich_Th_Anomaly.vrt new file mode 100644 index 0000000000..f063fdfac8 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Compton_Belkovich_Th_Anomaly.vrt @@ -0,0 +1,29 @@ + + PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",61],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] + -1.8000000000000000e+02, 2.1457672119140625e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.1457672119140625e-05 + + 0 + Gray + + Compton_Belkovich_Th_Anomaly.wms + 1 + + + + 0 + + + + Alpha + + Compton_Belkovich_Th_Anomaly.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Compton_Belkovich_Th_Anomaly/LRO_NAC_Mosaic_61N099E_50cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Compton_Belkovich_Th_Anomaly.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Compton_Belkovich_Th_Anomaly/LRO_NAC_Mosaic_61N099E_50cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Compton_Belkovich_Th_Anomaly.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Flamsteed_Crater.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Flamsteed_Crater.vrt new file mode 100644 index 0000000000..63af59099d --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Flamsteed_Crater.vrt @@ -0,0 +1,29 @@ + + PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] + -1.8000000000000000e+02, 2.1457672119140625e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.1457672119140625e-05 + + 0 + Gray + + Flamsteed_Crater.wms + 1 + + + + 0 + + + + Alpha + + Flamsteed_Crater.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Flamsteed_Crater/LRO_NAC_Mosaic_02S317E_50cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Flamsteed_Crater.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Flamsteed_Crater/LRO_NAC_Mosaic_02S317E_50cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Flamsteed_Crater.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Gruithuisen_Domes.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Gruithuisen_Domes.vrt new file mode 100644 index 0000000000..5dd9377676 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Gruithuisen_Domes.vrt @@ -0,0 +1,29 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.1457672119140625e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.1457672119140625e-05 + + 0 + Gray + + Gruithuisen_Domes.wms + 1 + + + + 0 + + + + Alpha + + Gruithuisen_Domes.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Gruithuisen_Domes/LRO_NAC_Mosaic_36N320E_50cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Gruithuisen_Domes.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Gruithuisen_Domes/LRO_NAC_Mosaic_36N320E_50cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Gruithuisen_Domes.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Hertzsprung.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Hertzsprung.vrt new file mode 100644 index 0000000000..8a8fa7ddf1 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Hertzsprung.vrt @@ -0,0 +1,29 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.1457672119140625e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.1457672119140625e-05 + + 0 + Gray + + Hertzsprung.wms + 1 + + + + 0 + + + + Alpha + + Hertzsprung.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Hertzsprung/LRO_NAC_Mosaic_00N234E_50cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Hertzsprung.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Hertzsprung/LRO_NAC_Mosaic_00N234E_50cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Hertzsprung.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Hortensius_Domes.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Hortensius_Domes.vrt new file mode 100644 index 0000000000..2c7813bcc8 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Hortensius_Domes.vrt @@ -0,0 +1,29 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.1457672119140625e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.1457672119140625e-05 + + 0 + Gray + + Hortensius_Domes.wms + 1 + + + + 0 + + + + Alpha + + Hortensius_Domes.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Hortensius_Domes/LRO_NAC_Mosaic_08N332E_50cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Hortensius_Domes.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Hortensius_Domes/LRO_NAC_Mosaic_08N332E_50cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Hortensius_Domes.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Humboldtianum_Basin.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Humboldtianum_Basin.vrt new file mode 100644 index 0000000000..5a08422a07 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Humboldtianum_Basin.vrt @@ -0,0 +1,29 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.1457672119140625e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.1457672119140625e-05 + + 0 + Gray + + Humboldtianum_Basin.wms + 1 + + + + 0 + + + + Alpha + + Humboldtianum_Basin.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Humboldtianum_Basin/LRO_NAC_Mosaic_55N077E_50cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Humboldtianum_Basin.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Humboldtianum_Basin/LRO_NAC_Mosaic_55N077E_50cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Humboldtianum_Basin.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Ina_D-Caldera.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Ina_D-Caldera.vrt new file mode 100644 index 0000000000..694107b514 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Ina_D-Caldera.vrt @@ -0,0 +1,29 @@ + + PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",19],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] + -1.8000000000000000e+02, 2.1457672119140625e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.1457672119140625e-05 + + 0 + Gray + + Ina_D-Caldera.wms + 1 + + + + 0 + + + + Alpha + + Ina_D-Caldera.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Ina_D-Caldera/LRO_NAC_Mosaic_19N005E_50cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Ina_D-Caldera.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Ina_D-Caldera/LRO_NAC_Mosaic_19N005E_50cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Ina_D-Caldera.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/King_Crater.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/King_Crater.vrt new file mode 100644 index 0000000000..18bd046c91 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/King_Crater.vrt @@ -0,0 +1,29 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.1457672119140625e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.1457672119140625e-05 + + 0 + Gray + + King_Crater.wms + 1 + + + + 0 + + + + Alpha + + King_Crater.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_King_Crater/LRO_NAC_Mosaic_06N120E_50cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/King_Crater.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_King_Crater/LRO_NAC_Mosaic_06N120E_50cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/King_Crater.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Lichtenberg_Crater.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Lichtenberg_Crater.vrt new file mode 100644 index 0000000000..6e158680f2 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Lichtenberg_Crater.vrt @@ -0,0 +1,29 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.1457672119140625e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.1457672119140625e-05 + + 0 + Gray + + Lichtenberg_Crater.wms + 1 + + + + 0 + + + + Alpha + + Lichtenberg_Crater.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Lichtenberg_Crater/LRO_NAC_Mosaic_32N292E_50cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Lichtenberg_Crater.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Lichtenberg_Crater/LRO_NAC_Mosaic_32N292E_50cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Lichtenberg_Crater.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Mare_Ingenii.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Mare_Ingenii.vrt new file mode 100644 index 0000000000..efe992b441 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Mare_Ingenii.vrt @@ -0,0 +1,29 @@ + + PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",-36],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] + -1.8000000000000000e+02, 2.1457672119140625e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.1457672119140625e-05 + + 0 + Gray + + Mare_Ingenii.wms + 1 + + + + 0 + + + + Alpha + + Mare_Ingenii.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Mare_Ingenii/LRO_NAC_Mosaic_36S164E_70cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Mare_Ingenii.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Mare_Ingenii/LRO_NAC_Mosaic_36S164E_70cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Mare_Ingenii.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Mare_Moscoviense.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Mare_Moscoviense.vrt new file mode 100644 index 0000000000..a530338e93 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Mare_Moscoviense.vrt @@ -0,0 +1,29 @@ + + PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",26],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] + -1.8000000000000000e+02, 2.1457672119140625e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.1457672119140625e-05 + + 0 + Gray + + Mare_Moscoviense.wms + 1 + + + + 0 + + + + Alpha + + Mare_Moscoviense.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Mare_Moscoviense/LRO_NAC_Mosaic_26N150E_50cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Mare_Moscoviense.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Mare_Moscoviense/LRO_NAC_Mosaic_26N150E_50cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Mare_Moscoviense.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Mare_Smythii.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Mare_Smythii.vrt new file mode 100644 index 0000000000..8cf2173e92 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Mare_Smythii.vrt @@ -0,0 +1,29 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.1457672119140625e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.1457672119140625e-05 + + 0 + Gray + + Mare_Smythii.wms + 1 + + + + 0 + + + + Alpha + + Mare_Smythii.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Mare_Smythii/LRO_NAC_Mosaic_02N085E_50cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Mare_Smythii.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Mare_Smythii/LRO_NAC_Mosaic_02N085E_50cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Mare_Smythii.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Mare_Tranquillitatis.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Mare_Tranquillitatis.vrt new file mode 100644 index 0000000000..44beff8083 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Mare_Tranquillitatis.vrt @@ -0,0 +1,29 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.1457672119140625e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.1457672119140625e-05 + + 0 + Gray + + Mare_Tranquillitatis.wms + 1 + + + + 0 + + + + Alpha + + Mare_Tranquillitatis.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Mare_Tranquillitatis/LRO_NAC_Mosaic_07N022E_50cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Mare_Tranquillitatis.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Mare_Tranquillitatis/LRO_NAC_Mosaic_07N022E_50cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Mare_Tranquillitatis.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Marius_Hills.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Marius_Hills.vrt new file mode 100644 index 0000000000..ceb6269365 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Marius_Hills.vrt @@ -0,0 +1,29 @@ + + PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",14],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] + -1.8000000000000000e+02, 2.1457672119140625e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.1457672119140625e-05 + + 0 + Gray + + Marius_Hills.wms + 1 + + + + 0 + + + + Alpha + + Marius_Hills.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Marius_Hills/LRO_NAC_Mosaic_14N304E_50cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Marius_Hills.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Marius_Hills/LRO_NAC_Mosaic_14N304E_50cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Marius_Hills.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Montes_Pyrenaeus.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Montes_Pyrenaeus.vrt new file mode 100644 index 0000000000..6cc07038b6 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Montes_Pyrenaeus.vrt @@ -0,0 +1,29 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.1457672119140625e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.1457672119140625e-05 + + 0 + Gray + + Montes_Pyrenaeus.wms + 1 + + + + 0 + + + + Alpha + + Montes_Pyrenaeus.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Montes_Pyrenaeus/LRO_NAC_Mosaic_16S041E_50cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Montes_Pyrenaeus.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Montes_Pyrenaeus/LRO_NAC_Mosaic_16S041E_50cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Montes_Pyrenaeus.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Murchison_Crater.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Murchison_Crater.vrt new file mode 100644 index 0000000000..efea2dd35b --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Murchison_Crater.vrt @@ -0,0 +1,29 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.1457672119140625e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.1457672119140625e-05 + + 0 + Gray + + Murchison_Crater.wms + 1 + + + + 0 + + + + Alpha + + Murchison_Crater.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Murchison_Crater/LRO_NAC_Mosaic_05N000E_50cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Murchison_Crater.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Murchison_Crater/LRO_NAC_Mosaic_05N000E_50cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Murchison_Crater.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Orientale_1.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Orientale_1.vrt new file mode 100644 index 0000000000..7e6864f569 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Orientale_1.vrt @@ -0,0 +1,29 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.1457672119140625e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.1457672119140625e-05 + + 0 + Gray + + Orientale_1.wms + 1 + + + + 0 + + + + Alpha + + Orientale_1.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Orientale_1/LRO_NAC_Mosaic_26S265E_50cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Orientale_1.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Orientale_1/LRO_NAC_Mosaic_26S265E_50cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Orientale_1.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Reiner_Gamma.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Reiner_Gamma.vrt new file mode 100644 index 0000000000..09519bbd63 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Reiner_Gamma.vrt @@ -0,0 +1,29 @@ + + PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",7],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] + -1.8000000000000000e+02, 2.1457672119140625e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.1457672119140625e-05 + + 0 + Gray + + Reiner_Gamma.wms + 1 + + + + 0 + + + + Alpha + + Reiner_Gamma.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Reiner_Gamma/LRO_NAC_Mosaic_07N301E_50cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Reiner_Gamma.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Reiner_Gamma/LRO_NAC_Mosaic_07N301E_50cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Reiner_Gamma.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Riccioli_Crater.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Riccioli_Crater.vrt new file mode 100644 index 0000000000..865f5c7ca6 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Riccioli_Crater.vrt @@ -0,0 +1,29 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.1457672119140625e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.1457672119140625e-05 + + 0 + Gray + + Riccioli_Crater.wms + 1 + + + + 0 + + + + Alpha + + Riccioli_Crater.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Riccioli_Crater/LRO_NAC_Mosaic_03S286E_50cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Riccioli_Crater.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Riccioli_Crater/LRO_NAC_Mosaic_03S286E_50cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Riccioli_Crater.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Rima_Bode.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Rima_Bode.vrt new file mode 100644 index 0000000000..f5b1fbf0c9 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Rima_Bode.vrt @@ -0,0 +1,29 @@ + + PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",13],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] + -1.8000000000000000e+02, 2.1457672119140625e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.1457672119140625e-05 + + 0 + Gray + + Rima_Bode.wms + 1 + + + + 0 + + + + Alpha + + Rima_Bode.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Rima_Bode/LRO_NAC_Mosaic_13N356E_50cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Rima_Bode.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Rima_Bode/LRO_NAC_Mosaic_13N356E_50cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Rima_Bode.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Rimae_Prinz.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Rimae_Prinz.vrt new file mode 100644 index 0000000000..03cee08c0a --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Rimae_Prinz.vrt @@ -0,0 +1,29 @@ + + PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",27],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] + -1.8000000000000000e+02, 2.1457672119140625e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.1457672119140625e-05 + + 0 + Gray + + Rimae_Prinz.wms + 1 + + + + 0 + + + + Alpha + + Rimae_Prinz.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Rimae_Prinz/LRO_NAC_Mosaic_27N318E_50cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Rimae_Prinz.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Rimae_Prinz/LRO_NAC_Mosaic_27N318E_50cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Rimae_Prinz.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/South_Pole-Aitken_Basin_Interior.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/South_Pole-Aitken_Basin_Interior.vrt new file mode 100644 index 0000000000..0f769ff9df --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/South_Pole-Aitken_Basin_Interior.vrt @@ -0,0 +1,29 @@ + + PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-60],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] + -1.8000000000000000e+02, 2.1457672119140625e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.1457672119140625e-05 + + 0 + Gray + + South_Pole-Aitken_Basin_Interior.wms + 1 + + + + 0 + + + + Alpha + + South_Pole-Aitken_Basin_Interior.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_South_Pole-Aitken_Basin_Interior/LRO_NAC_Mosaic_60S200E_50cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/South_Pole-Aitken_Basin_Interior.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_South_Pole-Aitken_Basin_Interior/LRO_NAC_Mosaic_60S200E_50cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/South_Pole-Aitken_Basin_Interior.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/South_Pole-Aitken_Rim.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/South_Pole-Aitken_Rim.vrt new file mode 100644 index 0000000000..1440bd47bb --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/South_Pole-Aitken_Rim.vrt @@ -0,0 +1,29 @@ + + PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",-51],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] + -1.8000000000000000e+02, 2.1457672119140625e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.1457672119140625e-05 + + 0 + Gray + + South_Pole-Aitken_Rim.wms + 1 + + + + 0 + + + + Alpha + + South_Pole-Aitken_Rim.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_South_Pole-Aitken_Rim/LRO_NAC_Mosaic_51S171E_60cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/South_Pole-Aitken_Rim.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_South_Pole-Aitken_Rim/LRO_NAC_Mosaic_51S171E_60cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/South_Pole-Aitken_Rim.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Stratton_Dewar.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Stratton_Dewar.vrt new file mode 100644 index 0000000000..a1c16fca2e --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Stratton_Dewar.vrt @@ -0,0 +1,29 @@ + + PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] + -1.8000000000000000e+02, 2.1457672119140625e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.1457672119140625e-05 + + 0 + Gray + + Stratton_Dewar.wms + 1 + + + + 0 + + + + Alpha + + Stratton_Dewar.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Stratton_(Dewar)/LRO_NAC_Mosaic_02S167E_50cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Stratton_Dewar.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Stratton_(Dewar)/LRO_NAC_Mosaic_02S167E_50cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Stratton_Dewar.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Sulpicius_Gallus.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Sulpicius_Gallus.vrt new file mode 100644 index 0000000000..1a2cc7707f --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Sulpicius_Gallus.vrt @@ -0,0 +1,29 @@ + + PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",20],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] + -1.8000000000000000e+02, 2.1457672119140625e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.1457672119140625e-05 + + 0 + Gray + + Sulpicius_Gallus.wms + 1 + + + + 0 + + + + Alpha + + Sulpicius_Gallus.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Sulpicius_Gallus/LRO_NAC_Mosaic_20N010E_60cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Sulpicius_Gallus.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Sulpicius_Gallus/LRO_NAC_Mosaic_20N010E_60cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Sulpicius_Gallus.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Tsiolkovskiy_Crater.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Tsiolkovskiy_Crater.vrt new file mode 100644 index 0000000000..f862782427 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Tsiolkovskiy_Crater.vrt @@ -0,0 +1,29 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.1457672119140625e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.1457672119140625e-05 + + 0 + Gray + + Tsiolkovskiy_Crater.wms + 1 + + + + 0 + + + + Alpha + + Tsiolkovskiy_Crater.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Tsiolkovskiy_Crater/LRO_NAC_Mosaic_19S129E_50cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Tsiolkovskiy_Crater.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Tsiolkovskiy_Crater/LRO_NAC_Mosaic_19S129E_50cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Tsiolkovskiy_Crater.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Tycho_Crater.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Tycho_Crater.vrt new file mode 100644 index 0000000000..6b8c6232ad --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Tycho_Crater.vrt @@ -0,0 +1,29 @@ + + PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-43],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] + -1.8000000000000000e+02, 2.1457672119140625e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.1457672119140625e-05 + + 0 + Gray + + Tycho_Crater.wms + 1 + + + + 0 + + + + Alpha + + Tycho_Crater.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Tycho_Crater/LRO_NAC_Mosaic_43S349E_50cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Tycho_Crater.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Tycho_Crater/LRO_NAC_Mosaic_43S349E_50cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic/Tycho_Crater.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_26cm.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_26cm.asset new file mode 100644 index 0000000000..30c20963ce --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_26cm.asset @@ -0,0 +1,34 @@ +-- This file was automatically generated using a script found at +-- https://github.com/OpenSpace/scripts/treks-to-openspace. See the README.md file +-- in that repository for more information on how to run the script to update these +-- files. In particular in the case of errors, prefer to change that script rather +-- than the individual files + +local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier + +local treks_apollo11_26cm_mosaic_byte_geo_1_2_highContrast = { + Identifier = "apollo11_26cm_mosaic_byte_geo_1_2_highContrast", + Name = [[LRO LROC Image Mosaic 26cm, Apollo 11]], + FilePath = asset.localResource("LRO_LROC_Image_Mosaic_26cm/Apollo_11.vrt"), + Description = [[]] +} + +asset.onInitialize(function() + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_apollo11_26cm_mosaic_byte_geo_1_2_highContrast) +end) + +asset.onDeinitialize(function() + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_apollo11_26cm_mosaic_byte_geo_1_2_highContrast") +end) + +asset.export("apollo11_26cm_mosaic_byte_geo_1_2_highContrast", treks_apollo11_26cm_mosaic_byte_geo_1_2_highContrast) + + +asset.meta = { + Name = [[NASA Treks Layers for Moon LRO_LROC_Image_Mosaic_26cm], + Version = "1.0", + Author = "NASA/Treks", + URL = "https://trek.nasa.gov/moon", + License = "NASA/Treks", + Description = [[LRO_LROC_Image_Mosaic_26cm layers from NASA/Treks for Moon]] +} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_26cm/Apollo_11.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_26cm/Apollo_11.vrt new file mode 100644 index 0000000000..5172d0ab7a --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_26cm/Apollo_11.vrt @@ -0,0 +1,29 @@ + + GEOGCS["Moon 2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.0728836059570313e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.0728836059570313e-05 + + 0 + Gray + + Apollo_11.wms + 1 + + + + 0 + + + + Alpha + + Apollo_11.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_26cm_Apollo_11/apollo11_26cm_mosaic_byte_geo_1_2_highContrast.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_26cm/Apollo_11.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_26cm_Apollo_11/apollo11_26cm_mosaic_byte_geo_1_2_highContrast.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_26cm/Apollo_11.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_26cm_Apollo_11/LRO_LROC_Image_Mosaic_26cm_Apollo_11.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_26cm_Apollo_11/LRO_LROC_Image_Mosaic_26cm_Apollo_11.asset deleted file mode 100644 index 62d031d366..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_26cm_Apollo_11/LRO_LROC_Image_Mosaic_26cm_Apollo_11.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "apollo11_26cm_mosaic_byte_geo_1_2_highContrast", - Name = [[LRO LROC Image Mosaic 26cm, Apollo 11]], - FilePath = asset.localResource("apollo11_26cm_mosaic_byte_geo_1_2_highContrast.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Image Mosaic 26cm, Apollo 11]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=apollo11_26cm_mosaic_byte_geo_1_2_highContrast%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Image Mosaic 26cm, Apollo 11 layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_26cm_Apollo_11/apollo11_26cm_mosaic_byte_geo_1_2_highContrast.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_26cm_Apollo_11/apollo11_26cm_mosaic_byte_geo_1_2_highContrast.vrt deleted file mode 100644 index e896bc96d3..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_26cm_Apollo_11/apollo11_26cm_mosaic_byte_geo_1_2_highContrast.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["Moon 2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.0728836059570313e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.0728836059570313e-05 - - 0 - Gray - - apollo11_26cm_mosaic_byte_geo_1_2_highContrast.wms - 1 - - - - 0 - - - - Alpha - - apollo11_26cm_mosaic_byte_geo_1_2_highContrast.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_28cm.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_28cm.asset new file mode 100644 index 0000000000..f86537c2f3 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_28cm.asset @@ -0,0 +1,34 @@ +-- This file was automatically generated using a script found at +-- https://github.com/OpenSpace/scripts/treks-to-openspace. See the README.md file +-- in that repository for more information on how to run the script to update these +-- files. In particular in the case of errors, prefer to change that script rather +-- than the individual files + +local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier + +local treks_apollo14_28cm_mosaic_byte_geo_1_2_highContrast = { + Identifier = "apollo14_28cm_mosaic_byte_geo_1_2_highContrast", + Name = [[LRO LROC Image Mosaic 28cm, Apollo 14]], + FilePath = asset.localResource("LRO_LROC_Image_Mosaic_28cm/Apollo_14.vrt"), + Description = [[]] +} + +asset.onInitialize(function() + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_apollo14_28cm_mosaic_byte_geo_1_2_highContrast) +end) + +asset.onDeinitialize(function() + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_apollo14_28cm_mosaic_byte_geo_1_2_highContrast") +end) + +asset.export("apollo14_28cm_mosaic_byte_geo_1_2_highContrast", treks_apollo14_28cm_mosaic_byte_geo_1_2_highContrast) + + +asset.meta = { + Name = [[NASA Treks Layers for Moon LRO_LROC_Image_Mosaic_28cm], + Version = "1.0", + Author = "NASA/Treks", + URL = "https://trek.nasa.gov/moon", + License = "NASA/Treks", + Description = [[LRO_LROC_Image_Mosaic_28cm layers from NASA/Treks for Moon]] +} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_28cm/Apollo_14.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_28cm/Apollo_14.vrt new file mode 100644 index 0000000000..aa1e59ca68 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_28cm/Apollo_14.vrt @@ -0,0 +1,29 @@ + + GEOGCS["Moon 2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.0728836059570313e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.0728836059570313e-05 + + 0 + Gray + + Apollo_14.wms + 1 + + + + 0 + + + + Alpha + + Apollo_14.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_28cm_Apollo_14/apollo14_28cm_mosaic_byte_geo_1_2_highContrast.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_28cm/Apollo_14.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_28cm_Apollo_14/apollo14_28cm_mosaic_byte_geo_1_2_highContrast.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_28cm/Apollo_14.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_28cm_Apollo_14/LRO_LROC_Image_Mosaic_28cm_Apollo_14.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_28cm_Apollo_14/LRO_LROC_Image_Mosaic_28cm_Apollo_14.asset deleted file mode 100644 index 8653201828..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_28cm_Apollo_14/LRO_LROC_Image_Mosaic_28cm_Apollo_14.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "apollo14_28cm_mosaic_byte_geo_1_2_highContrast", - Name = [[LRO LROC Image Mosaic 28cm, Apollo 14]], - FilePath = asset.localResource("apollo14_28cm_mosaic_byte_geo_1_2_highContrast.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Image Mosaic 28cm, Apollo 14]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=apollo14_28cm_mosaic_byte_geo_1_2_highContrast%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Image Mosaic 28cm, Apollo 14 layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_28cm_Apollo_14/apollo14_28cm_mosaic_byte_geo_1_2_highContrast.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_28cm_Apollo_14/apollo14_28cm_mosaic_byte_geo_1_2_highContrast.vrt deleted file mode 100644 index 0d0cbc4f16..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_28cm_Apollo_14/apollo14_28cm_mosaic_byte_geo_1_2_highContrast.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["Moon 2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.0728836059570313e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.0728836059570313e-05 - - 0 - Gray - - apollo14_28cm_mosaic_byte_geo_1_2_highContrast.wms - 1 - - - - 0 - - - - Alpha - - apollo14_28cm_mosaic_byte_geo_1_2_highContrast.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Aitken_Crater/LRO_LROC_Image_Mosaic_Aitken_Crater.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Aitken_Crater/LRO_LROC_Image_Mosaic_Aitken_Crater.asset deleted file mode 100644 index fcd4d59be7..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Aitken_Crater/LRO_LROC_Image_Mosaic_Aitken_Crater.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Mosaic_17S173E_50cmp", - Name = [[LRO LROC Image Mosaic, Aitken Crater]], - FilePath = asset.localResource("LRO_NAC_Mosaic_17S173E_50cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Image Mosaic, Aitken Crater]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Mosaic_17S173E_50cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Image Mosaic, Aitken Crater layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Aitken_Crater/LRO_NAC_Mosaic_17S173E_50cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Aitken_Crater/LRO_NAC_Mosaic_17S173E_50cmp.vrt deleted file mode 100644 index 00d83397a5..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Aitken_Crater/LRO_NAC_Mosaic_17S173E_50cmp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-17],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 2.1457672119140625e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.1457672119140625e-05 - - 0 - Gray - - LRO_NAC_Mosaic_17S173E_50cmp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Mosaic_17S173E_50cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Alphonsus/LRO_LROC_Image_Mosaic_Alphonsus.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Alphonsus/LRO_LROC_Image_Mosaic_Alphonsus.asset deleted file mode 100644 index 6b539676fb..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Alphonsus/LRO_LROC_Image_Mosaic_Alphonsus.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Mosaic_13S358E_50cmp", - Name = [[LRO LROC Image Mosaic, Alphonsus]], - FilePath = asset.localResource("LRO_NAC_Mosaic_13S358E_50cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Image Mosaic, Alphonsus]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Mosaic_13S358E_50cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Image Mosaic, Alphonsus layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Alphonsus/LRO_NAC_Mosaic_13S358E_50cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Alphonsus/LRO_NAC_Mosaic_13S358E_50cmp.vrt deleted file mode 100644 index 7d9f41dc2e..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Alphonsus/LRO_NAC_Mosaic_13S358E_50cmp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-13],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 2.1457672119140625e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.1457672119140625e-05 - - 0 - Gray - - LRO_NAC_Mosaic_13S358E_50cmp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Mosaic_13S358E_50cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Apollo_15/LRO_LROC_Image_Mosaic_Apollo_15.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Apollo_15/LRO_LROC_Image_Mosaic_Apollo_15.asset deleted file mode 100644 index 7127a03f2e..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Apollo_15/LRO_LROC_Image_Mosaic_Apollo_15.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Mosaic_26N004E_50cmp", - Name = [[LRO LROC Image Mosaic, Apollo 15]], - FilePath = asset.localResource("LRO_NAC_Mosaic_26N004E_50cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Image Mosaic, Apollo 15]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Mosaic_26N004E_50cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Image Mosaic, Apollo 15 layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Apollo_15/LRO_NAC_Mosaic_26N004E_50cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Apollo_15/LRO_NAC_Mosaic_26N004E_50cmp.vrt deleted file mode 100644 index 7c1f920c02..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Apollo_15/LRO_NAC_Mosaic_26N004E_50cmp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.1457672119140625e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.1457672119140625e-05 - - 0 - Gray - - LRO_NAC_Mosaic_26N004E_50cmp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Mosaic_26N004E_50cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Apollo_16/LRO_LROC_Image_Mosaic_Apollo_16.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Apollo_16/LRO_LROC_Image_Mosaic_Apollo_16.asset deleted file mode 100644 index 1938134325..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Apollo_16/LRO_LROC_Image_Mosaic_Apollo_16.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Mosaic_09S015E_50cmp", - Name = [[LRO LROC Image Mosaic, Apollo 16]], - FilePath = asset.localResource("LRO_NAC_Mosaic_09S015E_50cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Image Mosaic, Apollo 16]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Mosaic_09S015E_50cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Image Mosaic, Apollo 16 layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Apollo_16/LRO_NAC_Mosaic_09S015E_50cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Apollo_16/LRO_NAC_Mosaic_09S015E_50cmp.vrt deleted file mode 100644 index c347e52389..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Apollo_16/LRO_NAC_Mosaic_09S015E_50cmp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.0728836059570313e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.0728836059570313e-05 - - 0 - Gray - - LRO_NAC_Mosaic_09S015E_50cmp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Mosaic_09S015E_50cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Aristarchus_1/LRO_LROC_Image_Mosaic_Aristarchus_1.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Aristarchus_1/LRO_LROC_Image_Mosaic_Aristarchus_1.asset deleted file mode 100644 index ba54ba807e..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Aristarchus_1/LRO_LROC_Image_Mosaic_Aristarchus_1.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Mosaic_25N311E_50cmp", - Name = [[LRO LROC Image Mosaic, Aristarchus 1]], - FilePath = asset.localResource("LRO_NAC_Mosaic_25N311E_50cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Image Mosaic, Aristarchus 1]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Mosaic_25N311E_50cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Image Mosaic, Aristarchus 1 layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Aristarchus_1/LRO_NAC_Mosaic_25N311E_50cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Aristarchus_1/LRO_NAC_Mosaic_25N311E_50cmp.vrt deleted file mode 100644 index 8910441ca7..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Aristarchus_1/LRO_NAC_Mosaic_25N311E_50cmp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.1457672119140625e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.1457672119140625e-05 - - 0 - Gray - - LRO_NAC_Mosaic_25N311E_50cmp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Mosaic_25N311E_50cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Aristarchus_2/LRO_LROC_Image_Mosaic_Aristarchus_2.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Aristarchus_2/LRO_LROC_Image_Mosaic_Aristarchus_2.asset deleted file mode 100644 index 93ca5c4cf1..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Aristarchus_2/LRO_LROC_Image_Mosaic_Aristarchus_2.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Mosaic_28N307E_50cmp", - Name = [[LRO LROC Image Mosaic, Aristarchus 2]], - FilePath = asset.localResource("LRO_NAC_Mosaic_28N307E_50cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Image Mosaic, Aristarchus 2]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Mosaic_28N307E_50cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Image Mosaic, Aristarchus 2 layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Aristarchus_2/LRO_NAC_Mosaic_28N307E_50cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Aristarchus_2/LRO_NAC_Mosaic_28N307E_50cmp.vrt deleted file mode 100644 index bfdde10a21..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Aristarchus_2/LRO_NAC_Mosaic_28N307E_50cmp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.1457672119140625e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.1457672119140625e-05 - - 0 - Gray - - LRO_NAC_Mosaic_28N307E_50cmp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Mosaic_28N307E_50cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Balmer_Basin/LRO_LROC_Image_Mosaic_Balmer_Basin.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Balmer_Basin/LRO_LROC_Image_Mosaic_Balmer_Basin.asset deleted file mode 100644 index 87435011a6..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Balmer_Basin/LRO_LROC_Image_Mosaic_Balmer_Basin.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Mosaic_19S070E_50cmp", - Name = [[LRO LROC Image Mosaic, Balmer Basin]], - FilePath = asset.localResource("LRO_NAC_Mosaic_19S070E_50cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Image Mosaic, Balmer Basin]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Mosaic_19S070E_50cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Image Mosaic, Balmer Basin layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Balmer_Basin/LRO_NAC_Mosaic_19S070E_50cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Balmer_Basin/LRO_NAC_Mosaic_19S070E_50cmp.vrt deleted file mode 100644 index 9fe63623c4..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Balmer_Basin/LRO_NAC_Mosaic_19S070E_50cmp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-19],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 2.1457672119140625e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.1457672119140625e-05 - - 0 - Gray - - LRO_NAC_Mosaic_19S070E_50cmp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Mosaic_19S070E_50cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Compton_Belkovich_Th_Anomaly/LRO_LROC_Image_Mosaic_Compton_Belkovich_Th_Anomaly.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Compton_Belkovich_Th_Anomaly/LRO_LROC_Image_Mosaic_Compton_Belkovich_Th_Anomaly.asset deleted file mode 100644 index 99931a0de4..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Compton_Belkovich_Th_Anomaly/LRO_LROC_Image_Mosaic_Compton_Belkovich_Th_Anomaly.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Mosaic_61N099E_50cmp", - Name = [[LRO LROC Image Mosaic, Compton Belkovich Th Anomaly]], - FilePath = asset.localResource("LRO_NAC_Mosaic_61N099E_50cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Image Mosaic, Compton Belkovich Th Anomaly]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Mosaic_61N099E_50cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Image Mosaic, Compton Belkovich Th Anomaly layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Compton_Belkovich_Th_Anomaly/LRO_NAC_Mosaic_61N099E_50cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Compton_Belkovich_Th_Anomaly/LRO_NAC_Mosaic_61N099E_50cmp.vrt deleted file mode 100644 index 287127175a..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Compton_Belkovich_Th_Anomaly/LRO_NAC_Mosaic_61N099E_50cmp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",61],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 2.1457672119140625e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.1457672119140625e-05 - - 0 - Gray - - LRO_NAC_Mosaic_61N099E_50cmp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Mosaic_61N099E_50cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Flamsteed_Crater/LRO_LROC_Image_Mosaic_Flamsteed_Crater.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Flamsteed_Crater/LRO_LROC_Image_Mosaic_Flamsteed_Crater.asset deleted file mode 100644 index 7732b65a8d..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Flamsteed_Crater/LRO_LROC_Image_Mosaic_Flamsteed_Crater.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Mosaic_02S317E_50cmp", - Name = [[LRO LROC Image Mosaic, Flamsteed Crater]], - FilePath = asset.localResource("LRO_NAC_Mosaic_02S317E_50cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Image Mosaic, Flamsteed Crater]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Mosaic_02S317E_50cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Image Mosaic, Flamsteed Crater layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Flamsteed_Crater/LRO_NAC_Mosaic_02S317E_50cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Flamsteed_Crater/LRO_NAC_Mosaic_02S317E_50cmp.vrt deleted file mode 100644 index 565d8d4b85..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Flamsteed_Crater/LRO_NAC_Mosaic_02S317E_50cmp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 2.1457672119140625e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.1457672119140625e-05 - - 0 - Gray - - LRO_NAC_Mosaic_02S317E_50cmp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Mosaic_02S317E_50cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Gruithuisen_Domes/LRO_LROC_Image_Mosaic_Gruithuisen_Domes.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Gruithuisen_Domes/LRO_LROC_Image_Mosaic_Gruithuisen_Domes.asset deleted file mode 100644 index 2e63e39978..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Gruithuisen_Domes/LRO_LROC_Image_Mosaic_Gruithuisen_Domes.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Mosaic_36N320E_50cmp", - Name = [[LRO LROC Image Mosaic, Gruithuisen Domes]], - FilePath = asset.localResource("LRO_NAC_Mosaic_36N320E_50cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Image Mosaic, Gruithuisen Domes]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Mosaic_36N320E_50cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Image Mosaic, Gruithuisen Domes layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Gruithuisen_Domes/LRO_NAC_Mosaic_36N320E_50cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Gruithuisen_Domes/LRO_NAC_Mosaic_36N320E_50cmp.vrt deleted file mode 100644 index ba0e2b83a2..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Gruithuisen_Domes/LRO_NAC_Mosaic_36N320E_50cmp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.1457672119140625e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.1457672119140625e-05 - - 0 - Gray - - LRO_NAC_Mosaic_36N320E_50cmp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Mosaic_36N320E_50cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Hertzsprung/LRO_LROC_Image_Mosaic_Hertzsprung.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Hertzsprung/LRO_LROC_Image_Mosaic_Hertzsprung.asset deleted file mode 100644 index 45971fac0c..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Hertzsprung/LRO_LROC_Image_Mosaic_Hertzsprung.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Mosaic_00N234E_50cmp", - Name = [[LRO LROC Image Mosaic, Hertzsprung]], - FilePath = asset.localResource("LRO_NAC_Mosaic_00N234E_50cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Image Mosaic, Hertzsprung]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Mosaic_00N234E_50cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Image Mosaic, Hertzsprung layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Hertzsprung/LRO_NAC_Mosaic_00N234E_50cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Hertzsprung/LRO_NAC_Mosaic_00N234E_50cmp.vrt deleted file mode 100644 index 81ea448d9b..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Hertzsprung/LRO_NAC_Mosaic_00N234E_50cmp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.1457672119140625e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.1457672119140625e-05 - - 0 - Gray - - LRO_NAC_Mosaic_00N234E_50cmp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Mosaic_00N234E_50cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Hortensius_Domes/LRO_LROC_Image_Mosaic_Hortensius_Domes.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Hortensius_Domes/LRO_LROC_Image_Mosaic_Hortensius_Domes.asset deleted file mode 100644 index da22c767b8..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Hortensius_Domes/LRO_LROC_Image_Mosaic_Hortensius_Domes.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Mosaic_08N332E_50cmp", - Name = [[LRO LROC Image Mosaic, Hortensius Domes]], - FilePath = asset.localResource("LRO_NAC_Mosaic_08N332E_50cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Image Mosaic, Hortensius Domes]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Mosaic_08N332E_50cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Image Mosaic, Hortensius Domes layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Hortensius_Domes/LRO_NAC_Mosaic_08N332E_50cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Hortensius_Domes/LRO_NAC_Mosaic_08N332E_50cmp.vrt deleted file mode 100644 index c29a380d2f..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Hortensius_Domes/LRO_NAC_Mosaic_08N332E_50cmp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.1457672119140625e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.1457672119140625e-05 - - 0 - Gray - - LRO_NAC_Mosaic_08N332E_50cmp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Mosaic_08N332E_50cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Humboldtianum_Basin/LRO_LROC_Image_Mosaic_Humboldtianum_Basin.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Humboldtianum_Basin/LRO_LROC_Image_Mosaic_Humboldtianum_Basin.asset deleted file mode 100644 index f9859b6a10..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Humboldtianum_Basin/LRO_LROC_Image_Mosaic_Humboldtianum_Basin.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Mosaic_55N077E_50cmp", - Name = [[LRO LROC Image Mosaic, Humboldtianum Basin]], - FilePath = asset.localResource("LRO_NAC_Mosaic_55N077E_50cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Image Mosaic, Humboldtianum Basin]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Mosaic_55N077E_50cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Image Mosaic, Humboldtianum Basin layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Humboldtianum_Basin/LRO_NAC_Mosaic_55N077E_50cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Humboldtianum_Basin/LRO_NAC_Mosaic_55N077E_50cmp.vrt deleted file mode 100644 index 36b83da67e..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Humboldtianum_Basin/LRO_NAC_Mosaic_55N077E_50cmp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.1457672119140625e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.1457672119140625e-05 - - 0 - Gray - - LRO_NAC_Mosaic_55N077E_50cmp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Mosaic_55N077E_50cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Ina_D-Caldera/LRO_LROC_Image_Mosaic_Ina_D-Caldera.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Ina_D-Caldera/LRO_LROC_Image_Mosaic_Ina_D-Caldera.asset deleted file mode 100644 index bad1ac8770..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Ina_D-Caldera/LRO_LROC_Image_Mosaic_Ina_D-Caldera.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Mosaic_19N005E_50cmp", - Name = [[LRO LROC Image Mosaic, Ina D-Caldera]], - FilePath = asset.localResource("LRO_NAC_Mosaic_19N005E_50cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Image Mosaic, Ina D-Caldera]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Mosaic_19N005E_50cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Image Mosaic, Ina D-Caldera layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Ina_D-Caldera/LRO_NAC_Mosaic_19N005E_50cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Ina_D-Caldera/LRO_NAC_Mosaic_19N005E_50cmp.vrt deleted file mode 100644 index 4c1dfe7b64..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Ina_D-Caldera/LRO_NAC_Mosaic_19N005E_50cmp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",19],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 2.1457672119140625e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.1457672119140625e-05 - - 0 - Gray - - LRO_NAC_Mosaic_19N005E_50cmp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Mosaic_19N005E_50cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_King_Crater/LRO_LROC_Image_Mosaic_King_Crater.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_King_Crater/LRO_LROC_Image_Mosaic_King_Crater.asset deleted file mode 100644 index 818d335f9d..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_King_Crater/LRO_LROC_Image_Mosaic_King_Crater.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Mosaic_06N120E_50cmp", - Name = [[LRO LROC Image Mosaic, King Crater]], - FilePath = asset.localResource("LRO_NAC_Mosaic_06N120E_50cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Image Mosaic, King Crater]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Mosaic_06N120E_50cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Image Mosaic, King Crater layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_King_Crater/LRO_NAC_Mosaic_06N120E_50cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_King_Crater/LRO_NAC_Mosaic_06N120E_50cmp.vrt deleted file mode 100644 index b44b4f1376..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_King_Crater/LRO_NAC_Mosaic_06N120E_50cmp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.1457672119140625e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.1457672119140625e-05 - - 0 - Gray - - LRO_NAC_Mosaic_06N120E_50cmp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Mosaic_06N120E_50cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Lichtenberg_Crater/LRO_LROC_Image_Mosaic_Lichtenberg_Crater.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Lichtenberg_Crater/LRO_LROC_Image_Mosaic_Lichtenberg_Crater.asset deleted file mode 100644 index d89ccc90e4..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Lichtenberg_Crater/LRO_LROC_Image_Mosaic_Lichtenberg_Crater.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Mosaic_32N292E_50cmp", - Name = [[LRO LROC Image Mosaic, Lichtenberg Crater]], - FilePath = asset.localResource("LRO_NAC_Mosaic_32N292E_50cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Image Mosaic, Lichtenberg Crater]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Mosaic_32N292E_50cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Image Mosaic, Lichtenberg Crater layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Lichtenberg_Crater/LRO_NAC_Mosaic_32N292E_50cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Lichtenberg_Crater/LRO_NAC_Mosaic_32N292E_50cmp.vrt deleted file mode 100644 index 1eb400a1d4..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Lichtenberg_Crater/LRO_NAC_Mosaic_32N292E_50cmp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.1457672119140625e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.1457672119140625e-05 - - 0 - Gray - - LRO_NAC_Mosaic_32N292E_50cmp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Mosaic_32N292E_50cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Mare_Ingenii/LRO_LROC_Image_Mosaic_Mare_Ingenii.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Mare_Ingenii/LRO_LROC_Image_Mosaic_Mare_Ingenii.asset deleted file mode 100644 index 48092b34fa..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Mare_Ingenii/LRO_LROC_Image_Mosaic_Mare_Ingenii.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Mosaic_36S164E_70cmp", - Name = [[LRO LROC Image Mosaic, Mare Ingenii]], - FilePath = asset.localResource("LRO_NAC_Mosaic_36S164E_70cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Image Mosaic, Mare Ingenii]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Mosaic_36S164E_70cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Image Mosaic, Mare Ingenii layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Mare_Ingenii/LRO_NAC_Mosaic_36S164E_70cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Mare_Ingenii/LRO_NAC_Mosaic_36S164E_70cmp.vrt deleted file mode 100644 index d742cec5df..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Mare_Ingenii/LRO_NAC_Mosaic_36S164E_70cmp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",-36],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 2.1457672119140625e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.1457672119140625e-05 - - 0 - Gray - - LRO_NAC_Mosaic_36S164E_70cmp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Mosaic_36S164E_70cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Mare_Moscoviense/LRO_LROC_Image_Mosaic_Mare_Moscoviense.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Mare_Moscoviense/LRO_LROC_Image_Mosaic_Mare_Moscoviense.asset deleted file mode 100644 index 4258c14224..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Mare_Moscoviense/LRO_LROC_Image_Mosaic_Mare_Moscoviense.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Mosaic_26N150E_50cmp", - Name = [[LRO LROC Image Mosaic, Mare Moscoviense]], - FilePath = asset.localResource("LRO_NAC_Mosaic_26N150E_50cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Image Mosaic, Mare Moscoviense]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Mosaic_26N150E_50cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Image Mosaic, Mare Moscoviense layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Mare_Moscoviense/LRO_NAC_Mosaic_26N150E_50cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Mare_Moscoviense/LRO_NAC_Mosaic_26N150E_50cmp.vrt deleted file mode 100644 index ce70550886..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Mare_Moscoviense/LRO_NAC_Mosaic_26N150E_50cmp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",26],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 2.1457672119140625e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.1457672119140625e-05 - - 0 - Gray - - LRO_NAC_Mosaic_26N150E_50cmp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Mosaic_26N150E_50cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Mare_Smythii/LRO_LROC_Image_Mosaic_Mare_Smythii.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Mare_Smythii/LRO_LROC_Image_Mosaic_Mare_Smythii.asset deleted file mode 100644 index 2e307aef4a..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Mare_Smythii/LRO_LROC_Image_Mosaic_Mare_Smythii.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Mosaic_02N085E_50cmp", - Name = [[LRO LROC Image Mosaic, Mare Smythii]], - FilePath = asset.localResource("LRO_NAC_Mosaic_02N085E_50cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Image Mosaic, Mare Smythii]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Mosaic_02N085E_50cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Image Mosaic, Mare Smythii layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Mare_Smythii/LRO_NAC_Mosaic_02N085E_50cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Mare_Smythii/LRO_NAC_Mosaic_02N085E_50cmp.vrt deleted file mode 100644 index 5d2f3c2bc9..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Mare_Smythii/LRO_NAC_Mosaic_02N085E_50cmp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.1457672119140625e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.1457672119140625e-05 - - 0 - Gray - - LRO_NAC_Mosaic_02N085E_50cmp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Mosaic_02N085E_50cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Mare_Tranquillitatis/LRO_LROC_Image_Mosaic_Mare_Tranquillitatis.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Mare_Tranquillitatis/LRO_LROC_Image_Mosaic_Mare_Tranquillitatis.asset deleted file mode 100644 index e120e87ea6..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Mare_Tranquillitatis/LRO_LROC_Image_Mosaic_Mare_Tranquillitatis.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Mosaic_07N022E_50cmp", - Name = [[LRO LROC Image Mosaic, Mare Tranquillitatis]], - FilePath = asset.localResource("LRO_NAC_Mosaic_07N022E_50cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Image Mosaic, Mare Tranquillitatis]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Mosaic_07N022E_50cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Image Mosaic, Mare Tranquillitatis layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Mare_Tranquillitatis/LRO_NAC_Mosaic_07N022E_50cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Mare_Tranquillitatis/LRO_NAC_Mosaic_07N022E_50cmp.vrt deleted file mode 100644 index a942b4560d..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Mare_Tranquillitatis/LRO_NAC_Mosaic_07N022E_50cmp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.1457672119140625e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.1457672119140625e-05 - - 0 - Gray - - LRO_NAC_Mosaic_07N022E_50cmp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Mosaic_07N022E_50cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Marius_Hills/LRO_LROC_Image_Mosaic_Marius_Hills.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Marius_Hills/LRO_LROC_Image_Mosaic_Marius_Hills.asset deleted file mode 100644 index 06b4028364..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Marius_Hills/LRO_LROC_Image_Mosaic_Marius_Hills.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Mosaic_14N304E_50cmp", - Name = [[LRO LROC Image Mosaic, Marius Hills]], - FilePath = asset.localResource("LRO_NAC_Mosaic_14N304E_50cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Image Mosaic, Marius Hills]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Mosaic_14N304E_50cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Image Mosaic, Marius Hills layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Marius_Hills/LRO_NAC_Mosaic_14N304E_50cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Marius_Hills/LRO_NAC_Mosaic_14N304E_50cmp.vrt deleted file mode 100644 index 9dd9da753d..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Marius_Hills/LRO_NAC_Mosaic_14N304E_50cmp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",14],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 2.1457672119140625e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.1457672119140625e-05 - - 0 - Gray - - LRO_NAC_Mosaic_14N304E_50cmp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Mosaic_14N304E_50cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Montes_Pyrenaeus/LRO_LROC_Image_Mosaic_Montes_Pyrenaeus.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Montes_Pyrenaeus/LRO_LROC_Image_Mosaic_Montes_Pyrenaeus.asset deleted file mode 100644 index 3d907f958a..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Montes_Pyrenaeus/LRO_LROC_Image_Mosaic_Montes_Pyrenaeus.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Mosaic_16S041E_50cmp", - Name = [[LRO LROC Image Mosaic, Montes Pyrenaeus]], - FilePath = asset.localResource("LRO_NAC_Mosaic_16S041E_50cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Image Mosaic, Montes Pyrenaeus]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Mosaic_16S041E_50cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Image Mosaic, Montes Pyrenaeus layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Montes_Pyrenaeus/LRO_NAC_Mosaic_16S041E_50cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Montes_Pyrenaeus/LRO_NAC_Mosaic_16S041E_50cmp.vrt deleted file mode 100644 index b7a26f93e8..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Montes_Pyrenaeus/LRO_NAC_Mosaic_16S041E_50cmp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.1457672119140625e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.1457672119140625e-05 - - 0 - Gray - - LRO_NAC_Mosaic_16S041E_50cmp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Mosaic_16S041E_50cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Murchison_Crater/LRO_LROC_Image_Mosaic_Murchison_Crater.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Murchison_Crater/LRO_LROC_Image_Mosaic_Murchison_Crater.asset deleted file mode 100644 index 353ae28763..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Murchison_Crater/LRO_LROC_Image_Mosaic_Murchison_Crater.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Mosaic_05N000E_50cmp", - Name = [[LRO LROC Image Mosaic, Murchison Crater]], - FilePath = asset.localResource("LRO_NAC_Mosaic_05N000E_50cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Image Mosaic, Murchison Crater]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Mosaic_05N000E_50cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Image Mosaic, Murchison Crater layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Murchison_Crater/LRO_NAC_Mosaic_05N000E_50cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Murchison_Crater/LRO_NAC_Mosaic_05N000E_50cmp.vrt deleted file mode 100644 index d4816f5412..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Murchison_Crater/LRO_NAC_Mosaic_05N000E_50cmp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.1457672119140625e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.1457672119140625e-05 - - 0 - Gray - - LRO_NAC_Mosaic_05N000E_50cmp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Mosaic_05N000E_50cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Orientale_1/LRO_LROC_Image_Mosaic_Orientale_1.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Orientale_1/LRO_LROC_Image_Mosaic_Orientale_1.asset deleted file mode 100644 index e0f09706e5..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Orientale_1/LRO_LROC_Image_Mosaic_Orientale_1.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Mosaic_26S265E_50cmp", - Name = [[LRO LROC Image Mosaic, Orientale 1]], - FilePath = asset.localResource("LRO_NAC_Mosaic_26S265E_50cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Image Mosaic, Orientale 1]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Mosaic_26S265E_50cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Image Mosaic, Orientale 1 layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Orientale_1/LRO_NAC_Mosaic_26S265E_50cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Orientale_1/LRO_NAC_Mosaic_26S265E_50cmp.vrt deleted file mode 100644 index 0b2798a11d..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Orientale_1/LRO_NAC_Mosaic_26S265E_50cmp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.1457672119140625e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.1457672119140625e-05 - - 0 - Gray - - LRO_NAC_Mosaic_26S265E_50cmp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Mosaic_26S265E_50cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Reiner_Gamma/LRO_LROC_Image_Mosaic_Reiner_Gamma.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Reiner_Gamma/LRO_LROC_Image_Mosaic_Reiner_Gamma.asset deleted file mode 100644 index 45cd3879ba..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Reiner_Gamma/LRO_LROC_Image_Mosaic_Reiner_Gamma.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Mosaic_07N301E_50cmp", - Name = [[LRO LROC Image Mosaic, Reiner Gamma]], - FilePath = asset.localResource("LRO_NAC_Mosaic_07N301E_50cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Image Mosaic, Reiner Gamma]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Mosaic_07N301E_50cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Image Mosaic, Reiner Gamma layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Reiner_Gamma/LRO_NAC_Mosaic_07N301E_50cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Reiner_Gamma/LRO_NAC_Mosaic_07N301E_50cmp.vrt deleted file mode 100644 index c95713d98d..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Reiner_Gamma/LRO_NAC_Mosaic_07N301E_50cmp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",7],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 2.1457672119140625e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.1457672119140625e-05 - - 0 - Gray - - LRO_NAC_Mosaic_07N301E_50cmp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Mosaic_07N301E_50cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Riccioli_Crater/LRO_LROC_Image_Mosaic_Riccioli_Crater.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Riccioli_Crater/LRO_LROC_Image_Mosaic_Riccioli_Crater.asset deleted file mode 100644 index 9e01d2a49a..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Riccioli_Crater/LRO_LROC_Image_Mosaic_Riccioli_Crater.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Mosaic_03S286E_50cmp", - Name = [[LRO LROC Image Mosaic, Riccioli Crater]], - FilePath = asset.localResource("LRO_NAC_Mosaic_03S286E_50cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Image Mosaic, Riccioli Crater]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Mosaic_03S286E_50cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Image Mosaic, Riccioli Crater layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Riccioli_Crater/LRO_NAC_Mosaic_03S286E_50cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Riccioli_Crater/LRO_NAC_Mosaic_03S286E_50cmp.vrt deleted file mode 100644 index 9dd6861162..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Riccioli_Crater/LRO_NAC_Mosaic_03S286E_50cmp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.1457672119140625e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.1457672119140625e-05 - - 0 - Gray - - LRO_NAC_Mosaic_03S286E_50cmp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Mosaic_03S286E_50cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Rima_Bode/LRO_LROC_Image_Mosaic_Rima_Bode.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Rima_Bode/LRO_LROC_Image_Mosaic_Rima_Bode.asset deleted file mode 100644 index 24549bf5ee..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Rima_Bode/LRO_LROC_Image_Mosaic_Rima_Bode.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Mosaic_13N356E_50cmp", - Name = [[LRO LROC Image Mosaic, Rima Bode]], - FilePath = asset.localResource("LRO_NAC_Mosaic_13N356E_50cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Image Mosaic, Rima Bode]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Mosaic_13N356E_50cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Image Mosaic, Rima Bode layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Rima_Bode/LRO_NAC_Mosaic_13N356E_50cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Rima_Bode/LRO_NAC_Mosaic_13N356E_50cmp.vrt deleted file mode 100644 index feeffc8321..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Rima_Bode/LRO_NAC_Mosaic_13N356E_50cmp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",13],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 2.1457672119140625e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.1457672119140625e-05 - - 0 - Gray - - LRO_NAC_Mosaic_13N356E_50cmp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Mosaic_13N356E_50cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Rimae_Prinz/LRO_LROC_Image_Mosaic_Rimae_Prinz.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Rimae_Prinz/LRO_LROC_Image_Mosaic_Rimae_Prinz.asset deleted file mode 100644 index db4561d842..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Rimae_Prinz/LRO_LROC_Image_Mosaic_Rimae_Prinz.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Mosaic_27N318E_50cmp", - Name = [[LRO LROC Image Mosaic, Rimae Prinz]], - FilePath = asset.localResource("LRO_NAC_Mosaic_27N318E_50cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Image Mosaic, Rimae Prinz]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Mosaic_27N318E_50cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Image Mosaic, Rimae Prinz layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Rimae_Prinz/LRO_NAC_Mosaic_27N318E_50cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Rimae_Prinz/LRO_NAC_Mosaic_27N318E_50cmp.vrt deleted file mode 100644 index 1248c99ca1..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Rimae_Prinz/LRO_NAC_Mosaic_27N318E_50cmp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",27],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 2.1457672119140625e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.1457672119140625e-05 - - 0 - Gray - - LRO_NAC_Mosaic_27N318E_50cmp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Mosaic_27N318E_50cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_South_Pole-Aitken_Basin_Interior/LRO_LROC_Image_Mosaic_South_Pole-Aitken_Basin_Interior.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_South_Pole-Aitken_Basin_Interior/LRO_LROC_Image_Mosaic_South_Pole-Aitken_Basin_Interior.asset deleted file mode 100644 index 501aeec488..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_South_Pole-Aitken_Basin_Interior/LRO_LROC_Image_Mosaic_South_Pole-Aitken_Basin_Interior.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Mosaic_60S200E_50cmp", - Name = [[LRO LROC Image Mosaic, South Pole-Aitken Basin Interior]], - FilePath = asset.localResource("LRO_NAC_Mosaic_60S200E_50cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Image Mosaic, South Pole-Aitken Basin Interior]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Mosaic_60S200E_50cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Image Mosaic, South Pole-Aitken Basin Interior layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_South_Pole-Aitken_Basin_Interior/LRO_NAC_Mosaic_60S200E_50cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_South_Pole-Aitken_Basin_Interior/LRO_NAC_Mosaic_60S200E_50cmp.vrt deleted file mode 100644 index 28808461de..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_South_Pole-Aitken_Basin_Interior/LRO_NAC_Mosaic_60S200E_50cmp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-60],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 2.1457672119140625e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.1457672119140625e-05 - - 0 - Gray - - LRO_NAC_Mosaic_60S200E_50cmp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Mosaic_60S200E_50cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_South_Pole-Aitken_Rim/LRO_LROC_Image_Mosaic_South_Pole-Aitken_Rim.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_South_Pole-Aitken_Rim/LRO_LROC_Image_Mosaic_South_Pole-Aitken_Rim.asset deleted file mode 100644 index c436e2fdcf..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_South_Pole-Aitken_Rim/LRO_LROC_Image_Mosaic_South_Pole-Aitken_Rim.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Mosaic_51S171E_60cmp", - Name = [[LRO LROC Image Mosaic, South Pole-Aitken Rim]], - FilePath = asset.localResource("LRO_NAC_Mosaic_51S171E_60cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Image Mosaic, South Pole-Aitken Rim]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Mosaic_51S171E_60cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Image Mosaic, South Pole-Aitken Rim layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_South_Pole-Aitken_Rim/LRO_NAC_Mosaic_51S171E_60cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_South_Pole-Aitken_Rim/LRO_NAC_Mosaic_51S171E_60cmp.vrt deleted file mode 100644 index 2ba2536fe1..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_South_Pole-Aitken_Rim/LRO_NAC_Mosaic_51S171E_60cmp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",-51],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 2.1457672119140625e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.1457672119140625e-05 - - 0 - Gray - - LRO_NAC_Mosaic_51S171E_60cmp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Mosaic_51S171E_60cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Stratton_(Dewar)/LRO_LROC_Image_Mosaic_Stratton_(Dewar).asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Stratton_(Dewar)/LRO_LROC_Image_Mosaic_Stratton_(Dewar).asset deleted file mode 100644 index 2fba64728d..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Stratton_(Dewar)/LRO_LROC_Image_Mosaic_Stratton_(Dewar).asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Mosaic_02S167E_50cmp", - Name = [[LRO LROC Image Mosaic, Stratton (Dewar)]], - FilePath = asset.localResource("LRO_NAC_Mosaic_02S167E_50cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Image Mosaic, Stratton (Dewar)]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Mosaic_02S167E_50cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Image Mosaic, Stratton (Dewar) layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Stratton_(Dewar)/LRO_NAC_Mosaic_02S167E_50cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Stratton_(Dewar)/LRO_NAC_Mosaic_02S167E_50cmp.vrt deleted file mode 100644 index a866773996..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Stratton_(Dewar)/LRO_NAC_Mosaic_02S167E_50cmp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-2],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 2.1457672119140625e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.1457672119140625e-05 - - 0 - Gray - - LRO_NAC_Mosaic_02S167E_50cmp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Mosaic_02S167E_50cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Sulpicius_Gallus/LRO_LROC_Image_Mosaic_Sulpicius_Gallus.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Sulpicius_Gallus/LRO_LROC_Image_Mosaic_Sulpicius_Gallus.asset deleted file mode 100644 index cbb53f7a06..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Sulpicius_Gallus/LRO_LROC_Image_Mosaic_Sulpicius_Gallus.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Mosaic_20N010E_60cmp", - Name = [[LRO LROC Image Mosaic, Sulpicius Gallus]], - FilePath = asset.localResource("LRO_NAC_Mosaic_20N010E_60cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Image Mosaic, Sulpicius Gallus]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Mosaic_20N010E_60cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Image Mosaic, Sulpicius Gallus layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Sulpicius_Gallus/LRO_NAC_Mosaic_20N010E_60cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Sulpicius_Gallus/LRO_NAC_Mosaic_20N010E_60cmp.vrt deleted file mode 100644 index 67b8e5aeb7..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Sulpicius_Gallus/LRO_NAC_Mosaic_20N010E_60cmp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],PARAMETER["standard_parallel_1",20],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 2.1457672119140625e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.1457672119140625e-05 - - 0 - Gray - - LRO_NAC_Mosaic_20N010E_60cmp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Mosaic_20N010E_60cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Tsiolkovskiy_Crater/LRO_LROC_Image_Mosaic_Tsiolkovskiy_Crater.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Tsiolkovskiy_Crater/LRO_LROC_Image_Mosaic_Tsiolkovskiy_Crater.asset deleted file mode 100644 index a204ecd38b..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Tsiolkovskiy_Crater/LRO_LROC_Image_Mosaic_Tsiolkovskiy_Crater.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Mosaic_19S129E_50cmp", - Name = [[LRO LROC Image Mosaic, Tsiolkovskiy Crater]], - FilePath = asset.localResource("LRO_NAC_Mosaic_19S129E_50cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Image Mosaic, Tsiolkovskiy Crater]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Mosaic_19S129E_50cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Image Mosaic, Tsiolkovskiy Crater layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Tsiolkovskiy_Crater/LRO_NAC_Mosaic_19S129E_50cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Tsiolkovskiy_Crater/LRO_NAC_Mosaic_19S129E_50cmp.vrt deleted file mode 100644 index 906f8c952a..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Tsiolkovskiy_Crater/LRO_NAC_Mosaic_19S129E_50cmp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.1457672119140625e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.1457672119140625e-05 - - 0 - Gray - - LRO_NAC_Mosaic_19S129E_50cmp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Mosaic_19S129E_50cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Tycho_Crater/LRO_LROC_Image_Mosaic_Tycho_Crater.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Tycho_Crater/LRO_LROC_Image_Mosaic_Tycho_Crater.asset deleted file mode 100644 index 4d4d12017a..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Tycho_Crater/LRO_LROC_Image_Mosaic_Tycho_Crater.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Mosaic_43S349E_50cmp", - Name = [[LRO LROC Image Mosaic, Tycho Crater]], - FilePath = asset.localResource("LRO_NAC_Mosaic_43S349E_50cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Image Mosaic, Tycho Crater]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Mosaic_43S349E_50cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Image Mosaic, Tycho Crater layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Tycho_Crater/LRO_NAC_Mosaic_43S349E_50cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Tycho_Crater/LRO_NAC_Mosaic_43S349E_50cmp.vrt deleted file mode 100644 index ece8dd693a..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Image_Mosaic_Tycho_Crater/LRO_NAC_Mosaic_43S349E_50cmp.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - PROJCS["Equirectangular MOON",GEOGCS["GCS_MOON",DATUM["D_MOON",SPHEROID["MOON_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",-43],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 2.1457672119140625e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.1457672119140625e-05 - - 0 - Gray - - LRO_NAC_Mosaic_43S349E_50cmp.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Mosaic_43S349E_50cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Mosaic.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Mosaic.asset new file mode 100644 index 0000000000..b5e8d0ec54 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Mosaic.asset @@ -0,0 +1,34 @@ +-- This file was automatically generated using a script found at +-- https://github.com/OpenSpace/scripts/treks-to-openspace. See the README.md file +-- in that repository for more information on how to run the script to update these +-- files. In particular in the case of errors, prefer to change that script rather +-- than the individual files + +local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier + +local treks_LRO_NAC_Mosaic_03N280E_70cm = { + Identifier = "LRO_NAC_Mosaic_03N280E_70cm", + Name = [[LRO LROC Mosaic, Fresh Crater East of Lents]], + FilePath = asset.localResource("LRO_LROC_Mosaic/Fresh_Crater_East_of_Lents.vrt"), + Description = [[]] +} + +asset.onInitialize(function() + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_Mosaic_03N280E_70cm) +end) + +asset.onDeinitialize(function() + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_Mosaic_03N280E_70cm") +end) + +asset.export("LRO_NAC_Mosaic_03N280E_70cm", treks_LRO_NAC_Mosaic_03N280E_70cm) + + +asset.meta = { + Name = [[NASA Treks Layers for Moon LRO_LROC_Mosaic], + Version = "1.0", + Author = "NASA/Treks", + URL = "https://trek.nasa.gov/moon", + License = "NASA/Treks", + Description = [[LRO_LROC_Mosaic layers from NASA/Treks for Moon]] +} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Mosaic/Fresh_Crater_East_of_Lents.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Mosaic/Fresh_Crater_East_of_Lents.vrt new file mode 100644 index 0000000000..e2354096c6 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Mosaic/Fresh_Crater_East_of_Lents.vrt @@ -0,0 +1,29 @@ + + PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",3],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] + -1.8000000000000000e+02, 2.1457672119140625e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.1457672119140625e-05 + + 0 + Gray + + Fresh_Crater_East_of_Lents.wms + 1 + + + + 0 + + + + Alpha + + Fresh_Crater_East_of_Lents.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Mosaic_Fresh_Crater_East_of_Lents/LRO_NAC_Mosaic_03N280E_70cm.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Mosaic/Fresh_Crater_East_of_Lents.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Mosaic_Fresh_Crater_East_of_Lents/LRO_NAC_Mosaic_03N280E_70cm.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Mosaic/Fresh_Crater_East_of_Lents.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Mosaic_Fresh_Crater_East_of_Lents/LRO_LROC_Mosaic_Fresh_Crater_East_of_Lents.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Mosaic_Fresh_Crater_East_of_Lents/LRO_LROC_Mosaic_Fresh_Crater_East_of_Lents.asset deleted file mode 100644 index c614ec7fb6..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Mosaic_Fresh_Crater_East_of_Lents/LRO_LROC_Mosaic_Fresh_Crater_East_of_Lents.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Mosaic_03N280E_70cm", - Name = [[LRO LROC Mosaic, Fresh Crater East of Lents]], - FilePath = asset.localResource("LRO_NAC_Mosaic_03N280E_70cm.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Mosaic, Fresh Crater East of Lents]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Mosaic_03N280E_70cm%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Mosaic, Fresh Crater East of Lents layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Mosaic_Fresh_Crater_East_of_Lents/LRO_NAC_Mosaic_03N280E_70cm.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Mosaic_Fresh_Crater_East_of_Lents/LRO_NAC_Mosaic_03N280E_70cm.vrt deleted file mode 100644 index 1305bc2df9..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Mosaic_Fresh_Crater_East_of_Lents/LRO_NAC_Mosaic_03N280E_70cm.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - PROJCS["Equirectangular Moon",GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon_localRadius",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["standard_parallel_1",3],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 2.1457672119140625e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.1457672119140625e-05 - - 0 - Gray - - LRO_NAC_Mosaic_03N280E_70cm.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Mosaic_03N280E_70cm.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_NAC_Image_Mosaic.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_NAC_Image_Mosaic.asset new file mode 100644 index 0000000000..1e92e14ced --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_NAC_Image_Mosaic.asset @@ -0,0 +1,44 @@ +-- This file was automatically generated using a script found at +-- https://github.com/OpenSpace/scripts/treks-to-openspace. See the README.md file +-- in that repository for more information on how to run the script to update these +-- files. In particular in the case of errors, prefer to change that script rather +-- than the individual files + +local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier + +local treks_LRO_NAC_AvgMosaic_NPole855_1mp_EQ = { + Identifier = "LRO_NAC_AvgMosaic_NPole855_1mp_EQ", + Name = [[LRO LROC NAC Image Mosaic, N Pole, Avg Merge]], + FilePath = asset.localResource("LRO_LROC_NAC_Image_Mosaic/N_Pole.vrt"), + Description = [[This is a visible image mosaic generated using Lunar Reconnaissance Orbiter Camera (LROC) Narrow Angle Camera (NAC) images from the Lunar Reconnaissance Orbiter mission. The images were orthorectified using LRO's Lunar Orbiter Laser Altimeter (LOLA) polar 5 meter/pixel DEM. The mosaic is generated at half the resolution at which the individual LROC NAC images were gathered, which is approximately 0.5 meters/pixel. The mosaic was registered horizontally to the LOLA global DEM.]] +} + +local treks_LRO_NAC_AvgMosaic_SPole855_1mp_EQ = { + Identifier = "LRO_NAC_AvgMosaic_SPole855_1mp_EQ", + Name = [[LRO LROC NAC Image Mosaic, S Pole, Avg Merge]], + FilePath = asset.localResource("LRO_LROC_NAC_Image_Mosaic/S_Pole.vrt"), + Description = [[This is a visible image mosaic generated using Lunar Reconnaissance Orbiter Camera (LROC) Narrow Angle Camera (NAC) images from the Lunar Reconnaissance Orbiter mission. The images were orthorectified using LRO's Lunar Orbiter Laser Altimeter (LOLA) polar 5 meter/pixel DEM. The mosaic is generated at half the resolution at which the individual LROC NAC images were gathered, which is approximately 0.5 meters/pixel. The mosaic was registered horizontally to the LOLA global DEM.]] +} + +asset.onInitialize(function() + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_AvgMosaic_NPole855_1mp_EQ) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_AvgMosaic_SPole855_1mp_EQ) +end) + +asset.onDeinitialize(function() + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_AvgMosaic_NPole855_1mp_EQ") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_AvgMosaic_SPole855_1mp_EQ") +end) + +asset.export("LRO_NAC_AvgMosaic_NPole855_1mp_EQ", treks_LRO_NAC_AvgMosaic_NPole855_1mp_EQ) +asset.export("LRO_NAC_AvgMosaic_SPole855_1mp_EQ", treks_LRO_NAC_AvgMosaic_SPole855_1mp_EQ) + + +asset.meta = { + Name = [[NASA Treks Layers for Moon LRO_LROC_NAC_Image_Mosaic], + Version = "1.0", + Author = "NASA/Treks", + URL = "https://trek.nasa.gov/moon", + License = "NASA/Treks", + Description = [[LRO_LROC_NAC_Image_Mosaic layers from NASA/Treks for Moon]] +} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_NAC_Image_Mosaic/N_Pole.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_NAC_Image_Mosaic/N_Pole.vrt new file mode 100644 index 0000000000..1535058081 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_NAC_Image_Mosaic/N_Pole.vrt @@ -0,0 +1,29 @@ + + GEOGCS["GCS_Moon",DATUM["Moon",SPHEROID["Moon",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 + + 0 + Gray + + N_Pole.wms + 1 + + + + 0 + + + + Alpha + + N_Pole.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_NAC_Image_Mosaic_N_Pole_Avg_Merge/LRO_NAC_AvgMosaic_NPole855_1mp_EQ.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_NAC_Image_Mosaic/N_Pole.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_NAC_Image_Mosaic_N_Pole_Avg_Merge/LRO_NAC_AvgMosaic_NPole855_1mp_EQ.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_NAC_Image_Mosaic/N_Pole.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_NAC_Image_Mosaic/S_Pole.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_NAC_Image_Mosaic/S_Pole.vrt new file mode 100644 index 0000000000..61e8638f57 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_NAC_Image_Mosaic/S_Pole.vrt @@ -0,0 +1,29 @@ + + GEOGCS["GCS_Moon",DATUM["Moon",SPHEROID["Moon",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 + + 0 + Gray + + S_Pole.wms + 1 + + + + 0 + + + + Alpha + + S_Pole.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_NAC_Image_Mosaic_S_Pole_Avg_Merge/LRO_NAC_AvgMosaic_SPole855_1mp_EQ.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_NAC_Image_Mosaic/S_Pole.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_NAC_Image_Mosaic_S_Pole_Avg_Merge/LRO_NAC_AvgMosaic_SPole855_1mp_EQ.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_NAC_Image_Mosaic/S_Pole.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_NAC_Image_Mosaic_N_Pole_Avg_Merge/LRO_LROC_NAC_Image_Mosaic_N_Pole_Avg_Merge.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_NAC_Image_Mosaic_N_Pole_Avg_Merge/LRO_LROC_NAC_Image_Mosaic_N_Pole_Avg_Merge.asset deleted file mode 100644 index 43644c96ef..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_NAC_Image_Mosaic_N_Pole_Avg_Merge/LRO_LROC_NAC_Image_Mosaic_N_Pole_Avg_Merge.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_AvgMosaic_NPole855_1mp_EQ", - Name = [[LRO LROC NAC Image Mosaic, N Pole, Avg Merge]], - FilePath = asset.localResource("LRO_NAC_AvgMosaic_NPole855_1mp_EQ.vrt"), - Description = [[This is a visible image mosaic generated using Lunar Reconnaissance Orbiter Camera (LROC) Narrow Angle Camera (NAC) images from the Lunar Reconnaissance Orbiter mission. The images were orthorectified using LRO's Lunar Orbiter Laser Altimeter (LOLA) polar 5 meter/pixel DEM. The mosaic is generated at half the resolution at which the individual LROC NAC images were gathered, which is approximately 0.5 meters/pixel. The mosaic was registered horizontally to the LOLA global DEM.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC NAC Image Mosaic, N Pole, Avg Merge]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_AvgMosaic_NPole855_1mp_EQ%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC NAC Image Mosaic, N Pole, Avg Merge layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_NAC_Image_Mosaic_N_Pole_Avg_Merge/LRO_NAC_AvgMosaic_NPole855_1mp_EQ.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_NAC_Image_Mosaic_N_Pole_Avg_Merge/LRO_NAC_AvgMosaic_NPole855_1mp_EQ.vrt deleted file mode 100644 index 3ea1f31912..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_NAC_Image_Mosaic_N_Pole_Avg_Merge/LRO_NAC_AvgMosaic_NPole855_1mp_EQ.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon",DATUM["Moon",SPHEROID["Moon",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Gray - - LRO_NAC_AvgMosaic_NPole855_1mp_EQ.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_AvgMosaic_NPole855_1mp_EQ.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_NAC_Image_Mosaic_S_Pole_Avg_Merge/LRO_LROC_NAC_Image_Mosaic_S_Pole_Avg_Merge.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_NAC_Image_Mosaic_S_Pole_Avg_Merge/LRO_LROC_NAC_Image_Mosaic_S_Pole_Avg_Merge.asset deleted file mode 100644 index 89601982f1..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_NAC_Image_Mosaic_S_Pole_Avg_Merge/LRO_LROC_NAC_Image_Mosaic_S_Pole_Avg_Merge.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_AvgMosaic_SPole855_1mp_EQ", - Name = [[LRO LROC NAC Image Mosaic, S Pole, Avg Merge]], - FilePath = asset.localResource("LRO_NAC_AvgMosaic_SPole855_1mp_EQ.vrt"), - Description = [[This is a visible image mosaic generated using Lunar Reconnaissance Orbiter Camera (LROC) Narrow Angle Camera (NAC) images from the Lunar Reconnaissance Orbiter mission. The images were orthorectified using LRO's Lunar Orbiter Laser Altimeter (LOLA) polar 5 meter/pixel DEM. The mosaic is generated at half the resolution at which the individual LROC NAC images were gathered, which is approximately 0.5 meters/pixel. The mosaic was registered horizontally to the LOLA global DEM.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC NAC Image Mosaic, S Pole, Avg Merge]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_AvgMosaic_SPole855_1mp_EQ%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC NAC Image Mosaic, S Pole, Avg Merge layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_NAC_Image_Mosaic_S_Pole_Avg_Merge/LRO_NAC_AvgMosaic_SPole855_1mp_EQ.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_NAC_Image_Mosaic_S_Pole_Avg_Merge/LRO_NAC_AvgMosaic_SPole855_1mp_EQ.vrt deleted file mode 100644 index ee074fcc68..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_NAC_Image_Mosaic_S_Pole_Avg_Merge/LRO_NAC_AvgMosaic_SPole855_1mp_EQ.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon",DATUM["Moon",SPHEROID["Moon",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Gray - - LRO_NAC_AvgMosaic_SPole855_1mp_EQ.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_AvgMosaic_SPole855_1mp_EQ.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance.asset new file mode 100644 index 0000000000..d0a7610fad --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance.asset @@ -0,0 +1,254 @@ +-- This file was automatically generated using a script found at +-- https://github.com/OpenSpace/scripts/treks-to-openspace. See the README.md file +-- in that repository for more information on how to run the script to update these +-- files. In particular in the case of errors, prefer to change that script rather +-- than the individual files + +local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier + +local treks_LRO_NAC_RockAbnd_17S173E_150cmp = { + Identifier = "LRO_NAC_RockAbnd_17S173E_150cmp", + Name = [[LRO LROC Rock Abundance, Aitken Crater]], + FilePath = asset.localResource("LRO_LROC_Rock_Abundance/Aitken_Crater.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_RockAbnd_13S358E_2mp = { + Identifier = "LRO_NAC_RockAbnd_13S358E_2mp", + Name = [[LRO LROC Rock Abundance, Alphonsus Crater]], + FilePath = asset.localResource("LRO_LROC_Rock_Abundance/Alphonsus_Crater.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_RockAbnd_73N350E_150cmp = { + Identifier = "LRO_NAC_RockAbnd_73N350E_150cmp", + Name = [[LRO LROC Rock Abundance, Anaxagoras Crater]], + FilePath = asset.localResource("LRO_LROC_Rock_Abundance/Anaxagoras_Crater.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_RockAbnd_26N004E_150cmp = { + Identifier = "LRO_NAC_RockAbnd_26N004E_150cmp", + Name = [[LRO LROC Rock Abundance, Apollo 15]], + FilePath = asset.localResource("LRO_LROC_Rock_Abundance/Apollo_15.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_RockAbnd_09S015E_150cmp = { + Identifier = "LRO_NAC_RockAbnd_09S015E_150cmp", + Name = [[LRO LROC Rock Abundance, Apollo 16]], + FilePath = asset.localResource("LRO_LROC_Rock_Abundance/Apollo_16.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_RockAbnd_37S206E_150cmp = { + Identifier = "LRO_NAC_RockAbnd_37S206E_150cmp", + Name = [[LRO LROC Rock Abundance, Apollo Basin]], + FilePath = asset.localResource("LRO_LROC_Rock_Abundance/Apollo_Basin.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_RockAbnd_25N311E_2mp = { + Identifier = "LRO_NAC_RockAbnd_25N311E_2mp", + Name = [[LRO LROC Rock Abundance, Aristarchus 1]], + FilePath = asset.localResource("LRO_LROC_Rock_Abundance/Aristarchus_1.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_RockAbnd_28N307E_150cmp = { + Identifier = "LRO_NAC_RockAbnd_28N307E_150cmp", + Name = [[LRO LROC Rock Abundance, Aristarchus 2]], + FilePath = asset.localResource("LRO_LROC_Rock_Abundance/Aristarchus_2.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_RockAbnd_19S070E_150cmp = { + Identifier = "LRO_NAC_RockAbnd_19S070E_150cmp", + Name = [[LRO LROC Rock Abundance, Balmer Basin]], + FilePath = asset.localResource("LRO_LROC_Rock_Abundance/Balmer_Basin.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_RockAbnd_20S337E_400cmp = { + Identifier = "LRO_NAC_RockAbnd_20S337E_400cmp", + Name = [[LRO LROC Rock Abundance, Bullialdus Crater]], + FilePath = asset.localResource("LRO_LROC_Rock_Abundance/Bullialdus_Crater.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_RockAbnd_36N320E_2mp = { + Identifier = "LRO_NAC_RockAbnd_36N320E_2mp", + Name = [[LRO LROC Rock Abundance, Gruithuisen Domes]], + FilePath = asset.localResource("LRO_LROC_Rock_Abundance/Gruithuisen_Domes.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_RockAbnd_00N234E_150cmp = { + Identifier = "LRO_NAC_RockAbnd_00N234E_150cmp", + Name = [[LRO LROC Rock Abundance, Hertzsprung]], + FilePath = asset.localResource("LRO_LROC_Rock_Abundance/Hertzsprung.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_RockAbnd_08N332E_2mp = { + Identifier = "LRO_NAC_RockAbnd_08N332E_2mp", + Name = [[LRO LROC Rock Abundance, Hortensius Domes]], + FilePath = asset.localResource("LRO_LROC_Rock_Abundance/Hortensius_Domes.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_RockAbnd_06N120E_200cmp = { + Identifier = "LRO_NAC_RockAbnd_06N120E_200cmp", + Name = [[LRO LROC Rock Abundance, King Crater]], + FilePath = asset.localResource("LRO_LROC_Rock_Abundance/King_Crater.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_RockAbnd_32N292E_2mp = { + Identifier = "LRO_NAC_RockAbnd_32N292E_2mp", + Name = [[LRO LROC Rock Abundance, Lichtenberg Crater]], + FilePath = asset.localResource("LRO_LROC_Rock_Abundance/Lichtenberg_Crater.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_RockAbnd_10N058E_150cmp = { + Identifier = "LRO_NAC_RockAbnd_10N058E_150cmp", + Name = [[LRO LROC Rock Abundance, Mare Crisium]], + FilePath = asset.localResource("LRO_LROC_Rock_Abundance/Mare_Crisium.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_RockAbnd_16S041E_150cmp = { + Identifier = "LRO_NAC_RockAbnd_16S041E_150cmp", + Name = [[LRO LROC Rock Abundance, Montes Pyrenaeus]], + FilePath = asset.localResource("LRO_LROC_Rock_Abundance/Montes_Pyrenaeus.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_RockAbnd_26S265E_200cmp = { + Identifier = "LRO_NAC_RockAbnd_26S265E_200cmp", + Name = [[LRO LROC Rock Abundance, Orientale 1]], + FilePath = asset.localResource("LRO_LROC_Rock_Abundance/Orientale_1.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_RockAbnd_53N354E_150cmp = { + Identifier = "LRO_NAC_RockAbnd_53N354E_150cmp", + Name = [[LRO LROC Rock Abundance, Plato Ejecta]], + FilePath = asset.localResource("LRO_LROC_Rock_Abundance/Plato_Ejecta.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_RockAbnd_60S200E_150cmp = { + Identifier = "LRO_NAC_RockAbnd_60S200E_150cmp", + Name = [[LRO LROC Rock Abundance, South Pole-Aitken Basin Interior]], + FilePath = asset.localResource("LRO_LROC_Rock_Abundance/South_Pole-Aitken_Basin_Interior.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_RockAbnd_02S167E_150cmp = { + Identifier = "LRO_NAC_RockAbnd_02S167E_150cmp", + Name = [[LRO LROC Rock Abundance, Stratton (Dewar) High Fe Anomaly]], + FilePath = asset.localResource("LRO_LROC_Rock_Abundance/Stratton_Dewar_High_Fe_Anomaly.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_RockAbnd_20N010E_2mp = { + Identifier = "LRO_NAC_RockAbnd_20N010E_2mp", + Name = [[LRO LROC Rock Abundance, Sulpicius Gallus]], + FilePath = asset.localResource("LRO_LROC_Rock_Abundance/Sulpicius_Gallus.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_RockAbnd_43S349E_150cmp = { + Identifier = "LRO_NAC_RockAbnd_43S349E_150cmp", + Name = [[LRO LROC Rock Abundance, Tycho Crater]], + FilePath = asset.localResource("LRO_LROC_Rock_Abundance/Tycho_Crater.vrt"), + Description = [[]] +} + +asset.onInitialize(function() + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_RockAbnd_17S173E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_RockAbnd_13S358E_2mp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_RockAbnd_73N350E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_RockAbnd_26N004E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_RockAbnd_09S015E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_RockAbnd_37S206E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_RockAbnd_25N311E_2mp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_RockAbnd_28N307E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_RockAbnd_19S070E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_RockAbnd_20S337E_400cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_RockAbnd_36N320E_2mp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_RockAbnd_00N234E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_RockAbnd_08N332E_2mp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_RockAbnd_06N120E_200cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_RockAbnd_32N292E_2mp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_RockAbnd_10N058E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_RockAbnd_16S041E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_RockAbnd_26S265E_200cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_RockAbnd_53N354E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_RockAbnd_60S200E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_RockAbnd_02S167E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_RockAbnd_20N010E_2mp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_RockAbnd_43S349E_150cmp) +end) + +asset.onDeinitialize(function() + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_RockAbnd_17S173E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_RockAbnd_13S358E_2mp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_RockAbnd_73N350E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_RockAbnd_26N004E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_RockAbnd_09S015E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_RockAbnd_37S206E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_RockAbnd_25N311E_2mp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_RockAbnd_28N307E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_RockAbnd_19S070E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_RockAbnd_20S337E_400cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_RockAbnd_36N320E_2mp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_RockAbnd_00N234E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_RockAbnd_08N332E_2mp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_RockAbnd_06N120E_200cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_RockAbnd_32N292E_2mp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_RockAbnd_10N058E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_RockAbnd_16S041E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_RockAbnd_26S265E_200cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_RockAbnd_53N354E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_RockAbnd_60S200E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_RockAbnd_02S167E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_RockAbnd_20N010E_2mp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_RockAbnd_43S349E_150cmp") +end) + +asset.export("LRO_NAC_RockAbnd_17S173E_150cmp", treks_LRO_NAC_RockAbnd_17S173E_150cmp) +asset.export("LRO_NAC_RockAbnd_13S358E_2mp", treks_LRO_NAC_RockAbnd_13S358E_2mp) +asset.export("LRO_NAC_RockAbnd_73N350E_150cmp", treks_LRO_NAC_RockAbnd_73N350E_150cmp) +asset.export("LRO_NAC_RockAbnd_26N004E_150cmp", treks_LRO_NAC_RockAbnd_26N004E_150cmp) +asset.export("LRO_NAC_RockAbnd_09S015E_150cmp", treks_LRO_NAC_RockAbnd_09S015E_150cmp) +asset.export("LRO_NAC_RockAbnd_37S206E_150cmp", treks_LRO_NAC_RockAbnd_37S206E_150cmp) +asset.export("LRO_NAC_RockAbnd_25N311E_2mp", treks_LRO_NAC_RockAbnd_25N311E_2mp) +asset.export("LRO_NAC_RockAbnd_28N307E_150cmp", treks_LRO_NAC_RockAbnd_28N307E_150cmp) +asset.export("LRO_NAC_RockAbnd_19S070E_150cmp", treks_LRO_NAC_RockAbnd_19S070E_150cmp) +asset.export("LRO_NAC_RockAbnd_20S337E_400cmp", treks_LRO_NAC_RockAbnd_20S337E_400cmp) +asset.export("LRO_NAC_RockAbnd_36N320E_2mp", treks_LRO_NAC_RockAbnd_36N320E_2mp) +asset.export("LRO_NAC_RockAbnd_00N234E_150cmp", treks_LRO_NAC_RockAbnd_00N234E_150cmp) +asset.export("LRO_NAC_RockAbnd_08N332E_2mp", treks_LRO_NAC_RockAbnd_08N332E_2mp) +asset.export("LRO_NAC_RockAbnd_06N120E_200cmp", treks_LRO_NAC_RockAbnd_06N120E_200cmp) +asset.export("LRO_NAC_RockAbnd_32N292E_2mp", treks_LRO_NAC_RockAbnd_32N292E_2mp) +asset.export("LRO_NAC_RockAbnd_10N058E_150cmp", treks_LRO_NAC_RockAbnd_10N058E_150cmp) +asset.export("LRO_NAC_RockAbnd_16S041E_150cmp", treks_LRO_NAC_RockAbnd_16S041E_150cmp) +asset.export("LRO_NAC_RockAbnd_26S265E_200cmp", treks_LRO_NAC_RockAbnd_26S265E_200cmp) +asset.export("LRO_NAC_RockAbnd_53N354E_150cmp", treks_LRO_NAC_RockAbnd_53N354E_150cmp) +asset.export("LRO_NAC_RockAbnd_60S200E_150cmp", treks_LRO_NAC_RockAbnd_60S200E_150cmp) +asset.export("LRO_NAC_RockAbnd_02S167E_150cmp", treks_LRO_NAC_RockAbnd_02S167E_150cmp) +asset.export("LRO_NAC_RockAbnd_20N010E_2mp", treks_LRO_NAC_RockAbnd_20N010E_2mp) +asset.export("LRO_NAC_RockAbnd_43S349E_150cmp", treks_LRO_NAC_RockAbnd_43S349E_150cmp) + + +asset.meta = { + Name = [[NASA Treks Layers for Moon LRO_LROC_Rock_Abundance], + Version = "1.0", + Author = "NASA/Treks", + URL = "https://trek.nasa.gov/moon", + License = "NASA/Treks", + Description = [[LRO_LROC_Rock_Abundance layers from NASA/Treks for Moon]] +} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Aitken_Crater.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Aitken_Crater.vrt new file mode 100644 index 0000000000..edeb7a3350 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Aitken_Crater.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Aitken_Crater.wms + 1 + + + + 0 + + + + 0 + Green + + Aitken_Crater.wms + 2 + + + + 0 + + + + 0 + Blue + + Aitken_Crater.wms + 3 + + + + 0 + + + + Alpha + + Aitken_Crater.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Aitken_Crater/LRO_NAC_RockAbnd_17S173E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Aitken_Crater.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Aitken_Crater/LRO_NAC_RockAbnd_17S173E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Aitken_Crater.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Alphonsus_Crater.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Alphonsus_Crater.vrt new file mode 100644 index 0000000000..d045a2621c --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Alphonsus_Crater.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Alphonsus_Crater.wms + 1 + + + + 0 + + + + 0 + Green + + Alphonsus_Crater.wms + 2 + + + + 0 + + + + 0 + Blue + + Alphonsus_Crater.wms + 3 + + + + 0 + + + + Alpha + + Alphonsus_Crater.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Alphonsus_Crater/LRO_NAC_RockAbnd_13S358E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Alphonsus_Crater.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Alphonsus_Crater/LRO_NAC_RockAbnd_13S358E_2mp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Alphonsus_Crater.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Anaxagoras_Crater.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Anaxagoras_Crater.vrt new file mode 100644 index 0000000000..235a71373e --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Anaxagoras_Crater.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Anaxagoras_Crater.wms + 1 + + + + 0 + + + + 0 + Green + + Anaxagoras_Crater.wms + 2 + + + + 0 + + + + 0 + Blue + + Anaxagoras_Crater.wms + 3 + + + + 0 + + + + Alpha + + Anaxagoras_Crater.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Anaxagoras_Crater/LRO_NAC_RockAbnd_73N350E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Anaxagoras_Crater.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Anaxagoras_Crater/LRO_NAC_RockAbnd_73N350E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Anaxagoras_Crater.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Apollo_15.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Apollo_15.vrt new file mode 100644 index 0000000000..c328339b62 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Apollo_15.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Apollo_15.wms + 1 + + + + 0 + + + + 0 + Green + + Apollo_15.wms + 2 + + + + 0 + + + + 0 + Blue + + Apollo_15.wms + 3 + + + + 0 + + + + Alpha + + Apollo_15.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Apollo_15/LRO_NAC_RockAbnd_26N004E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Apollo_15.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Apollo_15/LRO_NAC_RockAbnd_26N004E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Apollo_15.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Apollo_16.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Apollo_16.vrt new file mode 100644 index 0000000000..4437127cc8 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Apollo_16.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Apollo_16.wms + 1 + + + + 0 + + + + 0 + Green + + Apollo_16.wms + 2 + + + + 0 + + + + 0 + Blue + + Apollo_16.wms + 3 + + + + 0 + + + + Alpha + + Apollo_16.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Apollo_16/LRO_NAC_RockAbnd_09S015E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Apollo_16.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Apollo_16/LRO_NAC_RockAbnd_09S015E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Apollo_16.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Apollo_Basin.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Apollo_Basin.vrt new file mode 100644 index 0000000000..f655105be7 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Apollo_Basin.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Apollo_Basin.wms + 1 + + + + 0 + + + + 0 + Green + + Apollo_Basin.wms + 2 + + + + 0 + + + + 0 + Blue + + Apollo_Basin.wms + 3 + + + + 0 + + + + Alpha + + Apollo_Basin.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Apollo_Basin/LRO_NAC_RockAbnd_37S206E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Apollo_Basin.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Apollo_Basin/LRO_NAC_RockAbnd_37S206E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Apollo_Basin.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Aristarchus_1.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Aristarchus_1.vrt new file mode 100644 index 0000000000..dba6d33a27 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Aristarchus_1.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Aristarchus_1.wms + 1 + + + + 0 + + + + 0 + Green + + Aristarchus_1.wms + 2 + + + + 0 + + + + 0 + Blue + + Aristarchus_1.wms + 3 + + + + 0 + + + + Alpha + + Aristarchus_1.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Aristarchus_1/LRO_NAC_RockAbnd_25N311E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Aristarchus_1.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Aristarchus_1/LRO_NAC_RockAbnd_25N311E_2mp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Aristarchus_1.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Aristarchus_2.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Aristarchus_2.vrt new file mode 100644 index 0000000000..93d6a7dd6d --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Aristarchus_2.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Aristarchus_2.wms + 1 + + + + 0 + + + + 0 + Green + + Aristarchus_2.wms + 2 + + + + 0 + + + + 0 + Blue + + Aristarchus_2.wms + 3 + + + + 0 + + + + Alpha + + Aristarchus_2.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Aristarchus_2/LRO_NAC_RockAbnd_28N307E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Aristarchus_2.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Aristarchus_2/LRO_NAC_RockAbnd_28N307E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Aristarchus_2.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Balmer_Basin.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Balmer_Basin.vrt new file mode 100644 index 0000000000..3028785c98 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Balmer_Basin.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Balmer_Basin.wms + 1 + + + + 0 + + + + 0 + Green + + Balmer_Basin.wms + 2 + + + + 0 + + + + 0 + Blue + + Balmer_Basin.wms + 3 + + + + 0 + + + + Alpha + + Balmer_Basin.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Balmer_Basin/LRO_NAC_RockAbnd_19S070E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Balmer_Basin.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Balmer_Basin/LRO_NAC_RockAbnd_19S070E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Balmer_Basin.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Bullialdus_Crater.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Bullialdus_Crater.vrt new file mode 100644 index 0000000000..678722ae68 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Bullialdus_Crater.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Bullialdus_Crater.wms + 1 + + + + 0 + + + + 0 + Green + + Bullialdus_Crater.wms + 2 + + + + 0 + + + + 0 + Blue + + Bullialdus_Crater.wms + 3 + + + + 0 + + + + Alpha + + Bullialdus_Crater.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Bullialdus_Crater/LRO_NAC_RockAbnd_20S337E_400cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Bullialdus_Crater.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Bullialdus_Crater/LRO_NAC_RockAbnd_20S337E_400cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Bullialdus_Crater.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Gruithuisen_Domes.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Gruithuisen_Domes.vrt new file mode 100644 index 0000000000..5142f02aea --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Gruithuisen_Domes.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Gruithuisen_Domes.wms + 1 + + + + 0 + + + + 0 + Green + + Gruithuisen_Domes.wms + 2 + + + + 0 + + + + 0 + Blue + + Gruithuisen_Domes.wms + 3 + + + + 0 + + + + Alpha + + Gruithuisen_Domes.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Gruithuisen_Domes/LRO_NAC_RockAbnd_36N320E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Gruithuisen_Domes.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Gruithuisen_Domes/LRO_NAC_RockAbnd_36N320E_2mp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Gruithuisen_Domes.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Hertzsprung.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Hertzsprung.vrt new file mode 100644 index 0000000000..ad731212e4 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Hertzsprung.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Hertzsprung.wms + 1 + + + + 0 + + + + 0 + Green + + Hertzsprung.wms + 2 + + + + 0 + + + + 0 + Blue + + Hertzsprung.wms + 3 + + + + 0 + + + + Alpha + + Hertzsprung.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hertzsprung/LRO_NAC_RockAbnd_00N234E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Hertzsprung.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hertzsprung/LRO_NAC_RockAbnd_00N234E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Hertzsprung.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Hortensius_Domes.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Hortensius_Domes.vrt new file mode 100644 index 0000000000..348c2f9215 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Hortensius_Domes.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Hortensius_Domes.wms + 1 + + + + 0 + + + + 0 + Green + + Hortensius_Domes.wms + 2 + + + + 0 + + + + 0 + Blue + + Hortensius_Domes.wms + 3 + + + + 0 + + + + Alpha + + Hortensius_Domes.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hortensius_Domes/LRO_NAC_RockAbnd_08N332E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Hortensius_Domes.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hortensius_Domes/LRO_NAC_RockAbnd_08N332E_2mp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Hortensius_Domes.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/King_Crater.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/King_Crater.vrt new file mode 100644 index 0000000000..91c2894c94 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/King_Crater.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + King_Crater.wms + 1 + + + + 0 + + + + 0 + Green + + King_Crater.wms + 2 + + + + 0 + + + + 0 + Blue + + King_Crater.wms + 3 + + + + 0 + + + + Alpha + + King_Crater.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_King_Crater/LRO_NAC_RockAbnd_06N120E_200cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/King_Crater.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_King_Crater/LRO_NAC_RockAbnd_06N120E_200cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/King_Crater.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Lichtenberg_Crater.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Lichtenberg_Crater.vrt new file mode 100644 index 0000000000..8584f2c304 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Lichtenberg_Crater.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Lichtenberg_Crater.wms + 1 + + + + 0 + + + + 0 + Green + + Lichtenberg_Crater.wms + 2 + + + + 0 + + + + 0 + Blue + + Lichtenberg_Crater.wms + 3 + + + + 0 + + + + Alpha + + Lichtenberg_Crater.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Lichtenberg_Crater/LRO_NAC_RockAbnd_32N292E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Lichtenberg_Crater.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Lichtenberg_Crater/LRO_NAC_RockAbnd_32N292E_2mp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Lichtenberg_Crater.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Mare_Crisium.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Mare_Crisium.vrt new file mode 100644 index 0000000000..7d6e778cc9 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Mare_Crisium.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Mare_Crisium.wms + 1 + + + + 0 + + + + 0 + Green + + Mare_Crisium.wms + 2 + + + + 0 + + + + 0 + Blue + + Mare_Crisium.wms + 3 + + + + 0 + + + + Alpha + + Mare_Crisium.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Mare_Crisium/LRO_NAC_RockAbnd_10N058E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Mare_Crisium.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Mare_Crisium/LRO_NAC_RockAbnd_10N058E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Mare_Crisium.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Montes_Pyrenaeus.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Montes_Pyrenaeus.vrt new file mode 100644 index 0000000000..7e7910be4a --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Montes_Pyrenaeus.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Montes_Pyrenaeus.wms + 1 + + + + 0 + + + + 0 + Green + + Montes_Pyrenaeus.wms + 2 + + + + 0 + + + + 0 + Blue + + Montes_Pyrenaeus.wms + 3 + + + + 0 + + + + Alpha + + Montes_Pyrenaeus.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Montes_Pyrenaeus/LRO_NAC_RockAbnd_16S041E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Montes_Pyrenaeus.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Montes_Pyrenaeus/LRO_NAC_RockAbnd_16S041E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Montes_Pyrenaeus.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Orientale_1.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Orientale_1.vrt new file mode 100644 index 0000000000..7828a2e6b2 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Orientale_1.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Orientale_1.wms + 1 + + + + 0 + + + + 0 + Green + + Orientale_1.wms + 2 + + + + 0 + + + + 0 + Blue + + Orientale_1.wms + 3 + + + + 0 + + + + Alpha + + Orientale_1.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Orientale_1/LRO_NAC_RockAbnd_26S265E_200cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Orientale_1.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Orientale_1/LRO_NAC_RockAbnd_26S265E_200cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Orientale_1.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Plato_Ejecta.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Plato_Ejecta.vrt new file mode 100644 index 0000000000..955c4b47cf --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Plato_Ejecta.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Plato_Ejecta.wms + 1 + + + + 0 + + + + 0 + Green + + Plato_Ejecta.wms + 2 + + + + 0 + + + + 0 + Blue + + Plato_Ejecta.wms + 3 + + + + 0 + + + + Alpha + + Plato_Ejecta.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Plato_Ejecta/LRO_NAC_RockAbnd_53N354E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Plato_Ejecta.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Plato_Ejecta/LRO_NAC_RockAbnd_53N354E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Plato_Ejecta.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/South_Pole-Aitken_Basin_Interior.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/South_Pole-Aitken_Basin_Interior.vrt new file mode 100644 index 0000000000..63d096530c --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/South_Pole-Aitken_Basin_Interior.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + South_Pole-Aitken_Basin_Interior.wms + 1 + + + + 0 + + + + 0 + Green + + South_Pole-Aitken_Basin_Interior.wms + 2 + + + + 0 + + + + 0 + Blue + + South_Pole-Aitken_Basin_Interior.wms + 3 + + + + 0 + + + + Alpha + + South_Pole-Aitken_Basin_Interior.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_South_Pole-Aitken_Basin_Interior/LRO_NAC_RockAbnd_60S200E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/South_Pole-Aitken_Basin_Interior.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_South_Pole-Aitken_Basin_Interior/LRO_NAC_RockAbnd_60S200E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/South_Pole-Aitken_Basin_Interior.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Stratton_Dewar_High_Fe_Anomaly.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Stratton_Dewar_High_Fe_Anomaly.vrt new file mode 100644 index 0000000000..9ea8239472 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Stratton_Dewar_High_Fe_Anomaly.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Stratton_Dewar_High_Fe_Anomaly.wms + 1 + + + + 0 + + + + 0 + Green + + Stratton_Dewar_High_Fe_Anomaly.wms + 2 + + + + 0 + + + + 0 + Blue + + Stratton_Dewar_High_Fe_Anomaly.wms + 3 + + + + 0 + + + + Alpha + + Stratton_Dewar_High_Fe_Anomaly.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Stratton_(Dewar)_High_Fe_Anomaly/LRO_NAC_RockAbnd_02S167E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Stratton_Dewar_High_Fe_Anomaly.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Stratton_(Dewar)_High_Fe_Anomaly/LRO_NAC_RockAbnd_02S167E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Stratton_Dewar_High_Fe_Anomaly.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Sulpicius_Gallus.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Sulpicius_Gallus.vrt new file mode 100644 index 0000000000..dbb8bcaf58 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Sulpicius_Gallus.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Sulpicius_Gallus.wms + 1 + + + + 0 + + + + 0 + Green + + Sulpicius_Gallus.wms + 2 + + + + 0 + + + + 0 + Blue + + Sulpicius_Gallus.wms + 3 + + + + 0 + + + + Alpha + + Sulpicius_Gallus.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Sulpicius_Gallus/LRO_NAC_RockAbnd_20N010E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Sulpicius_Gallus.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Sulpicius_Gallus/LRO_NAC_RockAbnd_20N010E_2mp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Sulpicius_Gallus.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Tycho_Crater.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Tycho_Crater.vrt new file mode 100644 index 0000000000..60bed90160 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Tycho_Crater.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Tycho_Crater.wms + 1 + + + + 0 + + + + 0 + Green + + Tycho_Crater.wms + 2 + + + + 0 + + + + 0 + Blue + + Tycho_Crater.wms + 3 + + + + 0 + + + + Alpha + + Tycho_Crater.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Tycho_Crater/LRO_NAC_RockAbnd_43S349E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Tycho_Crater.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Tycho_Crater/LRO_NAC_RockAbnd_43S349E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance/Tycho_Crater.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Aitken_Crater/LRO_LROC_Rock_Abundance_Aitken_Crater.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Aitken_Crater/LRO_LROC_Rock_Abundance_Aitken_Crater.asset deleted file mode 100644 index eadf9295c7..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Aitken_Crater/LRO_LROC_Rock_Abundance_Aitken_Crater.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_RockAbnd_17S173E_150cmp", - Name = [[LRO LROC Rock Abundance, Aitken Crater]], - FilePath = asset.localResource("LRO_NAC_RockAbnd_17S173E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Rock Abundance, Aitken Crater]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_RockAbnd_17S173E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Rock Abundance, Aitken Crater layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Aitken_Crater/LRO_NAC_RockAbnd_17S173E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Aitken_Crater/LRO_NAC_RockAbnd_17S173E_150cmp.vrt deleted file mode 100644 index af8e4eacbe..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Aitken_Crater/LRO_NAC_RockAbnd_17S173E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_RockAbnd_17S173E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_RockAbnd_17S173E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_RockAbnd_17S173E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_RockAbnd_17S173E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Alphonsus_Crater/LRO_LROC_Rock_Abundance_Alphonsus_Crater.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Alphonsus_Crater/LRO_LROC_Rock_Abundance_Alphonsus_Crater.asset deleted file mode 100644 index 1d265c2099..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Alphonsus_Crater/LRO_LROC_Rock_Abundance_Alphonsus_Crater.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_RockAbnd_13S358E_2mp", - Name = [[LRO LROC Rock Abundance, Alphonsus Crater]], - FilePath = asset.localResource("LRO_NAC_RockAbnd_13S358E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Rock Abundance, Alphonsus Crater]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_RockAbnd_13S358E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Rock Abundance, Alphonsus Crater layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Alphonsus_Crater/LRO_NAC_RockAbnd_13S358E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Alphonsus_Crater/LRO_NAC_RockAbnd_13S358E_2mp.vrt deleted file mode 100644 index 07598b254a..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Alphonsus_Crater/LRO_NAC_RockAbnd_13S358E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_RockAbnd_13S358E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_RockAbnd_13S358E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_RockAbnd_13S358E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_RockAbnd_13S358E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Anaxagoras_Crater/LRO_LROC_Rock_Abundance_Anaxagoras_Crater.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Anaxagoras_Crater/LRO_LROC_Rock_Abundance_Anaxagoras_Crater.asset deleted file mode 100644 index cf5c3bc3b7..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Anaxagoras_Crater/LRO_LROC_Rock_Abundance_Anaxagoras_Crater.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_RockAbnd_73N350E_150cmp", - Name = [[LRO LROC Rock Abundance, Anaxagoras Crater]], - FilePath = asset.localResource("LRO_NAC_RockAbnd_73N350E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Rock Abundance, Anaxagoras Crater]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_RockAbnd_73N350E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Rock Abundance, Anaxagoras Crater layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Anaxagoras_Crater/LRO_NAC_RockAbnd_73N350E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Anaxagoras_Crater/LRO_NAC_RockAbnd_73N350E_150cmp.vrt deleted file mode 100644 index 02a3e7fa9a..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Anaxagoras_Crater/LRO_NAC_RockAbnd_73N350E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_RockAbnd_73N350E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_RockAbnd_73N350E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_RockAbnd_73N350E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_RockAbnd_73N350E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Apollo_15/LRO_LROC_Rock_Abundance_Apollo_15.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Apollo_15/LRO_LROC_Rock_Abundance_Apollo_15.asset deleted file mode 100644 index 84b0a98bf4..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Apollo_15/LRO_LROC_Rock_Abundance_Apollo_15.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_RockAbnd_26N004E_150cmp", - Name = [[LRO LROC Rock Abundance, Apollo 15]], - FilePath = asset.localResource("LRO_NAC_RockAbnd_26N004E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Rock Abundance, Apollo 15]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_RockAbnd_26N004E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Rock Abundance, Apollo 15 layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Apollo_15/LRO_NAC_RockAbnd_26N004E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Apollo_15/LRO_NAC_RockAbnd_26N004E_150cmp.vrt deleted file mode 100644 index dd52f92630..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Apollo_15/LRO_NAC_RockAbnd_26N004E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_RockAbnd_26N004E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_RockAbnd_26N004E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_RockAbnd_26N004E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_RockAbnd_26N004E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Apollo_16/LRO_LROC_Rock_Abundance_Apollo_16.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Apollo_16/LRO_LROC_Rock_Abundance_Apollo_16.asset deleted file mode 100644 index 31b4a0c6f6..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Apollo_16/LRO_LROC_Rock_Abundance_Apollo_16.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_RockAbnd_09S015E_150cmp", - Name = [[LRO LROC Rock Abundance, Apollo 16]], - FilePath = asset.localResource("LRO_NAC_RockAbnd_09S015E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Rock Abundance, Apollo 16]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_RockAbnd_09S015E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Rock Abundance, Apollo 16 layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Apollo_16/LRO_NAC_RockAbnd_09S015E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Apollo_16/LRO_NAC_RockAbnd_09S015E_150cmp.vrt deleted file mode 100644 index 12f306f97f..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Apollo_16/LRO_NAC_RockAbnd_09S015E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_RockAbnd_09S015E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_RockAbnd_09S015E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_RockAbnd_09S015E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_RockAbnd_09S015E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Apollo_Basin/LRO_LROC_Rock_Abundance_Apollo_Basin.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Apollo_Basin/LRO_LROC_Rock_Abundance_Apollo_Basin.asset deleted file mode 100644 index 0b09973eb8..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Apollo_Basin/LRO_LROC_Rock_Abundance_Apollo_Basin.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_RockAbnd_37S206E_150cmp", - Name = [[LRO LROC Rock Abundance, Apollo Basin]], - FilePath = asset.localResource("LRO_NAC_RockAbnd_37S206E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Rock Abundance, Apollo Basin]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_RockAbnd_37S206E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Rock Abundance, Apollo Basin layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Apollo_Basin/LRO_NAC_RockAbnd_37S206E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Apollo_Basin/LRO_NAC_RockAbnd_37S206E_150cmp.vrt deleted file mode 100644 index b2ec5e48f5..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Apollo_Basin/LRO_NAC_RockAbnd_37S206E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_RockAbnd_37S206E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_RockAbnd_37S206E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_RockAbnd_37S206E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_RockAbnd_37S206E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Aristarchus_1/LRO_LROC_Rock_Abundance_Aristarchus_1.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Aristarchus_1/LRO_LROC_Rock_Abundance_Aristarchus_1.asset deleted file mode 100644 index 3ff959551d..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Aristarchus_1/LRO_LROC_Rock_Abundance_Aristarchus_1.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_RockAbnd_25N311E_2mp", - Name = [[LRO LROC Rock Abundance, Aristarchus 1]], - FilePath = asset.localResource("LRO_NAC_RockAbnd_25N311E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Rock Abundance, Aristarchus 1]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_RockAbnd_25N311E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Rock Abundance, Aristarchus 1 layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Aristarchus_1/LRO_NAC_RockAbnd_25N311E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Aristarchus_1/LRO_NAC_RockAbnd_25N311E_2mp.vrt deleted file mode 100644 index 9db46fe5ec..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Aristarchus_1/LRO_NAC_RockAbnd_25N311E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_RockAbnd_25N311E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_RockAbnd_25N311E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_RockAbnd_25N311E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_RockAbnd_25N311E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Aristarchus_2/LRO_LROC_Rock_Abundance_Aristarchus_2.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Aristarchus_2/LRO_LROC_Rock_Abundance_Aristarchus_2.asset deleted file mode 100644 index a3167516fd..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Aristarchus_2/LRO_LROC_Rock_Abundance_Aristarchus_2.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_RockAbnd_28N307E_150cmp", - Name = [[LRO LROC Rock Abundance, Aristarchus 2]], - FilePath = asset.localResource("LRO_NAC_RockAbnd_28N307E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Rock Abundance, Aristarchus 2]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_RockAbnd_28N307E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Rock Abundance, Aristarchus 2 layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Aristarchus_2/LRO_NAC_RockAbnd_28N307E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Aristarchus_2/LRO_NAC_RockAbnd_28N307E_150cmp.vrt deleted file mode 100644 index 5611be2707..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Aristarchus_2/LRO_NAC_RockAbnd_28N307E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_RockAbnd_28N307E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_RockAbnd_28N307E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_RockAbnd_28N307E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_RockAbnd_28N307E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Balmer_Basin/LRO_LROC_Rock_Abundance_Balmer_Basin.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Balmer_Basin/LRO_LROC_Rock_Abundance_Balmer_Basin.asset deleted file mode 100644 index 53567815f3..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Balmer_Basin/LRO_LROC_Rock_Abundance_Balmer_Basin.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_RockAbnd_19S070E_150cmp", - Name = [[LRO LROC Rock Abundance, Balmer Basin]], - FilePath = asset.localResource("LRO_NAC_RockAbnd_19S070E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Rock Abundance, Balmer Basin]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_RockAbnd_19S070E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Rock Abundance, Balmer Basin layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Balmer_Basin/LRO_NAC_RockAbnd_19S070E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Balmer_Basin/LRO_NAC_RockAbnd_19S070E_150cmp.vrt deleted file mode 100644 index 83dcde573f..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Balmer_Basin/LRO_NAC_RockAbnd_19S070E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_RockAbnd_19S070E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_RockAbnd_19S070E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_RockAbnd_19S070E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_RockAbnd_19S070E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Bullialdus_Crater/LRO_LROC_Rock_Abundance_Bullialdus_Crater.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Bullialdus_Crater/LRO_LROC_Rock_Abundance_Bullialdus_Crater.asset deleted file mode 100644 index 274d3d102b..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Bullialdus_Crater/LRO_LROC_Rock_Abundance_Bullialdus_Crater.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_RockAbnd_20S337E_400cmp", - Name = [[LRO LROC Rock Abundance, Bullialdus Crater]], - FilePath = asset.localResource("LRO_NAC_RockAbnd_20S337E_400cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Rock Abundance, Bullialdus Crater]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_RockAbnd_20S337E_400cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Rock Abundance, Bullialdus Crater layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Bullialdus_Crater/LRO_NAC_RockAbnd_20S337E_400cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Bullialdus_Crater/LRO_NAC_RockAbnd_20S337E_400cmp.vrt deleted file mode 100644 index c6bcb1031d..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Bullialdus_Crater/LRO_NAC_RockAbnd_20S337E_400cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_RockAbnd_20S337E_400cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_RockAbnd_20S337E_400cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_RockAbnd_20S337E_400cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_RockAbnd_20S337E_400cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Gruithuisen_Domes/LRO_LROC_Rock_Abundance_Gruithuisen_Domes.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Gruithuisen_Domes/LRO_LROC_Rock_Abundance_Gruithuisen_Domes.asset deleted file mode 100644 index dc32ae5226..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Gruithuisen_Domes/LRO_LROC_Rock_Abundance_Gruithuisen_Domes.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_RockAbnd_36N320E_2mp", - Name = [[LRO LROC Rock Abundance, Gruithuisen Domes]], - FilePath = asset.localResource("LRO_NAC_RockAbnd_36N320E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Rock Abundance, Gruithuisen Domes]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_RockAbnd_36N320E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Rock Abundance, Gruithuisen Domes layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Gruithuisen_Domes/LRO_NAC_RockAbnd_36N320E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Gruithuisen_Domes/LRO_NAC_RockAbnd_36N320E_2mp.vrt deleted file mode 100644 index 2c1374761f..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Gruithuisen_Domes/LRO_NAC_RockAbnd_36N320E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_RockAbnd_36N320E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_RockAbnd_36N320E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_RockAbnd_36N320E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_RockAbnd_36N320E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard.asset new file mode 100644 index 0000000000..164674befb --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard.asset @@ -0,0 +1,254 @@ +-- This file was automatically generated using a script found at +-- https://github.com/OpenSpace/scripts/treks-to-openspace. See the README.md file +-- in that repository for more information on how to run the script to update these +-- files. In particular in the case of errors, prefer to change that script rather +-- than the individual files + +local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier + +local treks_LRO_NAC_RockAbndHaz_17S173E_150cmp = { + Identifier = "LRO_NAC_RockAbndHaz_17S173E_150cmp", + Name = [[LRO LROC Rock Abundance Hazard, Aitken Crater]], + FilePath = asset.localResource("LRO_LROC_Rock_Abundance_Hazard/Aitken_Crater.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_RockAbndHaz_13S358E_2mp = { + Identifier = "LRO_NAC_RockAbndHaz_13S358E_2mp", + Name = [[LRO LROC Rock Abundance Hazard, Alphonsus Crater]], + FilePath = asset.localResource("LRO_LROC_Rock_Abundance_Hazard/Alphonsus_Crater.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_RockAbndHaz_73N350E_150cmp = { + Identifier = "LRO_NAC_RockAbndHaz_73N350E_150cmp", + Name = [[LRO LROC Rock Abundance Hazard, Anaxagoras Crater]], + FilePath = asset.localResource("LRO_LROC_Rock_Abundance_Hazard/Anaxagoras_Crater.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_RockAbndHaz_26N004E_150cmp = { + Identifier = "LRO_NAC_RockAbndHaz_26N004E_150cmp", + Name = [[LRO LROC Rock Abundance Hazard, Apollo 15]], + FilePath = asset.localResource("LRO_LROC_Rock_Abundance_Hazard/Apollo_15.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_RockAbndHaz_09S015E_150cmp = { + Identifier = "LRO_NAC_RockAbndHaz_09S015E_150cmp", + Name = [[LRO LROC Rock Abundance Hazard, Apollo 16]], + FilePath = asset.localResource("LRO_LROC_Rock_Abundance_Hazard/Apollo_16.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_RockAbndHaz_37S206E_150cmp = { + Identifier = "LRO_NAC_RockAbndHaz_37S206E_150cmp", + Name = [[LRO LROC Rock Abundance Hazard, Apollo Basin]], + FilePath = asset.localResource("LRO_LROC_Rock_Abundance_Hazard/Apollo_Basin.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_RockAbndHaz_25N311E_2mp = { + Identifier = "LRO_NAC_RockAbndHaz_25N311E_2mp", + Name = [[LRO LROC Rock Abundance Hazard, Aristarchus 1]], + FilePath = asset.localResource("LRO_LROC_Rock_Abundance_Hazard/Aristarchus_1.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_RockAbndHaz_28N307E_150cmp = { + Identifier = "LRO_NAC_RockAbndHaz_28N307E_150cmp", + Name = [[LRO LROC Rock Abundance Hazard, Aristarchus 2]], + FilePath = asset.localResource("LRO_LROC_Rock_Abundance_Hazard/Aristarchus_2.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_RockAbndHaz_19S070E_150cmp = { + Identifier = "LRO_NAC_RockAbndHaz_19S070E_150cmp", + Name = [[LRO LROC Rock Abundance Hazard, Balmer Basin]], + FilePath = asset.localResource("LRO_LROC_Rock_Abundance_Hazard/Balmer_Basin.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_RockAbndHaz_20S337E_400cmp = { + Identifier = "LRO_NAC_RockAbndHaz_20S337E_400cmp", + Name = [[LRO LROC Rock Abundance Hazard, Bullialdus Crater]], + FilePath = asset.localResource("LRO_LROC_Rock_Abundance_Hazard/Bullialdus_Crater.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_RockAbndHaz_36N320E_2mp = { + Identifier = "LRO_NAC_RockAbndHaz_36N320E_2mp", + Name = [[LRO LROC Rock Abundance Hazard, Gruithuisen Domes]], + FilePath = asset.localResource("LRO_LROC_Rock_Abundance_Hazard/Gruithuisen_Domes.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_RockAbndHaz_00N234E_150cmp = { + Identifier = "LRO_NAC_RockAbndHaz_00N234E_150cmp", + Name = [[LRO LROC Rock Abundance Hazard, Hertzsprung]], + FilePath = asset.localResource("LRO_LROC_Rock_Abundance_Hazard/Hertzsprung.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_RockAbndHaz_08N332E_2mp = { + Identifier = "LRO_NAC_RockAbndHaz_08N332E_2mp", + Name = [[LRO LROC Rock Abundance Hazard, Hortensius Domes]], + FilePath = asset.localResource("LRO_LROC_Rock_Abundance_Hazard/Hortensius_Domes.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_RockAbndHaz_06N120E_200cmp = { + Identifier = "LRO_NAC_RockAbndHaz_06N120E_200cmp", + Name = [[LRO LROC Rock Abundance Hazard, King Crater]], + FilePath = asset.localResource("LRO_LROC_Rock_Abundance_Hazard/King_Crater.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_RockAbndHaz_32N292E_2mp = { + Identifier = "LRO_NAC_RockAbndHaz_32N292E_2mp", + Name = [[LRO LROC Rock Abundance Hazard, Lichtenberg Crater]], + FilePath = asset.localResource("LRO_LROC_Rock_Abundance_Hazard/Lichtenberg_Crater.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_RockAbndHaz_10N058E_150cmp = { + Identifier = "LRO_NAC_RockAbndHaz_10N058E_150cmp", + Name = [[LRO LROC Rock Abundance Hazard, Mare Crisium]], + FilePath = asset.localResource("LRO_LROC_Rock_Abundance_Hazard/Mare_Crisium.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_RockAbndHaz_16S041E_150cmp = { + Identifier = "LRO_NAC_RockAbndHaz_16S041E_150cmp", + Name = [[LRO LROC Rock Abundance Hazard, Montes Pyrenaeus]], + FilePath = asset.localResource("LRO_LROC_Rock_Abundance_Hazard/Montes_Pyrenaeus.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_RockAbndHaz_26S265E_200cmp = { + Identifier = "LRO_NAC_RockAbndHaz_26S265E_200cmp", + Name = [[LRO LROC Rock Abundance Hazard, Orientale 1]], + FilePath = asset.localResource("LRO_LROC_Rock_Abundance_Hazard/Orientale_1.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_RockAbndHaz_53N354E_150cmp = { + Identifier = "LRO_NAC_RockAbndHaz_53N354E_150cmp", + Name = [[LRO LROC Rock Abundance Hazard, Plato Ejecta]], + FilePath = asset.localResource("LRO_LROC_Rock_Abundance_Hazard/Plato_Ejecta.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_RockAbndHaz_60S200E_150cmp = { + Identifier = "LRO_NAC_RockAbndHaz_60S200E_150cmp", + Name = [[LRO LROC Rock Abundance Hazard, South Pole-Aitken Basin Interior]], + FilePath = asset.localResource("LRO_LROC_Rock_Abundance_Hazard/South_Pole-Aitken_Basin_Interior.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_RockAbndHaz_02S167E_150cmp = { + Identifier = "LRO_NAC_RockAbndHaz_02S167E_150cmp", + Name = [[LRO LROC Rock Abundance Hazard, Stratton (Dewar) High Fe Anomaly]], + FilePath = asset.localResource("LRO_LROC_Rock_Abundance_Hazard/Stratton_Dewar_High_Fe_Anomaly.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_RockAbndHaz_20N010E_2mp = { + Identifier = "LRO_NAC_RockAbndHaz_20N010E_2mp", + Name = [[LRO LROC Rock Abundance Hazard, Sulpicius Gallus]], + FilePath = asset.localResource("LRO_LROC_Rock_Abundance_Hazard/Sulpicius_Gallus.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_RockAbndHaz_43S349E_150cmp = { + Identifier = "LRO_NAC_RockAbndHaz_43S349E_150cmp", + Name = [[LRO LROC Rock Abundance Hazard, Tycho Crater]], + FilePath = asset.localResource("LRO_LROC_Rock_Abundance_Hazard/Tycho_Crater.vrt"), + Description = [[]] +} + +asset.onInitialize(function() + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_RockAbndHaz_17S173E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_RockAbndHaz_13S358E_2mp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_RockAbndHaz_73N350E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_RockAbndHaz_26N004E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_RockAbndHaz_09S015E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_RockAbndHaz_37S206E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_RockAbndHaz_25N311E_2mp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_RockAbndHaz_28N307E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_RockAbndHaz_19S070E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_RockAbndHaz_20S337E_400cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_RockAbndHaz_36N320E_2mp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_RockAbndHaz_00N234E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_RockAbndHaz_08N332E_2mp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_RockAbndHaz_06N120E_200cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_RockAbndHaz_32N292E_2mp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_RockAbndHaz_10N058E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_RockAbndHaz_16S041E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_RockAbndHaz_26S265E_200cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_RockAbndHaz_53N354E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_RockAbndHaz_60S200E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_RockAbndHaz_02S167E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_RockAbndHaz_20N010E_2mp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_RockAbndHaz_43S349E_150cmp) +end) + +asset.onDeinitialize(function() + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_RockAbndHaz_17S173E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_RockAbndHaz_13S358E_2mp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_RockAbndHaz_73N350E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_RockAbndHaz_26N004E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_RockAbndHaz_09S015E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_RockAbndHaz_37S206E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_RockAbndHaz_25N311E_2mp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_RockAbndHaz_28N307E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_RockAbndHaz_19S070E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_RockAbndHaz_20S337E_400cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_RockAbndHaz_36N320E_2mp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_RockAbndHaz_00N234E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_RockAbndHaz_08N332E_2mp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_RockAbndHaz_06N120E_200cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_RockAbndHaz_32N292E_2mp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_RockAbndHaz_10N058E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_RockAbndHaz_16S041E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_RockAbndHaz_26S265E_200cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_RockAbndHaz_53N354E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_RockAbndHaz_60S200E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_RockAbndHaz_02S167E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_RockAbndHaz_20N010E_2mp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_RockAbndHaz_43S349E_150cmp") +end) + +asset.export("LRO_NAC_RockAbndHaz_17S173E_150cmp", treks_LRO_NAC_RockAbndHaz_17S173E_150cmp) +asset.export("LRO_NAC_RockAbndHaz_13S358E_2mp", treks_LRO_NAC_RockAbndHaz_13S358E_2mp) +asset.export("LRO_NAC_RockAbndHaz_73N350E_150cmp", treks_LRO_NAC_RockAbndHaz_73N350E_150cmp) +asset.export("LRO_NAC_RockAbndHaz_26N004E_150cmp", treks_LRO_NAC_RockAbndHaz_26N004E_150cmp) +asset.export("LRO_NAC_RockAbndHaz_09S015E_150cmp", treks_LRO_NAC_RockAbndHaz_09S015E_150cmp) +asset.export("LRO_NAC_RockAbndHaz_37S206E_150cmp", treks_LRO_NAC_RockAbndHaz_37S206E_150cmp) +asset.export("LRO_NAC_RockAbndHaz_25N311E_2mp", treks_LRO_NAC_RockAbndHaz_25N311E_2mp) +asset.export("LRO_NAC_RockAbndHaz_28N307E_150cmp", treks_LRO_NAC_RockAbndHaz_28N307E_150cmp) +asset.export("LRO_NAC_RockAbndHaz_19S070E_150cmp", treks_LRO_NAC_RockAbndHaz_19S070E_150cmp) +asset.export("LRO_NAC_RockAbndHaz_20S337E_400cmp", treks_LRO_NAC_RockAbndHaz_20S337E_400cmp) +asset.export("LRO_NAC_RockAbndHaz_36N320E_2mp", treks_LRO_NAC_RockAbndHaz_36N320E_2mp) +asset.export("LRO_NAC_RockAbndHaz_00N234E_150cmp", treks_LRO_NAC_RockAbndHaz_00N234E_150cmp) +asset.export("LRO_NAC_RockAbndHaz_08N332E_2mp", treks_LRO_NAC_RockAbndHaz_08N332E_2mp) +asset.export("LRO_NAC_RockAbndHaz_06N120E_200cmp", treks_LRO_NAC_RockAbndHaz_06N120E_200cmp) +asset.export("LRO_NAC_RockAbndHaz_32N292E_2mp", treks_LRO_NAC_RockAbndHaz_32N292E_2mp) +asset.export("LRO_NAC_RockAbndHaz_10N058E_150cmp", treks_LRO_NAC_RockAbndHaz_10N058E_150cmp) +asset.export("LRO_NAC_RockAbndHaz_16S041E_150cmp", treks_LRO_NAC_RockAbndHaz_16S041E_150cmp) +asset.export("LRO_NAC_RockAbndHaz_26S265E_200cmp", treks_LRO_NAC_RockAbndHaz_26S265E_200cmp) +asset.export("LRO_NAC_RockAbndHaz_53N354E_150cmp", treks_LRO_NAC_RockAbndHaz_53N354E_150cmp) +asset.export("LRO_NAC_RockAbndHaz_60S200E_150cmp", treks_LRO_NAC_RockAbndHaz_60S200E_150cmp) +asset.export("LRO_NAC_RockAbndHaz_02S167E_150cmp", treks_LRO_NAC_RockAbndHaz_02S167E_150cmp) +asset.export("LRO_NAC_RockAbndHaz_20N010E_2mp", treks_LRO_NAC_RockAbndHaz_20N010E_2mp) +asset.export("LRO_NAC_RockAbndHaz_43S349E_150cmp", treks_LRO_NAC_RockAbndHaz_43S349E_150cmp) + + +asset.meta = { + Name = [[NASA Treks Layers for Moon LRO_LROC_Rock_Abundance_Hazard], + Version = "1.0", + Author = "NASA/Treks", + URL = "https://trek.nasa.gov/moon", + License = "NASA/Treks", + Description = [[LRO_LROC_Rock_Abundance_Hazard layers from NASA/Treks for Moon]] +} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Aitken_Crater.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Aitken_Crater.vrt new file mode 100644 index 0000000000..9d7c54508c --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Aitken_Crater.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Aitken_Crater.wms + 1 + + + + 0 + + + + 0 + Green + + Aitken_Crater.wms + 2 + + + + 0 + + + + 0 + Blue + + Aitken_Crater.wms + 3 + + + + 0 + + + + Alpha + + Aitken_Crater.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Aitken_Crater/LRO_NAC_RockAbndHaz_17S173E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Aitken_Crater.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Aitken_Crater/LRO_NAC_RockAbndHaz_17S173E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Aitken_Crater.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Alphonsus_Crater.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Alphonsus_Crater.vrt new file mode 100644 index 0000000000..d045a2621c --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Alphonsus_Crater.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Alphonsus_Crater.wms + 1 + + + + 0 + + + + 0 + Green + + Alphonsus_Crater.wms + 2 + + + + 0 + + + + 0 + Blue + + Alphonsus_Crater.wms + 3 + + + + 0 + + + + Alpha + + Alphonsus_Crater.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Alphonsus_Crater/LRO_NAC_RockAbndHaz_13S358E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Alphonsus_Crater.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Alphonsus_Crater/LRO_NAC_RockAbndHaz_13S358E_2mp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Alphonsus_Crater.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Anaxagoras_Crater.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Anaxagoras_Crater.vrt new file mode 100644 index 0000000000..235a71373e --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Anaxagoras_Crater.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Anaxagoras_Crater.wms + 1 + + + + 0 + + + + 0 + Green + + Anaxagoras_Crater.wms + 2 + + + + 0 + + + + 0 + Blue + + Anaxagoras_Crater.wms + 3 + + + + 0 + + + + Alpha + + Anaxagoras_Crater.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Anaxagoras_Crater/LRO_NAC_RockAbndHaz_73N350E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Anaxagoras_Crater.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Anaxagoras_Crater/LRO_NAC_RockAbndHaz_73N350E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Anaxagoras_Crater.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Apollo_15.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Apollo_15.vrt new file mode 100644 index 0000000000..3d66ac3c64 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Apollo_15.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Apollo_15.wms + 1 + + + + 0 + + + + 0 + Green + + Apollo_15.wms + 2 + + + + 0 + + + + 0 + Blue + + Apollo_15.wms + 3 + + + + 0 + + + + Alpha + + Apollo_15.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Apollo_15/LRO_NAC_RockAbndHaz_26N004E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Apollo_15.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Apollo_15/LRO_NAC_RockAbndHaz_26N004E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Apollo_15.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Apollo_16.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Apollo_16.vrt new file mode 100644 index 0000000000..4437127cc8 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Apollo_16.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Apollo_16.wms + 1 + + + + 0 + + + + 0 + Green + + Apollo_16.wms + 2 + + + + 0 + + + + 0 + Blue + + Apollo_16.wms + 3 + + + + 0 + + + + Alpha + + Apollo_16.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Apollo_16/LRO_NAC_RockAbndHaz_09S015E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Apollo_16.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Apollo_16/LRO_NAC_RockAbndHaz_09S015E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Apollo_16.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Apollo_Basin.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Apollo_Basin.vrt new file mode 100644 index 0000000000..f655105be7 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Apollo_Basin.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Apollo_Basin.wms + 1 + + + + 0 + + + + 0 + Green + + Apollo_Basin.wms + 2 + + + + 0 + + + + 0 + Blue + + Apollo_Basin.wms + 3 + + + + 0 + + + + Alpha + + Apollo_Basin.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Apollo_Basin/LRO_NAC_RockAbndHaz_37S206E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Apollo_Basin.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Apollo_Basin/LRO_NAC_RockAbndHaz_37S206E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Apollo_Basin.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Aristarchus_1.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Aristarchus_1.vrt new file mode 100644 index 0000000000..7796863a5c --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Aristarchus_1.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Aristarchus_1.wms + 1 + + + + 0 + + + + 0 + Green + + Aristarchus_1.wms + 2 + + + + 0 + + + + 0 + Blue + + Aristarchus_1.wms + 3 + + + + 0 + + + + Alpha + + Aristarchus_1.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Aristarchus_1/LRO_NAC_RockAbndHaz_25N311E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Aristarchus_1.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Aristarchus_1/LRO_NAC_RockAbndHaz_25N311E_2mp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Aristarchus_1.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Aristarchus_2.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Aristarchus_2.vrt new file mode 100644 index 0000000000..93d6a7dd6d --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Aristarchus_2.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Aristarchus_2.wms + 1 + + + + 0 + + + + 0 + Green + + Aristarchus_2.wms + 2 + + + + 0 + + + + 0 + Blue + + Aristarchus_2.wms + 3 + + + + 0 + + + + Alpha + + Aristarchus_2.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Aristarchus_2/LRO_NAC_RockAbndHaz_28N307E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Aristarchus_2.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Aristarchus_2/LRO_NAC_RockAbndHaz_28N307E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Aristarchus_2.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Balmer_Basin.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Balmer_Basin.vrt new file mode 100644 index 0000000000..df36adefb6 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Balmer_Basin.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Balmer_Basin.wms + 1 + + + + 0 + + + + 0 + Green + + Balmer_Basin.wms + 2 + + + + 0 + + + + 0 + Blue + + Balmer_Basin.wms + 3 + + + + 0 + + + + Alpha + + Balmer_Basin.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Balmer_Basin/LRO_NAC_RockAbndHaz_19S070E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Balmer_Basin.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Balmer_Basin/LRO_NAC_RockAbndHaz_19S070E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Balmer_Basin.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Bullialdus_Crater.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Bullialdus_Crater.vrt new file mode 100644 index 0000000000..12dcc554fc --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Bullialdus_Crater.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 6.8664550781250000e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -6.8664550781250000e-04 + + 0 + Red + + Bullialdus_Crater.wms + 1 + + + + 0 + + + + 0 + Green + + Bullialdus_Crater.wms + 2 + + + + 0 + + + + 0 + Blue + + Bullialdus_Crater.wms + 3 + + + + 0 + + + + Alpha + + Bullialdus_Crater.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Bullialdus_Crater/LRO_NAC_RockAbndHaz_20S337E_400cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Bullialdus_Crater.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Bullialdus_Crater/LRO_NAC_RockAbndHaz_20S337E_400cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Bullialdus_Crater.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Gruithuisen_Domes.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Gruithuisen_Domes.vrt new file mode 100644 index 0000000000..0ab681bccf --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Gruithuisen_Domes.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Gruithuisen_Domes.wms + 1 + + + + 0 + + + + 0 + Green + + Gruithuisen_Domes.wms + 2 + + + + 0 + + + + 0 + Blue + + Gruithuisen_Domes.wms + 3 + + + + 0 + + + + Alpha + + Gruithuisen_Domes.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Gruithuisen_Domes/LRO_NAC_RockAbndHaz_36N320E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Gruithuisen_Domes.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Gruithuisen_Domes/LRO_NAC_RockAbndHaz_36N320E_2mp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Gruithuisen_Domes.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Hertzsprung.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Hertzsprung.vrt new file mode 100644 index 0000000000..ad731212e4 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Hertzsprung.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Hertzsprung.wms + 1 + + + + 0 + + + + 0 + Green + + Hertzsprung.wms + 2 + + + + 0 + + + + 0 + Blue + + Hertzsprung.wms + 3 + + + + 0 + + + + Alpha + + Hertzsprung.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Hertzsprung/LRO_NAC_RockAbndHaz_00N234E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Hertzsprung.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Hertzsprung/LRO_NAC_RockAbndHaz_00N234E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Hertzsprung.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Hortensius_Domes.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Hortensius_Domes.vrt new file mode 100644 index 0000000000..348c2f9215 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Hortensius_Domes.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Hortensius_Domes.wms + 1 + + + + 0 + + + + 0 + Green + + Hortensius_Domes.wms + 2 + + + + 0 + + + + 0 + Blue + + Hortensius_Domes.wms + 3 + + + + 0 + + + + Alpha + + Hortensius_Domes.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Hortensius_Domes/LRO_NAC_RockAbndHaz_08N332E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Hortensius_Domes.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Hortensius_Domes/LRO_NAC_RockAbndHaz_08N332E_2mp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Hortensius_Domes.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/King_Crater.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/King_Crater.vrt new file mode 100644 index 0000000000..91c2894c94 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/King_Crater.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + King_Crater.wms + 1 + + + + 0 + + + + 0 + Green + + King_Crater.wms + 2 + + + + 0 + + + + 0 + Blue + + King_Crater.wms + 3 + + + + 0 + + + + Alpha + + King_Crater.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_King_Crater/LRO_NAC_RockAbndHaz_06N120E_200cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/King_Crater.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_King_Crater/LRO_NAC_RockAbndHaz_06N120E_200cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/King_Crater.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Lichtenberg_Crater.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Lichtenberg_Crater.vrt new file mode 100644 index 0000000000..f43777f60a --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Lichtenberg_Crater.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Lichtenberg_Crater.wms + 1 + + + + 0 + + + + 0 + Green + + Lichtenberg_Crater.wms + 2 + + + + 0 + + + + 0 + Blue + + Lichtenberg_Crater.wms + 3 + + + + 0 + + + + Alpha + + Lichtenberg_Crater.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Lichtenberg_Crater/LRO_NAC_RockAbndHaz_32N292E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Lichtenberg_Crater.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Lichtenberg_Crater/LRO_NAC_RockAbndHaz_32N292E_2mp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Lichtenberg_Crater.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Mare_Crisium.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Mare_Crisium.vrt new file mode 100644 index 0000000000..d6a7df281a --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Mare_Crisium.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Mare_Crisium.wms + 1 + + + + 0 + + + + 0 + Green + + Mare_Crisium.wms + 2 + + + + 0 + + + + 0 + Blue + + Mare_Crisium.wms + 3 + + + + 0 + + + + Alpha + + Mare_Crisium.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Mare_Crisium/LRO_NAC_RockAbndHaz_10N058E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Mare_Crisium.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Mare_Crisium/LRO_NAC_RockAbndHaz_10N058E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Mare_Crisium.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Montes_Pyrenaeus.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Montes_Pyrenaeus.vrt new file mode 100644 index 0000000000..7e7910be4a --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Montes_Pyrenaeus.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Montes_Pyrenaeus.wms + 1 + + + + 0 + + + + 0 + Green + + Montes_Pyrenaeus.wms + 2 + + + + 0 + + + + 0 + Blue + + Montes_Pyrenaeus.wms + 3 + + + + 0 + + + + Alpha + + Montes_Pyrenaeus.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Montes_Pyrenaeus/LRO_NAC_RockAbndHaz_16S041E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Montes_Pyrenaeus.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Montes_Pyrenaeus/LRO_NAC_RockAbndHaz_16S041E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Montes_Pyrenaeus.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Orientale_1.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Orientale_1.vrt new file mode 100644 index 0000000000..7828a2e6b2 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Orientale_1.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Orientale_1.wms + 1 + + + + 0 + + + + 0 + Green + + Orientale_1.wms + 2 + + + + 0 + + + + 0 + Blue + + Orientale_1.wms + 3 + + + + 0 + + + + Alpha + + Orientale_1.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Orientale_1/LRO_NAC_RockAbndHaz_26S265E_200cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Orientale_1.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Orientale_1/LRO_NAC_RockAbndHaz_26S265E_200cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Orientale_1.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Plato_Ejecta.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Plato_Ejecta.vrt new file mode 100644 index 0000000000..955c4b47cf --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Plato_Ejecta.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Plato_Ejecta.wms + 1 + + + + 0 + + + + 0 + Green + + Plato_Ejecta.wms + 2 + + + + 0 + + + + 0 + Blue + + Plato_Ejecta.wms + 3 + + + + 0 + + + + Alpha + + Plato_Ejecta.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Plato_Ejecta/LRO_NAC_RockAbndHaz_53N354E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Plato_Ejecta.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Plato_Ejecta/LRO_NAC_RockAbndHaz_53N354E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Plato_Ejecta.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/South_Pole-Aitken_Basin_Interior.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/South_Pole-Aitken_Basin_Interior.vrt new file mode 100644 index 0000000000..63d096530c --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/South_Pole-Aitken_Basin_Interior.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + South_Pole-Aitken_Basin_Interior.wms + 1 + + + + 0 + + + + 0 + Green + + South_Pole-Aitken_Basin_Interior.wms + 2 + + + + 0 + + + + 0 + Blue + + South_Pole-Aitken_Basin_Interior.wms + 3 + + + + 0 + + + + Alpha + + South_Pole-Aitken_Basin_Interior.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_South_Pole-Aitken_Basin_Interior/LRO_NAC_RockAbndHaz_60S200E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/South_Pole-Aitken_Basin_Interior.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_South_Pole-Aitken_Basin_Interior/LRO_NAC_RockAbndHaz_60S200E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/South_Pole-Aitken_Basin_Interior.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Stratton_Dewar_High_Fe_Anomaly.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Stratton_Dewar_High_Fe_Anomaly.vrt new file mode 100644 index 0000000000..9ea8239472 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Stratton_Dewar_High_Fe_Anomaly.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Stratton_Dewar_High_Fe_Anomaly.wms + 1 + + + + 0 + + + + 0 + Green + + Stratton_Dewar_High_Fe_Anomaly.wms + 2 + + + + 0 + + + + 0 + Blue + + Stratton_Dewar_High_Fe_Anomaly.wms + 3 + + + + 0 + + + + Alpha + + Stratton_Dewar_High_Fe_Anomaly.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Stratton_(Dewar)_High_Fe_Anomaly/LRO_NAC_RockAbndHaz_02S167E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Stratton_Dewar_High_Fe_Anomaly.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Stratton_(Dewar)_High_Fe_Anomaly/LRO_NAC_RockAbndHaz_02S167E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Stratton_Dewar_High_Fe_Anomaly.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Sulpicius_Gallus.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Sulpicius_Gallus.vrt new file mode 100644 index 0000000000..a13f1c4a0a --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Sulpicius_Gallus.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Sulpicius_Gallus.wms + 1 + + + + 0 + + + + 0 + Green + + Sulpicius_Gallus.wms + 2 + + + + 0 + + + + 0 + Blue + + Sulpicius_Gallus.wms + 3 + + + + 0 + + + + Alpha + + Sulpicius_Gallus.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Sulpicius_Gallus/LRO_NAC_RockAbndHaz_20N010E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Sulpicius_Gallus.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Sulpicius_Gallus/LRO_NAC_RockAbndHaz_20N010E_2mp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Sulpicius_Gallus.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Tycho_Crater.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Tycho_Crater.vrt new file mode 100644 index 0000000000..60bed90160 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Tycho_Crater.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Tycho_Crater.wms + 1 + + + + 0 + + + + 0 + Green + + Tycho_Crater.wms + 2 + + + + 0 + + + + 0 + Blue + + Tycho_Crater.wms + 3 + + + + 0 + + + + Alpha + + Tycho_Crater.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Tycho_Crater/LRO_NAC_RockAbndHaz_43S349E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Tycho_Crater.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Tycho_Crater/LRO_NAC_RockAbndHaz_43S349E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard/Tycho_Crater.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Aitken_Crater/LRO_LROC_Rock_Abundance_Hazard_Aitken_Crater.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Aitken_Crater/LRO_LROC_Rock_Abundance_Hazard_Aitken_Crater.asset deleted file mode 100644 index ba8f85924f..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Aitken_Crater/LRO_LROC_Rock_Abundance_Hazard_Aitken_Crater.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_RockAbndHaz_17S173E_150cmp", - Name = [[LRO LROC Rock Abundance Hazard, Aitken Crater]], - FilePath = asset.localResource("LRO_NAC_RockAbndHaz_17S173E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Rock Abundance Hazard, Aitken Crater]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_RockAbndHaz_17S173E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Rock Abundance Hazard, Aitken Crater layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Aitken_Crater/LRO_NAC_RockAbndHaz_17S173E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Aitken_Crater/LRO_NAC_RockAbndHaz_17S173E_150cmp.vrt deleted file mode 100644 index 0ade37e2ce..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Aitken_Crater/LRO_NAC_RockAbndHaz_17S173E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_RockAbndHaz_17S173E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_RockAbndHaz_17S173E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_RockAbndHaz_17S173E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_RockAbndHaz_17S173E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Alphonsus_Crater/LRO_LROC_Rock_Abundance_Hazard_Alphonsus_Crater.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Alphonsus_Crater/LRO_LROC_Rock_Abundance_Hazard_Alphonsus_Crater.asset deleted file mode 100644 index 97d1eb6a91..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Alphonsus_Crater/LRO_LROC_Rock_Abundance_Hazard_Alphonsus_Crater.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_RockAbndHaz_13S358E_2mp", - Name = [[LRO LROC Rock Abundance Hazard, Alphonsus Crater]], - FilePath = asset.localResource("LRO_NAC_RockAbndHaz_13S358E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Rock Abundance Hazard, Alphonsus Crater]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_RockAbndHaz_13S358E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Rock Abundance Hazard, Alphonsus Crater layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Alphonsus_Crater/LRO_NAC_RockAbndHaz_13S358E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Alphonsus_Crater/LRO_NAC_RockAbndHaz_13S358E_2mp.vrt deleted file mode 100644 index d1e7314ef9..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Alphonsus_Crater/LRO_NAC_RockAbndHaz_13S358E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_RockAbndHaz_13S358E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_RockAbndHaz_13S358E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_RockAbndHaz_13S358E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_RockAbndHaz_13S358E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Anaxagoras_Crater/LRO_LROC_Rock_Abundance_Hazard_Anaxagoras_Crater.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Anaxagoras_Crater/LRO_LROC_Rock_Abundance_Hazard_Anaxagoras_Crater.asset deleted file mode 100644 index 844f905872..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Anaxagoras_Crater/LRO_LROC_Rock_Abundance_Hazard_Anaxagoras_Crater.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_RockAbndHaz_73N350E_150cmp", - Name = [[LRO LROC Rock Abundance Hazard, Anaxagoras Crater]], - FilePath = asset.localResource("LRO_NAC_RockAbndHaz_73N350E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Rock Abundance Hazard, Anaxagoras Crater]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_RockAbndHaz_73N350E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Rock Abundance Hazard, Anaxagoras Crater layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Anaxagoras_Crater/LRO_NAC_RockAbndHaz_73N350E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Anaxagoras_Crater/LRO_NAC_RockAbndHaz_73N350E_150cmp.vrt deleted file mode 100644 index 3a5213ac32..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Anaxagoras_Crater/LRO_NAC_RockAbndHaz_73N350E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_RockAbndHaz_73N350E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_RockAbndHaz_73N350E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_RockAbndHaz_73N350E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_RockAbndHaz_73N350E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Apollo_15/LRO_LROC_Rock_Abundance_Hazard_Apollo_15.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Apollo_15/LRO_LROC_Rock_Abundance_Hazard_Apollo_15.asset deleted file mode 100644 index 6faa151208..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Apollo_15/LRO_LROC_Rock_Abundance_Hazard_Apollo_15.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_RockAbndHaz_26N004E_150cmp", - Name = [[LRO LROC Rock Abundance Hazard, Apollo 15]], - FilePath = asset.localResource("LRO_NAC_RockAbndHaz_26N004E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Rock Abundance Hazard, Apollo 15]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_RockAbndHaz_26N004E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Rock Abundance Hazard, Apollo 15 layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Apollo_15/LRO_NAC_RockAbndHaz_26N004E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Apollo_15/LRO_NAC_RockAbndHaz_26N004E_150cmp.vrt deleted file mode 100644 index 1f22b5c5e4..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Apollo_15/LRO_NAC_RockAbndHaz_26N004E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_RockAbndHaz_26N004E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_RockAbndHaz_26N004E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_RockAbndHaz_26N004E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_RockAbndHaz_26N004E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Apollo_16/LRO_LROC_Rock_Abundance_Hazard_Apollo_16.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Apollo_16/LRO_LROC_Rock_Abundance_Hazard_Apollo_16.asset deleted file mode 100644 index 45da68eb8e..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Apollo_16/LRO_LROC_Rock_Abundance_Hazard_Apollo_16.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_RockAbndHaz_09S015E_150cmp", - Name = [[LRO LROC Rock Abundance Hazard, Apollo 16]], - FilePath = asset.localResource("LRO_NAC_RockAbndHaz_09S015E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Rock Abundance Hazard, Apollo 16]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_RockAbndHaz_09S015E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Rock Abundance Hazard, Apollo 16 layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Apollo_16/LRO_NAC_RockAbndHaz_09S015E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Apollo_16/LRO_NAC_RockAbndHaz_09S015E_150cmp.vrt deleted file mode 100644 index 593f3a7dbb..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Apollo_16/LRO_NAC_RockAbndHaz_09S015E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_RockAbndHaz_09S015E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_RockAbndHaz_09S015E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_RockAbndHaz_09S015E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_RockAbndHaz_09S015E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Apollo_Basin/LRO_LROC_Rock_Abundance_Hazard_Apollo_Basin.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Apollo_Basin/LRO_LROC_Rock_Abundance_Hazard_Apollo_Basin.asset deleted file mode 100644 index 9443b50d97..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Apollo_Basin/LRO_LROC_Rock_Abundance_Hazard_Apollo_Basin.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_RockAbndHaz_37S206E_150cmp", - Name = [[LRO LROC Rock Abundance Hazard, Apollo Basin]], - FilePath = asset.localResource("LRO_NAC_RockAbndHaz_37S206E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Rock Abundance Hazard, Apollo Basin]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_RockAbndHaz_37S206E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Rock Abundance Hazard, Apollo Basin layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Apollo_Basin/LRO_NAC_RockAbndHaz_37S206E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Apollo_Basin/LRO_NAC_RockAbndHaz_37S206E_150cmp.vrt deleted file mode 100644 index 4ee5db5db8..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Apollo_Basin/LRO_NAC_RockAbndHaz_37S206E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_RockAbndHaz_37S206E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_RockAbndHaz_37S206E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_RockAbndHaz_37S206E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_RockAbndHaz_37S206E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Aristarchus_1/LRO_LROC_Rock_Abundance_Hazard_Aristarchus_1.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Aristarchus_1/LRO_LROC_Rock_Abundance_Hazard_Aristarchus_1.asset deleted file mode 100644 index 6e7a0309c0..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Aristarchus_1/LRO_LROC_Rock_Abundance_Hazard_Aristarchus_1.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_RockAbndHaz_25N311E_2mp", - Name = [[LRO LROC Rock Abundance Hazard, Aristarchus 1]], - FilePath = asset.localResource("LRO_NAC_RockAbndHaz_25N311E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Rock Abundance Hazard, Aristarchus 1]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_RockAbndHaz_25N311E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Rock Abundance Hazard, Aristarchus 1 layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Aristarchus_1/LRO_NAC_RockAbndHaz_25N311E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Aristarchus_1/LRO_NAC_RockAbndHaz_25N311E_2mp.vrt deleted file mode 100644 index 16f5a581c7..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Aristarchus_1/LRO_NAC_RockAbndHaz_25N311E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_RockAbndHaz_25N311E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_RockAbndHaz_25N311E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_RockAbndHaz_25N311E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_RockAbndHaz_25N311E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Aristarchus_2/LRO_LROC_Rock_Abundance_Hazard_Aristarchus_2.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Aristarchus_2/LRO_LROC_Rock_Abundance_Hazard_Aristarchus_2.asset deleted file mode 100644 index a856bad168..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Aristarchus_2/LRO_LROC_Rock_Abundance_Hazard_Aristarchus_2.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_RockAbndHaz_28N307E_150cmp", - Name = [[LRO LROC Rock Abundance Hazard, Aristarchus 2]], - FilePath = asset.localResource("LRO_NAC_RockAbndHaz_28N307E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Rock Abundance Hazard, Aristarchus 2]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_RockAbndHaz_28N307E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Rock Abundance Hazard, Aristarchus 2 layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Aristarchus_2/LRO_NAC_RockAbndHaz_28N307E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Aristarchus_2/LRO_NAC_RockAbndHaz_28N307E_150cmp.vrt deleted file mode 100644 index 79a655f151..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Aristarchus_2/LRO_NAC_RockAbndHaz_28N307E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_RockAbndHaz_28N307E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_RockAbndHaz_28N307E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_RockAbndHaz_28N307E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_RockAbndHaz_28N307E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Balmer_Basin/LRO_LROC_Rock_Abundance_Hazard_Balmer_Basin.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Balmer_Basin/LRO_LROC_Rock_Abundance_Hazard_Balmer_Basin.asset deleted file mode 100644 index 93471d33bd..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Balmer_Basin/LRO_LROC_Rock_Abundance_Hazard_Balmer_Basin.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_RockAbndHaz_19S070E_150cmp", - Name = [[LRO LROC Rock Abundance Hazard, Balmer Basin]], - FilePath = asset.localResource("LRO_NAC_RockAbndHaz_19S070E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Rock Abundance Hazard, Balmer Basin]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_RockAbndHaz_19S070E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Rock Abundance Hazard, Balmer Basin layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Balmer_Basin/LRO_NAC_RockAbndHaz_19S070E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Balmer_Basin/LRO_NAC_RockAbndHaz_19S070E_150cmp.vrt deleted file mode 100644 index e8ad39d495..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Balmer_Basin/LRO_NAC_RockAbndHaz_19S070E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_RockAbndHaz_19S070E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_RockAbndHaz_19S070E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_RockAbndHaz_19S070E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_RockAbndHaz_19S070E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Bullialdus_Crater/LRO_LROC_Rock_Abundance_Hazard_Bullialdus_Crater.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Bullialdus_Crater/LRO_LROC_Rock_Abundance_Hazard_Bullialdus_Crater.asset deleted file mode 100644 index 02d7df76ea..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Bullialdus_Crater/LRO_LROC_Rock_Abundance_Hazard_Bullialdus_Crater.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_RockAbndHaz_20S337E_400cmp", - Name = [[LRO LROC Rock Abundance Hazard, Bullialdus Crater]], - FilePath = asset.localResource("LRO_NAC_RockAbndHaz_20S337E_400cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Rock Abundance Hazard, Bullialdus Crater]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_RockAbndHaz_20S337E_400cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Rock Abundance Hazard, Bullialdus Crater layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Bullialdus_Crater/LRO_NAC_RockAbndHaz_20S337E_400cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Bullialdus_Crater/LRO_NAC_RockAbndHaz_20S337E_400cmp.vrt deleted file mode 100644 index bdfc2d2b25..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Bullialdus_Crater/LRO_NAC_RockAbndHaz_20S337E_400cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 6.8664550781250000e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -6.8664550781250000e-04 - - 0 - Red - - LRO_NAC_RockAbndHaz_20S337E_400cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_RockAbndHaz_20S337E_400cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_RockAbndHaz_20S337E_400cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_RockAbndHaz_20S337E_400cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Gruithuisen_Domes/LRO_LROC_Rock_Abundance_Hazard_Gruithuisen_Domes.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Gruithuisen_Domes/LRO_LROC_Rock_Abundance_Hazard_Gruithuisen_Domes.asset deleted file mode 100644 index 4f5d0ef38d..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Gruithuisen_Domes/LRO_LROC_Rock_Abundance_Hazard_Gruithuisen_Domes.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_RockAbndHaz_36N320E_2mp", - Name = [[LRO LROC Rock Abundance Hazard, Gruithuisen Domes]], - FilePath = asset.localResource("LRO_NAC_RockAbndHaz_36N320E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Rock Abundance Hazard, Gruithuisen Domes]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_RockAbndHaz_36N320E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Rock Abundance Hazard, Gruithuisen Domes layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Gruithuisen_Domes/LRO_NAC_RockAbndHaz_36N320E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Gruithuisen_Domes/LRO_NAC_RockAbndHaz_36N320E_2mp.vrt deleted file mode 100644 index 95fb3bfd88..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Gruithuisen_Domes/LRO_NAC_RockAbndHaz_36N320E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_RockAbndHaz_36N320E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_RockAbndHaz_36N320E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_RockAbndHaz_36N320E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_RockAbndHaz_36N320E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Hertzsprung/LRO_LROC_Rock_Abundance_Hazard_Hertzsprung.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Hertzsprung/LRO_LROC_Rock_Abundance_Hazard_Hertzsprung.asset deleted file mode 100644 index 7d3d8e3828..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Hertzsprung/LRO_LROC_Rock_Abundance_Hazard_Hertzsprung.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_RockAbndHaz_00N234E_150cmp", - Name = [[LRO LROC Rock Abundance Hazard, Hertzsprung]], - FilePath = asset.localResource("LRO_NAC_RockAbndHaz_00N234E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Rock Abundance Hazard, Hertzsprung]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_RockAbndHaz_00N234E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Rock Abundance Hazard, Hertzsprung layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Hertzsprung/LRO_NAC_RockAbndHaz_00N234E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Hertzsprung/LRO_NAC_RockAbndHaz_00N234E_150cmp.vrt deleted file mode 100644 index f43c97b59e..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Hertzsprung/LRO_NAC_RockAbndHaz_00N234E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_RockAbndHaz_00N234E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_RockAbndHaz_00N234E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_RockAbndHaz_00N234E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_RockAbndHaz_00N234E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Hortensius_Domes/LRO_LROC_Rock_Abundance_Hazard_Hortensius_Domes.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Hortensius_Domes/LRO_LROC_Rock_Abundance_Hazard_Hortensius_Domes.asset deleted file mode 100644 index 9ccfa20c06..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Hortensius_Domes/LRO_LROC_Rock_Abundance_Hazard_Hortensius_Domes.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_RockAbndHaz_08N332E_2mp", - Name = [[LRO LROC Rock Abundance Hazard, Hortensius Domes]], - FilePath = asset.localResource("LRO_NAC_RockAbndHaz_08N332E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Rock Abundance Hazard, Hortensius Domes]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_RockAbndHaz_08N332E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Rock Abundance Hazard, Hortensius Domes layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Hortensius_Domes/LRO_NAC_RockAbndHaz_08N332E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Hortensius_Domes/LRO_NAC_RockAbndHaz_08N332E_2mp.vrt deleted file mode 100644 index 15bbe8693a..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Hortensius_Domes/LRO_NAC_RockAbndHaz_08N332E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_RockAbndHaz_08N332E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_RockAbndHaz_08N332E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_RockAbndHaz_08N332E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_RockAbndHaz_08N332E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_King_Crater/LRO_LROC_Rock_Abundance_Hazard_King_Crater.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_King_Crater/LRO_LROC_Rock_Abundance_Hazard_King_Crater.asset deleted file mode 100644 index 9d121bfc1b..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_King_Crater/LRO_LROC_Rock_Abundance_Hazard_King_Crater.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_RockAbndHaz_06N120E_200cmp", - Name = [[LRO LROC Rock Abundance Hazard, King Crater]], - FilePath = asset.localResource("LRO_NAC_RockAbndHaz_06N120E_200cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Rock Abundance Hazard, King Crater]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_RockAbndHaz_06N120E_200cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Rock Abundance Hazard, King Crater layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_King_Crater/LRO_NAC_RockAbndHaz_06N120E_200cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_King_Crater/LRO_NAC_RockAbndHaz_06N120E_200cmp.vrt deleted file mode 100644 index 9d7526048f..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_King_Crater/LRO_NAC_RockAbndHaz_06N120E_200cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_RockAbndHaz_06N120E_200cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_RockAbndHaz_06N120E_200cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_RockAbndHaz_06N120E_200cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_RockAbndHaz_06N120E_200cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Lichtenberg_Crater/LRO_LROC_Rock_Abundance_Hazard_Lichtenberg_Crater.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Lichtenberg_Crater/LRO_LROC_Rock_Abundance_Hazard_Lichtenberg_Crater.asset deleted file mode 100644 index 6d1d44bc35..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Lichtenberg_Crater/LRO_LROC_Rock_Abundance_Hazard_Lichtenberg_Crater.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_RockAbndHaz_32N292E_2mp", - Name = [[LRO LROC Rock Abundance Hazard, Lichtenberg Crater]], - FilePath = asset.localResource("LRO_NAC_RockAbndHaz_32N292E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Rock Abundance Hazard, Lichtenberg Crater]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_RockAbndHaz_32N292E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Rock Abundance Hazard, Lichtenberg Crater layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Lichtenberg_Crater/LRO_NAC_RockAbndHaz_32N292E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Lichtenberg_Crater/LRO_NAC_RockAbndHaz_32N292E_2mp.vrt deleted file mode 100644 index 30e9dcb96a..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Lichtenberg_Crater/LRO_NAC_RockAbndHaz_32N292E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_RockAbndHaz_32N292E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_RockAbndHaz_32N292E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_RockAbndHaz_32N292E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_RockAbndHaz_32N292E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Mare_Crisium/LRO_LROC_Rock_Abundance_Hazard_Mare_Crisium.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Mare_Crisium/LRO_LROC_Rock_Abundance_Hazard_Mare_Crisium.asset deleted file mode 100644 index c36ba58b05..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Mare_Crisium/LRO_LROC_Rock_Abundance_Hazard_Mare_Crisium.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_RockAbndHaz_10N058E_150cmp", - Name = [[LRO LROC Rock Abundance Hazard, Mare Crisium]], - FilePath = asset.localResource("LRO_NAC_RockAbndHaz_10N058E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Rock Abundance Hazard, Mare Crisium]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_RockAbndHaz_10N058E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Rock Abundance Hazard, Mare Crisium layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Mare_Crisium/LRO_NAC_RockAbndHaz_10N058E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Mare_Crisium/LRO_NAC_RockAbndHaz_10N058E_150cmp.vrt deleted file mode 100644 index 835a2172c0..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Mare_Crisium/LRO_NAC_RockAbndHaz_10N058E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_RockAbndHaz_10N058E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_RockAbndHaz_10N058E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_RockAbndHaz_10N058E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_RockAbndHaz_10N058E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Montes_Pyrenaeus/LRO_LROC_Rock_Abundance_Hazard_Montes_Pyrenaeus.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Montes_Pyrenaeus/LRO_LROC_Rock_Abundance_Hazard_Montes_Pyrenaeus.asset deleted file mode 100644 index ba0aca04dc..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Montes_Pyrenaeus/LRO_LROC_Rock_Abundance_Hazard_Montes_Pyrenaeus.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_RockAbndHaz_16S041E_150cmp", - Name = [[LRO LROC Rock Abundance Hazard, Montes Pyrenaeus]], - FilePath = asset.localResource("LRO_NAC_RockAbndHaz_16S041E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Rock Abundance Hazard, Montes Pyrenaeus]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_RockAbndHaz_16S041E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Rock Abundance Hazard, Montes Pyrenaeus layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Montes_Pyrenaeus/LRO_NAC_RockAbndHaz_16S041E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Montes_Pyrenaeus/LRO_NAC_RockAbndHaz_16S041E_150cmp.vrt deleted file mode 100644 index ce62574244..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Montes_Pyrenaeus/LRO_NAC_RockAbndHaz_16S041E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_RockAbndHaz_16S041E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_RockAbndHaz_16S041E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_RockAbndHaz_16S041E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_RockAbndHaz_16S041E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Orientale_1/LRO_LROC_Rock_Abundance_Hazard_Orientale_1.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Orientale_1/LRO_LROC_Rock_Abundance_Hazard_Orientale_1.asset deleted file mode 100644 index 7a70cc2d98..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Orientale_1/LRO_LROC_Rock_Abundance_Hazard_Orientale_1.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_RockAbndHaz_26S265E_200cmp", - Name = [[LRO LROC Rock Abundance Hazard, Orientale 1]], - FilePath = asset.localResource("LRO_NAC_RockAbndHaz_26S265E_200cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Rock Abundance Hazard, Orientale 1]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_RockAbndHaz_26S265E_200cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Rock Abundance Hazard, Orientale 1 layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Orientale_1/LRO_NAC_RockAbndHaz_26S265E_200cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Orientale_1/LRO_NAC_RockAbndHaz_26S265E_200cmp.vrt deleted file mode 100644 index aa19d8cbec..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Orientale_1/LRO_NAC_RockAbndHaz_26S265E_200cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_RockAbndHaz_26S265E_200cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_RockAbndHaz_26S265E_200cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_RockAbndHaz_26S265E_200cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_RockAbndHaz_26S265E_200cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Plato_Ejecta/LRO_LROC_Rock_Abundance_Hazard_Plato_Ejecta.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Plato_Ejecta/LRO_LROC_Rock_Abundance_Hazard_Plato_Ejecta.asset deleted file mode 100644 index 6393cd52ac..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Plato_Ejecta/LRO_LROC_Rock_Abundance_Hazard_Plato_Ejecta.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_RockAbndHaz_53N354E_150cmp", - Name = [[LRO LROC Rock Abundance Hazard, Plato Ejecta]], - FilePath = asset.localResource("LRO_NAC_RockAbndHaz_53N354E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Rock Abundance Hazard, Plato Ejecta]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_RockAbndHaz_53N354E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Rock Abundance Hazard, Plato Ejecta layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Plato_Ejecta/LRO_NAC_RockAbndHaz_53N354E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Plato_Ejecta/LRO_NAC_RockAbndHaz_53N354E_150cmp.vrt deleted file mode 100644 index 012b53b656..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Plato_Ejecta/LRO_NAC_RockAbndHaz_53N354E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_RockAbndHaz_53N354E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_RockAbndHaz_53N354E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_RockAbndHaz_53N354E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_RockAbndHaz_53N354E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_South_Pole-Aitken_Basin_Interior/LRO_LROC_Rock_Abundance_Hazard_South_Pole-Aitken_Basin_Interior.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_South_Pole-Aitken_Basin_Interior/LRO_LROC_Rock_Abundance_Hazard_South_Pole-Aitken_Basin_Interior.asset deleted file mode 100644 index baa4871574..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_South_Pole-Aitken_Basin_Interior/LRO_LROC_Rock_Abundance_Hazard_South_Pole-Aitken_Basin_Interior.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_RockAbndHaz_60S200E_150cmp", - Name = [[LRO LROC Rock Abundance Hazard, South Pole-Aitken Basin Interior]], - FilePath = asset.localResource("LRO_NAC_RockAbndHaz_60S200E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Rock Abundance Hazard, South Pole-Aitken Basin Interior]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_RockAbndHaz_60S200E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Rock Abundance Hazard, South Pole-Aitken Basin Interior layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_South_Pole-Aitken_Basin_Interior/LRO_NAC_RockAbndHaz_60S200E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_South_Pole-Aitken_Basin_Interior/LRO_NAC_RockAbndHaz_60S200E_150cmp.vrt deleted file mode 100644 index 4e7ac0da48..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_South_Pole-Aitken_Basin_Interior/LRO_NAC_RockAbndHaz_60S200E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_RockAbndHaz_60S200E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_RockAbndHaz_60S200E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_RockAbndHaz_60S200E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_RockAbndHaz_60S200E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Stratton_(Dewar)_High_Fe_Anomaly/LRO_LROC_Rock_Abundance_Hazard_Stratton_(Dewar)_High_Fe_Anomaly.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Stratton_(Dewar)_High_Fe_Anomaly/LRO_LROC_Rock_Abundance_Hazard_Stratton_(Dewar)_High_Fe_Anomaly.asset deleted file mode 100644 index 7f7e935f2a..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Stratton_(Dewar)_High_Fe_Anomaly/LRO_LROC_Rock_Abundance_Hazard_Stratton_(Dewar)_High_Fe_Anomaly.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_RockAbndHaz_02S167E_150cmp", - Name = [[LRO LROC Rock Abundance Hazard, Stratton (Dewar) High Fe Anomaly]], - FilePath = asset.localResource("LRO_NAC_RockAbndHaz_02S167E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Rock Abundance Hazard, Stratton (Dewar) High Fe Anomaly]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_RockAbndHaz_02S167E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Rock Abundance Hazard, Stratton (Dewar) High Fe Anomaly layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Stratton_(Dewar)_High_Fe_Anomaly/LRO_NAC_RockAbndHaz_02S167E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Stratton_(Dewar)_High_Fe_Anomaly/LRO_NAC_RockAbndHaz_02S167E_150cmp.vrt deleted file mode 100644 index 0c6f19ed1a..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Stratton_(Dewar)_High_Fe_Anomaly/LRO_NAC_RockAbndHaz_02S167E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_RockAbndHaz_02S167E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_RockAbndHaz_02S167E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_RockAbndHaz_02S167E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_RockAbndHaz_02S167E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Sulpicius_Gallus/LRO_LROC_Rock_Abundance_Hazard_Sulpicius_Gallus.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Sulpicius_Gallus/LRO_LROC_Rock_Abundance_Hazard_Sulpicius_Gallus.asset deleted file mode 100644 index 7bc1c79b41..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Sulpicius_Gallus/LRO_LROC_Rock_Abundance_Hazard_Sulpicius_Gallus.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_RockAbndHaz_20N010E_2mp", - Name = [[LRO LROC Rock Abundance Hazard, Sulpicius Gallus]], - FilePath = asset.localResource("LRO_NAC_RockAbndHaz_20N010E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Rock Abundance Hazard, Sulpicius Gallus]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_RockAbndHaz_20N010E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Rock Abundance Hazard, Sulpicius Gallus layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Sulpicius_Gallus/LRO_NAC_RockAbndHaz_20N010E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Sulpicius_Gallus/LRO_NAC_RockAbndHaz_20N010E_2mp.vrt deleted file mode 100644 index 29c46cefef..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Sulpicius_Gallus/LRO_NAC_RockAbndHaz_20N010E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_RockAbndHaz_20N010E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_RockAbndHaz_20N010E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_RockAbndHaz_20N010E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_RockAbndHaz_20N010E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Tycho_Crater/LRO_LROC_Rock_Abundance_Hazard_Tycho_Crater.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Tycho_Crater/LRO_LROC_Rock_Abundance_Hazard_Tycho_Crater.asset deleted file mode 100644 index 333e149a5d..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Tycho_Crater/LRO_LROC_Rock_Abundance_Hazard_Tycho_Crater.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_RockAbndHaz_43S349E_150cmp", - Name = [[LRO LROC Rock Abundance Hazard, Tycho Crater]], - FilePath = asset.localResource("LRO_NAC_RockAbndHaz_43S349E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Rock Abundance Hazard, Tycho Crater]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_RockAbndHaz_43S349E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Rock Abundance Hazard, Tycho Crater layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Tycho_Crater/LRO_NAC_RockAbndHaz_43S349E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Tycho_Crater/LRO_NAC_RockAbndHaz_43S349E_150cmp.vrt deleted file mode 100644 index 063ba54dec..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hazard_Tycho_Crater/LRO_NAC_RockAbndHaz_43S349E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_RockAbndHaz_43S349E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_RockAbndHaz_43S349E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_RockAbndHaz_43S349E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_RockAbndHaz_43S349E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hertzsprung/LRO_LROC_Rock_Abundance_Hertzsprung.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hertzsprung/LRO_LROC_Rock_Abundance_Hertzsprung.asset deleted file mode 100644 index c7d32e0448..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hertzsprung/LRO_LROC_Rock_Abundance_Hertzsprung.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_RockAbnd_00N234E_150cmp", - Name = [[LRO LROC Rock Abundance, Hertzsprung]], - FilePath = asset.localResource("LRO_NAC_RockAbnd_00N234E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Rock Abundance, Hertzsprung]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_RockAbnd_00N234E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Rock Abundance, Hertzsprung layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hertzsprung/LRO_NAC_RockAbnd_00N234E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hertzsprung/LRO_NAC_RockAbnd_00N234E_150cmp.vrt deleted file mode 100644 index 187d38045d..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hertzsprung/LRO_NAC_RockAbnd_00N234E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_RockAbnd_00N234E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_RockAbnd_00N234E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_RockAbnd_00N234E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_RockAbnd_00N234E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hortensius_Domes/LRO_LROC_Rock_Abundance_Hortensius_Domes.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hortensius_Domes/LRO_LROC_Rock_Abundance_Hortensius_Domes.asset deleted file mode 100644 index 3d5f1aeb23..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hortensius_Domes/LRO_LROC_Rock_Abundance_Hortensius_Domes.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_RockAbnd_08N332E_2mp", - Name = [[LRO LROC Rock Abundance, Hortensius Domes]], - FilePath = asset.localResource("LRO_NAC_RockAbnd_08N332E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Rock Abundance, Hortensius Domes]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_RockAbnd_08N332E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Rock Abundance, Hortensius Domes layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hortensius_Domes/LRO_NAC_RockAbnd_08N332E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hortensius_Domes/LRO_NAC_RockAbnd_08N332E_2mp.vrt deleted file mode 100644 index 2a5df2d1a1..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Hortensius_Domes/LRO_NAC_RockAbnd_08N332E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_RockAbnd_08N332E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_RockAbnd_08N332E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_RockAbnd_08N332E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_RockAbnd_08N332E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_King_Crater/LRO_LROC_Rock_Abundance_King_Crater.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_King_Crater/LRO_LROC_Rock_Abundance_King_Crater.asset deleted file mode 100644 index 462299900a..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_King_Crater/LRO_LROC_Rock_Abundance_King_Crater.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_RockAbnd_06N120E_200cmp", - Name = [[LRO LROC Rock Abundance, King Crater]], - FilePath = asset.localResource("LRO_NAC_RockAbnd_06N120E_200cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Rock Abundance, King Crater]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_RockAbnd_06N120E_200cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Rock Abundance, King Crater layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_King_Crater/LRO_NAC_RockAbnd_06N120E_200cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_King_Crater/LRO_NAC_RockAbnd_06N120E_200cmp.vrt deleted file mode 100644 index c98172a9d9..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_King_Crater/LRO_NAC_RockAbnd_06N120E_200cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_RockAbnd_06N120E_200cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_RockAbnd_06N120E_200cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_RockAbnd_06N120E_200cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_RockAbnd_06N120E_200cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Lichtenberg_Crater/LRO_LROC_Rock_Abundance_Lichtenberg_Crater.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Lichtenberg_Crater/LRO_LROC_Rock_Abundance_Lichtenberg_Crater.asset deleted file mode 100644 index 113dc5188d..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Lichtenberg_Crater/LRO_LROC_Rock_Abundance_Lichtenberg_Crater.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_RockAbnd_32N292E_2mp", - Name = [[LRO LROC Rock Abundance, Lichtenberg Crater]], - FilePath = asset.localResource("LRO_NAC_RockAbnd_32N292E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Rock Abundance, Lichtenberg Crater]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_RockAbnd_32N292E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Rock Abundance, Lichtenberg Crater layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Lichtenberg_Crater/LRO_NAC_RockAbnd_32N292E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Lichtenberg_Crater/LRO_NAC_RockAbnd_32N292E_2mp.vrt deleted file mode 100644 index 7c1a0e3bdd..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Lichtenberg_Crater/LRO_NAC_RockAbnd_32N292E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_RockAbnd_32N292E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_RockAbnd_32N292E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_RockAbnd_32N292E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_RockAbnd_32N292E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Mare_Crisium/LRO_LROC_Rock_Abundance_Mare_Crisium.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Mare_Crisium/LRO_LROC_Rock_Abundance_Mare_Crisium.asset deleted file mode 100644 index d02eb1ac98..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Mare_Crisium/LRO_LROC_Rock_Abundance_Mare_Crisium.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_RockAbnd_10N058E_150cmp", - Name = [[LRO LROC Rock Abundance, Mare Crisium]], - FilePath = asset.localResource("LRO_NAC_RockAbnd_10N058E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Rock Abundance, Mare Crisium]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_RockAbnd_10N058E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Rock Abundance, Mare Crisium layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Mare_Crisium/LRO_NAC_RockAbnd_10N058E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Mare_Crisium/LRO_NAC_RockAbnd_10N058E_150cmp.vrt deleted file mode 100644 index b472e97fa2..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Mare_Crisium/LRO_NAC_RockAbnd_10N058E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_RockAbnd_10N058E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_RockAbnd_10N058E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_RockAbnd_10N058E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_RockAbnd_10N058E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Montes_Pyrenaeus/LRO_LROC_Rock_Abundance_Montes_Pyrenaeus.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Montes_Pyrenaeus/LRO_LROC_Rock_Abundance_Montes_Pyrenaeus.asset deleted file mode 100644 index e17c066c03..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Montes_Pyrenaeus/LRO_LROC_Rock_Abundance_Montes_Pyrenaeus.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_RockAbnd_16S041E_150cmp", - Name = [[LRO LROC Rock Abundance, Montes Pyrenaeus]], - FilePath = asset.localResource("LRO_NAC_RockAbnd_16S041E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Rock Abundance, Montes Pyrenaeus]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_RockAbnd_16S041E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Rock Abundance, Montes Pyrenaeus layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Montes_Pyrenaeus/LRO_NAC_RockAbnd_16S041E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Montes_Pyrenaeus/LRO_NAC_RockAbnd_16S041E_150cmp.vrt deleted file mode 100644 index f02e638ccb..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Montes_Pyrenaeus/LRO_NAC_RockAbnd_16S041E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_RockAbnd_16S041E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_RockAbnd_16S041E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_RockAbnd_16S041E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_RockAbnd_16S041E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Orientale_1/LRO_LROC_Rock_Abundance_Orientale_1.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Orientale_1/LRO_LROC_Rock_Abundance_Orientale_1.asset deleted file mode 100644 index d99f99d401..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Orientale_1/LRO_LROC_Rock_Abundance_Orientale_1.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_RockAbnd_26S265E_200cmp", - Name = [[LRO LROC Rock Abundance, Orientale 1]], - FilePath = asset.localResource("LRO_NAC_RockAbnd_26S265E_200cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Rock Abundance, Orientale 1]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_RockAbnd_26S265E_200cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Rock Abundance, Orientale 1 layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Orientale_1/LRO_NAC_RockAbnd_26S265E_200cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Orientale_1/LRO_NAC_RockAbnd_26S265E_200cmp.vrt deleted file mode 100644 index 17babc7b94..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Orientale_1/LRO_NAC_RockAbnd_26S265E_200cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_RockAbnd_26S265E_200cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_RockAbnd_26S265E_200cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_RockAbnd_26S265E_200cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_RockAbnd_26S265E_200cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Plato_Ejecta/LRO_LROC_Rock_Abundance_Plato_Ejecta.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Plato_Ejecta/LRO_LROC_Rock_Abundance_Plato_Ejecta.asset deleted file mode 100644 index ddc811a591..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Plato_Ejecta/LRO_LROC_Rock_Abundance_Plato_Ejecta.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_RockAbnd_53N354E_150cmp", - Name = [[LRO LROC Rock Abundance, Plato Ejecta]], - FilePath = asset.localResource("LRO_NAC_RockAbnd_53N354E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Rock Abundance, Plato Ejecta]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_RockAbnd_53N354E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Rock Abundance, Plato Ejecta layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Plato_Ejecta/LRO_NAC_RockAbnd_53N354E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Plato_Ejecta/LRO_NAC_RockAbnd_53N354E_150cmp.vrt deleted file mode 100644 index f458887d86..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Plato_Ejecta/LRO_NAC_RockAbnd_53N354E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_RockAbnd_53N354E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_RockAbnd_53N354E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_RockAbnd_53N354E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_RockAbnd_53N354E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_South_Pole-Aitken_Basin_Interior/LRO_LROC_Rock_Abundance_South_Pole-Aitken_Basin_Interior.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_South_Pole-Aitken_Basin_Interior/LRO_LROC_Rock_Abundance_South_Pole-Aitken_Basin_Interior.asset deleted file mode 100644 index 038cfd2820..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_South_Pole-Aitken_Basin_Interior/LRO_LROC_Rock_Abundance_South_Pole-Aitken_Basin_Interior.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_RockAbnd_60S200E_150cmp", - Name = [[LRO LROC Rock Abundance, South Pole-Aitken Basin Interior]], - FilePath = asset.localResource("LRO_NAC_RockAbnd_60S200E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Rock Abundance, South Pole-Aitken Basin Interior]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_RockAbnd_60S200E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Rock Abundance, South Pole-Aitken Basin Interior layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_South_Pole-Aitken_Basin_Interior/LRO_NAC_RockAbnd_60S200E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_South_Pole-Aitken_Basin_Interior/LRO_NAC_RockAbnd_60S200E_150cmp.vrt deleted file mode 100644 index 085057be1c..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_South_Pole-Aitken_Basin_Interior/LRO_NAC_RockAbnd_60S200E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_RockAbnd_60S200E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_RockAbnd_60S200E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_RockAbnd_60S200E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_RockAbnd_60S200E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Stratton_(Dewar)_High_Fe_Anomaly/LRO_LROC_Rock_Abundance_Stratton_(Dewar)_High_Fe_Anomaly.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Stratton_(Dewar)_High_Fe_Anomaly/LRO_LROC_Rock_Abundance_Stratton_(Dewar)_High_Fe_Anomaly.asset deleted file mode 100644 index 3b8107b96b..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Stratton_(Dewar)_High_Fe_Anomaly/LRO_LROC_Rock_Abundance_Stratton_(Dewar)_High_Fe_Anomaly.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_RockAbnd_02S167E_150cmp", - Name = [[LRO LROC Rock Abundance, Stratton (Dewar) High Fe Anomaly]], - FilePath = asset.localResource("LRO_NAC_RockAbnd_02S167E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Rock Abundance, Stratton (Dewar) High Fe Anomaly]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_RockAbnd_02S167E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Rock Abundance, Stratton (Dewar) High Fe Anomaly layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Stratton_(Dewar)_High_Fe_Anomaly/LRO_NAC_RockAbnd_02S167E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Stratton_(Dewar)_High_Fe_Anomaly/LRO_NAC_RockAbnd_02S167E_150cmp.vrt deleted file mode 100644 index 801b3d9e41..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Stratton_(Dewar)_High_Fe_Anomaly/LRO_NAC_RockAbnd_02S167E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_RockAbnd_02S167E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_RockAbnd_02S167E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_RockAbnd_02S167E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_RockAbnd_02S167E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Sulpicius_Gallus/LRO_LROC_Rock_Abundance_Sulpicius_Gallus.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Sulpicius_Gallus/LRO_LROC_Rock_Abundance_Sulpicius_Gallus.asset deleted file mode 100644 index 71d7f897a0..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Sulpicius_Gallus/LRO_LROC_Rock_Abundance_Sulpicius_Gallus.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_RockAbnd_20N010E_2mp", - Name = [[LRO LROC Rock Abundance, Sulpicius Gallus]], - FilePath = asset.localResource("LRO_NAC_RockAbnd_20N010E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Rock Abundance, Sulpicius Gallus]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_RockAbnd_20N010E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Rock Abundance, Sulpicius Gallus layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Sulpicius_Gallus/LRO_NAC_RockAbnd_20N010E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Sulpicius_Gallus/LRO_NAC_RockAbnd_20N010E_2mp.vrt deleted file mode 100644 index 6664cfa5b7..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Sulpicius_Gallus/LRO_NAC_RockAbnd_20N010E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_RockAbnd_20N010E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_RockAbnd_20N010E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_RockAbnd_20N010E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_RockAbnd_20N010E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Tycho_Crater/LRO_LROC_Rock_Abundance_Tycho_Crater.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Tycho_Crater/LRO_LROC_Rock_Abundance_Tycho_Crater.asset deleted file mode 100644 index 8ecad6ef0f..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Tycho_Crater/LRO_LROC_Rock_Abundance_Tycho_Crater.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_RockAbnd_43S349E_150cmp", - Name = [[LRO LROC Rock Abundance, Tycho Crater]], - FilePath = asset.localResource("LRO_NAC_RockAbnd_43S349E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Rock Abundance, Tycho Crater]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_RockAbnd_43S349E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Rock Abundance, Tycho Crater layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Tycho_Crater/LRO_NAC_RockAbnd_43S349E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Tycho_Crater/LRO_NAC_RockAbnd_43S349E_150cmp.vrt deleted file mode 100644 index e749c8e507..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Abundance_Tycho_Crater/LRO_NAC_RockAbnd_43S349E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_RockAbnd_43S349E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_RockAbnd_43S349E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_RockAbnd_43S349E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_RockAbnd_43S349E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density.asset new file mode 100644 index 0000000000..f24a52ba9f --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density.asset @@ -0,0 +1,264 @@ +-- This file was automatically generated using a script found at +-- https://github.com/OpenSpace/scripts/treks-to-openspace. See the README.md file +-- in that repository for more information on how to run the script to update these +-- files. In particular in the case of errors, prefer to change that script rather +-- than the individual files + +local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier + +local treks_LRO_NAC_RockDen_17S173E_150cmp = { + Identifier = "LRO_NAC_RockDen_17S173E_150cmp", + Name = [[LRO LROC Rock Density, Aitken Crater]], + FilePath = asset.localResource("LRO_LROC_Rock_Density/Aitken_Crater.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_RockDen_13S358E_2mp = { + Identifier = "LRO_NAC_RockDen_13S358E_2mp", + Name = [[LRO LROC Rock Density, Alphonsus Crater]], + FilePath = asset.localResource("LRO_LROC_Rock_Density/Alphonsus_Crater.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_RockDen_73N350E_150cmp = { + Identifier = "LRO_NAC_RockDen_73N350E_150cmp", + Name = [[LRO LROC Rock Density, Anaxagoras Crater]], + FilePath = asset.localResource("LRO_LROC_Rock_Density/Anaxagoras_Crater.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_RockDen_26N004E_150cmp = { + Identifier = "LRO_NAC_RockDen_26N004E_150cmp", + Name = [[LRO LROC Rock Density, Apollo 15]], + FilePath = asset.localResource("LRO_LROC_Rock_Density/Apollo_15.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_RockDen_09S015E_150cmp = { + Identifier = "LRO_NAC_RockDen_09S015E_150cmp", + Name = [[LRO LROC Rock Density, Apollo 16]], + FilePath = asset.localResource("LRO_LROC_Rock_Density/Apollo_16.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_RockDen_37S206E_150cmp = { + Identifier = "LRO_NAC_RockDen_37S206E_150cmp", + Name = [[LRO LROC Rock Density, Apollo Basin]], + FilePath = asset.localResource("LRO_LROC_Rock_Density/Apollo_Basin.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_RockDen_25N311E_2mp = { + Identifier = "LRO_NAC_RockDen_25N311E_2mp", + Name = [[LRO LROC Rock Density, Aristarchus 1]], + FilePath = asset.localResource("LRO_LROC_Rock_Density/Aristarchus_1.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_RockDen_28N307E_150cmp = { + Identifier = "LRO_NAC_RockDen_28N307E_150cmp", + Name = [[LRO LROC Rock Density, Aristarchus 2]], + FilePath = asset.localResource("LRO_LROC_Rock_Density/Aristarchus_2.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_RockDen_19S070E_150cmp = { + Identifier = "LRO_NAC_RockDen_19S070E_150cmp", + Name = [[LRO LROC Rock Density, Balmer Basin]], + FilePath = asset.localResource("LRO_LROC_Rock_Density/Balmer_Basin.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_RockDen_20S337E_400cmp = { + Identifier = "LRO_NAC_RockDen_20S337E_400cmp", + Name = [[LRO LROC Rock Density, Bullialdus Crater]], + FilePath = asset.localResource("LRO_LROC_Rock_Density/Bullialdus_Crater.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_RockDen_36N320E_2mp = { + Identifier = "LRO_NAC_RockDen_36N320E_2mp", + Name = [[LRO LROC Rock Density, Gruithuisen Domes]], + FilePath = asset.localResource("LRO_LROC_Rock_Density/Gruithuisen_Domes.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_RockDenHaz_17S173E_150cmp = { + Identifier = "LRO_NAC_RockDenHaz_17S173E_150cmp", + Name = [[LRO LROC Rock Density, Hazard Aitken Crater]], + FilePath = asset.localResource("LRO_LROC_Rock_Density/Hazard_Aitken_Crater.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_RockDen_00N234E_150cmp = { + Identifier = "LRO_NAC_RockDen_00N234E_150cmp", + Name = [[LRO LROC Rock Density, Hertzsprung]], + FilePath = asset.localResource("LRO_LROC_Rock_Density/Hertzsprung.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_RockDen_08N332E_2mp = { + Identifier = "LRO_NAC_RockDen_08N332E_2mp", + Name = [[LRO LROC Rock Density, Hortensius Domes]], + FilePath = asset.localResource("LRO_LROC_Rock_Density/Hortensius_Domes.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_RockDen_06N120E_200cmp = { + Identifier = "LRO_NAC_RockDen_06N120E_200cmp", + Name = [[LRO LROC Rock Density, King Crater]], + FilePath = asset.localResource("LRO_LROC_Rock_Density/King_Crater.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_RockDen_32N292E_2mp = { + Identifier = "LRO_NAC_RockDen_32N292E_2mp", + Name = [[LRO LROC Rock Density, Lichtenberg Crater]], + FilePath = asset.localResource("LRO_LROC_Rock_Density/Lichtenberg_Crater.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_RockDen_10N058E_150cmp = { + Identifier = "LRO_NAC_RockDen_10N058E_150cmp", + Name = [[LRO LROC Rock Density, Mare Crisium]], + FilePath = asset.localResource("LRO_LROC_Rock_Density/Mare_Crisium.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_RockDen_16S041E_150cmp = { + Identifier = "LRO_NAC_RockDen_16S041E_150cmp", + Name = [[LRO LROC Rock Density, Montes Pyrenaeus]], + FilePath = asset.localResource("LRO_LROC_Rock_Density/Montes_Pyrenaeus.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_RockDen_26S265E_200cmp = { + Identifier = "LRO_NAC_RockDen_26S265E_200cmp", + Name = [[LRO LROC Rock Density, Orientale 1]], + FilePath = asset.localResource("LRO_LROC_Rock_Density/Orientale_1.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_RockDen_53N354E_150cmp = { + Identifier = "LRO_NAC_RockDen_53N354E_150cmp", + Name = [[LRO LROC Rock Density, Plato Ejecta]], + FilePath = asset.localResource("LRO_LROC_Rock_Density/Plato_Ejecta.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_RockDen_60S200E_150cmp = { + Identifier = "LRO_NAC_RockDen_60S200E_150cmp", + Name = [[LRO LROC Rock Density, South Pole-Aitken Basin Interior]], + FilePath = asset.localResource("LRO_LROC_Rock_Density/South_Pole-Aitken_Basin_Interior.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_RockDen_02S167E_150cmp = { + Identifier = "LRO_NAC_RockDen_02S167E_150cmp", + Name = [[LRO LROC Rock Density, Stratton (Dewar) High Fe Anomaly]], + FilePath = asset.localResource("LRO_LROC_Rock_Density/Stratton_Dewar_High_Fe_Anomaly.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_RockDen_20N010E_2mp = { + Identifier = "LRO_NAC_RockDen_20N010E_2mp", + Name = [[LRO LROC Rock Density, Sulpicius Gallus]], + FilePath = asset.localResource("LRO_LROC_Rock_Density/Sulpicius_Gallus.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_RockDen_43S349E_150cmp = { + Identifier = "LRO_NAC_RockDen_43S349E_150cmp", + Name = [[LRO LROC Rock Density, Tycho Crater]], + FilePath = asset.localResource("LRO_LROC_Rock_Density/Tycho_Crater.vrt"), + Description = [[]] +} + +asset.onInitialize(function() + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_RockDen_17S173E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_RockDen_13S358E_2mp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_RockDen_73N350E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_RockDen_26N004E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_RockDen_09S015E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_RockDen_37S206E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_RockDen_25N311E_2mp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_RockDen_28N307E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_RockDen_19S070E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_RockDen_20S337E_400cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_RockDen_36N320E_2mp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_RockDenHaz_17S173E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_RockDen_00N234E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_RockDen_08N332E_2mp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_RockDen_06N120E_200cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_RockDen_32N292E_2mp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_RockDen_10N058E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_RockDen_16S041E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_RockDen_26S265E_200cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_RockDen_53N354E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_RockDen_60S200E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_RockDen_02S167E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_RockDen_20N010E_2mp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_RockDen_43S349E_150cmp) +end) + +asset.onDeinitialize(function() + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_RockDen_17S173E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_RockDen_13S358E_2mp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_RockDen_73N350E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_RockDen_26N004E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_RockDen_09S015E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_RockDen_37S206E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_RockDen_25N311E_2mp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_RockDen_28N307E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_RockDen_19S070E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_RockDen_20S337E_400cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_RockDen_36N320E_2mp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_RockDenHaz_17S173E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_RockDen_00N234E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_RockDen_08N332E_2mp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_RockDen_06N120E_200cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_RockDen_32N292E_2mp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_RockDen_10N058E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_RockDen_16S041E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_RockDen_26S265E_200cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_RockDen_53N354E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_RockDen_60S200E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_RockDen_02S167E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_RockDen_20N010E_2mp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_RockDen_43S349E_150cmp") +end) + +asset.export("LRO_NAC_RockDen_17S173E_150cmp", treks_LRO_NAC_RockDen_17S173E_150cmp) +asset.export("LRO_NAC_RockDen_13S358E_2mp", treks_LRO_NAC_RockDen_13S358E_2mp) +asset.export("LRO_NAC_RockDen_73N350E_150cmp", treks_LRO_NAC_RockDen_73N350E_150cmp) +asset.export("LRO_NAC_RockDen_26N004E_150cmp", treks_LRO_NAC_RockDen_26N004E_150cmp) +asset.export("LRO_NAC_RockDen_09S015E_150cmp", treks_LRO_NAC_RockDen_09S015E_150cmp) +asset.export("LRO_NAC_RockDen_37S206E_150cmp", treks_LRO_NAC_RockDen_37S206E_150cmp) +asset.export("LRO_NAC_RockDen_25N311E_2mp", treks_LRO_NAC_RockDen_25N311E_2mp) +asset.export("LRO_NAC_RockDen_28N307E_150cmp", treks_LRO_NAC_RockDen_28N307E_150cmp) +asset.export("LRO_NAC_RockDen_19S070E_150cmp", treks_LRO_NAC_RockDen_19S070E_150cmp) +asset.export("LRO_NAC_RockDen_20S337E_400cmp", treks_LRO_NAC_RockDen_20S337E_400cmp) +asset.export("LRO_NAC_RockDen_36N320E_2mp", treks_LRO_NAC_RockDen_36N320E_2mp) +asset.export("LRO_NAC_RockDenHaz_17S173E_150cmp", treks_LRO_NAC_RockDenHaz_17S173E_150cmp) +asset.export("LRO_NAC_RockDen_00N234E_150cmp", treks_LRO_NAC_RockDen_00N234E_150cmp) +asset.export("LRO_NAC_RockDen_08N332E_2mp", treks_LRO_NAC_RockDen_08N332E_2mp) +asset.export("LRO_NAC_RockDen_06N120E_200cmp", treks_LRO_NAC_RockDen_06N120E_200cmp) +asset.export("LRO_NAC_RockDen_32N292E_2mp", treks_LRO_NAC_RockDen_32N292E_2mp) +asset.export("LRO_NAC_RockDen_10N058E_150cmp", treks_LRO_NAC_RockDen_10N058E_150cmp) +asset.export("LRO_NAC_RockDen_16S041E_150cmp", treks_LRO_NAC_RockDen_16S041E_150cmp) +asset.export("LRO_NAC_RockDen_26S265E_200cmp", treks_LRO_NAC_RockDen_26S265E_200cmp) +asset.export("LRO_NAC_RockDen_53N354E_150cmp", treks_LRO_NAC_RockDen_53N354E_150cmp) +asset.export("LRO_NAC_RockDen_60S200E_150cmp", treks_LRO_NAC_RockDen_60S200E_150cmp) +asset.export("LRO_NAC_RockDen_02S167E_150cmp", treks_LRO_NAC_RockDen_02S167E_150cmp) +asset.export("LRO_NAC_RockDen_20N010E_2mp", treks_LRO_NAC_RockDen_20N010E_2mp) +asset.export("LRO_NAC_RockDen_43S349E_150cmp", treks_LRO_NAC_RockDen_43S349E_150cmp) + + +asset.meta = { + Name = [[NASA Treks Layers for Moon LRO_LROC_Rock_Density], + Version = "1.0", + Author = "NASA/Treks", + URL = "https://trek.nasa.gov/moon", + License = "NASA/Treks", + Description = [[LRO_LROC_Rock_Density layers from NASA/Treks for Moon]] +} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Aitken_Crater.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Aitken_Crater.vrt new file mode 100644 index 0000000000..edeb7a3350 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Aitken_Crater.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Aitken_Crater.wms + 1 + + + + 0 + + + + 0 + Green + + Aitken_Crater.wms + 2 + + + + 0 + + + + 0 + Blue + + Aitken_Crater.wms + 3 + + + + 0 + + + + Alpha + + Aitken_Crater.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Aitken_Crater/LRO_NAC_RockDen_17S173E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Aitken_Crater.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Aitken_Crater/LRO_NAC_RockDen_17S173E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Aitken_Crater.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Alphonsus_Crater.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Alphonsus_Crater.vrt new file mode 100644 index 0000000000..d045a2621c --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Alphonsus_Crater.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Alphonsus_Crater.wms + 1 + + + + 0 + + + + 0 + Green + + Alphonsus_Crater.wms + 2 + + + + 0 + + + + 0 + Blue + + Alphonsus_Crater.wms + 3 + + + + 0 + + + + Alpha + + Alphonsus_Crater.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Alphonsus_Crater/LRO_NAC_RockDen_13S358E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Alphonsus_Crater.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Alphonsus_Crater/LRO_NAC_RockDen_13S358E_2mp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Alphonsus_Crater.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Anaxagoras_Crater.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Anaxagoras_Crater.vrt new file mode 100644 index 0000000000..235a71373e --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Anaxagoras_Crater.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Anaxagoras_Crater.wms + 1 + + + + 0 + + + + 0 + Green + + Anaxagoras_Crater.wms + 2 + + + + 0 + + + + 0 + Blue + + Anaxagoras_Crater.wms + 3 + + + + 0 + + + + Alpha + + Anaxagoras_Crater.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Anaxagoras_Crater/LRO_NAC_RockDen_73N350E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Anaxagoras_Crater.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Anaxagoras_Crater/LRO_NAC_RockDen_73N350E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Anaxagoras_Crater.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Apollo_15.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Apollo_15.vrt new file mode 100644 index 0000000000..c328339b62 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Apollo_15.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Apollo_15.wms + 1 + + + + 0 + + + + 0 + Green + + Apollo_15.wms + 2 + + + + 0 + + + + 0 + Blue + + Apollo_15.wms + 3 + + + + 0 + + + + Alpha + + Apollo_15.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Apollo_15/LRO_NAC_RockDen_26N004E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Apollo_15.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Apollo_15/LRO_NAC_RockDen_26N004E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Apollo_15.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Apollo_16.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Apollo_16.vrt new file mode 100644 index 0000000000..4437127cc8 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Apollo_16.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Apollo_16.wms + 1 + + + + 0 + + + + 0 + Green + + Apollo_16.wms + 2 + + + + 0 + + + + 0 + Blue + + Apollo_16.wms + 3 + + + + 0 + + + + Alpha + + Apollo_16.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Apollo_16/LRO_NAC_RockDen_09S015E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Apollo_16.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Apollo_16/LRO_NAC_RockDen_09S015E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Apollo_16.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Apollo_Basin.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Apollo_Basin.vrt new file mode 100644 index 0000000000..f655105be7 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Apollo_Basin.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Apollo_Basin.wms + 1 + + + + 0 + + + + 0 + Green + + Apollo_Basin.wms + 2 + + + + 0 + + + + 0 + Blue + + Apollo_Basin.wms + 3 + + + + 0 + + + + Alpha + + Apollo_Basin.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Apollo_Basin/LRO_NAC_RockDen_37S206E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Apollo_Basin.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Apollo_Basin/LRO_NAC_RockDen_37S206E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Apollo_Basin.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Aristarchus_1.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Aristarchus_1.vrt new file mode 100644 index 0000000000..dba6d33a27 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Aristarchus_1.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Aristarchus_1.wms + 1 + + + + 0 + + + + 0 + Green + + Aristarchus_1.wms + 2 + + + + 0 + + + + 0 + Blue + + Aristarchus_1.wms + 3 + + + + 0 + + + + Alpha + + Aristarchus_1.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Aristarchus_1/LRO_NAC_RockDen_25N311E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Aristarchus_1.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Aristarchus_1/LRO_NAC_RockDen_25N311E_2mp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Aristarchus_1.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Aristarchus_2.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Aristarchus_2.vrt new file mode 100644 index 0000000000..c5312af26c --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Aristarchus_2.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Aristarchus_2.wms + 1 + + + + 0 + + + + 0 + Green + + Aristarchus_2.wms + 2 + + + + 0 + + + + 0 + Blue + + Aristarchus_2.wms + 3 + + + + 0 + + + + Alpha + + Aristarchus_2.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Aristarchus_2/LRO_NAC_RockDen_28N307E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Aristarchus_2.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Aristarchus_2/LRO_NAC_RockDen_28N307E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Aristarchus_2.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Balmer_Basin.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Balmer_Basin.vrt new file mode 100644 index 0000000000..3028785c98 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Balmer_Basin.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Balmer_Basin.wms + 1 + + + + 0 + + + + 0 + Green + + Balmer_Basin.wms + 2 + + + + 0 + + + + 0 + Blue + + Balmer_Basin.wms + 3 + + + + 0 + + + + Alpha + + Balmer_Basin.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Balmer_Basin/LRO_NAC_RockDen_19S070E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Balmer_Basin.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Balmer_Basin/LRO_NAC_RockDen_19S070E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Balmer_Basin.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Bullialdus_Crater.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Bullialdus_Crater.vrt new file mode 100644 index 0000000000..15eb2de7e7 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Bullialdus_Crater.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Bullialdus_Crater.wms + 1 + + + + 0 + + + + 0 + Green + + Bullialdus_Crater.wms + 2 + + + + 0 + + + + 0 + Blue + + Bullialdus_Crater.wms + 3 + + + + 0 + + + + Alpha + + Bullialdus_Crater.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Bullialdus_Crater/LRO_NAC_RockDen_20S337E_400cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Bullialdus_Crater.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Bullialdus_Crater/LRO_NAC_RockDen_20S337E_400cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Bullialdus_Crater.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Gruithuisen_Domes.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Gruithuisen_Domes.vrt new file mode 100644 index 0000000000..5142f02aea --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Gruithuisen_Domes.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Gruithuisen_Domes.wms + 1 + + + + 0 + + + + 0 + Green + + Gruithuisen_Domes.wms + 2 + + + + 0 + + + + 0 + Blue + + Gruithuisen_Domes.wms + 3 + + + + 0 + + + + Alpha + + Gruithuisen_Domes.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Gruithuisen_Domes/LRO_NAC_RockDen_36N320E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Gruithuisen_Domes.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Gruithuisen_Domes/LRO_NAC_RockDen_36N320E_2mp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Gruithuisen_Domes.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Hazard_Aitken_Crater.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Hazard_Aitken_Crater.vrt new file mode 100644 index 0000000000..450c07c3bc --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Hazard_Aitken_Crater.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Hazard_Aitken_Crater.wms + 1 + + + + 0 + + + + 0 + Green + + Hazard_Aitken_Crater.wms + 2 + + + + 0 + + + + 0 + Blue + + Hazard_Aitken_Crater.wms + 3 + + + + 0 + + + + Alpha + + Hazard_Aitken_Crater.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Aitken_Crater/LRO_NAC_RockDenHaz_17S173E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Hazard_Aitken_Crater.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Aitken_Crater/LRO_NAC_RockDenHaz_17S173E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Hazard_Aitken_Crater.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Hertzsprung.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Hertzsprung.vrt new file mode 100644 index 0000000000..61623589cb --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Hertzsprung.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Hertzsprung.wms + 1 + + + + 0 + + + + 0 + Green + + Hertzsprung.wms + 2 + + + + 0 + + + + 0 + Blue + + Hertzsprung.wms + 3 + + + + 0 + + + + Alpha + + Hertzsprung.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hertzsprung/LRO_NAC_RockDen_00N234E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Hertzsprung.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hertzsprung/LRO_NAC_RockDen_00N234E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Hertzsprung.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Hortensius_Domes.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Hortensius_Domes.vrt new file mode 100644 index 0000000000..19f2fa78ca --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Hortensius_Domes.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Hortensius_Domes.wms + 1 + + + + 0 + + + + 0 + Green + + Hortensius_Domes.wms + 2 + + + + 0 + + + + 0 + Blue + + Hortensius_Domes.wms + 3 + + + + 0 + + + + Alpha + + Hortensius_Domes.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hortensius_Domes/LRO_NAC_RockDen_08N332E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Hortensius_Domes.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hortensius_Domes/LRO_NAC_RockDen_08N332E_2mp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Hortensius_Domes.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/King_Crater.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/King_Crater.vrt new file mode 100644 index 0000000000..91c2894c94 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/King_Crater.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + King_Crater.wms + 1 + + + + 0 + + + + 0 + Green + + King_Crater.wms + 2 + + + + 0 + + + + 0 + Blue + + King_Crater.wms + 3 + + + + 0 + + + + Alpha + + King_Crater.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_King_Crater/LRO_NAC_RockDen_06N120E_200cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/King_Crater.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_King_Crater/LRO_NAC_RockDen_06N120E_200cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/King_Crater.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Lichtenberg_Crater.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Lichtenberg_Crater.vrt new file mode 100644 index 0000000000..f43777f60a --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Lichtenberg_Crater.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Lichtenberg_Crater.wms + 1 + + + + 0 + + + + 0 + Green + + Lichtenberg_Crater.wms + 2 + + + + 0 + + + + 0 + Blue + + Lichtenberg_Crater.wms + 3 + + + + 0 + + + + Alpha + + Lichtenberg_Crater.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Lichtenberg_Crater/LRO_NAC_RockDen_32N292E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Lichtenberg_Crater.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Lichtenberg_Crater/LRO_NAC_RockDen_32N292E_2mp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Lichtenberg_Crater.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Mare_Crisium.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Mare_Crisium.vrt new file mode 100644 index 0000000000..d6a7df281a --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Mare_Crisium.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Mare_Crisium.wms + 1 + + + + 0 + + + + 0 + Green + + Mare_Crisium.wms + 2 + + + + 0 + + + + 0 + Blue + + Mare_Crisium.wms + 3 + + + + 0 + + + + Alpha + + Mare_Crisium.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Mare_Crisium/LRO_NAC_RockDen_10N058E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Mare_Crisium.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Mare_Crisium/LRO_NAC_RockDen_10N058E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Mare_Crisium.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Montes_Pyrenaeus.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Montes_Pyrenaeus.vrt new file mode 100644 index 0000000000..7e7910be4a --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Montes_Pyrenaeus.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Montes_Pyrenaeus.wms + 1 + + + + 0 + + + + 0 + Green + + Montes_Pyrenaeus.wms + 2 + + + + 0 + + + + 0 + Blue + + Montes_Pyrenaeus.wms + 3 + + + + 0 + + + + Alpha + + Montes_Pyrenaeus.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Montes_Pyrenaeus/LRO_NAC_RockDen_16S041E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Montes_Pyrenaeus.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Montes_Pyrenaeus/LRO_NAC_RockDen_16S041E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Montes_Pyrenaeus.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Orientale_1.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Orientale_1.vrt new file mode 100644 index 0000000000..080fd3bb80 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Orientale_1.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Orientale_1.wms + 1 + + + + 0 + + + + 0 + Green + + Orientale_1.wms + 2 + + + + 0 + + + + 0 + Blue + + Orientale_1.wms + 3 + + + + 0 + + + + Alpha + + Orientale_1.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Orientale_1/LRO_NAC_RockDen_26S265E_200cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Orientale_1.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Orientale_1/LRO_NAC_RockDen_26S265E_200cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Orientale_1.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Plato_Ejecta.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Plato_Ejecta.vrt new file mode 100644 index 0000000000..955c4b47cf --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Plato_Ejecta.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Plato_Ejecta.wms + 1 + + + + 0 + + + + 0 + Green + + Plato_Ejecta.wms + 2 + + + + 0 + + + + 0 + Blue + + Plato_Ejecta.wms + 3 + + + + 0 + + + + Alpha + + Plato_Ejecta.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Plato_Ejecta/LRO_NAC_RockDen_53N354E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Plato_Ejecta.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Plato_Ejecta/LRO_NAC_RockDen_53N354E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Plato_Ejecta.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/South_Pole-Aitken_Basin_Interior.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/South_Pole-Aitken_Basin_Interior.vrt new file mode 100644 index 0000000000..2d8cdd4e12 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/South_Pole-Aitken_Basin_Interior.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + South_Pole-Aitken_Basin_Interior.wms + 1 + + + + 0 + + + + 0 + Green + + South_Pole-Aitken_Basin_Interior.wms + 2 + + + + 0 + + + + 0 + Blue + + South_Pole-Aitken_Basin_Interior.wms + 3 + + + + 0 + + + + Alpha + + South_Pole-Aitken_Basin_Interior.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_South_Pole-Aitken_Basin_Interior/LRO_NAC_RockDen_60S200E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/South_Pole-Aitken_Basin_Interior.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_South_Pole-Aitken_Basin_Interior/LRO_NAC_RockDen_60S200E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/South_Pole-Aitken_Basin_Interior.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Stratton_Dewar_High_Fe_Anomaly.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Stratton_Dewar_High_Fe_Anomaly.vrt new file mode 100644 index 0000000000..25b5fa5add --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Stratton_Dewar_High_Fe_Anomaly.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Stratton_Dewar_High_Fe_Anomaly.wms + 1 + + + + 0 + + + + 0 + Green + + Stratton_Dewar_High_Fe_Anomaly.wms + 2 + + + + 0 + + + + 0 + Blue + + Stratton_Dewar_High_Fe_Anomaly.wms + 3 + + + + 0 + + + + Alpha + + Stratton_Dewar_High_Fe_Anomaly.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Stratton_(Dewar)_High_Fe_Anomaly/LRO_NAC_RockDen_02S167E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Stratton_Dewar_High_Fe_Anomaly.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Stratton_(Dewar)_High_Fe_Anomaly/LRO_NAC_RockDen_02S167E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Stratton_Dewar_High_Fe_Anomaly.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Sulpicius_Gallus.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Sulpicius_Gallus.vrt new file mode 100644 index 0000000000..dbb8bcaf58 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Sulpicius_Gallus.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Sulpicius_Gallus.wms + 1 + + + + 0 + + + + 0 + Green + + Sulpicius_Gallus.wms + 2 + + + + 0 + + + + 0 + Blue + + Sulpicius_Gallus.wms + 3 + + + + 0 + + + + Alpha + + Sulpicius_Gallus.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Sulpicius_Gallus/LRO_NAC_RockDen_20N010E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Sulpicius_Gallus.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Sulpicius_Gallus/LRO_NAC_RockDen_20N010E_2mp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Sulpicius_Gallus.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Tycho_Crater.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Tycho_Crater.vrt new file mode 100644 index 0000000000..201800be96 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Tycho_Crater.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Tycho_Crater.wms + 1 + + + + 0 + + + + 0 + Green + + Tycho_Crater.wms + 2 + + + + 0 + + + + 0 + Blue + + Tycho_Crater.wms + 3 + + + + 0 + + + + Alpha + + Tycho_Crater.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Tycho_Crater/LRO_NAC_RockDen_43S349E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Tycho_Crater.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Tycho_Crater/LRO_NAC_RockDen_43S349E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density/Tycho_Crater.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Aitken_Crater/LRO_LROC_Rock_Density_Aitken_Crater.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Aitken_Crater/LRO_LROC_Rock_Density_Aitken_Crater.asset deleted file mode 100644 index 7de2197802..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Aitken_Crater/LRO_LROC_Rock_Density_Aitken_Crater.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_RockDen_17S173E_150cmp", - Name = [[LRO LROC Rock Density, Aitken Crater]], - FilePath = asset.localResource("LRO_NAC_RockDen_17S173E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Rock Density, Aitken Crater]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_RockDen_17S173E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Rock Density, Aitken Crater layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Aitken_Crater/LRO_NAC_RockDen_17S173E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Aitken_Crater/LRO_NAC_RockDen_17S173E_150cmp.vrt deleted file mode 100644 index bf40aa9d30..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Aitken_Crater/LRO_NAC_RockDen_17S173E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_RockDen_17S173E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_RockDen_17S173E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_RockDen_17S173E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_RockDen_17S173E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Alphonsus_Crater/LRO_LROC_Rock_Density_Alphonsus_Crater.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Alphonsus_Crater/LRO_LROC_Rock_Density_Alphonsus_Crater.asset deleted file mode 100644 index 0b70cb5f04..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Alphonsus_Crater/LRO_LROC_Rock_Density_Alphonsus_Crater.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_RockDen_13S358E_2mp", - Name = [[LRO LROC Rock Density, Alphonsus Crater]], - FilePath = asset.localResource("LRO_NAC_RockDen_13S358E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Rock Density, Alphonsus Crater]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_RockDen_13S358E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Rock Density, Alphonsus Crater layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Alphonsus_Crater/LRO_NAC_RockDen_13S358E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Alphonsus_Crater/LRO_NAC_RockDen_13S358E_2mp.vrt deleted file mode 100644 index 0199bfec05..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Alphonsus_Crater/LRO_NAC_RockDen_13S358E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_RockDen_13S358E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_RockDen_13S358E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_RockDen_13S358E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_RockDen_13S358E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Anaxagoras_Crater/LRO_LROC_Rock_Density_Anaxagoras_Crater.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Anaxagoras_Crater/LRO_LROC_Rock_Density_Anaxagoras_Crater.asset deleted file mode 100644 index 40258c6720..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Anaxagoras_Crater/LRO_LROC_Rock_Density_Anaxagoras_Crater.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_RockDen_73N350E_150cmp", - Name = [[LRO LROC Rock Density, Anaxagoras Crater]], - FilePath = asset.localResource("LRO_NAC_RockDen_73N350E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Rock Density, Anaxagoras Crater]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_RockDen_73N350E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Rock Density, Anaxagoras Crater layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Anaxagoras_Crater/LRO_NAC_RockDen_73N350E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Anaxagoras_Crater/LRO_NAC_RockDen_73N350E_150cmp.vrt deleted file mode 100644 index 0debe6788d..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Anaxagoras_Crater/LRO_NAC_RockDen_73N350E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_RockDen_73N350E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_RockDen_73N350E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_RockDen_73N350E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_RockDen_73N350E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Apollo_15/LRO_LROC_Rock_Density_Apollo_15.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Apollo_15/LRO_LROC_Rock_Density_Apollo_15.asset deleted file mode 100644 index c7377e209f..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Apollo_15/LRO_LROC_Rock_Density_Apollo_15.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_RockDen_26N004E_150cmp", - Name = [[LRO LROC Rock Density, Apollo 15]], - FilePath = asset.localResource("LRO_NAC_RockDen_26N004E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Rock Density, Apollo 15]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_RockDen_26N004E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Rock Density, Apollo 15 layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Apollo_15/LRO_NAC_RockDen_26N004E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Apollo_15/LRO_NAC_RockDen_26N004E_150cmp.vrt deleted file mode 100644 index d51564f46d..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Apollo_15/LRO_NAC_RockDen_26N004E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_RockDen_26N004E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_RockDen_26N004E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_RockDen_26N004E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_RockDen_26N004E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Apollo_16/LRO_LROC_Rock_Density_Apollo_16.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Apollo_16/LRO_LROC_Rock_Density_Apollo_16.asset deleted file mode 100644 index 059251a6a8..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Apollo_16/LRO_LROC_Rock_Density_Apollo_16.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_RockDen_09S015E_150cmp", - Name = [[LRO LROC Rock Density, Apollo 16]], - FilePath = asset.localResource("LRO_NAC_RockDen_09S015E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Rock Density, Apollo 16]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_RockDen_09S015E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Rock Density, Apollo 16 layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Apollo_16/LRO_NAC_RockDen_09S015E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Apollo_16/LRO_NAC_RockDen_09S015E_150cmp.vrt deleted file mode 100644 index d6c1786ee1..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Apollo_16/LRO_NAC_RockDen_09S015E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_RockDen_09S015E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_RockDen_09S015E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_RockDen_09S015E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_RockDen_09S015E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Apollo_Basin/LRO_LROC_Rock_Density_Apollo_Basin.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Apollo_Basin/LRO_LROC_Rock_Density_Apollo_Basin.asset deleted file mode 100644 index 274a27c2a6..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Apollo_Basin/LRO_LROC_Rock_Density_Apollo_Basin.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_RockDen_37S206E_150cmp", - Name = [[LRO LROC Rock Density, Apollo Basin]], - FilePath = asset.localResource("LRO_NAC_RockDen_37S206E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Rock Density, Apollo Basin]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_RockDen_37S206E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Rock Density, Apollo Basin layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Apollo_Basin/LRO_NAC_RockDen_37S206E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Apollo_Basin/LRO_NAC_RockDen_37S206E_150cmp.vrt deleted file mode 100644 index 08ceff0f2e..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Apollo_Basin/LRO_NAC_RockDen_37S206E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_RockDen_37S206E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_RockDen_37S206E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_RockDen_37S206E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_RockDen_37S206E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Aristarchus_1/LRO_LROC_Rock_Density_Aristarchus_1.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Aristarchus_1/LRO_LROC_Rock_Density_Aristarchus_1.asset deleted file mode 100644 index a2b82d5165..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Aristarchus_1/LRO_LROC_Rock_Density_Aristarchus_1.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_RockDen_25N311E_2mp", - Name = [[LRO LROC Rock Density, Aristarchus 1]], - FilePath = asset.localResource("LRO_NAC_RockDen_25N311E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Rock Density, Aristarchus 1]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_RockDen_25N311E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Rock Density, Aristarchus 1 layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Aristarchus_1/LRO_NAC_RockDen_25N311E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Aristarchus_1/LRO_NAC_RockDen_25N311E_2mp.vrt deleted file mode 100644 index de684165ca..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Aristarchus_1/LRO_NAC_RockDen_25N311E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_RockDen_25N311E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_RockDen_25N311E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_RockDen_25N311E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_RockDen_25N311E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Aristarchus_2/LRO_LROC_Rock_Density_Aristarchus_2.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Aristarchus_2/LRO_LROC_Rock_Density_Aristarchus_2.asset deleted file mode 100644 index 89605a4c12..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Aristarchus_2/LRO_LROC_Rock_Density_Aristarchus_2.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_RockDen_28N307E_150cmp", - Name = [[LRO LROC Rock Density, Aristarchus 2]], - FilePath = asset.localResource("LRO_NAC_RockDen_28N307E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Rock Density, Aristarchus 2]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_RockDen_28N307E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Rock Density, Aristarchus 2 layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Aristarchus_2/LRO_NAC_RockDen_28N307E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Aristarchus_2/LRO_NAC_RockDen_28N307E_150cmp.vrt deleted file mode 100644 index 0cde836b91..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Aristarchus_2/LRO_NAC_RockDen_28N307E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_RockDen_28N307E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_RockDen_28N307E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_RockDen_28N307E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_RockDen_28N307E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Balmer_Basin/LRO_LROC_Rock_Density_Balmer_Basin.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Balmer_Basin/LRO_LROC_Rock_Density_Balmer_Basin.asset deleted file mode 100644 index f73a06ae77..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Balmer_Basin/LRO_LROC_Rock_Density_Balmer_Basin.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_RockDen_19S070E_150cmp", - Name = [[LRO LROC Rock Density, Balmer Basin]], - FilePath = asset.localResource("LRO_NAC_RockDen_19S070E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Rock Density, Balmer Basin]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_RockDen_19S070E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Rock Density, Balmer Basin layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Balmer_Basin/LRO_NAC_RockDen_19S070E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Balmer_Basin/LRO_NAC_RockDen_19S070E_150cmp.vrt deleted file mode 100644 index a37b9c973c..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Balmer_Basin/LRO_NAC_RockDen_19S070E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_RockDen_19S070E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_RockDen_19S070E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_RockDen_19S070E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_RockDen_19S070E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Bullialdus_Crater/LRO_LROC_Rock_Density_Bullialdus_Crater.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Bullialdus_Crater/LRO_LROC_Rock_Density_Bullialdus_Crater.asset deleted file mode 100644 index 10d7ac8e0c..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Bullialdus_Crater/LRO_LROC_Rock_Density_Bullialdus_Crater.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_RockDen_20S337E_400cmp", - Name = [[LRO LROC Rock Density, Bullialdus Crater]], - FilePath = asset.localResource("LRO_NAC_RockDen_20S337E_400cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Rock Density, Bullialdus Crater]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_RockDen_20S337E_400cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Rock Density, Bullialdus Crater layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Bullialdus_Crater/LRO_NAC_RockDen_20S337E_400cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Bullialdus_Crater/LRO_NAC_RockDen_20S337E_400cmp.vrt deleted file mode 100644 index 39216f07bd..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Bullialdus_Crater/LRO_NAC_RockDen_20S337E_400cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_RockDen_20S337E_400cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_RockDen_20S337E_400cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_RockDen_20S337E_400cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_RockDen_20S337E_400cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Gruithuisen_Domes/LRO_LROC_Rock_Density_Gruithuisen_Domes.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Gruithuisen_Domes/LRO_LROC_Rock_Density_Gruithuisen_Domes.asset deleted file mode 100644 index 6f254f33ed..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Gruithuisen_Domes/LRO_LROC_Rock_Density_Gruithuisen_Domes.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_RockDen_36N320E_2mp", - Name = [[LRO LROC Rock Density, Gruithuisen Domes]], - FilePath = asset.localResource("LRO_NAC_RockDen_36N320E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Rock Density, Gruithuisen Domes]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_RockDen_36N320E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Rock Density, Gruithuisen Domes layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Gruithuisen_Domes/LRO_NAC_RockDen_36N320E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Gruithuisen_Domes/LRO_NAC_RockDen_36N320E_2mp.vrt deleted file mode 100644 index 451a9d0ba8..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Gruithuisen_Domes/LRO_NAC_RockDen_36N320E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_RockDen_36N320E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_RockDen_36N320E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_RockDen_36N320E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_RockDen_36N320E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard.asset new file mode 100644 index 0000000000..fdc01e0b65 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard.asset @@ -0,0 +1,244 @@ +-- This file was automatically generated using a script found at +-- https://github.com/OpenSpace/scripts/treks-to-openspace. See the README.md file +-- in that repository for more information on how to run the script to update these +-- files. In particular in the case of errors, prefer to change that script rather +-- than the individual files + +local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier + +local treks_LRO_NAC_RockDenHaz_13S358E_2mp = { + Identifier = "LRO_NAC_RockDenHaz_13S358E_2mp", + Name = [[LRO LROC Rock Density Hazard, Alphonsus Crater]], + FilePath = asset.localResource("LRO_LROC_Rock_Density_Hazard/Alphonsus_Crater.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_RockDenHaz_73N350E_150cmp = { + Identifier = "LRO_NAC_RockDenHaz_73N350E_150cmp", + Name = [[LRO LROC Rock Density Hazard, Anaxagoras Crater]], + FilePath = asset.localResource("LRO_LROC_Rock_Density_Hazard/Anaxagoras_Crater.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_RockDenHaz_26N004E_150cmp = { + Identifier = "LRO_NAC_RockDenHaz_26N004E_150cmp", + Name = [[LRO LROC Rock Density Hazard, Apollo 15]], + FilePath = asset.localResource("LRO_LROC_Rock_Density_Hazard/Apollo_15.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_RockDenHaz_09S015E_150cmp = { + Identifier = "LRO_NAC_RockDenHaz_09S015E_150cmp", + Name = [[LRO LROC Rock Density Hazard, Apollo 16]], + FilePath = asset.localResource("LRO_LROC_Rock_Density_Hazard/Apollo_16.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_RockDenHaz_37S206E_150cmp = { + Identifier = "LRO_NAC_RockDenHaz_37S206E_150cmp", + Name = [[LRO LROC Rock Density Hazard, Apollo Basin]], + FilePath = asset.localResource("LRO_LROC_Rock_Density_Hazard/Apollo_Basin.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_RockDenHaz_25N311E_2mp = { + Identifier = "LRO_NAC_RockDenHaz_25N311E_2mp", + Name = [[LRO LROC Rock Density Hazard, Aristarchus 1]], + FilePath = asset.localResource("LRO_LROC_Rock_Density_Hazard/Aristarchus_1.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_RockDenHaz_28N307E_150cmp = { + Identifier = "LRO_NAC_RockDenHaz_28N307E_150cmp", + Name = [[LRO LROC Rock Density Hazard, Aristarchus 2]], + FilePath = asset.localResource("LRO_LROC_Rock_Density_Hazard/Aristarchus_2.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_RockDenHaz_19S070E_150cmp = { + Identifier = "LRO_NAC_RockDenHaz_19S070E_150cmp", + Name = [[LRO LROC Rock Density Hazard, Balmer Basin]], + FilePath = asset.localResource("LRO_LROC_Rock_Density_Hazard/Balmer_Basin.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_RockDenHaz_20S337E_400cmp = { + Identifier = "LRO_NAC_RockDenHaz_20S337E_400cmp", + Name = [[LRO LROC Rock Density Hazard, Bullialdus Crater]], + FilePath = asset.localResource("LRO_LROC_Rock_Density_Hazard/Bullialdus_Crater.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_RockDenHaz_36N320E_2mp = { + Identifier = "LRO_NAC_RockDenHaz_36N320E_2mp", + Name = [[LRO LROC Rock Density Hazard, Gruithuisen Domes]], + FilePath = asset.localResource("LRO_LROC_Rock_Density_Hazard/Gruithuisen_Domes.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_RockDenHaz_00N234E_150cmp = { + Identifier = "LRO_NAC_RockDenHaz_00N234E_150cmp", + Name = [[LRO LROC Rock Density Hazard, Hertzsprung]], + FilePath = asset.localResource("LRO_LROC_Rock_Density_Hazard/Hertzsprung.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_RockDenHaz_08N332E_2mp = { + Identifier = "LRO_NAC_RockDenHaz_08N332E_2mp", + Name = [[LRO LROC Rock Density Hazard, Hortensius Domes]], + FilePath = asset.localResource("LRO_LROC_Rock_Density_Hazard/Hortensius_Domes.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_RockDenHaz_06N120E_200cmp = { + Identifier = "LRO_NAC_RockDenHaz_06N120E_200cmp", + Name = [[LRO LROC Rock Density Hazard, King Crater]], + FilePath = asset.localResource("LRO_LROC_Rock_Density_Hazard/King_Crater.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_RockDenHaz_32N292E_2mp = { + Identifier = "LRO_NAC_RockDenHaz_32N292E_2mp", + Name = [[LRO LROC Rock Density Hazard, Lichtenberg Crater]], + FilePath = asset.localResource("LRO_LROC_Rock_Density_Hazard/Lichtenberg_Crater.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_RockDenHaz_10N058E_150cmp = { + Identifier = "LRO_NAC_RockDenHaz_10N058E_150cmp", + Name = [[LRO LROC Rock Density Hazard, Mare Crisium]], + FilePath = asset.localResource("LRO_LROC_Rock_Density_Hazard/Mare_Crisium.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_RockDenHaz_16S041E_150cmp = { + Identifier = "LRO_NAC_RockDenHaz_16S041E_150cmp", + Name = [[LRO LROC Rock Density Hazard, Montes Pyrenaeus]], + FilePath = asset.localResource("LRO_LROC_Rock_Density_Hazard/Montes_Pyrenaeus.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_RockDenHaz_26S265E_200cmp = { + Identifier = "LRO_NAC_RockDenHaz_26S265E_200cmp", + Name = [[LRO LROC Rock Density Hazard, Orientale 1]], + FilePath = asset.localResource("LRO_LROC_Rock_Density_Hazard/Orientale_1.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_RockDenHaz_53N354E_150cmp = { + Identifier = "LRO_NAC_RockDenHaz_53N354E_150cmp", + Name = [[LRO LROC Rock Density Hazard, Plato Ejecta]], + FilePath = asset.localResource("LRO_LROC_Rock_Density_Hazard/Plato_Ejecta.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_RockDenHaz_60S200E_150cmp = { + Identifier = "LRO_NAC_RockDenHaz_60S200E_150cmp", + Name = [[LRO LROC Rock Density Hazard, South Pole-Aitken Basin Interior]], + FilePath = asset.localResource("LRO_LROC_Rock_Density_Hazard/South_Pole-Aitken_Basin_Interior.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_RockDenHaz_02S167E_150cmp = { + Identifier = "LRO_NAC_RockDenHaz_02S167E_150cmp", + Name = [[LRO LROC Rock Density Hazard, Stratton (Dewar) High Fe Anomaly]], + FilePath = asset.localResource("LRO_LROC_Rock_Density_Hazard/Stratton_Dewar_High_Fe_Anomaly.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_RockDenHaz_20N010E_2mp = { + Identifier = "LRO_NAC_RockDenHaz_20N010E_2mp", + Name = [[LRO LROC Rock Density Hazard, Sulpicius Gallus]], + FilePath = asset.localResource("LRO_LROC_Rock_Density_Hazard/Sulpicius_Gallus.vrt"), + Description = [[]] +} + +local treks_LRO_NAC_RockDenHaz_43S349E_150cmp = { + Identifier = "LRO_NAC_RockDenHaz_43S349E_150cmp", + Name = [[LRO LROC Rock Density Hazard, Tycho Crater]], + FilePath = asset.localResource("LRO_LROC_Rock_Density_Hazard/Tycho_Crater.vrt"), + Description = [[]] +} + +asset.onInitialize(function() + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_RockDenHaz_13S358E_2mp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_RockDenHaz_73N350E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_RockDenHaz_26N004E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_RockDenHaz_09S015E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_RockDenHaz_37S206E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_RockDenHaz_25N311E_2mp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_RockDenHaz_28N307E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_RockDenHaz_19S070E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_RockDenHaz_20S337E_400cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_RockDenHaz_36N320E_2mp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_RockDenHaz_00N234E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_RockDenHaz_08N332E_2mp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_RockDenHaz_06N120E_200cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_RockDenHaz_32N292E_2mp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_RockDenHaz_10N058E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_RockDenHaz_16S041E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_RockDenHaz_26S265E_200cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_RockDenHaz_53N354E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_RockDenHaz_60S200E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_RockDenHaz_02S167E_150cmp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_RockDenHaz_20N010E_2mp) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_RockDenHaz_43S349E_150cmp) +end) + +asset.onDeinitialize(function() + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_RockDenHaz_13S358E_2mp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_RockDenHaz_73N350E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_RockDenHaz_26N004E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_RockDenHaz_09S015E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_RockDenHaz_37S206E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_RockDenHaz_25N311E_2mp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_RockDenHaz_28N307E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_RockDenHaz_19S070E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_RockDenHaz_20S337E_400cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_RockDenHaz_36N320E_2mp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_RockDenHaz_00N234E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_RockDenHaz_08N332E_2mp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_RockDenHaz_06N120E_200cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_RockDenHaz_32N292E_2mp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_RockDenHaz_10N058E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_RockDenHaz_16S041E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_RockDenHaz_26S265E_200cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_RockDenHaz_53N354E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_RockDenHaz_60S200E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_RockDenHaz_02S167E_150cmp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_RockDenHaz_20N010E_2mp") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_RockDenHaz_43S349E_150cmp") +end) + +asset.export("LRO_NAC_RockDenHaz_13S358E_2mp", treks_LRO_NAC_RockDenHaz_13S358E_2mp) +asset.export("LRO_NAC_RockDenHaz_73N350E_150cmp", treks_LRO_NAC_RockDenHaz_73N350E_150cmp) +asset.export("LRO_NAC_RockDenHaz_26N004E_150cmp", treks_LRO_NAC_RockDenHaz_26N004E_150cmp) +asset.export("LRO_NAC_RockDenHaz_09S015E_150cmp", treks_LRO_NAC_RockDenHaz_09S015E_150cmp) +asset.export("LRO_NAC_RockDenHaz_37S206E_150cmp", treks_LRO_NAC_RockDenHaz_37S206E_150cmp) +asset.export("LRO_NAC_RockDenHaz_25N311E_2mp", treks_LRO_NAC_RockDenHaz_25N311E_2mp) +asset.export("LRO_NAC_RockDenHaz_28N307E_150cmp", treks_LRO_NAC_RockDenHaz_28N307E_150cmp) +asset.export("LRO_NAC_RockDenHaz_19S070E_150cmp", treks_LRO_NAC_RockDenHaz_19S070E_150cmp) +asset.export("LRO_NAC_RockDenHaz_20S337E_400cmp", treks_LRO_NAC_RockDenHaz_20S337E_400cmp) +asset.export("LRO_NAC_RockDenHaz_36N320E_2mp", treks_LRO_NAC_RockDenHaz_36N320E_2mp) +asset.export("LRO_NAC_RockDenHaz_00N234E_150cmp", treks_LRO_NAC_RockDenHaz_00N234E_150cmp) +asset.export("LRO_NAC_RockDenHaz_08N332E_2mp", treks_LRO_NAC_RockDenHaz_08N332E_2mp) +asset.export("LRO_NAC_RockDenHaz_06N120E_200cmp", treks_LRO_NAC_RockDenHaz_06N120E_200cmp) +asset.export("LRO_NAC_RockDenHaz_32N292E_2mp", treks_LRO_NAC_RockDenHaz_32N292E_2mp) +asset.export("LRO_NAC_RockDenHaz_10N058E_150cmp", treks_LRO_NAC_RockDenHaz_10N058E_150cmp) +asset.export("LRO_NAC_RockDenHaz_16S041E_150cmp", treks_LRO_NAC_RockDenHaz_16S041E_150cmp) +asset.export("LRO_NAC_RockDenHaz_26S265E_200cmp", treks_LRO_NAC_RockDenHaz_26S265E_200cmp) +asset.export("LRO_NAC_RockDenHaz_53N354E_150cmp", treks_LRO_NAC_RockDenHaz_53N354E_150cmp) +asset.export("LRO_NAC_RockDenHaz_60S200E_150cmp", treks_LRO_NAC_RockDenHaz_60S200E_150cmp) +asset.export("LRO_NAC_RockDenHaz_02S167E_150cmp", treks_LRO_NAC_RockDenHaz_02S167E_150cmp) +asset.export("LRO_NAC_RockDenHaz_20N010E_2mp", treks_LRO_NAC_RockDenHaz_20N010E_2mp) +asset.export("LRO_NAC_RockDenHaz_43S349E_150cmp", treks_LRO_NAC_RockDenHaz_43S349E_150cmp) + + +asset.meta = { + Name = [[NASA Treks Layers for Moon LRO_LROC_Rock_Density_Hazard], + Version = "1.0", + Author = "NASA/Treks", + URL = "https://trek.nasa.gov/moon", + License = "NASA/Treks", + Description = [[LRO_LROC_Rock_Density_Hazard layers from NASA/Treks for Moon]] +} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Alphonsus_Crater.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Alphonsus_Crater.vrt new file mode 100644 index 0000000000..d045a2621c --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Alphonsus_Crater.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Alphonsus_Crater.wms + 1 + + + + 0 + + + + 0 + Green + + Alphonsus_Crater.wms + 2 + + + + 0 + + + + 0 + Blue + + Alphonsus_Crater.wms + 3 + + + + 0 + + + + Alpha + + Alphonsus_Crater.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Alphonsus_Crater/LRO_NAC_RockDenHaz_13S358E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Alphonsus_Crater.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Alphonsus_Crater/LRO_NAC_RockDenHaz_13S358E_2mp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Alphonsus_Crater.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Anaxagoras_Crater.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Anaxagoras_Crater.vrt new file mode 100644 index 0000000000..235a71373e --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Anaxagoras_Crater.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Anaxagoras_Crater.wms + 1 + + + + 0 + + + + 0 + Green + + Anaxagoras_Crater.wms + 2 + + + + 0 + + + + 0 + Blue + + Anaxagoras_Crater.wms + 3 + + + + 0 + + + + Alpha + + Anaxagoras_Crater.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Anaxagoras_Crater/LRO_NAC_RockDenHaz_73N350E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Anaxagoras_Crater.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Anaxagoras_Crater/LRO_NAC_RockDenHaz_73N350E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Anaxagoras_Crater.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Apollo_15.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Apollo_15.vrt new file mode 100644 index 0000000000..3d66ac3c64 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Apollo_15.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Apollo_15.wms + 1 + + + + 0 + + + + 0 + Green + + Apollo_15.wms + 2 + + + + 0 + + + + 0 + Blue + + Apollo_15.wms + 3 + + + + 0 + + + + Alpha + + Apollo_15.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Apollo_15/LRO_NAC_RockDenHaz_26N004E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Apollo_15.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Apollo_15/LRO_NAC_RockDenHaz_26N004E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Apollo_15.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Apollo_16.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Apollo_16.vrt new file mode 100644 index 0000000000..1c9a6bfbde --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Apollo_16.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Apollo_16.wms + 1 + + + + 0 + + + + 0 + Green + + Apollo_16.wms + 2 + + + + 0 + + + + 0 + Blue + + Apollo_16.wms + 3 + + + + 0 + + + + Alpha + + Apollo_16.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Apollo_16/LRO_NAC_RockDenHaz_09S015E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Apollo_16.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Apollo_16/LRO_NAC_RockDenHaz_09S015E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Apollo_16.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Apollo_Basin.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Apollo_Basin.vrt new file mode 100644 index 0000000000..f655105be7 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Apollo_Basin.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Apollo_Basin.wms + 1 + + + + 0 + + + + 0 + Green + + Apollo_Basin.wms + 2 + + + + 0 + + + + 0 + Blue + + Apollo_Basin.wms + 3 + + + + 0 + + + + Alpha + + Apollo_Basin.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Apollo_Basin/LRO_NAC_RockDenHaz_37S206E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Apollo_Basin.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Apollo_Basin/LRO_NAC_RockDenHaz_37S206E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Apollo_Basin.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Aristarchus_1.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Aristarchus_1.vrt new file mode 100644 index 0000000000..7796863a5c --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Aristarchus_1.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Aristarchus_1.wms + 1 + + + + 0 + + + + 0 + Green + + Aristarchus_1.wms + 2 + + + + 0 + + + + 0 + Blue + + Aristarchus_1.wms + 3 + + + + 0 + + + + Alpha + + Aristarchus_1.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Aristarchus_1/LRO_NAC_RockDenHaz_25N311E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Aristarchus_1.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Aristarchus_1/LRO_NAC_RockDenHaz_25N311E_2mp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Aristarchus_1.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Aristarchus_2.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Aristarchus_2.vrt new file mode 100644 index 0000000000..93d6a7dd6d --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Aristarchus_2.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Aristarchus_2.wms + 1 + + + + 0 + + + + 0 + Green + + Aristarchus_2.wms + 2 + + + + 0 + + + + 0 + Blue + + Aristarchus_2.wms + 3 + + + + 0 + + + + Alpha + + Aristarchus_2.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Aristarchus_2/LRO_NAC_RockDenHaz_28N307E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Aristarchus_2.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Aristarchus_2/LRO_NAC_RockDenHaz_28N307E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Aristarchus_2.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Balmer_Basin.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Balmer_Basin.vrt new file mode 100644 index 0000000000..3028785c98 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Balmer_Basin.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Balmer_Basin.wms + 1 + + + + 0 + + + + 0 + Green + + Balmer_Basin.wms + 2 + + + + 0 + + + + 0 + Blue + + Balmer_Basin.wms + 3 + + + + 0 + + + + Alpha + + Balmer_Basin.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Balmer_Basin/LRO_NAC_RockDenHaz_19S070E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Balmer_Basin.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Balmer_Basin/LRO_NAC_RockDenHaz_19S070E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Balmer_Basin.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Bullialdus_Crater.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Bullialdus_Crater.vrt new file mode 100644 index 0000000000..15eb2de7e7 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Bullialdus_Crater.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Bullialdus_Crater.wms + 1 + + + + 0 + + + + 0 + Green + + Bullialdus_Crater.wms + 2 + + + + 0 + + + + 0 + Blue + + Bullialdus_Crater.wms + 3 + + + + 0 + + + + Alpha + + Bullialdus_Crater.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Bullialdus_Crater/LRO_NAC_RockDenHaz_20S337E_400cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Bullialdus_Crater.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Bullialdus_Crater/LRO_NAC_RockDenHaz_20S337E_400cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Bullialdus_Crater.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Gruithuisen_Domes.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Gruithuisen_Domes.vrt new file mode 100644 index 0000000000..0ab681bccf --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Gruithuisen_Domes.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Gruithuisen_Domes.wms + 1 + + + + 0 + + + + 0 + Green + + Gruithuisen_Domes.wms + 2 + + + + 0 + + + + 0 + Blue + + Gruithuisen_Domes.wms + 3 + + + + 0 + + + + Alpha + + Gruithuisen_Domes.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Gruithuisen_Domes/LRO_NAC_RockDenHaz_36N320E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Gruithuisen_Domes.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Gruithuisen_Domes/LRO_NAC_RockDenHaz_36N320E_2mp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Gruithuisen_Domes.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Hertzsprung.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Hertzsprung.vrt new file mode 100644 index 0000000000..ad731212e4 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Hertzsprung.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Hertzsprung.wms + 1 + + + + 0 + + + + 0 + Green + + Hertzsprung.wms + 2 + + + + 0 + + + + 0 + Blue + + Hertzsprung.wms + 3 + + + + 0 + + + + Alpha + + Hertzsprung.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Hertzsprung/LRO_NAC_RockDenHaz_00N234E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Hertzsprung.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Hertzsprung/LRO_NAC_RockDenHaz_00N234E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Hertzsprung.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Hortensius_Domes.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Hortensius_Domes.vrt new file mode 100644 index 0000000000..19f2fa78ca --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Hortensius_Domes.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Hortensius_Domes.wms + 1 + + + + 0 + + + + 0 + Green + + Hortensius_Domes.wms + 2 + + + + 0 + + + + 0 + Blue + + Hortensius_Domes.wms + 3 + + + + 0 + + + + Alpha + + Hortensius_Domes.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Hortensius_Domes/LRO_NAC_RockDenHaz_08N332E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Hortensius_Domes.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Hortensius_Domes/LRO_NAC_RockDenHaz_08N332E_2mp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Hortensius_Domes.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/King_Crater.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/King_Crater.vrt new file mode 100644 index 0000000000..ffb4db9833 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/King_Crater.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + King_Crater.wms + 1 + + + + 0 + + + + 0 + Green + + King_Crater.wms + 2 + + + + 0 + + + + 0 + Blue + + King_Crater.wms + 3 + + + + 0 + + + + Alpha + + King_Crater.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_King_Crater/LRO_NAC_RockDenHaz_06N120E_200cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/King_Crater.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_King_Crater/LRO_NAC_RockDenHaz_06N120E_200cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/King_Crater.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Lichtenberg_Crater.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Lichtenberg_Crater.vrt new file mode 100644 index 0000000000..8584f2c304 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Lichtenberg_Crater.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Lichtenberg_Crater.wms + 1 + + + + 0 + + + + 0 + Green + + Lichtenberg_Crater.wms + 2 + + + + 0 + + + + 0 + Blue + + Lichtenberg_Crater.wms + 3 + + + + 0 + + + + Alpha + + Lichtenberg_Crater.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Lichtenberg_Crater/LRO_NAC_RockDenHaz_32N292E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Lichtenberg_Crater.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Lichtenberg_Crater/LRO_NAC_RockDenHaz_32N292E_2mp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Lichtenberg_Crater.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Mare_Crisium.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Mare_Crisium.vrt new file mode 100644 index 0000000000..d6a7df281a --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Mare_Crisium.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Mare_Crisium.wms + 1 + + + + 0 + + + + 0 + Green + + Mare_Crisium.wms + 2 + + + + 0 + + + + 0 + Blue + + Mare_Crisium.wms + 3 + + + + 0 + + + + Alpha + + Mare_Crisium.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Mare_Crisium/LRO_NAC_RockDenHaz_10N058E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Mare_Crisium.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Mare_Crisium/LRO_NAC_RockDenHaz_10N058E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Mare_Crisium.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Montes_Pyrenaeus.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Montes_Pyrenaeus.vrt new file mode 100644 index 0000000000..f515ff3f8e --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Montes_Pyrenaeus.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Montes_Pyrenaeus.wms + 1 + + + + 0 + + + + 0 + Green + + Montes_Pyrenaeus.wms + 2 + + + + 0 + + + + 0 + Blue + + Montes_Pyrenaeus.wms + 3 + + + + 0 + + + + Alpha + + Montes_Pyrenaeus.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Montes_Pyrenaeus/LRO_NAC_RockDenHaz_16S041E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Montes_Pyrenaeus.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Montes_Pyrenaeus/LRO_NAC_RockDenHaz_16S041E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Montes_Pyrenaeus.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Orientale_1.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Orientale_1.vrt new file mode 100644 index 0000000000..080fd3bb80 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Orientale_1.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Orientale_1.wms + 1 + + + + 0 + + + + 0 + Green + + Orientale_1.wms + 2 + + + + 0 + + + + 0 + Blue + + Orientale_1.wms + 3 + + + + 0 + + + + Alpha + + Orientale_1.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Orientale_1/LRO_NAC_RockDenHaz_26S265E_200cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Orientale_1.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Orientale_1/LRO_NAC_RockDenHaz_26S265E_200cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Orientale_1.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Plato_Ejecta.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Plato_Ejecta.vrt new file mode 100644 index 0000000000..a031a2e962 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Plato_Ejecta.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Plato_Ejecta.wms + 1 + + + + 0 + + + + 0 + Green + + Plato_Ejecta.wms + 2 + + + + 0 + + + + 0 + Blue + + Plato_Ejecta.wms + 3 + + + + 0 + + + + Alpha + + Plato_Ejecta.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Plato_Ejecta/LRO_NAC_RockDenHaz_53N354E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Plato_Ejecta.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Plato_Ejecta/LRO_NAC_RockDenHaz_53N354E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Plato_Ejecta.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/South_Pole-Aitken_Basin_Interior.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/South_Pole-Aitken_Basin_Interior.vrt new file mode 100644 index 0000000000..63d096530c --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/South_Pole-Aitken_Basin_Interior.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + South_Pole-Aitken_Basin_Interior.wms + 1 + + + + 0 + + + + 0 + Green + + South_Pole-Aitken_Basin_Interior.wms + 2 + + + + 0 + + + + 0 + Blue + + South_Pole-Aitken_Basin_Interior.wms + 3 + + + + 0 + + + + Alpha + + South_Pole-Aitken_Basin_Interior.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_South_Pole-Aitken_Basin_Interior/LRO_NAC_RockDenHaz_60S200E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/South_Pole-Aitken_Basin_Interior.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_South_Pole-Aitken_Basin_Interior/LRO_NAC_RockDenHaz_60S200E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/South_Pole-Aitken_Basin_Interior.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Stratton_Dewar_High_Fe_Anomaly.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Stratton_Dewar_High_Fe_Anomaly.vrt new file mode 100644 index 0000000000..25b5fa5add --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Stratton_Dewar_High_Fe_Anomaly.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Stratton_Dewar_High_Fe_Anomaly.wms + 1 + + + + 0 + + + + 0 + Green + + Stratton_Dewar_High_Fe_Anomaly.wms + 2 + + + + 0 + + + + 0 + Blue + + Stratton_Dewar_High_Fe_Anomaly.wms + 3 + + + + 0 + + + + Alpha + + Stratton_Dewar_High_Fe_Anomaly.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Stratton_(Dewar)_High_Fe_Anomaly/LRO_NAC_RockDenHaz_02S167E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Stratton_Dewar_High_Fe_Anomaly.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Stratton_(Dewar)_High_Fe_Anomaly/LRO_NAC_RockDenHaz_02S167E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Stratton_Dewar_High_Fe_Anomaly.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Sulpicius_Gallus.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Sulpicius_Gallus.vrt new file mode 100644 index 0000000000..a13f1c4a0a --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Sulpicius_Gallus.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Sulpicius_Gallus.wms + 1 + + + + 0 + + + + 0 + Green + + Sulpicius_Gallus.wms + 2 + + + + 0 + + + + 0 + Blue + + Sulpicius_Gallus.wms + 3 + + + + 0 + + + + Alpha + + Sulpicius_Gallus.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Sulpicius_Gallus/LRO_NAC_RockDenHaz_20N010E_2mp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Sulpicius_Gallus.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Sulpicius_Gallus/LRO_NAC_RockDenHaz_20N010E_2mp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Sulpicius_Gallus.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Tycho_Crater.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Tycho_Crater.vrt new file mode 100644 index 0000000000..60bed90160 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Tycho_Crater.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Tycho_Crater.wms + 1 + + + + 0 + + + + 0 + Green + + Tycho_Crater.wms + 2 + + + + 0 + + + + 0 + Blue + + Tycho_Crater.wms + 3 + + + + 0 + + + + Alpha + + Tycho_Crater.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Tycho_Crater/LRO_NAC_RockDenHaz_43S349E_150cmp.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Tycho_Crater.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Tycho_Crater/LRO_NAC_RockDenHaz_43S349E_150cmp.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard/Tycho_Crater.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Aitken_Crater/LRO_LROC_Rock_Density_Hazard_Aitken_Crater.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Aitken_Crater/LRO_LROC_Rock_Density_Hazard_Aitken_Crater.asset deleted file mode 100644 index f7e0632297..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Aitken_Crater/LRO_LROC_Rock_Density_Hazard_Aitken_Crater.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_RockDenHaz_17S173E_150cmp", - Name = [[LRO LROC Rock Density, Hazard Aitken Crater]], - FilePath = asset.localResource("LRO_NAC_RockDenHaz_17S173E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Rock Density, Hazard Aitken Crater]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_RockDenHaz_17S173E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Rock Density, Hazard Aitken Crater layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Aitken_Crater/LRO_NAC_RockDenHaz_17S173E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Aitken_Crater/LRO_NAC_RockDenHaz_17S173E_150cmp.vrt deleted file mode 100644 index 63c1a35004..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Aitken_Crater/LRO_NAC_RockDenHaz_17S173E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_RockDenHaz_17S173E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_RockDenHaz_17S173E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_RockDenHaz_17S173E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_RockDenHaz_17S173E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Alphonsus_Crater/LRO_LROC_Rock_Density_Hazard_Alphonsus_Crater.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Alphonsus_Crater/LRO_LROC_Rock_Density_Hazard_Alphonsus_Crater.asset deleted file mode 100644 index d2d156c5fb..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Alphonsus_Crater/LRO_LROC_Rock_Density_Hazard_Alphonsus_Crater.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_RockDenHaz_13S358E_2mp", - Name = [[LRO LROC Rock Density Hazard, Alphonsus Crater]], - FilePath = asset.localResource("LRO_NAC_RockDenHaz_13S358E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Rock Density Hazard, Alphonsus Crater]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_RockDenHaz_13S358E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Rock Density Hazard, Alphonsus Crater layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Alphonsus_Crater/LRO_NAC_RockDenHaz_13S358E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Alphonsus_Crater/LRO_NAC_RockDenHaz_13S358E_2mp.vrt deleted file mode 100644 index bd2eaf5e25..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Alphonsus_Crater/LRO_NAC_RockDenHaz_13S358E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_RockDenHaz_13S358E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_RockDenHaz_13S358E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_RockDenHaz_13S358E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_RockDenHaz_13S358E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Anaxagoras_Crater/LRO_LROC_Rock_Density_Hazard_Anaxagoras_Crater.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Anaxagoras_Crater/LRO_LROC_Rock_Density_Hazard_Anaxagoras_Crater.asset deleted file mode 100644 index 1b8fd3e5c7..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Anaxagoras_Crater/LRO_LROC_Rock_Density_Hazard_Anaxagoras_Crater.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_RockDenHaz_73N350E_150cmp", - Name = [[LRO LROC Rock Density Hazard, Anaxagoras Crater]], - FilePath = asset.localResource("LRO_NAC_RockDenHaz_73N350E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Rock Density Hazard, Anaxagoras Crater]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_RockDenHaz_73N350E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Rock Density Hazard, Anaxagoras Crater layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Anaxagoras_Crater/LRO_NAC_RockDenHaz_73N350E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Anaxagoras_Crater/LRO_NAC_RockDenHaz_73N350E_150cmp.vrt deleted file mode 100644 index 7b2125d49c..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Anaxagoras_Crater/LRO_NAC_RockDenHaz_73N350E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_RockDenHaz_73N350E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_RockDenHaz_73N350E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_RockDenHaz_73N350E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_RockDenHaz_73N350E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Apollo_15/LRO_LROC_Rock_Density_Hazard_Apollo_15.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Apollo_15/LRO_LROC_Rock_Density_Hazard_Apollo_15.asset deleted file mode 100644 index a3f820552d..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Apollo_15/LRO_LROC_Rock_Density_Hazard_Apollo_15.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_RockDenHaz_26N004E_150cmp", - Name = [[LRO LROC Rock Density Hazard, Apollo 15]], - FilePath = asset.localResource("LRO_NAC_RockDenHaz_26N004E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Rock Density Hazard, Apollo 15]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_RockDenHaz_26N004E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Rock Density Hazard, Apollo 15 layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Apollo_15/LRO_NAC_RockDenHaz_26N004E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Apollo_15/LRO_NAC_RockDenHaz_26N004E_150cmp.vrt deleted file mode 100644 index 62781046bf..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Apollo_15/LRO_NAC_RockDenHaz_26N004E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_RockDenHaz_26N004E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_RockDenHaz_26N004E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_RockDenHaz_26N004E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_RockDenHaz_26N004E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Apollo_16/LRO_LROC_Rock_Density_Hazard_Apollo_16.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Apollo_16/LRO_LROC_Rock_Density_Hazard_Apollo_16.asset deleted file mode 100644 index dd31e41cf0..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Apollo_16/LRO_LROC_Rock_Density_Hazard_Apollo_16.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_RockDenHaz_09S015E_150cmp", - Name = [[LRO LROC Rock Density Hazard, Apollo 16]], - FilePath = asset.localResource("LRO_NAC_RockDenHaz_09S015E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Rock Density Hazard, Apollo 16]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_RockDenHaz_09S015E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Rock Density Hazard, Apollo 16 layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Apollo_16/LRO_NAC_RockDenHaz_09S015E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Apollo_16/LRO_NAC_RockDenHaz_09S015E_150cmp.vrt deleted file mode 100644 index 2214bc0051..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Apollo_16/LRO_NAC_RockDenHaz_09S015E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_RockDenHaz_09S015E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_RockDenHaz_09S015E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_RockDenHaz_09S015E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_RockDenHaz_09S015E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Apollo_Basin/LRO_LROC_Rock_Density_Hazard_Apollo_Basin.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Apollo_Basin/LRO_LROC_Rock_Density_Hazard_Apollo_Basin.asset deleted file mode 100644 index 2098f898aa..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Apollo_Basin/LRO_LROC_Rock_Density_Hazard_Apollo_Basin.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_RockDenHaz_37S206E_150cmp", - Name = [[LRO LROC Rock Density Hazard, Apollo Basin]], - FilePath = asset.localResource("LRO_NAC_RockDenHaz_37S206E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Rock Density Hazard, Apollo Basin]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_RockDenHaz_37S206E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Rock Density Hazard, Apollo Basin layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Apollo_Basin/LRO_NAC_RockDenHaz_37S206E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Apollo_Basin/LRO_NAC_RockDenHaz_37S206E_150cmp.vrt deleted file mode 100644 index f59f9a09e1..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Apollo_Basin/LRO_NAC_RockDenHaz_37S206E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_RockDenHaz_37S206E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_RockDenHaz_37S206E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_RockDenHaz_37S206E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_RockDenHaz_37S206E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Aristarchus_1/LRO_LROC_Rock_Density_Hazard_Aristarchus_1.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Aristarchus_1/LRO_LROC_Rock_Density_Hazard_Aristarchus_1.asset deleted file mode 100644 index 5980321621..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Aristarchus_1/LRO_LROC_Rock_Density_Hazard_Aristarchus_1.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_RockDenHaz_25N311E_2mp", - Name = [[LRO LROC Rock Density Hazard, Aristarchus 1]], - FilePath = asset.localResource("LRO_NAC_RockDenHaz_25N311E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Rock Density Hazard, Aristarchus 1]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_RockDenHaz_25N311E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Rock Density Hazard, Aristarchus 1 layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Aristarchus_1/LRO_NAC_RockDenHaz_25N311E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Aristarchus_1/LRO_NAC_RockDenHaz_25N311E_2mp.vrt deleted file mode 100644 index ffcbfedb99..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Aristarchus_1/LRO_NAC_RockDenHaz_25N311E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_RockDenHaz_25N311E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_RockDenHaz_25N311E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_RockDenHaz_25N311E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_RockDenHaz_25N311E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Aristarchus_2/LRO_LROC_Rock_Density_Hazard_Aristarchus_2.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Aristarchus_2/LRO_LROC_Rock_Density_Hazard_Aristarchus_2.asset deleted file mode 100644 index 8d93ac56df..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Aristarchus_2/LRO_LROC_Rock_Density_Hazard_Aristarchus_2.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_RockDenHaz_28N307E_150cmp", - Name = [[LRO LROC Rock Density Hazard, Aristarchus 2]], - FilePath = asset.localResource("LRO_NAC_RockDenHaz_28N307E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Rock Density Hazard, Aristarchus 2]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_RockDenHaz_28N307E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Rock Density Hazard, Aristarchus 2 layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Aristarchus_2/LRO_NAC_RockDenHaz_28N307E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Aristarchus_2/LRO_NAC_RockDenHaz_28N307E_150cmp.vrt deleted file mode 100644 index 8f692955e6..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Aristarchus_2/LRO_NAC_RockDenHaz_28N307E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_RockDenHaz_28N307E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_RockDenHaz_28N307E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_RockDenHaz_28N307E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_RockDenHaz_28N307E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Balmer_Basin/LRO_LROC_Rock_Density_Hazard_Balmer_Basin.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Balmer_Basin/LRO_LROC_Rock_Density_Hazard_Balmer_Basin.asset deleted file mode 100644 index ea7b52e295..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Balmer_Basin/LRO_LROC_Rock_Density_Hazard_Balmer_Basin.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_RockDenHaz_19S070E_150cmp", - Name = [[LRO LROC Rock Density Hazard, Balmer Basin]], - FilePath = asset.localResource("LRO_NAC_RockDenHaz_19S070E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Rock Density Hazard, Balmer Basin]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_RockDenHaz_19S070E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Rock Density Hazard, Balmer Basin layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Balmer_Basin/LRO_NAC_RockDenHaz_19S070E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Balmer_Basin/LRO_NAC_RockDenHaz_19S070E_150cmp.vrt deleted file mode 100644 index d25c5af45d..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Balmer_Basin/LRO_NAC_RockDenHaz_19S070E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_RockDenHaz_19S070E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_RockDenHaz_19S070E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_RockDenHaz_19S070E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_RockDenHaz_19S070E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Bullialdus_Crater/LRO_LROC_Rock_Density_Hazard_Bullialdus_Crater.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Bullialdus_Crater/LRO_LROC_Rock_Density_Hazard_Bullialdus_Crater.asset deleted file mode 100644 index 2d4664ebed..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Bullialdus_Crater/LRO_LROC_Rock_Density_Hazard_Bullialdus_Crater.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_RockDenHaz_20S337E_400cmp", - Name = [[LRO LROC Rock Density Hazard, Bullialdus Crater]], - FilePath = asset.localResource("LRO_NAC_RockDenHaz_20S337E_400cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Rock Density Hazard, Bullialdus Crater]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_RockDenHaz_20S337E_400cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Rock Density Hazard, Bullialdus Crater layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Bullialdus_Crater/LRO_NAC_RockDenHaz_20S337E_400cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Bullialdus_Crater/LRO_NAC_RockDenHaz_20S337E_400cmp.vrt deleted file mode 100644 index b2bc02d027..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Bullialdus_Crater/LRO_NAC_RockDenHaz_20S337E_400cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_RockDenHaz_20S337E_400cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_RockDenHaz_20S337E_400cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_RockDenHaz_20S337E_400cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_RockDenHaz_20S337E_400cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Gruithuisen_Domes/LRO_LROC_Rock_Density_Hazard_Gruithuisen_Domes.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Gruithuisen_Domes/LRO_LROC_Rock_Density_Hazard_Gruithuisen_Domes.asset deleted file mode 100644 index 1474826a9c..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Gruithuisen_Domes/LRO_LROC_Rock_Density_Hazard_Gruithuisen_Domes.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_RockDenHaz_36N320E_2mp", - Name = [[LRO LROC Rock Density Hazard, Gruithuisen Domes]], - FilePath = asset.localResource("LRO_NAC_RockDenHaz_36N320E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Rock Density Hazard, Gruithuisen Domes]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_RockDenHaz_36N320E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Rock Density Hazard, Gruithuisen Domes layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Gruithuisen_Domes/LRO_NAC_RockDenHaz_36N320E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Gruithuisen_Domes/LRO_NAC_RockDenHaz_36N320E_2mp.vrt deleted file mode 100644 index d8101f7ae5..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Gruithuisen_Domes/LRO_NAC_RockDenHaz_36N320E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_RockDenHaz_36N320E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_RockDenHaz_36N320E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_RockDenHaz_36N320E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_RockDenHaz_36N320E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Hertzsprung/LRO_LROC_Rock_Density_Hazard_Hertzsprung.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Hertzsprung/LRO_LROC_Rock_Density_Hazard_Hertzsprung.asset deleted file mode 100644 index e1676117f7..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Hertzsprung/LRO_LROC_Rock_Density_Hazard_Hertzsprung.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_RockDenHaz_00N234E_150cmp", - Name = [[LRO LROC Rock Density Hazard, Hertzsprung]], - FilePath = asset.localResource("LRO_NAC_RockDenHaz_00N234E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Rock Density Hazard, Hertzsprung]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_RockDenHaz_00N234E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Rock Density Hazard, Hertzsprung layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Hertzsprung/LRO_NAC_RockDenHaz_00N234E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Hertzsprung/LRO_NAC_RockDenHaz_00N234E_150cmp.vrt deleted file mode 100644 index a50a258bd1..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Hertzsprung/LRO_NAC_RockDenHaz_00N234E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_RockDenHaz_00N234E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_RockDenHaz_00N234E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_RockDenHaz_00N234E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_RockDenHaz_00N234E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Hortensius_Domes/LRO_LROC_Rock_Density_Hazard_Hortensius_Domes.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Hortensius_Domes/LRO_LROC_Rock_Density_Hazard_Hortensius_Domes.asset deleted file mode 100644 index 1c475a3929..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Hortensius_Domes/LRO_LROC_Rock_Density_Hazard_Hortensius_Domes.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_RockDenHaz_08N332E_2mp", - Name = [[LRO LROC Rock Density Hazard, Hortensius Domes]], - FilePath = asset.localResource("LRO_NAC_RockDenHaz_08N332E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Rock Density Hazard, Hortensius Domes]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_RockDenHaz_08N332E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Rock Density Hazard, Hortensius Domes layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Hortensius_Domes/LRO_NAC_RockDenHaz_08N332E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Hortensius_Domes/LRO_NAC_RockDenHaz_08N332E_2mp.vrt deleted file mode 100644 index b389683bef..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Hortensius_Domes/LRO_NAC_RockDenHaz_08N332E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_RockDenHaz_08N332E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_RockDenHaz_08N332E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_RockDenHaz_08N332E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_RockDenHaz_08N332E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_King_Crater/LRO_LROC_Rock_Density_Hazard_King_Crater.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_King_Crater/LRO_LROC_Rock_Density_Hazard_King_Crater.asset deleted file mode 100644 index 2ede4803fc..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_King_Crater/LRO_LROC_Rock_Density_Hazard_King_Crater.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_RockDenHaz_06N120E_200cmp", - Name = [[LRO LROC Rock Density Hazard, King Crater]], - FilePath = asset.localResource("LRO_NAC_RockDenHaz_06N120E_200cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Rock Density Hazard, King Crater]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_RockDenHaz_06N120E_200cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Rock Density Hazard, King Crater layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_King_Crater/LRO_NAC_RockDenHaz_06N120E_200cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_King_Crater/LRO_NAC_RockDenHaz_06N120E_200cmp.vrt deleted file mode 100644 index 39732146b0..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_King_Crater/LRO_NAC_RockDenHaz_06N120E_200cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_RockDenHaz_06N120E_200cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_RockDenHaz_06N120E_200cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_RockDenHaz_06N120E_200cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_RockDenHaz_06N120E_200cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Lichtenberg_Crater/LRO_LROC_Rock_Density_Hazard_Lichtenberg_Crater.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Lichtenberg_Crater/LRO_LROC_Rock_Density_Hazard_Lichtenberg_Crater.asset deleted file mode 100644 index 11a036eadd..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Lichtenberg_Crater/LRO_LROC_Rock_Density_Hazard_Lichtenberg_Crater.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_RockDenHaz_32N292E_2mp", - Name = [[LRO LROC Rock Density Hazard, Lichtenberg Crater]], - FilePath = asset.localResource("LRO_NAC_RockDenHaz_32N292E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Rock Density Hazard, Lichtenberg Crater]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_RockDenHaz_32N292E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Rock Density Hazard, Lichtenberg Crater layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Lichtenberg_Crater/LRO_NAC_RockDenHaz_32N292E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Lichtenberg_Crater/LRO_NAC_RockDenHaz_32N292E_2mp.vrt deleted file mode 100644 index 012d563901..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Lichtenberg_Crater/LRO_NAC_RockDenHaz_32N292E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_RockDenHaz_32N292E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_RockDenHaz_32N292E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_RockDenHaz_32N292E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_RockDenHaz_32N292E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Mare_Crisium/LRO_LROC_Rock_Density_Hazard_Mare_Crisium.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Mare_Crisium/LRO_LROC_Rock_Density_Hazard_Mare_Crisium.asset deleted file mode 100644 index b987df57e2..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Mare_Crisium/LRO_LROC_Rock_Density_Hazard_Mare_Crisium.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_RockDenHaz_10N058E_150cmp", - Name = [[LRO LROC Rock Density Hazard, Mare Crisium]], - FilePath = asset.localResource("LRO_NAC_RockDenHaz_10N058E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Rock Density Hazard, Mare Crisium]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_RockDenHaz_10N058E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Rock Density Hazard, Mare Crisium layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Mare_Crisium/LRO_NAC_RockDenHaz_10N058E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Mare_Crisium/LRO_NAC_RockDenHaz_10N058E_150cmp.vrt deleted file mode 100644 index 6ed35cc39a..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Mare_Crisium/LRO_NAC_RockDenHaz_10N058E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_RockDenHaz_10N058E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_RockDenHaz_10N058E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_RockDenHaz_10N058E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_RockDenHaz_10N058E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Montes_Pyrenaeus/LRO_LROC_Rock_Density_Hazard_Montes_Pyrenaeus.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Montes_Pyrenaeus/LRO_LROC_Rock_Density_Hazard_Montes_Pyrenaeus.asset deleted file mode 100644 index 4d86e897fd..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Montes_Pyrenaeus/LRO_LROC_Rock_Density_Hazard_Montes_Pyrenaeus.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_RockDenHaz_16S041E_150cmp", - Name = [[LRO LROC Rock Density Hazard, Montes Pyrenaeus]], - FilePath = asset.localResource("LRO_NAC_RockDenHaz_16S041E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Rock Density Hazard, Montes Pyrenaeus]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_RockDenHaz_16S041E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Rock Density Hazard, Montes Pyrenaeus layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Montes_Pyrenaeus/LRO_NAC_RockDenHaz_16S041E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Montes_Pyrenaeus/LRO_NAC_RockDenHaz_16S041E_150cmp.vrt deleted file mode 100644 index 3148c6ff3e..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Montes_Pyrenaeus/LRO_NAC_RockDenHaz_16S041E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_RockDenHaz_16S041E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_RockDenHaz_16S041E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_RockDenHaz_16S041E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_RockDenHaz_16S041E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Orientale_1/LRO_LROC_Rock_Density_Hazard_Orientale_1.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Orientale_1/LRO_LROC_Rock_Density_Hazard_Orientale_1.asset deleted file mode 100644 index 22fd35111b..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Orientale_1/LRO_LROC_Rock_Density_Hazard_Orientale_1.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_RockDenHaz_26S265E_200cmp", - Name = [[LRO LROC Rock Density Hazard, Orientale 1]], - FilePath = asset.localResource("LRO_NAC_RockDenHaz_26S265E_200cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Rock Density Hazard, Orientale 1]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_RockDenHaz_26S265E_200cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Rock Density Hazard, Orientale 1 layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Orientale_1/LRO_NAC_RockDenHaz_26S265E_200cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Orientale_1/LRO_NAC_RockDenHaz_26S265E_200cmp.vrt deleted file mode 100644 index 8fc416d113..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Orientale_1/LRO_NAC_RockDenHaz_26S265E_200cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_RockDenHaz_26S265E_200cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_RockDenHaz_26S265E_200cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_RockDenHaz_26S265E_200cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_RockDenHaz_26S265E_200cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Plato_Ejecta/LRO_LROC_Rock_Density_Hazard_Plato_Ejecta.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Plato_Ejecta/LRO_LROC_Rock_Density_Hazard_Plato_Ejecta.asset deleted file mode 100644 index e5ee9f7927..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Plato_Ejecta/LRO_LROC_Rock_Density_Hazard_Plato_Ejecta.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_RockDenHaz_53N354E_150cmp", - Name = [[LRO LROC Rock Density Hazard, Plato Ejecta]], - FilePath = asset.localResource("LRO_NAC_RockDenHaz_53N354E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Rock Density Hazard, Plato Ejecta]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_RockDenHaz_53N354E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Rock Density Hazard, Plato Ejecta layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Plato_Ejecta/LRO_NAC_RockDenHaz_53N354E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Plato_Ejecta/LRO_NAC_RockDenHaz_53N354E_150cmp.vrt deleted file mode 100644 index 296c68c4ac..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Plato_Ejecta/LRO_NAC_RockDenHaz_53N354E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_RockDenHaz_53N354E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_RockDenHaz_53N354E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_RockDenHaz_53N354E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_RockDenHaz_53N354E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_South_Pole-Aitken_Basin_Interior/LRO_LROC_Rock_Density_Hazard_South_Pole-Aitken_Basin_Interior.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_South_Pole-Aitken_Basin_Interior/LRO_LROC_Rock_Density_Hazard_South_Pole-Aitken_Basin_Interior.asset deleted file mode 100644 index 1aedbfdd42..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_South_Pole-Aitken_Basin_Interior/LRO_LROC_Rock_Density_Hazard_South_Pole-Aitken_Basin_Interior.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_RockDenHaz_60S200E_150cmp", - Name = [[LRO LROC Rock Density Hazard, South Pole-Aitken Basin Interior]], - FilePath = asset.localResource("LRO_NAC_RockDenHaz_60S200E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Rock Density Hazard, South Pole-Aitken Basin Interior]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_RockDenHaz_60S200E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Rock Density Hazard, South Pole-Aitken Basin Interior layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_South_Pole-Aitken_Basin_Interior/LRO_NAC_RockDenHaz_60S200E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_South_Pole-Aitken_Basin_Interior/LRO_NAC_RockDenHaz_60S200E_150cmp.vrt deleted file mode 100644 index e8ae2cf31b..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_South_Pole-Aitken_Basin_Interior/LRO_NAC_RockDenHaz_60S200E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_RockDenHaz_60S200E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_RockDenHaz_60S200E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_RockDenHaz_60S200E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_RockDenHaz_60S200E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Stratton_(Dewar)_High_Fe_Anomaly/LRO_LROC_Rock_Density_Hazard_Stratton_(Dewar)_High_Fe_Anomaly.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Stratton_(Dewar)_High_Fe_Anomaly/LRO_LROC_Rock_Density_Hazard_Stratton_(Dewar)_High_Fe_Anomaly.asset deleted file mode 100644 index f815a16287..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Stratton_(Dewar)_High_Fe_Anomaly/LRO_LROC_Rock_Density_Hazard_Stratton_(Dewar)_High_Fe_Anomaly.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_RockDenHaz_02S167E_150cmp", - Name = [[LRO LROC Rock Density Hazard, Stratton (Dewar) High Fe Anomaly]], - FilePath = asset.localResource("LRO_NAC_RockDenHaz_02S167E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Rock Density Hazard, Stratton (Dewar) High Fe Anomaly]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_RockDenHaz_02S167E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Rock Density Hazard, Stratton (Dewar) High Fe Anomaly layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Stratton_(Dewar)_High_Fe_Anomaly/LRO_NAC_RockDenHaz_02S167E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Stratton_(Dewar)_High_Fe_Anomaly/LRO_NAC_RockDenHaz_02S167E_150cmp.vrt deleted file mode 100644 index e240e73758..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Stratton_(Dewar)_High_Fe_Anomaly/LRO_NAC_RockDenHaz_02S167E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_RockDenHaz_02S167E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_RockDenHaz_02S167E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_RockDenHaz_02S167E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_RockDenHaz_02S167E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Sulpicius_Gallus/LRO_LROC_Rock_Density_Hazard_Sulpicius_Gallus.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Sulpicius_Gallus/LRO_LROC_Rock_Density_Hazard_Sulpicius_Gallus.asset deleted file mode 100644 index 632d54562f..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Sulpicius_Gallus/LRO_LROC_Rock_Density_Hazard_Sulpicius_Gallus.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_RockDenHaz_20N010E_2mp", - Name = [[LRO LROC Rock Density Hazard, Sulpicius Gallus]], - FilePath = asset.localResource("LRO_NAC_RockDenHaz_20N010E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Rock Density Hazard, Sulpicius Gallus]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_RockDenHaz_20N010E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Rock Density Hazard, Sulpicius Gallus layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Sulpicius_Gallus/LRO_NAC_RockDenHaz_20N010E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Sulpicius_Gallus/LRO_NAC_RockDenHaz_20N010E_2mp.vrt deleted file mode 100644 index 27026af00f..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Sulpicius_Gallus/LRO_NAC_RockDenHaz_20N010E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_RockDenHaz_20N010E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_RockDenHaz_20N010E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_RockDenHaz_20N010E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_RockDenHaz_20N010E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Tycho_Crater/LRO_LROC_Rock_Density_Hazard_Tycho_Crater.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Tycho_Crater/LRO_LROC_Rock_Density_Hazard_Tycho_Crater.asset deleted file mode 100644 index ea21dc0eb4..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Tycho_Crater/LRO_LROC_Rock_Density_Hazard_Tycho_Crater.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_RockDenHaz_43S349E_150cmp", - Name = [[LRO LROC Rock Density Hazard, Tycho Crater]], - FilePath = asset.localResource("LRO_NAC_RockDenHaz_43S349E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Rock Density Hazard, Tycho Crater]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_RockDenHaz_43S349E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Rock Density Hazard, Tycho Crater layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Tycho_Crater/LRO_NAC_RockDenHaz_43S349E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Tycho_Crater/LRO_NAC_RockDenHaz_43S349E_150cmp.vrt deleted file mode 100644 index 702a83b938..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hazard_Tycho_Crater/LRO_NAC_RockDenHaz_43S349E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_RockDenHaz_43S349E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_RockDenHaz_43S349E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_RockDenHaz_43S349E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_RockDenHaz_43S349E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hertzsprung/LRO_LROC_Rock_Density_Hertzsprung.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hertzsprung/LRO_LROC_Rock_Density_Hertzsprung.asset deleted file mode 100644 index ff8a931162..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hertzsprung/LRO_LROC_Rock_Density_Hertzsprung.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_RockDen_00N234E_150cmp", - Name = [[LRO LROC Rock Density, Hertzsprung]], - FilePath = asset.localResource("LRO_NAC_RockDen_00N234E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Rock Density, Hertzsprung]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_RockDen_00N234E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Rock Density, Hertzsprung layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hertzsprung/LRO_NAC_RockDen_00N234E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hertzsprung/LRO_NAC_RockDen_00N234E_150cmp.vrt deleted file mode 100644 index 04f8eb55ee..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hertzsprung/LRO_NAC_RockDen_00N234E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_RockDen_00N234E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_RockDen_00N234E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_RockDen_00N234E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_RockDen_00N234E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hortensius_Domes/LRO_LROC_Rock_Density_Hortensius_Domes.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hortensius_Domes/LRO_LROC_Rock_Density_Hortensius_Domes.asset deleted file mode 100644 index 21dd352c1c..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hortensius_Domes/LRO_LROC_Rock_Density_Hortensius_Domes.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_RockDen_08N332E_2mp", - Name = [[LRO LROC Rock Density, Hortensius Domes]], - FilePath = asset.localResource("LRO_NAC_RockDen_08N332E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Rock Density, Hortensius Domes]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_RockDen_08N332E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Rock Density, Hortensius Domes layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hortensius_Domes/LRO_NAC_RockDen_08N332E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hortensius_Domes/LRO_NAC_RockDen_08N332E_2mp.vrt deleted file mode 100644 index bc4cec76f5..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Hortensius_Domes/LRO_NAC_RockDen_08N332E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_RockDen_08N332E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_RockDen_08N332E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_RockDen_08N332E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_RockDen_08N332E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_King_Crater/LRO_LROC_Rock_Density_King_Crater.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_King_Crater/LRO_LROC_Rock_Density_King_Crater.asset deleted file mode 100644 index f261942ab2..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_King_Crater/LRO_LROC_Rock_Density_King_Crater.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_RockDen_06N120E_200cmp", - Name = [[LRO LROC Rock Density, King Crater]], - FilePath = asset.localResource("LRO_NAC_RockDen_06N120E_200cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Rock Density, King Crater]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_RockDen_06N120E_200cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Rock Density, King Crater layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_King_Crater/LRO_NAC_RockDen_06N120E_200cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_King_Crater/LRO_NAC_RockDen_06N120E_200cmp.vrt deleted file mode 100644 index 2dc684c6f7..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_King_Crater/LRO_NAC_RockDen_06N120E_200cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_RockDen_06N120E_200cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_RockDen_06N120E_200cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_RockDen_06N120E_200cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_RockDen_06N120E_200cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Lichtenberg_Crater/LRO_LROC_Rock_Density_Lichtenberg_Crater.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Lichtenberg_Crater/LRO_LROC_Rock_Density_Lichtenberg_Crater.asset deleted file mode 100644 index 69fe1dbf0f..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Lichtenberg_Crater/LRO_LROC_Rock_Density_Lichtenberg_Crater.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_RockDen_32N292E_2mp", - Name = [[LRO LROC Rock Density, Lichtenberg Crater]], - FilePath = asset.localResource("LRO_NAC_RockDen_32N292E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Rock Density, Lichtenberg Crater]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_RockDen_32N292E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Rock Density, Lichtenberg Crater layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Lichtenberg_Crater/LRO_NAC_RockDen_32N292E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Lichtenberg_Crater/LRO_NAC_RockDen_32N292E_2mp.vrt deleted file mode 100644 index fc3b014bbe..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Lichtenberg_Crater/LRO_NAC_RockDen_32N292E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_RockDen_32N292E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_RockDen_32N292E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_RockDen_32N292E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_RockDen_32N292E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Mare_Crisium/LRO_LROC_Rock_Density_Mare_Crisium.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Mare_Crisium/LRO_LROC_Rock_Density_Mare_Crisium.asset deleted file mode 100644 index fcae7a0a19..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Mare_Crisium/LRO_LROC_Rock_Density_Mare_Crisium.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_RockDen_10N058E_150cmp", - Name = [[LRO LROC Rock Density, Mare Crisium]], - FilePath = asset.localResource("LRO_NAC_RockDen_10N058E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Rock Density, Mare Crisium]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_RockDen_10N058E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Rock Density, Mare Crisium layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Mare_Crisium/LRO_NAC_RockDen_10N058E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Mare_Crisium/LRO_NAC_RockDen_10N058E_150cmp.vrt deleted file mode 100644 index 57bb65ddac..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Mare_Crisium/LRO_NAC_RockDen_10N058E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_RockDen_10N058E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_RockDen_10N058E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_RockDen_10N058E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_RockDen_10N058E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Montes_Pyrenaeus/LRO_LROC_Rock_Density_Montes_Pyrenaeus.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Montes_Pyrenaeus/LRO_LROC_Rock_Density_Montes_Pyrenaeus.asset deleted file mode 100644 index 18a5e0534c..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Montes_Pyrenaeus/LRO_LROC_Rock_Density_Montes_Pyrenaeus.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_RockDen_16S041E_150cmp", - Name = [[LRO LROC Rock Density, Montes Pyrenaeus]], - FilePath = asset.localResource("LRO_NAC_RockDen_16S041E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Rock Density, Montes Pyrenaeus]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_RockDen_16S041E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Rock Density, Montes Pyrenaeus layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Montes_Pyrenaeus/LRO_NAC_RockDen_16S041E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Montes_Pyrenaeus/LRO_NAC_RockDen_16S041E_150cmp.vrt deleted file mode 100644 index 1174618c4d..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Montes_Pyrenaeus/LRO_NAC_RockDen_16S041E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_RockDen_16S041E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_RockDen_16S041E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_RockDen_16S041E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_RockDen_16S041E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Orientale_1/LRO_LROC_Rock_Density_Orientale_1.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Orientale_1/LRO_LROC_Rock_Density_Orientale_1.asset deleted file mode 100644 index 66743f6a2f..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Orientale_1/LRO_LROC_Rock_Density_Orientale_1.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_RockDen_26S265E_200cmp", - Name = [[LRO LROC Rock Density, Orientale 1]], - FilePath = asset.localResource("LRO_NAC_RockDen_26S265E_200cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Rock Density, Orientale 1]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_RockDen_26S265E_200cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Rock Density, Orientale 1 layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Orientale_1/LRO_NAC_RockDen_26S265E_200cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Orientale_1/LRO_NAC_RockDen_26S265E_200cmp.vrt deleted file mode 100644 index cc346561d0..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Orientale_1/LRO_NAC_RockDen_26S265E_200cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_RockDen_26S265E_200cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_RockDen_26S265E_200cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_RockDen_26S265E_200cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_RockDen_26S265E_200cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Plato_Ejecta/LRO_LROC_Rock_Density_Plato_Ejecta.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Plato_Ejecta/LRO_LROC_Rock_Density_Plato_Ejecta.asset deleted file mode 100644 index 9cf7bc33a4..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Plato_Ejecta/LRO_LROC_Rock_Density_Plato_Ejecta.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_RockDen_53N354E_150cmp", - Name = [[LRO LROC Rock Density, Plato Ejecta]], - FilePath = asset.localResource("LRO_NAC_RockDen_53N354E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Rock Density, Plato Ejecta]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_RockDen_53N354E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Rock Density, Plato Ejecta layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Plato_Ejecta/LRO_NAC_RockDen_53N354E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Plato_Ejecta/LRO_NAC_RockDen_53N354E_150cmp.vrt deleted file mode 100644 index 0c3f2bc2f9..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Plato_Ejecta/LRO_NAC_RockDen_53N354E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_RockDen_53N354E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_RockDen_53N354E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_RockDen_53N354E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_RockDen_53N354E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_South_Pole-Aitken_Basin_Interior/LRO_LROC_Rock_Density_South_Pole-Aitken_Basin_Interior.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_South_Pole-Aitken_Basin_Interior/LRO_LROC_Rock_Density_South_Pole-Aitken_Basin_Interior.asset deleted file mode 100644 index d63a00fbb0..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_South_Pole-Aitken_Basin_Interior/LRO_LROC_Rock_Density_South_Pole-Aitken_Basin_Interior.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_RockDen_60S200E_150cmp", - Name = [[LRO LROC Rock Density, South Pole-Aitken Basin Interior]], - FilePath = asset.localResource("LRO_NAC_RockDen_60S200E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Rock Density, South Pole-Aitken Basin Interior]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_RockDen_60S200E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Rock Density, South Pole-Aitken Basin Interior layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_South_Pole-Aitken_Basin_Interior/LRO_NAC_RockDen_60S200E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_South_Pole-Aitken_Basin_Interior/LRO_NAC_RockDen_60S200E_150cmp.vrt deleted file mode 100644 index 9e90ee779c..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_South_Pole-Aitken_Basin_Interior/LRO_NAC_RockDen_60S200E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_RockDen_60S200E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_RockDen_60S200E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_RockDen_60S200E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_RockDen_60S200E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Stratton_(Dewar)_High_Fe_Anomaly/LRO_LROC_Rock_Density_Stratton_(Dewar)_High_Fe_Anomaly.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Stratton_(Dewar)_High_Fe_Anomaly/LRO_LROC_Rock_Density_Stratton_(Dewar)_High_Fe_Anomaly.asset deleted file mode 100644 index a521e10073..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Stratton_(Dewar)_High_Fe_Anomaly/LRO_LROC_Rock_Density_Stratton_(Dewar)_High_Fe_Anomaly.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_RockDen_02S167E_150cmp", - Name = [[LRO LROC Rock Density, Stratton (Dewar) High Fe Anomaly]], - FilePath = asset.localResource("LRO_NAC_RockDen_02S167E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Rock Density, Stratton (Dewar) High Fe Anomaly]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_RockDen_02S167E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Rock Density, Stratton (Dewar) High Fe Anomaly layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Stratton_(Dewar)_High_Fe_Anomaly/LRO_NAC_RockDen_02S167E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Stratton_(Dewar)_High_Fe_Anomaly/LRO_NAC_RockDen_02S167E_150cmp.vrt deleted file mode 100644 index 84318c78dc..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Stratton_(Dewar)_High_Fe_Anomaly/LRO_NAC_RockDen_02S167E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_RockDen_02S167E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_RockDen_02S167E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_RockDen_02S167E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_RockDen_02S167E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Sulpicius_Gallus/LRO_LROC_Rock_Density_Sulpicius_Gallus.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Sulpicius_Gallus/LRO_LROC_Rock_Density_Sulpicius_Gallus.asset deleted file mode 100644 index f219512ae1..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Sulpicius_Gallus/LRO_LROC_Rock_Density_Sulpicius_Gallus.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_RockDen_20N010E_2mp", - Name = [[LRO LROC Rock Density, Sulpicius Gallus]], - FilePath = asset.localResource("LRO_NAC_RockDen_20N010E_2mp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Rock Density, Sulpicius Gallus]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_RockDen_20N010E_2mp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Rock Density, Sulpicius Gallus layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Sulpicius_Gallus/LRO_NAC_RockDen_20N010E_2mp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Sulpicius_Gallus/LRO_NAC_RockDen_20N010E_2mp.vrt deleted file mode 100644 index a567a9c632..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Sulpicius_Gallus/LRO_NAC_RockDen_20N010E_2mp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_RockDen_20N010E_2mp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_RockDen_20N010E_2mp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_RockDen_20N010E_2mp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_RockDen_20N010E_2mp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Tycho_Crater/LRO_LROC_Rock_Density_Tycho_Crater.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Tycho_Crater/LRO_LROC_Rock_Density_Tycho_Crater.asset deleted file mode 100644 index 3b9d38037b..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Tycho_Crater/LRO_LROC_Rock_Density_Tycho_Crater.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_RockDen_43S349E_150cmp", - Name = [[LRO LROC Rock Density, Tycho Crater]], - FilePath = asset.localResource("LRO_NAC_RockDen_43S349E_150cmp.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC Rock Density, Tycho Crater]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_RockDen_43S349E_150cmp%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC Rock Density, Tycho Crater layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Tycho_Crater/LRO_NAC_RockDen_43S349E_150cmp.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Tycho_Crater/LRO_NAC_RockDen_43S349E_150cmp.vrt deleted file mode 100644 index 13dd2fc3cc..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_Rock_Density_Tycho_Crater/LRO_NAC_RockDen_43S349E_150cmp.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - LRO_NAC_RockDen_43S349E_150cmp.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_NAC_RockDen_43S349E_150cmp.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_NAC_RockDen_43S349E_150cmp.wms - 3 - - - - 0 - - - - Alpha - - LRO_NAC_RockDen_43S349E_150cmp.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_WAC_Image_Mosaic/LRO_LROC_WAC_Image_Mosaic.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_WAC_Image_Mosaic/LRO_LROC_WAC_Image_Mosaic.asset deleted file mode 100644 index 67190e9bae..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_WAC_Image_Mosaic/LRO_LROC_WAC_Image_Mosaic.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_WAC_Mosaic_Global_303ppd", - Name = [[LRO LROC WAC Image Mosaic]], - FilePath = asset.localResource("LRO_WAC_Mosaic_Global_303ppd.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO LROC WAC Image Mosaic]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_WAC_Mosaic_Global_303ppd%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO LROC WAC Image Mosaic layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_WAC_Image_Mosaic/LRO_WAC_Mosaic_Global_303ppd.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_WAC_Image_Mosaic/LRO_WAC_Mosaic_Global_303ppd.vrt deleted file mode 100644 index 873c1b8010..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_LROC_WAC_Image_Mosaic/LRO_WAC_Mosaic_Global_303ppd.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Gray - - LRO_WAC_Mosaic_Global_303ppd.wms - 1 - - - - 0 - - - - Alpha - - LRO_WAC_Mosaic_Global_303ppd.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Laser_Altimeter.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Laser_Altimeter.asset new file mode 100644 index 0000000000..189254ff5d --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Laser_Altimeter.asset @@ -0,0 +1,34 @@ +-- This file was automatically generated using a script found at +-- https://github.com/OpenSpace/scripts/treks-to-openspace. See the README.md file +-- in that repository for more information on how to run the script to update these +-- files. In particular in the case of errors, prefer to change that script rather +-- than the individual files + +local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier + +local treks_ldam_10 = { + Identifier = "ldam_10", + Name = [[LRO Laser Altimeter, Albedo Global]], + FilePath = asset.localResource("LRO_Laser_Altimeter/Albedo_Global.vrt"), + Description = [[The Lunar Orbiter Laser Altimeter (LOLA) experiment on Lunar Reconnaissance Orbiter (LRO) is a laser altimeter that also measures the strength of the return pulse from the lunar surface. These data have been used to estimate the reflectance (albedo) of the lunar surface, including regions lacking direct solar illumination. A new calibration of these data was used to generate a 2016 albedo map that features lower uncertainties overall and more consistent results in the polar regions than the previous 2014 version. (Improved calibration of reflectance data from the LRO Lunar Orbiter Laser Altimeter (LOLA) and implications for space weathering; M. Lemelin, P.G. Lucey, G.A. Neumann, E.M. Mazarico, M.K. Barker, A. Kakazu, D. Trang, D.E. Smith, M.T. Zuber; Icarus, Volume 273, 15 July 2016, Pages 315-328)]] +} + +asset.onInitialize(function() + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_ldam_10) +end) + +asset.onDeinitialize(function() + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_ldam_10") +end) + +asset.export("ldam_10", treks_ldam_10) + + +asset.meta = { + Name = [[NASA Treks Layers for Moon LRO_Laser_Altimeter], + Version = "1.0", + Author = "NASA/Treks", + URL = "https://trek.nasa.gov/moon", + License = "NASA/Treks", + Description = [[LRO_Laser_Altimeter layers from NASA/Treks for Moon]] +} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Laser_Altimeter/Albedo_Global.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Laser_Altimeter/Albedo_Global.vrt new file mode 100644 index 0000000000..92cb39dbdd --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Laser_Altimeter/Albedo_Global.vrt @@ -0,0 +1,29 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 4.3945312500000000e-02, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.3945312500000000e-02 + + 0 + Gray + + Albedo_Global.wms + 1 + + + + 0 + + + + Alpha + + Albedo_Global.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Laser_Altimeter_Albedo_Global/ldam_10.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Laser_Altimeter/Albedo_Global.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Laser_Altimeter_Albedo_Global/ldam_10.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Laser_Altimeter/Albedo_Global.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Laser_Altimeter_Albedo_Global/LRO_Laser_Altimeter_Albedo_Global.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Laser_Altimeter_Albedo_Global/LRO_Laser_Altimeter_Albedo_Global.asset deleted file mode 100644 index 8b62f5fb53..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Laser_Altimeter_Albedo_Global/LRO_Laser_Altimeter_Albedo_Global.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "ldam_10", - Name = [[LRO Laser Altimeter, Albedo Global]], - FilePath = asset.localResource("ldam_10.vrt"), - Description = [[The Lunar Orbiter Laser Altimeter (LOLA) experiment on Lunar Reconnaissance Orbiter (LRO) is a laser altimeter that also measures the strength of the return pulse from the lunar surface. These data have been used to estimate the reflectance (albedo) of the lunar surface, including regions lacking direct solar illumination. A new calibration of these data was used to generate a 2016 albedo map that features lower uncertainties overall and more consistent results in the polar regions than the previous 2014 version. (Improved calibration of reflectance data from the LRO Lunar Orbiter Laser Altimeter (LOLA) and implications for space weathering; M. Lemelin, P.G. Lucey, G.A. Neumann, E.M. Mazarico, M.K. Barker, A. Kakazu, D. Trang, D.E. Smith, M.T. Zuber; Icarus, Volume 273, 15 July 2016, Pages 315-328)]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO Laser Altimeter, Albedo Global]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=ldam_10%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO Laser Altimeter, Albedo Global layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Laser_Altimeter_Albedo_Global/ldam_10.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Laser_Altimeter_Albedo_Global/ldam_10.vrt deleted file mode 100644 index 0307720fb6..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Laser_Altimeter_Albedo_Global/ldam_10.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.3945312500000000e-02, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.3945312500000000e-02 - - 0 - Gray - - ldam_10.wms - 1 - - - - 0 - - - - Alpha - - ldam_10.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Mini-RF_Circular_Polarization_Ratio.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Mini-RF_Circular_Polarization_Ratio.asset new file mode 100644 index 0000000000..e9225827bf --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Mini-RF_Circular_Polarization_Ratio.asset @@ -0,0 +1,34 @@ +-- This file was automatically generated using a script found at +-- https://github.com/OpenSpace/scripts/treks-to-openspace. See the README.md file +-- in that repository for more information on how to run the script to update these +-- files. In particular in the case of errors, prefer to change that script rather +-- than the individual files + +local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier + +local treks_LRO_MiniRF_CPR_Gray_Global_128ppd = { + Identifier = "LRO_MiniRF_CPR_Gray_Global_128ppd", + Name = [[LRO Mini-RF Circular Polarization Ratio, Grayscale]], + FilePath = asset.localResource("LRO_Mini-RF_Circular_Polarization_Ratio/Grayscale.vrt"), + Description = [[]] +} + +asset.onInitialize(function() + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_MiniRF_CPR_Gray_Global_128ppd) +end) + +asset.onDeinitialize(function() + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_MiniRF_CPR_Gray_Global_128ppd") +end) + +asset.export("LRO_MiniRF_CPR_Gray_Global_128ppd", treks_LRO_MiniRF_CPR_Gray_Global_128ppd) + + +asset.meta = { + Name = [[NASA Treks Layers for Moon LRO_Mini-RF_Circular_Polarization_Ratio], + Version = "1.0", + Author = "NASA/Treks", + URL = "https://trek.nasa.gov/moon", + License = "NASA/Treks", + Description = [[LRO_Mini-RF_Circular_Polarization_Ratio layers from NASA/Treks for Moon]] +} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Mini-RF_Circular_Polarization_Ratio/Grayscale.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Mini-RF_Circular_Polarization_Ratio/Grayscale.vrt new file mode 100644 index 0000000000..3e2d6897dd --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Mini-RF_Circular_Polarization_Ratio/Grayscale.vrt @@ -0,0 +1,29 @@ + + GEOGCS["GCS_Moon_2000",DATUM["Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.0986328125000000e-02, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.0986328125000000e-02 + + 0 + Gray + + Grayscale.wms + 1 + + + + 0 + + + + Alpha + + Grayscale.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Mini-RF_Circular_Polarization_Ratio_Grayscale/LRO_MiniRF_CPR_Gray_Global_128ppd.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Mini-RF_Circular_Polarization_Ratio/Grayscale.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Mini-RF_Circular_Polarization_Ratio_Grayscale/LRO_MiniRF_CPR_Gray_Global_128ppd.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Mini-RF_Circular_Polarization_Ratio/Grayscale.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Mini-RF_Circular_Polarization_Ratio_Grayscale/LRO_Mini-RF_Circular_Polarization_Ratio_Grayscale.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Mini-RF_Circular_Polarization_Ratio_Grayscale/LRO_Mini-RF_Circular_Polarization_Ratio_Grayscale.asset deleted file mode 100644 index ccc5179226..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Mini-RF_Circular_Polarization_Ratio_Grayscale/LRO_Mini-RF_Circular_Polarization_Ratio_Grayscale.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_MiniRF_CPR_Gray_Global_128ppd", - Name = [[LRO Mini-RF Circular Polarization Ratio, Grayscale]], - FilePath = asset.localResource("LRO_MiniRF_CPR_Gray_Global_128ppd.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO Mini-RF Circular Polarization Ratio, Grayscale]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_MiniRF_CPR_Gray_Global_128ppd%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO Mini-RF Circular Polarization Ratio, Grayscale layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Mini-RF_Circular_Polarization_Ratio_Grayscale/LRO_MiniRF_CPR_Gray_Global_128ppd.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Mini-RF_Circular_Polarization_Ratio_Grayscale/LRO_MiniRF_CPR_Gray_Global_128ppd.vrt deleted file mode 100644 index 2f51ebbcd7..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Mini-RF_Circular_Polarization_Ratio_Grayscale/LRO_MiniRF_CPR_Gray_Global_128ppd.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.0986328125000000e-02, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.0986328125000000e-02 - - 0 - Gray - - LRO_MiniRF_CPR_Gray_Global_128ppd.wms - 1 - - - - 0 - - - - Alpha - - LRO_MiniRF_CPR_Gray_Global_128ppd.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Mini-RF_First_Stokes_Parameter/LRO_Mini-RF_First_Stokes_Parameter.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Mini-RF_First_Stokes_Parameter/LRO_Mini-RF_First_Stokes_Parameter.asset deleted file mode 100644 index a886a06394..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Mini-RF_First_Stokes_Parameter/LRO_Mini-RF_First_Stokes_Parameter.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_MiniRF_S1_Gray_Global_128ppd", - Name = [[LRO Mini-RF First Stokes Parameter]], - FilePath = asset.localResource("LRO_MiniRF_S1_Gray_Global_128ppd.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO Mini-RF First Stokes Parameter]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_MiniRF_S1_Gray_Global_128ppd%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO Mini-RF First Stokes Parameter layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Mini-RF_First_Stokes_Parameter/LRO_MiniRF_S1_Gray_Global_128ppd.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Mini-RF_First_Stokes_Parameter/LRO_MiniRF_S1_Gray_Global_128ppd.vrt deleted file mode 100644 index e002e9fa31..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Mini-RF_First_Stokes_Parameter/LRO_MiniRF_S1_Gray_Global_128ppd.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.0986328125000000e-02, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.0986328125000000e-02 - - 0 - Gray - - LRO_MiniRF_S1_Gray_Global_128ppd.wms - 1 - - - - 0 - - - - Alpha - - LRO_MiniRF_S1_Gray_Global_128ppd.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_NAC_ColorHillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_NAC_ColorHillshade.asset new file mode 100644 index 0000000000..fd7ce6346f --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_NAC_ColorHillshade.asset @@ -0,0 +1,34 @@ +-- This file was automatically generated using a script found at +-- https://github.com/OpenSpace/scripts/treks-to-openspace. See the README.md file +-- in that repository for more information on how to run the script to update these +-- files. In particular in the case of errors, prefer to change that script rather +-- than the individual files + +local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier + +local treks_20191118demmoseqccolorhillshade = { + Identifier = "20191118demmoseqccolorhillshade", + Name = [[LRO NAC ColorHillshade, Lacus Mortis]], + FilePath = asset.localResource("LRO_NAC_ColorHillshade/Lacus_Mortis.vrt"), + Description = [[TBD]] +} + +asset.onInitialize(function() + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_20191118demmoseqccolorhillshade) +end) + +asset.onDeinitialize(function() + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_20191118demmoseqccolorhillshade") +end) + +asset.export("20191118demmoseqccolorhillshade", treks_20191118demmoseqccolorhillshade) + + +asset.meta = { + Name = [[NASA Treks Layers for Moon LRO_NAC_ColorHillshade], + Version = "1.0", + Author = "NASA/Treks", + URL = "https://trek.nasa.gov/moon", + License = "NASA/Treks", + Description = [[LRO_NAC_ColorHillshade layers from NASA/Treks for Moon]] +} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_NAC_ColorHillshade/Lacus_Mortis.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_NAC_ColorHillshade/Lacus_Mortis.vrt new file mode 100644 index 0000000000..1a3c6e6656 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_NAC_ColorHillshade/Lacus_Mortis.vrt @@ -0,0 +1,53 @@ + + PROJCS["unnamed",GEOGCS["unknown",DATUM["unknown",SPHEROID["unnamed",1737400,0]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",45],PARAMETER["central_meridian",25],PARAMETER["standard_parallel_1",8],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] + -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 + + 0 + Red + + Lacus_Mortis.wms + 1 + + + + 0 + + + + 0 + Green + + Lacus_Mortis.wms + 2 + + + + 0 + + + + 0 + Blue + + Lacus_Mortis.wms + 3 + + + + 0 + + + + Alpha + + Lacus_Mortis.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_NAC_ColorHillshade_Lacus_Mortis/20191118-demmos-eqc-colorhillshade.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_NAC_ColorHillshade/Lacus_Mortis.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_NAC_ColorHillshade_Lacus_Mortis/20191118-demmos-eqc-colorhillshade.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_NAC_ColorHillshade/Lacus_Mortis.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_NAC_ColorHillshade_Lacus_Mortis/20191118-demmos-eqc-colorhillshade.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_NAC_ColorHillshade_Lacus_Mortis/20191118-demmos-eqc-colorhillshade.vrt deleted file mode 100644 index b2d41ac2c1..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_NAC_ColorHillshade_Lacus_Mortis/20191118-demmos-eqc-colorhillshade.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - PROJCS["unnamed",GEOGCS["unknown",DATUM["unknown",SPHEROID["unnamed",1737400,0]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",45],PARAMETER["central_meridian",25],PARAMETER["standard_parallel_1",8],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - 20191118-demmos-eqc-colorhillshade.wms - 1 - - - - 0 - - - - 0 - Green - - 20191118-demmos-eqc-colorhillshade.wms - 2 - - - - 0 - - - - 0 - Blue - - 20191118-demmos-eqc-colorhillshade.wms - 3 - - - - 0 - - - - Alpha - - 20191118-demmos-eqc-colorhillshade.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_NAC_ColorHillshade_Lacus_Mortis/LRO_NAC_ColorHillshade_Lacus_Mortis.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_NAC_ColorHillshade_Lacus_Mortis/LRO_NAC_ColorHillshade_Lacus_Mortis.asset deleted file mode 100644 index 259a68dda4..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_NAC_ColorHillshade_Lacus_Mortis/LRO_NAC_ColorHillshade_Lacus_Mortis.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "20191118-demmos-eqc-colorhillshade", - Name = [[LRO NAC ColorHillshade, Lacus Mortis]], - FilePath = asset.localResource("20191118-demmos-eqc-colorhillshade.vrt"), - Description = [[TBD]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO NAC ColorHillshade, Lacus Mortis]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=20191118-demmos-eqc-colorhillshade%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO NAC ColorHillshade, Lacus Mortis layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_NAC_Mosaic.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_NAC_Mosaic.asset new file mode 100644 index 0000000000..a9eb29d17d --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_NAC_Mosaic.asset @@ -0,0 +1,34 @@ +-- This file was automatically generated using a script found at +-- https://github.com/OpenSpace/scripts/treks-to-openspace. See the README.md file +-- in that repository for more information on how to run the script to update these +-- files. In particular in the case of errors, prefer to change that script rather +-- than the individual files + +local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier + +local treks_20200415_lacusmortis_orthomos_filled_8bit_lzw = { + Identifier = "20200415_lacusmortis_orthomos_filled_8bit_lzw", + Name = [[LRO NAC Mosaic, Lacus Mortis, Extended Version]], + FilePath = asset.localResource("LRO_NAC_Mosaic/Lacus_Mortis.vrt"), + Description = [[This is an orthoimage mosaic produced by combining LROC NAC images, for the southwestern area of Lacus Mortis, including Rimae Bürg and the Lacus Mortis Pit. The images are projected onto a DEM mosaic produced by stereo reconstructions in which each of the images is paired with another LROC NAC.]] +} + +asset.onInitialize(function() + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_20200415_lacusmortis_orthomos_filled_8bit_lzw) +end) + +asset.onDeinitialize(function() + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_20200415_lacusmortis_orthomos_filled_8bit_lzw") +end) + +asset.export("20200415_lacusmortis_orthomos_filled_8bit_lzw", treks_20200415_lacusmortis_orthomos_filled_8bit_lzw) + + +asset.meta = { + Name = [[NASA Treks Layers for Moon LRO_NAC_Mosaic], + Version = "1.0", + Author = "NASA/Treks", + URL = "https://trek.nasa.gov/moon", + License = "NASA/Treks", + Description = [[LRO_NAC_Mosaic layers from NASA/Treks for Moon]] +} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_NAC_Mosaic/Lacus_Mortis.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_NAC_Mosaic/Lacus_Mortis.vrt new file mode 100644 index 0000000000..3ae03d39ab --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_NAC_Mosaic/Lacus_Mortis.vrt @@ -0,0 +1,29 @@ + + GEOGCS["Geographic Coordinate System",DATUM["D_MOON",SPHEROID["MOON",1737400,0]],PRIMEM["Reference Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.1457672119140625e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.1457672119140625e-05 + + 0 + Gray + + Lacus_Mortis.wms + 1 + + + + 0 + + + + Alpha + + Lacus_Mortis.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_NAC_Mosaic_Lacus_Mortis_Extended_Version/20200415_lacusmortis_orthomos_filled_8bit_lzw.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_NAC_Mosaic/Lacus_Mortis.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_NAC_Mosaic_Lacus_Mortis_Extended_Version/20200415_lacusmortis_orthomos_filled_8bit_lzw.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_NAC_Mosaic/Lacus_Mortis.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_NAC_Mosaic_0.5mpp.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_NAC_Mosaic_0.5mpp.asset new file mode 100644 index 0000000000..e23be56778 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_NAC_Mosaic_0.5mpp.asset @@ -0,0 +1,34 @@ +-- This file was automatically generated using a script found at +-- https://github.com/OpenSpace/scripts/treks-to-openspace. See the README.md file +-- in that repository for more information on how to run the script to update these +-- files. In particular in the case of errors, prefer to change that script rather +-- than the individual files + +local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier + +local treks_LRO_NAC_Mosaic_50cmpp_VonKarman_v2 = { + Identifier = "LRO_NAC_Mosaic_50cmpp_VonKarman_v2", + Name = [[LRO NAC Mosaic 0.5mpp, Von Karman]], + FilePath = asset.localResource("LRO_NAC_Mosaic_0.5mpp/Von_Karman.vrt"), + Description = [[This is an orthorectified NAC mosaic of the Von Karman Crater region for the south pole of the Moon. This mosaic includes a total of 370 orthorectified NAC images: 252 sampled at 0.5 m/px and 118 sampled at 1 m/px. NAC orthoimages have been constructed from EDRs downloaded from the Planetary Data System (PDS) and subsequent USGS-ISIS processing. This mosaic has been coaligned to Chang'e-2 20 m/px DEM which has been coaligned to the USGS 59 m/px LOLA-SELENE DEM using ENVI (v5.6.2) patented auto-coreg. Most of the area used stereo-photogrammetrically processing of LROC-NAC stereo-pairs with the UCL CASPGO 3D mapping system, CASP-GO is described in Tao, Y., Muller, J.-P. et al. (2018) Massive Stereo-based DTM Production for Mars on Cloud Computers. Planetary Space Science 154, 30–58 (2018). doi: 10.1016/j.pss.2018.02.012 and CASP-GO is now integrated into ASP (https://stereopipeline.readthedocs.io/en/latest/experimental.html?highlight=casp-go#the-casp-go-stereo-processing-system) as part of the NASA PDART program. Individual NAC orthoimages mosaicked together using ArcGIS Pro (v2.9.2). A color balancing algorithm has been applied to roughly correct for color differences at the seams of NAC images. This data has been made available by and should be credited to: Yu Tao and Jan-Peter Muller, Imaging Group, Mullard Space Science Laboratory, University College London.]] +} + +asset.onInitialize(function() + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_Mosaic_50cmpp_VonKarman_v2) +end) + +asset.onDeinitialize(function() + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_Mosaic_50cmpp_VonKarman_v2") +end) + +asset.export("LRO_NAC_Mosaic_50cmpp_VonKarman_v2", treks_LRO_NAC_Mosaic_50cmpp_VonKarman_v2) + + +asset.meta = { + Name = [[NASA Treks Layers for Moon LRO_NAC_Mosaic_0.5mpp], + Version = "1.0", + Author = "NASA/Treks", + URL = "https://trek.nasa.gov/moon", + License = "NASA/Treks", + Description = [[LRO_NAC_Mosaic_0.5mpp layers from NASA/Treks for Moon]] +} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_NAC_Mosaic_0.5mpp/Von_Karman.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_NAC_Mosaic_0.5mpp/Von_Karman.vrt new file mode 100644 index 0000000000..df33d5ced2 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_NAC_Mosaic_0.5mpp/Von_Karman.vrt @@ -0,0 +1,29 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.0728836059570313e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.0728836059570313e-05 + + 0 + Gray + + Von_Karman.wms + 1 + + + + 0 + + + + Alpha + + Von_Karman.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_NAC_Mosaic_0.5mpp/Von_Karman.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_NAC_Mosaic_0.5mpp/Von_Karman.wms new file mode 100644 index 0000000000..c026405a86 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_NAC_Mosaic_0.5mpp/Von_Karman.wms @@ -0,0 +1,24 @@ + + + https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Mosaic_50cmpp_VonKarman_v2/1.0.0//default/default028mm/${z}/${y}/${x}.png + + + -180 + 90 + 180 + -90 + 2 + 1 + 16 + top + + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + + 256 + 256 + 1 + 10 + + 404,400 + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_NAC_Mosaic_1mpp.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_NAC_Mosaic_1mpp.asset new file mode 100644 index 0000000000..b42b2bf72b --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_NAC_Mosaic_1mpp.asset @@ -0,0 +1,34 @@ +-- This file was automatically generated using a script found at +-- https://github.com/OpenSpace/scripts/treks-to-openspace. See the README.md file +-- in that repository for more information on how to run the script to update these +-- files. In particular in the case of errors, prefer to change that script rather +-- than the individual files + +local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier + +local treks_LRO_NAC_Mosaic_1mpp = { + Identifier = "LRO_NAC_Mosaic_1mpp", + Name = [[LRO NAC Mosaic 1mpp, Von Karman]], + FilePath = asset.localResource("LRO_NAC_Mosaic_1mpp/Von_Karman.vrt"), + Description = [[This is an orthorectified NAC mosaic of the Von Karman Crater region for the south pole of the Moon. This mosaic includes 118 individual orthorectified NAC images sampled at 1 m/px. NAC orthoimages have been constructed from EDRs downloaded from the Planetary Data System (PDS) and subsequent USGS-ISIS processing. This mosaic has been coaligned to Chang’e 2 20 m/px DEM which has been coaligned to the USGS 59 m/px LOLA-SELENE DEM using ENVI (v5.6.2) patented auto-coreg. Individual NAC orthoimages have been mosaicked together using ArcGIS Pro (v2.9.0). A color balancing algorithm has been applied to roughly correct for color differences at the seams of NAC images. This data has been made available by and should be credited to: Yu Tao and Jan-Peter Muller, Imaging Group, Mullard Space Science Laboratory, University College London.]] +} + +asset.onInitialize(function() + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_Mosaic_1mpp) +end) + +asset.onDeinitialize(function() + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_Mosaic_1mpp") +end) + +asset.export("LRO_NAC_Mosaic_1mpp", treks_LRO_NAC_Mosaic_1mpp) + + +asset.meta = { + Name = [[NASA Treks Layers for Moon LRO_NAC_Mosaic_1mpp], + Version = "1.0", + Author = "NASA/Treks", + URL = "https://trek.nasa.gov/moon", + License = "NASA/Treks", + Description = [[LRO_NAC_Mosaic_1mpp layers from NASA/Treks for Moon]] +} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_NAC_Mosaic_1mpp/Von_Karman.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_NAC_Mosaic_1mpp/Von_Karman.vrt new file mode 100644 index 0000000000..26352d0e92 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_NAC_Mosaic_1mpp/Von_Karman.vrt @@ -0,0 +1,29 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.1457672119140625e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.1457672119140625e-05 + + 0 + Gray + + Von_Karman.wms + 1 + + + + 0 + + + + Alpha + + Von_Karman.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_NAC_Mosaic_1mpp/Von_Karman.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_NAC_Mosaic_1mpp/Von_Karman.wms new file mode 100644 index 0000000000..105340c856 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_NAC_Mosaic_1mpp/Von_Karman.wms @@ -0,0 +1,24 @@ + + + https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_Mosaic_1mpp/1.0.0//default/default028mm/${z}/${y}/${x}.png + + + -180 + 90 + 180 + -90 + 2 + 1 + 15 + top + + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + + 256 + 256 + 1 + 10 + + 404,400 + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_NAC_Mosaic_Lacus_Mortis_Extended_Version/20200415_lacusmortis_orthomos_filled_8bit_lzw.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_NAC_Mosaic_Lacus_Mortis_Extended_Version/20200415_lacusmortis_orthomos_filled_8bit_lzw.vrt deleted file mode 100644 index 4bda9226ac..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_NAC_Mosaic_Lacus_Mortis_Extended_Version/20200415_lacusmortis_orthomos_filled_8bit_lzw.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["Geographic Coordinate System",DATUM["D_MOON",SPHEROID["MOON",1737400,0]],PRIMEM["Reference Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.1457672119140625e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.1457672119140625e-05 - - 0 - Gray - - 20200415_lacusmortis_orthomos_filled_8bit_lzw.wms - 1 - - - - 0 - - - - Alpha - - 20200415_lacusmortis_orthomos_filled_8bit_lzw.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_NAC_Mosaic_Lacus_Mortis_Extended_Version/LRO_NAC_Mosaic_Lacus_Mortis_Extended_Version.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_NAC_Mosaic_Lacus_Mortis_Extended_Version/LRO_NAC_Mosaic_Lacus_Mortis_Extended_Version.asset deleted file mode 100644 index d9675e3d05..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_NAC_Mosaic_Lacus_Mortis_Extended_Version/LRO_NAC_Mosaic_Lacus_Mortis_Extended_Version.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "20200415_lacusmortis_orthomos_filled_8bit_lzw", - Name = [[LRO NAC Mosaic, Lacus Mortis, Extended Version]], - FilePath = asset.localResource("20200415_lacusmortis_orthomos_filled_8bit_lzw.vrt"), - Description = [[This is an orthoimage mosaic produced by combining LROC NAC images, for the southwestern area of Lacus Mortis, including Rimae Bürg and the Lacus Mortis Pit. The images are projected onto a DEM mosaic produced by stereo reconstructions in which each of the images is paired with another LROC NAC.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO NAC Mosaic, Lacus Mortis, Extended Version]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=20200415_lacusmortis_orthomos_filled_8bit_lzw%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO NAC Mosaic, Lacus Mortis, Extended Version layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_NAC_PSR_Mosaic_20mpp.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_NAC_PSR_Mosaic_20mpp.asset new file mode 100644 index 0000000000..d0ca877f5b --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_NAC_PSR_Mosaic_20mpp.asset @@ -0,0 +1,44 @@ +-- This file was automatically generated using a script found at +-- https://github.com/OpenSpace/scripts/treks-to-openspace. See the README.md file +-- in that repository for more information on how to run the script to update these +-- files. In particular in the case of errors, prefer to change that script rather +-- than the individual files + +local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier + +local treks_NAC_POLE_PSR_NORTH_STRETCH_EQ = { + Identifier = "NAC_POLE_PSR_NORTH_STRETCH_EQ", + Name = [[LRO NAC PSR Mosaic 20mpp, N Pole]], + FilePath = asset.localResource("LRO_NAC_PSR_Mosaic_20mpp/N_Pole.vrt"), + Description = [[This is an uncontrolled mosaic generated from images taken by the Narrow Angle Camera (NAC) onboard the Lunar Reconnaissance Orbiter (LRO) for the North Pole region of the Moon. The NAC mosaics have been trimmed to the Permanently Shadowed Region (PSR) shapefile, providing visible NAC image coverage of the PSRs only. Acquisition of NAC PSR observations were optimized over several campaigns to maximize signal-to-noise ratio (SNR), resulting in a comprehensive dataset that is systematically reviewed and analyzed. Observations are acquired at a variety of pixel scales (2 to 20 m/px). The final PSR mosaics are assembled from re-sampled images to 20 m/px, and ordering of images is based on image quality and areal coverage of individual PSRs. A total of 550 NAC images were used to create a North Pole PSR mosaic at 20 m/px, 90° to 80° latitude, and -180° to 180° longitude. This mosaic has been merged with the existing LROC NAC North Pole RDR product to replace over-saturated illuminated polar areas.]] +} + +local treks_NAC_POLE_PSR_SOUTH_STRETCH_EQ = { + Identifier = "NAC_POLE_PSR_SOUTH_STRETCH_EQ", + Name = [[LRO NAC PSR Mosaic 20mpp, S Pole]], + FilePath = asset.localResource("LRO_NAC_PSR_Mosaic_20mpp/S_Pole.vrt"), + Description = [[This is an uncontrolled mosaic generated from images taken by the Narrow Angle Camera (NAC) onboard the Lunar Reconnaissance Orbiter (LRO) for the South Pole region of the Moon. The NAC mosaics have been trimmed to the Permanently Shadowed Region (PSR) shapefile, providing visible NAC image coverage of the PSRs only. Acquisition of NAC PSR observations were optimized over several campaigns to maximize signal-to-noise ratio (SNR), resulting in a comprehensive dataset that is systematically reviewed and analyzed. Observations are acquired at a variety of pixel scales (2 to 20 m/px). The final PSR mosaics are assembled from re-sampled images to 20 m/px, and ordering of images is based on image quality and areal coverage of individual PSRs. A total of 550 NAC images were used to create a South Pole PSR mosaic at 20 m/px, 90° to 80° latitude, and -180° to 180° longitude. This mosaic has been merged with the existing LROC NAC South Pole RDR product to replace over-saturated illuminated polar areas.]] +} + +asset.onInitialize(function() + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_NAC_POLE_PSR_NORTH_STRETCH_EQ) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_NAC_POLE_PSR_SOUTH_STRETCH_EQ) +end) + +asset.onDeinitialize(function() + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_NAC_POLE_PSR_NORTH_STRETCH_EQ") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_NAC_POLE_PSR_SOUTH_STRETCH_EQ") +end) + +asset.export("NAC_POLE_PSR_NORTH_STRETCH_EQ", treks_NAC_POLE_PSR_NORTH_STRETCH_EQ) +asset.export("NAC_POLE_PSR_SOUTH_STRETCH_EQ", treks_NAC_POLE_PSR_SOUTH_STRETCH_EQ) + + +asset.meta = { + Name = [[NASA Treks Layers for Moon LRO_NAC_PSR_Mosaic_20mpp], + Version = "1.0", + Author = "NASA/Treks", + URL = "https://trek.nasa.gov/moon", + License = "NASA/Treks", + Description = [[LRO_NAC_PSR_Mosaic_20mpp layers from NASA/Treks for Moon]] +} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_NAC_PSR_Mosaic_20mpp/N_Pole.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_NAC_PSR_Mosaic_20mpp/N_Pole.vrt new file mode 100644 index 0000000000..622d752e2a --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_NAC_PSR_Mosaic_20mpp/N_Pole.vrt @@ -0,0 +1,29 @@ + + GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.3732910156250000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.3732910156250000e-03 + + 0 + Gray + + N_Pole.wms + 1 + + + + 0 + + + + Alpha + + N_Pole.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_NAC_PSR_Mosaic_20mpp/N_Pole.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_NAC_PSR_Mosaic_20mpp/N_Pole.wms new file mode 100644 index 0000000000..a2945c11cb --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_NAC_PSR_Mosaic_20mpp/N_Pole.wms @@ -0,0 +1,24 @@ + + + https://trek.nasa.gov/tiles/Moon/EQ/NAC_POLE_PSR_NORTH_STRETCH_EQ/1.0.0//default/default028mm/${z}/${y}/${x}.png + + + -180 + 90 + 180 + -90 + 2 + 1 + 9 + top + + + GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + + 256 + 256 + 1 + 10 + + 404,400 + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_NAC_PSR_Mosaic_20mpp/S_Pole.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_NAC_PSR_Mosaic_20mpp/S_Pole.vrt new file mode 100644 index 0000000000..3e63af2a02 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_NAC_PSR_Mosaic_20mpp/S_Pole.vrt @@ -0,0 +1,29 @@ + + GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.3732910156250000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.3732910156250000e-03 + + 0 + Gray + + S_Pole.wms + 1 + + + + 0 + + + + Alpha + + S_Pole.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_NAC_PSR_Mosaic_20mpp/S_Pole.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_NAC_PSR_Mosaic_20mpp/S_Pole.wms new file mode 100644 index 0000000000..3a92ee6faa --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_NAC_PSR_Mosaic_20mpp/S_Pole.wms @@ -0,0 +1,24 @@ + + + https://trek.nasa.gov/tiles/Moon/EQ/NAC_POLE_PSR_SOUTH_STRETCH_EQ/1.0.0//default/default028mm/${z}/${y}/${x}.png + + + -180 + 90 + 180 + -90 + 2 + 1 + 9 + top + + + GEOGCS["GCS_Moon",DATUM["D_Moon",SPHEROID["Moon",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + + 256 + 256 + 1 + 10 + + 404,400 + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_NAC_and_CE-2_CCD_Mosaic_1mpp.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_NAC_and_CE-2_CCD_Mosaic_1mpp.asset new file mode 100644 index 0000000000..a815a0aa32 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_NAC_and_CE-2_CCD_Mosaic_1mpp.asset @@ -0,0 +1,34 @@ +-- This file was automatically generated using a script found at +-- https://github.com/OpenSpace/scripts/treks-to-openspace. See the README.md file +-- in that repository for more information on how to run the script to update these +-- files. In particular in the case of errors, prefer to change that script rather +-- than the individual files + +local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier + +local treks_LRO_NAC_CE2_Mosaic_1mpp = { + Identifier = "LRO_NAC_CE2_Mosaic_1mpp", + Name = [[LRO NAC and CE-2 CCD Mosaic 1mpp, Von Karman]], + FilePath = asset.localResource("LRO_NAC_and_CE-2_CCD_Mosaic_1mpp/Von_Karman.vrt"), + Description = [[This is an orthorectified NAC and Chang’e-2 mosaic of the Von Karman Crater region for the south pole of the Moon. This mosaic includes 118 individual orthorectified NAC images sampled at 1 m/px and has been mosaicked on top of the respective Chang’e 7 m/px orthomosaic. NAC orthoimages have been constructed from EDRs downloaded from the Planetary Data System (PDS) and subsequent USGS-ISIS processing. This mosaic has been coaligned to Chang’e-2 20 m/px DEM which has been coaligned to the USGS 59 m/px LOLA-SELENE DEM using ENVI (v5.6.2) patented auto-coreg. Individual NAC orthoimages and the underlying Chang’e ortho product have been mosaicked together using ArcGIS Pro (v2.9.0). A color balancing algorithm has been applied to roughly correct for color differences at the seams of NAC images. This data has been made available by and should be credited to: Yu Tao and Jan-Peter Muller, Imaging Group, Mullard Space Science Laboratory, University College London.]] +} + +asset.onInitialize(function() + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_CE2_Mosaic_1mpp) +end) + +asset.onDeinitialize(function() + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_CE2_Mosaic_1mpp") +end) + +asset.export("LRO_NAC_CE2_Mosaic_1mpp", treks_LRO_NAC_CE2_Mosaic_1mpp) + + +asset.meta = { + Name = [[NASA Treks Layers for Moon LRO_NAC_and_CE-2_CCD_Mosaic_1mpp], + Version = "1.0", + Author = "NASA/Treks", + URL = "https://trek.nasa.gov/moon", + License = "NASA/Treks", + Description = [[LRO_NAC_and_CE-2_CCD_Mosaic_1mpp layers from NASA/Treks for Moon]] +} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_NAC_and_CE-2_CCD_Mosaic_1mpp/Von_Karman.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_NAC_and_CE-2_CCD_Mosaic_1mpp/Von_Karman.vrt new file mode 100644 index 0000000000..26352d0e92 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_NAC_and_CE-2_CCD_Mosaic_1mpp/Von_Karman.vrt @@ -0,0 +1,29 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.1457672119140625e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.1457672119140625e-05 + + 0 + Gray + + Von_Karman.wms + 1 + + + + 0 + + + + Alpha + + Von_Karman.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_NAC_and_CE-2_CCD_Mosaic_1mpp/Von_Karman.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_NAC_and_CE-2_CCD_Mosaic_1mpp/Von_Karman.wms new file mode 100644 index 0000000000..8641fa7703 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_NAC_and_CE-2_CCD_Mosaic_1mpp/Von_Karman.wms @@ -0,0 +1,24 @@ + + + https://trek.nasa.gov/tiles/Moon/EQ/LRO_NAC_CE2_Mosaic_1mpp/1.0.0//default/default028mm/${z}/${y}/${x}.png + + + -180 + 90 + 180 + -90 + 2 + 1 + 15 + top + + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + + 256 + 256 + 1 + 10 + + 404,400 + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera.asset new file mode 100644 index 0000000000..3bff1d29b1 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera.asset @@ -0,0 +1,302 @@ +-- This file was automatically generated using a script found at +-- https://github.com/OpenSpace/scripts/treks-to-openspace. See the README.md file +-- in that repository for more information on how to run the script to update these +-- files. In particular in the case of errors, prefer to change that script rather +-- than the individual files + +local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier + +local treks_LRO_NAC_Apollo11_Mosaic_p = { + Identifier = "LRO_NAC_Apollo11_Mosaic_p", + Name = [[LRO Narrow Angle Camera, Apollo 11 Landing Site]], + FilePath = asset.localResource("LRO_Narrow_Angle_Camera/Apollo_11_Landing_Site.vrt"), + Description = [[This is the site where American astronauts Neil Armstrong and Edwin “Buzz” Aldrin made the first human landing on the Moon on July 20, 1969. Armstrong and Aldrin landed here aboard the lunar module Eagle, while Michael Collins remained in orbit around the Moon in the command module Columbia. Armstrong and Aldrin conducted one EVA on the lunar surface lasting 2 hours, 31 minutes 40 seconds, remaining within 60 meters of the lunar module. They collected 21.55 kg of lunar sample material for return to the Earth. + +In this LRO NAC view of the landing site, the descent stage of the Eagle is the largest man-made object visible. The dark tracks of the astronauts’ footprints extend out from it clustered primarily in 3 directions. To the northwest, the tracks extend to the location where the astronauts set up a TV camera. To the south, tracks extend to where a Lunar Ranging Retroreflector and the Passive Seismic Experiment Package were deployed. To the east, the tracks extend to the rim of Little West Crater. + +The landing site, located at 0.67416 N, 23.47314 E, is in the southwest part of Mare Tranquilitatis, an area characterized by extensive deposits of mare basalt. +]] +} + +local treks_LRO_NAC_Apollo12_Mosaic_p = { + Identifier = "LRO_NAC_Apollo12_Mosaic_p", + Name = [[LRO Narrow Angle Camera, Apollo 12 Landing Site]], + FilePath = asset.localResource("LRO_Narrow_Angle_Camera/Apollo_12_Landing_Site.vrt"), + Description = [[This is the site where American astronauts Charles “Pete” Conrad and Alan Bean made the second human landing on the Moon on November 19, 1969. Conrad and Bean landed here aboard the lunar module Intrepid, while Richard Gordon remained in orbit around the Moon in the command module Yankee Clipper. Apollo 12 demonstrated the key capability of a precision landing, with Intrepid touching down less than 200 meters from the site where the Surveyor 3 probe had landed on April 20, 1967. Conrad and Bean conducted 2 EVAs on the lunar surface. The first, lasting 3 hours, 56 minutes, extended to the northwest for deployment of the ALSEP instrument package, and the continued to the rim of a 350-meter diameter crater dubbed Middle Crescent. The second EVA, lasting 3 hours, 49 minutes, was a loop trip of 1.5 km around several craters to the south, including retrieval of a camera from Surveyor 3. They collected 34.35 kilograms of lunar sample material for return to the Earth. + +In this LRO NAC view of the landing site, the descent stage of the Intrepid is the largest man-made object visible. The dark tracks of the astronauts’ footprints extend out from it. To the northwest, the tracks extend about 130 meters to were components of the ALSEP can be seen. About 160 meters to the southeast of Intrepid, Surveyor 3 is visible with a dense cluster of footprints around it. + +The landing site, located at 3.0138 S N, 23.4219 W, is in the southern part of Oceanus Procellarum, an area characterized by extensive deposits of basalt significantly younger than that at the Apollo 11 site. The site also provided the first samples of KREEP, material rich in potassium, phosphorus, and rare earth elements. The potential for sampling ejecta from one of the rays extending from the crater Copernicus added to the attractiveness of the site. +]] +} + +local treks_LRO_NAC_Apollo14_Mosaic_p = { + Identifier = "LRO_NAC_Apollo14_Mosaic_p", + Name = [[LRO Narrow Angle Camera, Apollo 14 Landing Site]], + FilePath = asset.localResource("LRO_Narrow_Angle_Camera/Apollo_14_Landing_Site.vrt"), + Description = [[This is the site where American astronauts Alan Shepard and Edgar Mitchell made the third human landing on the Moon on February 5, 1971. Shepard and Mitchell landed here aboard the lunar module Antares, while Stuart Roosa remained in orbit around the Moon in the command module Kitty Hawk. Shephard and Mitchell conducted 2 EVAs on the lunar surface. The first, lasting 4 hours, 47 minutes, 50 seconds, extended to the west for deployment of the ALSEP instrument package, included collection of a contingency sample, and covered a total distance of about 550 meters. The second EVA, lasting 4 hours, 34 minutes, 41 seconds, was intended to visit Cone Crater, 370 meters in diameter and located approximately 1.2 kilometers to the northeast. To help transport the load of equipment and retrieved samples on this EVA, the astronauts were equipped with a hand-pulled cart, the Modular Equipment Transporter (MET). The rough, hummocky terrain made navigation difficult during the second EVA, and the astronauts were not able to identify the rim of Cone Crater, though later imagery showed that they reached a point about 20 meters south of the crater rim. Shepard and Mitchell collected 42.80 kilograms of lunar sample material for return to the Earth. + +In this LRO NAC view of the landing site, the descent stage of the Antares is the largest man-made object visible. The dark tracks of the astronauts’ footprints from the first EVA extend to the west, where components of the ALSEP are visible. Extending to the northeast of Antares’ landing site, the track of the astronauts’ footprints and the tracks of the MET’s wheels can be traced toward Cone Crater. + +The landing site, located at 3.64589 S, 17.47194 W, was selected largely with the goal of sampling material from the Imbrium Basin impact, whose ejecta covers much of this area, known as the Fra Mauro formation.]] +} + +local treks_LRO_NAC_Apollo15_Mosaic_p = { + Identifier = "LRO_NAC_Apollo15_Mosaic_p", + Name = [[LRO Narrow Angle Camera, Apollo 15 Landing Site]], + FilePath = asset.localResource("LRO_Narrow_Angle_Camera/Apollo_15_Landing_Site.vrt"), + Description = [[This is the site where American astronauts David Scott and James Irwin made the fourth human landing on the Moon on July 30, 1971. Scott and Irwin landed here aboard the lunar module Falcon, while Alfred Worden remained in orbit around the Moon in the command module Endeavour. This was the first of the Apollo J missions. These featured a greater emphasis on conducting science on the Moon along with longer stays on the lunar surface. The J missions also included a lunar rover which allowed the astronauts to drive across the lunar surface, covering far greater areas, and carrying back more sample material. Scott first conducted a 33-minute stand-up EVA, surveying and imaging the local terrain through the upper hatch of the lunar module. Scott and Irwin then conducted 3 surface EVAs. The first, lasting 6 hours, 32 minutes, 42 seconds, involved deploying the Lunar Rover, and driving in it on a 10.3-km geological traverse. They drove southwest to the edge of Hadley Rille and then continued south along the edge of the rille. At the end of the first surface EVA, they deployed the Apollo Lunar Surface Experiments Package (ALSEP) approximately 110 meters north-northwest of the lunar module. The second surface EVA, lasting 7 hours, 12 minutes, 14 seconds, featured a 12.5-kilometer lunar rover traverse southeast across the mare and along the base of the Apennine Mountains. The third surface EVA, lasting 4 hours, 49 minutes, 50 seconds, had the astronauts making a 5.1-kilometer traverse west to Hadley Rille northwest along the edge of the rille, and east across the mare back to the lunar module. Scott and Irwin collected 77 kilograms of lunar sample material for return to the Earth. + +In this LRO NAC view of the landing site, the descent stage of the Falcon is the largest man-made object visible. The dark markings of the astronauts’ footprints and rover tire tracks are visible around the landing site, especially extending to the north-northwest, where components of the ALSEP are visible. + +The landing site, located at 26.13239 N, 3.63330 E, was selected to provide access to the basalt of Mare Imbrium, the stratigraphy revealed in the deep channel of Hadley Rille carved by flowing lava, and mountain material from the front of the Apennine Range. +]] +} + +local treks_LRO_NAC_Apollo16_Mosaic_p = { + Identifier = "LRO_NAC_Apollo16_Mosaic_p", + Name = [[LRO Narrow Angle Camera, Apollo 16 Landing Site]], + FilePath = asset.localResource("LRO_Narrow_Angle_Camera/Apollo_16_Landing_Site.vrt"), + Description = [[This is the site where American astronauts John Young and Charles Duke made the fifth human landing on the Moon on April 21, 1972. Young and Duke landed here aboard the lunar module Orion, while Ken Mattingly remained in orbit around the Moon in the command module Casper. Young and Duke conducted 3 surface EVAs. The first, lasting 7 hours, 11 minutes, 2 seconds, included deploying the Apollo Lunar Surface Experiments Package (ALSEP) approximately 95 meters southwest of the lunar module, and conducting a geologic traverse using the lunar rover to a couple of small craters within about 1,400 meters to the west of the landing site. The second surface EVA, lasting 7 hours, 23 minutes, 9 seconds, featured an 11.1-kilometer lunar rover drive south to the Cinco Crater area of Stone Mountain, making stops at 6 stations along the way. across the mare and along the base of the Apennine Mountains. The third surface EVA, lasting 5 hours, 40 minutes, 3 seconds, had the astronauts making a 11.4-kilometer traverse north to North Ray Crater. Young and Duke collected 95.71 kilograms of lunar sample material for return to the Earth. + +In this LRO NAC view of the landing site, the descent stage of the Orion is the largest man-made object visible, within a dark halo on the western rim of a ~30-meter crater. The dark markings of the astronauts’ footprints and rover tire tracks are visible around the landing site, especially extending to the southwest, where components of the ALSEP are visible. + +With the previous Apollo landings having focused on the low, flat, basaltic terrain of the lunar maria or seas, Apollo 16 was the first crewed mission to visit the lunar highlands. The landing site, located at 8.9734 S, 15.5011 E, was located on the boundary of two highland geologic units, the Descartes Formation and the Cayley Formation. Both units were thought to be volcanic in nature, but composed of lavas with higher silica content than the basaltic rocks of the maria; the Descartes Formation was widely thought to be rhyolite. However, the astronauts quickly discovered on their traverses that the rocks around them were overwhelmingly breccias. The great surprise of Apollo 16 was the discovery that the highland terrain was not silicic lava, but fluidized ejecta from a great basin-forming impact, an that the rocks were crustal material, largely anorthosite and gabbro. +]] +} + +local treks_NAC_DTM_APOLLO17_CLRSHADE = { + Identifier = "NAC_DTM_APOLLO17_CLRSHADE", + Name = [[LRO Narrow Angle Camera, ColorHillShade Apollo 17]], + FilePath = asset.localResource("LRO_Narrow_Angle_Camera/ColorHillShade_Apollo_17.vrt"), + Description = [[Color-coded topography draped over the shaded relief from a 5m Digital Terrain Model (DTM) of the Apollo 17 landing site created with Narrow Angle Camera (NAC) stereo image pairs from the Lunar Reconnaissance Orbiter Camera (LROC) aboard the Lunar Reconnaissance Orbiter (LRO). The shaded relief image was generated with the sun azimuth of 315 degrees (northwest) and sun altitude of 45 degrees. ]] +} + +local treks_NAC_DTM_APOLLO17_SHADE = { + Identifier = "NAC_DTM_APOLLO17_SHADE", + Name = [[LRO Narrow Angle Camera, HillShade Apollo 17]], + FilePath = asset.localResource("LRO_Narrow_Angle_Camera/HillShade_Apollo_17.vrt"), + Description = [[This is a shaded-relief derived from a 5m Digital Terrain Model (DTM) of the Apollo 17 landing site created with Narrow Angle Camera (NAC) stereo image pairs from the Lunar Reconnaissance Orbiter Camera (LROC) aboard the Lunar Reconnaissance Orbiter (LRO). The shaded relief image was generated with the sun azimuth of 315 degrees (northwest) and sun altitude of 45 degrees. Image is a TIFF image, 8 bits/sample, 1 samples/pixel in single image plane configuration.]] +} + +local treks_A11_60x60kmeq = { + Identifier = "A11_60x60kmeq", + Name = [[LRO Narrow Angle Camera, Mosaic Apollo 11]], + FilePath = asset.localResource("LRO_Narrow_Angle_Camera/Mosaic_Apollo_11.vrt"), + Description = [[This is a Lunar Reconnaisance Orbiter (LRO) Narrow Angle Camera (NAC) mosaic centered at the Apollo 11 landing site with an extent of 60x60km. Each NAC image was processed in ISIS3 at a resolution of 50cm pixel, color balanced, and synthesized into a single output.]] +} + +local treks_A12_60x60km0_3eq = { + Identifier = "A12_60x60km0_3eq", + Name = [[LRO Narrow Angle Camera, Mosaic Apollo 12]], + FilePath = asset.localResource("LRO_Narrow_Angle_Camera/Mosaic_Apollo_12.vrt"), + Description = [[This is a Lunar Reconnaissance Orbiter (LRO) Narrow Angle Camera (NAC) mosaic centered at the Apollo 12 landing site with an extent of 60x60km. Each NAC image was processed in ISIS3 at a resolution of 50cm pixel, color balanced, and synthesized into a single output. Apollo 12 was second crewed mission to land on the surface of the Moon. The mission launched on November 14th 1969, and landed five days later at the Ocean of Storms within walking distance of the Surveyor 3 spacecraft.]] +} + +local treks_A14_60x60km0_3eq = { + Identifier = "A14_60x60km0_3eq", + Name = [[LRO Narrow Angle Camera, Mosaic Apollo 14]], + FilePath = asset.localResource("LRO_Narrow_Angle_Camera/Mosaic_Apollo_14.vrt"), + Description = [[This is a Lunar Reconnaissance Orbiter (LRO) Narrow Angle Camera (NAC) mosaic centered at the Apollo 14 landing site with an extent of 60x60km. Each NAC image was processed in ISIS3 at a resolution of 50cm pixel, color balanced, and synthesized into a single output. Apollo 14 landed on the Moon February 15th 1971.]] +} + +local treks_A15_60x60km0_2eq = { + Identifier = "A15_60x60km0_2eq", + Name = [[LRO Narrow Angle Camera, Mosaic Apollo 15]], + FilePath = asset.localResource("LRO_Narrow_Angle_Camera/Mosaic_Apollo_15.vrt"), + Description = [[This is a Lunar Reconnaisance Orbiter (LRO) Narrow Angle Camera (NAC) mosaic centered at the Apollo 15 landing site with an extent of 60x60km. Each NAC image was processed in ISIS3 at a resolution of 50cm pixel, color balanced, and synthesized into a single output.]] +} + +local treks_A16_60x60kmeq = { + Identifier = "A16_60x60kmeq", + Name = [[LRO Narrow Angle Camera, Mosaic Apollo 16]], + FilePath = asset.localResource("LRO_Narrow_Angle_Camera/Mosaic_Apollo_16.vrt"), + Description = [[This is a Lunar Reconnaisance Orbiter (LRO) Narrow Angle Camera (NAC) mosaic centered at the Apollo 16 landing site with an extent of 60x60km. Each NAC image was processed in ISIS3 at a resolution of 50cm pixel, color balanced, and synthesized into a single output.]] +} + +local treks_A17_60x60kmeq = { + Identifier = "A17_60x60kmeq", + Name = [[LRO Narrow Angle Camera, Mosaic Apollo 17]], + FilePath = asset.localResource("LRO_Narrow_Angle_Camera/Mosaic_Apollo_17.vrt"), + Description = [[This is a Lunar Reconnaisance Orbiter (LRO) Narrow Angle Camera (NAC) mosaic centered at the Apollo 17 landing site with an extent of 60x60km. Each NAC image was processed in ISIS3 at a resolution of 50cm pixel, color balanced, and synthesized into a single output.]] +} + +local treks_M129086118ndgcs = { + Identifier = "M129086118ndgcs", + Name = [[LRO Narrow Angle Camera, Mosaic Apollo 17 Landing Site]], + FilePath = asset.localResource("LRO_Narrow_Angle_Camera/Mosaic_Apollo_17_Landing_Site.vrt"), + Description = [[This is the site where American astronauts Eugene Cernan and Harrison Schmitt made the sixth and final human landing on the Moon of the Apollo program on December 11, 1972. Cernan and Schmitt landed here aboard the lunar module Challenger, while Ronald Evans remained in orbit around the Moon in the command module America. With a PhD in geology, Schmitt was the first and only professional scientist to have visited the Moon. Cernan and Schmitt conducted 3 surface EVAs. The first, lasting 7 hours, 11 minutes, 53 seconds, included deploying the Apollo Lunar Surface Experiments Package (ALSEP) approximately 185 meters west-northwest of the lunar module, and conducting a 3.5-kilometer geologic traverse using the lunar rover to the rim of Steno, a small impact crater south of the landing site. The second surface EVA, lasting 7 hours, 36 minutes, 56 seconds, featured a 20.4-kilometer geologic traverse south and west. Stops included a location at the base of South Massif where a landslide had brought ancient highland rocks from high on the mountain into reach, and at Shorty Crater, which was found to be impact rather than volcanic in origin, but which excavated an older volcanic deposit which yielded the famous “orange soil”, beads of volcanic glass erupted in a lunar fire fountain. The third surface EVA, lasting 7 hours, 15 minutes, 8 seconds, had the astronauts making a 20.4-kilometer geologic traverse north and east to North Massif. Stops on this traverse included taking samples of early lunar crust material from large boulders near the base of the massif that had rolled down from high up on the mountain. Cernan and Schmitt collected 110.52 kilograms of lunar sample material for return to the Earth. + +In this LRO NAC view of the landing site, the descent stage of the Challenger is the largest man-made object visible. The dark markings of the astronauts’ footprints and rover tire tracks are visible around the landing site, especially extending to the west-northwest, where components of the ALSEP are visible. + +The landing site, located at 20.1911 N, 30.7723 E, is in a narrow valley in the Taurus Mountains near the crater Littrow. The Taurus Mountains form part of the Serenitatis impact basin, and sampling some of the ancient highland terrain into which the basin was excavated could help determine the date of the basin’s formation. Mare basalt subsequently flooded the floor of the valley, and after that parts of the area were blanketed by pyroclastic ash deposits erupting from dark-haloed volcanic craters. The site could therefore provide access to a diverse range of sample material.]] +} + +local treks_ingenii_skylight = { + Identifier = "ingenii_skylight", + Name = [[LRO Narrow Angle Camera, Mosaic Ingenii]], + FilePath = asset.localResource("LRO_Narrow_Angle_Camera/Mosaic_Ingenii.vrt"), + Description = [[Mare Ingenii is notable for being one of the few examples of a mare on the far side of the Moon, and the site for notable lunar swirls, enigmatic bright albedo features. This was enough to qualify the area as a Constellation Region of Interest. However, the area became even more interesting with the discovery of a lunar pit in imagery obtained using the Kaguya Terrain Camera. It measures about 130 m in diameter, and researchers speculate that the pit could be a skylight resulting from the collapse of the roof of a lava tube. Whether this is actually the case, and if so, the accessibility and extent of the lava tube have yet to be determined. However, such lava tubes are of great interest as potential locations for lunar bases, offering protection from extreme swings in temperature, galactic and solar radiation, and meteoroid impacts. This data layer was obtained using the Narrow Angle Camera aboard the Lunar Reconnaissance Orbiter and is a is a mosaic of 2 NAC strips centered on the Mare Ingenii pit.]] +} + +local treks_marius_skylight = { + Identifier = "marius_skylight", + Name = [[LRO Narrow Angle Camera, Mosaic Marius]], + FilePath = asset.localResource("LRO_Narrow_Angle_Camera/Mosaic_Marius.vrt"), + Description = [[The Marius Hills represents one of the most prominent collection of volcanic domes on the Moon. The area was a candidate landing site for the Apollo program and was also designated as a Constellation Region of Interest. It remains a site under consideration for possible future missions. In addition to volcanic domes, the area features basaltic flows, sinuous rilles, and one prominent lunar pit. The Marius Hills pit measures 58 x 49 m in diameter and 40 m deep. It was first noticed in an image taken with the Kaguya Terrain Camera on May 20, 2008, by a team led by Junichi Haruyama . The fact that the Marius Hills pit is located on the floor of a sinuous rille has encouraged speculation the pit could be a skylight resulting from the collapse of the roof of a lava tube. Whether this is actually the case, and if so, the accessibility and extent of the lava tube have yet to be determined. However, such lava tubes are of great interest as potential locations for lunar bases, offering protection from extreme swings in temperature, galactic and solar radiation, and meteoroid impacts. This data layer was obtained using the Narrow Angle Camera aboard the Lunar Reconnaissance Orbiter and is a is a mosaic of 2 NAC strips centered on the Marius Hills pit.]] +} + +local treks_LRO_NAC_Schrodinger = { + Identifier = "LRO_NAC_Schrodinger", + Name = [[LRO Narrow Angle Camera, Mosaic Schrodinger]], + FilePath = asset.localResource("LRO_Narrow_Angle_Camera/Mosaic_Schrodinger.vrt"), + Description = [[This is a visible image mosaic generated using Lunar Reconnaissance Orbiter Camera (LROC) Narrow Angle Camera (NAC) images from the Lunar Reconnaissance Orbiter mission. The images were orthorectified using a digital elevation model (DEM) created from LROC NAC stereo images, when available, or LRO's Lunar Orbiter Laser Altimeter (LOLA) global DEM. The mosaic is generated at the same resolution at which the individual LROC NAC images were gathered, which is approximately 0.5 meters/pixel. The mosaic was registered horizontally to the LOLA global DEM.]] +} + +local treks_schrodingerextraswathseq = { + Identifier = "schrodingerextraswathseq", + Name = [[LRO Narrow Angle Camera, Mosaic Schrodinger Extra]], + FilePath = asset.localResource("LRO_Narrow_Angle_Camera/Mosaic_Schrodinger_Extra.vrt"), + Description = [[TBD]] +} + +local treks_LRO_NAC_SchrodingerLandingSite2 = { + Identifier = "LRO_NAC_SchrodingerLandingSite2", + Name = [[LRO Narrow Angle Camera, Mosaic Schrodinger Landing Site]], + FilePath = asset.localResource("LRO_Narrow_Angle_Camera/Mosaic_Schrodinger_Landing_Site.vrt"), + Description = [[This is a visible image mosaic generated using Lunar Reconnaissance Orbiter Camera (LROC) Narrow Angle Camera (NAC) images from the Lunar Reconnaissance Orbiter mission. The images were orthorectified using a digital elevation model (DEM) created from LROC NAC stereo images, when available, or LRO's Lunar Orbiter Laser Altimeter (LOLA) global DEM. The mosaic is generated at the same resolution at which the individual LROC NAC images were gathered, which is approximately 0.5 meters/pixel. The mosaic was registered horizontally to the LOLA global DEM.]] +} + +local treks_schrodingerneequirect = { + Identifier = "schrodingerneequirect", + Name = [[LRO Narrow Angle Camera, Mosaic Schrodinger NorthEast]], + FilePath = asset.localResource("LRO_Narrow_Angle_Camera/Mosaic_Schrodinger_NorthEast.vrt"), + Description = [[This is a visible image mosaic generated using Lunar Reconnaissance Orbiter Camera (LROC) Narrow Angle Camera (NAC) images from the Lunar Reconnaissance Orbiter mission. Each NAC image was registered horizontally to the LRO's Lunar Orbiter Laser Altimeter (LOLA) global DEM, and then mosaicked together and color balanced. The mosaic is generated at the same resolution at which the individual LROC NAC images were gathered, which is approximately 1 meters/pixel.]] +} + +local treks_schrodingerscequirect = { + Identifier = "schrodingerscequirect", + Name = [[LRO Narrow Angle Camera, Mosaic Schrodinger SouthCenter]], + FilePath = asset.localResource("LRO_Narrow_Angle_Camera/Mosaic_Schrodinger_SouthCenter.vrt"), + Description = [[This is a visible image mosaic generated using Lunar Reconnaissance Orbiter Camera (LROC) Narrow Angle Camera (NAC) images from the Lunar Reconnaissance Orbiter mission. Each NAC image was registered horizontally to the LRO's Lunar Orbiter Laser Altimeter (LOLA) global DEM, and then mosaicked together and color balanced. The mosaic is generated at the same resolution at which the individual LROC NAC images were gathered, which is approximately 1 meters/pixel.]] +} + +local treks_schrodingerseequirect = { + Identifier = "schrodingerseequirect", + Name = [[LRO Narrow Angle Camera, Mosaic Schrodinger SouthEast]], + FilePath = asset.localResource("LRO_Narrow_Angle_Camera/Mosaic_Schrodinger_SouthEast.vrt"), + Description = [[This is a visible image mosaic generated using Lunar Reconnaissance Orbiter Camera (LROC) Narrow Angle Camera (NAC) images from the Lunar Reconnaissance Orbiter mission. Each NAC image was registered horizontally to the LRO's Lunar Orbiter Laser Altimeter (LOLA) global DEM, and then mosaicked together and color balanced. The mosaic is generated at the same resolution at which the individual LROC NAC images were gathered, which is approximately 1 meters/pixel.]] +} + +local treks_small_tranq_skylight_1 = { + Identifier = "small_tranq_skylight_1", + Name = [[LRO Narrow Angle Camera, Mosaic Small Tranquilltatis 1]], + FilePath = asset.localResource("LRO_Narrow_Angle_Camera/Mosaic_Small_Tranquilltatis_1.vrt"), + Description = [[The discovery of three lunar pits using imagery from imagery obtained using the Kaguya Terrain Camera led researchers to wonder how common such features might be. A very successful campaign was mounted to search Lunar Reconnaissance Orbiter Narrow Angle Camera (NAC) images to see if the higher resolution of NAC might reveal more lunar pits smaller than were detectable with the Kaguya Terrain Camera (R. V. Wagner and M. S. Robinson, 2015, UPDATE: THE SEARCH FOR LUNAR PITS, 2nd International Planetary Caves Conference). Researchers speculate that these lunar pits could be skylights resulting from roof collapse in lava tubes. Whether this is actually the case, and if so, the accessibility and extent of the lava tubes have yet to be determined. However, such lava tubes are of great interest as potential locations for lunar bases, offering protection from extreme swings in temperature, galactic and solar radiation, and meteoroid impacts. This data layer was obtained using the Narrow Angle Camera aboard the Lunar Reconnaissance Orbiter and is a is a mosaic of 2 NAC strips centered on a small pit in Mare Tranquillitatis.]] +} + +local treks_small_tranq_skylight_2 = { + Identifier = "small_tranq_skylight_2", + Name = [[LRO Narrow Angle Camera, Mosaic Small Tranquilltatis 2]], + FilePath = asset.localResource("LRO_Narrow_Angle_Camera/Mosaic_Small_Tranquilltatis_2.vrt"), + Description = [[The discovery of three lunar pits using imagery from imagery obtained using the Kaguya Terrain Camera led researchers to wonder how common such features might be. A very successful campaign was mounted to search Lunar Reconnaissance Orbiter Narrow Angle Camera (NAC) images to see if the higher resolution of NAC might reveal more lunar pits smaller than were detectable with the Kaguya Terrain Camera (R. V. Wagner and M. S. Robinson, 2015, UPDATE: THE SEARCH FOR LUNAR PITS, 2nd International Planetary Caves Conference). Researchers speculate that these lunar pits could be skylights resulting from roof collapse in lava tubes. Whether this is actually the case, and if so, the accessibility and extent of the lava tubes have yet to be determined. However, such lava tubes are of great interest as potential locations for lunar bases, offering protection from extreme swings in temperature, galactic and solar radiation, and meteoroid impacts. This data layer was obtained using the Narrow Angle Camera aboard the Lunar Reconnaissance Orbiter and is a is a mosaic of 2 NAC strips centered on a small pit in Mare Tranquillitatis.]] +} + +local treks_NAC_DTM_APOLLO17_SLOPE = { + Identifier = "NAC_DTM_APOLLO17_SLOPE", + Name = [[LRO Narrow Angle Camera, Slope Apollo 17]], + FilePath = asset.localResource("LRO_Narrow_Angle_Camera/Slope_Apollo_17.vrt"), + Description = [[This is a color slope map derived from a 5m Digital Terrain Model (DTM) of the Apollo 17 landing site created with Narrow Angle Camera (NAC) stereo image pairs from the Lunar Reconnaissance Orbiter Camera (LROC) aboard the Lunar Reconnaissance Orbiter (LRO). Image is 3-channel RGB TIFF, 8 bits/sample, 3 samples/pixel in single image plane configuration]] +} + +asset.onInitialize(function() + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_Apollo11_Mosaic_p) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_Apollo12_Mosaic_p) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_Apollo14_Mosaic_p) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_Apollo15_Mosaic_p) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_Apollo16_Mosaic_p) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_NAC_DTM_APOLLO17_CLRSHADE) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_NAC_DTM_APOLLO17_SHADE) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_A11_60x60kmeq) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_A12_60x60km0_3eq) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_A14_60x60km0_3eq) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_A15_60x60km0_2eq) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_A16_60x60kmeq) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_A17_60x60kmeq) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_M129086118ndgcs) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_ingenii_skylight) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_marius_skylight) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_Schrodinger) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_schrodingerextraswathseq) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_NAC_SchrodingerLandingSite2) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_schrodingerneequirect) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_schrodingerscequirect) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_schrodingerseequirect) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_small_tranq_skylight_1) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_small_tranq_skylight_2) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_NAC_DTM_APOLLO17_SLOPE) +end) + +asset.onDeinitialize(function() + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_Apollo11_Mosaic_p") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_Apollo12_Mosaic_p") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_Apollo14_Mosaic_p") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_Apollo15_Mosaic_p") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_Apollo16_Mosaic_p") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_NAC_DTM_APOLLO17_CLRSHADE") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_NAC_DTM_APOLLO17_SHADE") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_A11_60x60kmeq") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_A12_60x60km0_3eq") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_A14_60x60km0_3eq") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_A15_60x60km0_2eq") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_A16_60x60kmeq") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_A17_60x60kmeq") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_M129086118ndgcs") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_ingenii_skylight") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_marius_skylight") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_Schrodinger") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_schrodingerextraswathseq") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_NAC_SchrodingerLandingSite2") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_schrodingerneequirect") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_schrodingerscequirect") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_schrodingerseequirect") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_small_tranq_skylight_1") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_small_tranq_skylight_2") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_NAC_DTM_APOLLO17_SLOPE") +end) + +asset.export("LRO_NAC_Apollo11_Mosaic_p", treks_LRO_NAC_Apollo11_Mosaic_p) +asset.export("LRO_NAC_Apollo12_Mosaic_p", treks_LRO_NAC_Apollo12_Mosaic_p) +asset.export("LRO_NAC_Apollo14_Mosaic_p", treks_LRO_NAC_Apollo14_Mosaic_p) +asset.export("LRO_NAC_Apollo15_Mosaic_p", treks_LRO_NAC_Apollo15_Mosaic_p) +asset.export("LRO_NAC_Apollo16_Mosaic_p", treks_LRO_NAC_Apollo16_Mosaic_p) +asset.export("NAC_DTM_APOLLO17_CLRSHADE", treks_NAC_DTM_APOLLO17_CLRSHADE) +asset.export("NAC_DTM_APOLLO17_SHADE", treks_NAC_DTM_APOLLO17_SHADE) +asset.export("A11_60x60kmeq", treks_A11_60x60kmeq) +asset.export("A12_60x60km0_3eq", treks_A12_60x60km0_3eq) +asset.export("A14_60x60km0_3eq", treks_A14_60x60km0_3eq) +asset.export("A15_60x60km0_2eq", treks_A15_60x60km0_2eq) +asset.export("A16_60x60kmeq", treks_A16_60x60kmeq) +asset.export("A17_60x60kmeq", treks_A17_60x60kmeq) +asset.export("M129086118ndgcs", treks_M129086118ndgcs) +asset.export("ingenii_skylight", treks_ingenii_skylight) +asset.export("marius_skylight", treks_marius_skylight) +asset.export("LRO_NAC_Schrodinger", treks_LRO_NAC_Schrodinger) +asset.export("schrodingerextraswathseq", treks_schrodingerextraswathseq) +asset.export("LRO_NAC_SchrodingerLandingSite2", treks_LRO_NAC_SchrodingerLandingSite2) +asset.export("schrodingerneequirect", treks_schrodingerneequirect) +asset.export("schrodingerscequirect", treks_schrodingerscequirect) +asset.export("schrodingerseequirect", treks_schrodingerseequirect) +asset.export("small_tranq_skylight_1", treks_small_tranq_skylight_1) +asset.export("small_tranq_skylight_2", treks_small_tranq_skylight_2) +asset.export("NAC_DTM_APOLLO17_SLOPE", treks_NAC_DTM_APOLLO17_SLOPE) + + +asset.meta = { + Name = [[NASA Treks Layers for Moon LRO_Narrow_Angle_Camera], + Version = "1.0", + Author = "NASA/Treks", + URL = "https://trek.nasa.gov/moon", + License = "NASA/Treks", + Description = [[LRO_Narrow_Angle_Camera layers from NASA/Treks for Moon]] +} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Apollo_11_Landing_Site.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Apollo_11_Landing_Site.vrt new file mode 100644 index 0000000000..c1a51f29c8 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Apollo_11_Landing_Site.vrt @@ -0,0 +1,29 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.0728836059570313e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.0728836059570313e-05 + + 0 + Gray + + Apollo_11_Landing_Site.wms + 1 + + + + 0 + + + + Alpha + + Apollo_11_Landing_Site.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Apollo_11_Landing_Site/LRO_NAC_Apollo11_Mosaic_p.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Apollo_11_Landing_Site.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Apollo_11_Landing_Site/LRO_NAC_Apollo11_Mosaic_p.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Apollo_11_Landing_Site.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Apollo_12_Landing_Site.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Apollo_12_Landing_Site.vrt new file mode 100644 index 0000000000..6283216276 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Apollo_12_Landing_Site.vrt @@ -0,0 +1,29 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 5.3644180297851563e-06, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -5.3644180297851563e-06 + + 0 + Gray + + Apollo_12_Landing_Site.wms + 1 + + + + 0 + + + + Alpha + + Apollo_12_Landing_Site.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Apollo_12_Landing_Site/LRO_NAC_Apollo12_Mosaic_p.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Apollo_12_Landing_Site.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Apollo_12_Landing_Site/LRO_NAC_Apollo12_Mosaic_p.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Apollo_12_Landing_Site.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Apollo_14_Landing_Site.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Apollo_14_Landing_Site.vrt new file mode 100644 index 0000000000..3454e66329 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Apollo_14_Landing_Site.vrt @@ -0,0 +1,29 @@ + + GEOGCS["Moon2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.0728836059570313e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.0728836059570313e-05 + + 0 + Gray + + Apollo_14_Landing_Site.wms + 1 + + + + 0 + + + + Alpha + + Apollo_14_Landing_Site.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Apollo_14_Landing_Site/LRO_NAC_Apollo14_Mosaic_p.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Apollo_14_Landing_Site.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Apollo_14_Landing_Site/LRO_NAC_Apollo14_Mosaic_p.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Apollo_14_Landing_Site.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Apollo_15_Landing_Site.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Apollo_15_Landing_Site.vrt new file mode 100644 index 0000000000..89229e6ec8 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Apollo_15_Landing_Site.vrt @@ -0,0 +1,29 @@ + + GEOGCS["Moon2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 5.3644180297851563e-06, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -5.3644180297851563e-06 + + 0 + Gray + + Apollo_15_Landing_Site.wms + 1 + + + + 0 + + + + Alpha + + Apollo_15_Landing_Site.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Apollo_15_Landing_Site/LRO_NAC_Apollo15_Mosaic_p.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Apollo_15_Landing_Site.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Apollo_15_Landing_Site/LRO_NAC_Apollo15_Mosaic_p.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Apollo_15_Landing_Site.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Apollo_16_Landing_Site.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Apollo_16_Landing_Site.vrt new file mode 100644 index 0000000000..9a72036712 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Apollo_16_Landing_Site.vrt @@ -0,0 +1,29 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.1457672119140625e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.1457672119140625e-05 + + 0 + Gray + + Apollo_16_Landing_Site.wms + 1 + + + + 0 + + + + Alpha + + Apollo_16_Landing_Site.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Apollo_16_Landing_Site/LRO_NAC_Apollo16_Mosaic_p.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Apollo_16_Landing_Site.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Apollo_16_Landing_Site/LRO_NAC_Apollo16_Mosaic_p.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Apollo_16_Landing_Site.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/ColorHillShade_Apollo_17.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/ColorHillShade_Apollo_17.vrt new file mode 100644 index 0000000000..5a23806db2 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/ColorHillShade_Apollo_17.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 + + 0 + Red + + ColorHillShade_Apollo_17.wms + 1 + + + + 0 + + + + 0 + Green + + ColorHillShade_Apollo_17.wms + 2 + + + + 0 + + + + 0 + Blue + + ColorHillShade_Apollo_17.wms + 3 + + + + 0 + + + + Alpha + + ColorHillShade_Apollo_17.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_ColorHillShade_Apollo_17/NAC_DTM_APOLLO17_CLRSHADE.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/ColorHillShade_Apollo_17.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_ColorHillShade_Apollo_17/NAC_DTM_APOLLO17_CLRSHADE.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/ColorHillShade_Apollo_17.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/HillShade_Apollo_17.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/HillShade_Apollo_17.vrt new file mode 100644 index 0000000000..2bdad2c3d2 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/HillShade_Apollo_17.vrt @@ -0,0 +1,29 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 + + 0 + Gray + + HillShade_Apollo_17.wms + 1 + + + + 0 + + + + Alpha + + HillShade_Apollo_17.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_HillShade_Apollo_17/NAC_DTM_APOLLO17_SHADE.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/HillShade_Apollo_17.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_HillShade_Apollo_17/NAC_DTM_APOLLO17_SHADE.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/HillShade_Apollo_17.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Apollo_11.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Apollo_11.vrt new file mode 100644 index 0000000000..ed62a483e8 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Apollo_11.vrt @@ -0,0 +1,29 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.0728836059570313e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.0728836059570313e-05 + + 0 + Gray + + Mosaic_Apollo_11.wms + 1 + + + + 0 + + + + Alpha + + Mosaic_Apollo_11.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Apollo_11/A11_60x60km.eq.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Apollo_11.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Apollo_11/A11_60x60km.eq.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Apollo_11.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Apollo_12.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Apollo_12.vrt new file mode 100644 index 0000000000..86b2ac7fac --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Apollo_12.vrt @@ -0,0 +1,29 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.0728836059570313e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.0728836059570313e-05 + + 0 + Gray + + Mosaic_Apollo_12.wms + 1 + + + + 0 + + + + Alpha + + Mosaic_Apollo_12.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Apollo_12/A12_60x60km.0_3.eq.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Apollo_12.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Apollo_12/A12_60x60km.0_3.eq.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Apollo_12.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Apollo_14.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Apollo_14.vrt new file mode 100644 index 0000000000..8760f17598 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Apollo_14.vrt @@ -0,0 +1,29 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.0728836059570313e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.0728836059570313e-05 + + 0 + Gray + + Mosaic_Apollo_14.wms + 1 + + + + 0 + + + + Alpha + + Mosaic_Apollo_14.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Apollo_14/A14_60x60km.0_3.eq.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Apollo_14.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Apollo_14/A14_60x60km.0_3.eq.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Apollo_14.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Apollo_15.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Apollo_15.vrt new file mode 100644 index 0000000000..d34d3111d5 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Apollo_15.vrt @@ -0,0 +1,29 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.0728836059570313e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.0728836059570313e-05 + + 0 + Gray + + Mosaic_Apollo_15.wms + 1 + + + + 0 + + + + Alpha + + Mosaic_Apollo_15.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Apollo_15/A15_60x60km.0_2.eq.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Apollo_15.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Apollo_15/A15_60x60km.0_2.eq.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Apollo_15.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Apollo_16.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Apollo_16.vrt new file mode 100644 index 0000000000..2cf722b056 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Apollo_16.vrt @@ -0,0 +1,29 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.0728836059570313e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.0728836059570313e-05 + + 0 + Gray + + Mosaic_Apollo_16.wms + 1 + + + + 0 + + + + Alpha + + Mosaic_Apollo_16.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Apollo_16/A16_60x60km.eq.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Apollo_16.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Apollo_16/A16_60x60km.eq.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Apollo_16.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Apollo_17.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Apollo_17.vrt new file mode 100644 index 0000000000..9a84493c16 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Apollo_17.vrt @@ -0,0 +1,29 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.0728836059570313e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.0728836059570313e-05 + + 0 + Gray + + Mosaic_Apollo_17.wms + 1 + + + + 0 + + + + Alpha + + Mosaic_Apollo_17.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Apollo_17/A17_60x60km.eq.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Apollo_17.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Apollo_17/A17_60x60km.eq.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Apollo_17.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Apollo_17_Landing_Site.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Apollo_17_Landing_Site.vrt new file mode 100644 index 0000000000..cb40cbf42c --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Apollo_17_Landing_Site.vrt @@ -0,0 +1,29 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.0728836059570313e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.0728836059570313e-05 + + 0 + Gray + + Mosaic_Apollo_17_Landing_Site.wms + 1 + + + + 0 + + + + Alpha + + Mosaic_Apollo_17_Landing_Site.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Apollo_17_Landing_Site/M129086118.nd.gcs.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Apollo_17_Landing_Site.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Apollo_17_Landing_Site/M129086118.nd.gcs.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Apollo_17_Landing_Site.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Ingenii.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Ingenii.vrt new file mode 100644 index 0000000000..298e99c9e1 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Ingenii.vrt @@ -0,0 +1,29 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.0728836059570313e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.0728836059570313e-05 + + 0 + Gray + + Mosaic_Ingenii.wms + 1 + + + + 0 + + + + Alpha + + Mosaic_Ingenii.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Ingenii/ingenii_skylight.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Ingenii.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Ingenii/ingenii_skylight.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Ingenii.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Marius.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Marius.vrt new file mode 100644 index 0000000000..11ff45be56 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Marius.vrt @@ -0,0 +1,29 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.0728836059570313e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.0728836059570313e-05 + + 0 + Gray + + Mosaic_Marius.wms + 1 + + + + 0 + + + + Alpha + + Mosaic_Marius.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Marius/marius_skylight.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Marius.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Marius/marius_skylight.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Marius.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Schrodinger.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Schrodinger.vrt new file mode 100644 index 0000000000..8f872bbf0c --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Schrodinger.vrt @@ -0,0 +1,29 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 + + 0 + Gray + + Mosaic_Schrodinger.wms + 1 + + + + 0 + + + + Alpha + + Mosaic_Schrodinger.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Schrodinger/LRO_NAC_Schrodinger.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Schrodinger.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Schrodinger/LRO_NAC_Schrodinger.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Schrodinger.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Schrodinger_Extra.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Schrodinger_Extra.vrt new file mode 100644 index 0000000000..0944ac8f65 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Schrodinger_Extra.vrt @@ -0,0 +1,29 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 + + 0 + Gray + + Mosaic_Schrodinger_Extra.wms + 1 + + + + 0 + + + + Alpha + + Mosaic_Schrodinger_Extra.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Schrodinger_Extra/schrodinger.extraswaths.eq.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Schrodinger_Extra.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Schrodinger_Extra/schrodinger.extraswaths.eq.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Schrodinger_Extra.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Schrodinger_Landing_Site.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Schrodinger_Landing_Site.vrt new file mode 100644 index 0000000000..09c36abcae --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Schrodinger_Landing_Site.vrt @@ -0,0 +1,29 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 + + 0 + Gray + + Mosaic_Schrodinger_Landing_Site.wms + 1 + + + + 0 + + + + Alpha + + Mosaic_Schrodinger_Landing_Site.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Schrodinger_Landing_Site/LRO_NAC_SchrodingerLandingSite2.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Schrodinger_Landing_Site.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Schrodinger_Landing_Site/LRO_NAC_SchrodingerLandingSite2.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Schrodinger_Landing_Site.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Schrodinger_NorthEast.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Schrodinger_NorthEast.vrt new file mode 100644 index 0000000000..28085f5cf7 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Schrodinger_NorthEast.vrt @@ -0,0 +1,29 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 + + 0 + Gray + + Mosaic_Schrodinger_NorthEast.wms + 1 + + + + 0 + + + + Alpha + + Mosaic_Schrodinger_NorthEast.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Schrodinger_NorthEast/schrodinger.ne.equirect.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Schrodinger_NorthEast.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Schrodinger_NorthEast/schrodinger.ne.equirect.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Schrodinger_NorthEast.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Schrodinger_SouthCenter.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Schrodinger_SouthCenter.vrt new file mode 100644 index 0000000000..faff405db8 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Schrodinger_SouthCenter.vrt @@ -0,0 +1,29 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 + + 0 + Gray + + Mosaic_Schrodinger_SouthCenter.wms + 1 + + + + 0 + + + + Alpha + + Mosaic_Schrodinger_SouthCenter.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Schrodinger_SouthCenter/schrodinger.sc.equirect.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Schrodinger_SouthCenter.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Schrodinger_SouthCenter/schrodinger.sc.equirect.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Schrodinger_SouthCenter.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Schrodinger_SouthEast.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Schrodinger_SouthEast.vrt new file mode 100644 index 0000000000..4c6f0d41c3 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Schrodinger_SouthEast.vrt @@ -0,0 +1,29 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 + + 0 + Gray + + Mosaic_Schrodinger_SouthEast.wms + 1 + + + + 0 + + + + Alpha + + Mosaic_Schrodinger_SouthEast.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Schrodinger_SouthEast/schrodinger.se.equirect.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Schrodinger_SouthEast.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Schrodinger_SouthEast/schrodinger.se.equirect.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Schrodinger_SouthEast.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Small_Tranquilltatis_1.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Small_Tranquilltatis_1.vrt new file mode 100644 index 0000000000..9e3570f87b --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Small_Tranquilltatis_1.vrt @@ -0,0 +1,29 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.0728836059570313e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.0728836059570313e-05 + + 0 + Gray + + Mosaic_Small_Tranquilltatis_1.wms + 1 + + + + 0 + + + + Alpha + + Mosaic_Small_Tranquilltatis_1.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Small_Tranquilltatis_1/small_tranq_skylight_1.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Small_Tranquilltatis_1.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Small_Tranquilltatis_1/small_tranq_skylight_1.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Small_Tranquilltatis_1.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Small_Tranquilltatis_2.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Small_Tranquilltatis_2.vrt new file mode 100644 index 0000000000..f3fb7fdee8 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Small_Tranquilltatis_2.vrt @@ -0,0 +1,29 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.0728836059570313e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.0728836059570313e-05 + + 0 + Gray + + Mosaic_Small_Tranquilltatis_2.wms + 1 + + + + 0 + + + + Alpha + + Mosaic_Small_Tranquilltatis_2.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Small_Tranquilltatis_2/small_tranq_skylight_2.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Small_Tranquilltatis_2.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Small_Tranquilltatis_2/small_tranq_skylight_2.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Mosaic_Small_Tranquilltatis_2.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Slope_Apollo_17.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Slope_Apollo_17.vrt new file mode 100644 index 0000000000..5b44e35a9a --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Slope_Apollo_17.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 + + 0 + Red + + Slope_Apollo_17.wms + 1 + + + + 0 + + + + 0 + Green + + Slope_Apollo_17.wms + 2 + + + + 0 + + + + 0 + Blue + + Slope_Apollo_17.wms + 3 + + + + 0 + + + + Alpha + + Slope_Apollo_17.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Slope_Apollo_17/NAC_DTM_APOLLO17_SLOPE.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Slope_Apollo_17.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Slope_Apollo_17/NAC_DTM_APOLLO17_SLOPE.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera/Slope_Apollo_17.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Apollo_11_Landing_Site/LRO_NAC_Apollo11_Mosaic_p.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Apollo_11_Landing_Site/LRO_NAC_Apollo11_Mosaic_p.vrt deleted file mode 100644 index 161ad24eb4..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Apollo_11_Landing_Site/LRO_NAC_Apollo11_Mosaic_p.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.0728836059570313e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.0728836059570313e-05 - - 0 - Gray - - LRO_NAC_Apollo11_Mosaic_p.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Apollo11_Mosaic_p.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Apollo_11_Landing_Site/LRO_Narrow_Angle_Camera_Apollo_11_Landing_Site.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Apollo_11_Landing_Site/LRO_Narrow_Angle_Camera_Apollo_11_Landing_Site.asset deleted file mode 100644 index 3d266c1d3d..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Apollo_11_Landing_Site/LRO_Narrow_Angle_Camera_Apollo_11_Landing_Site.asset +++ /dev/null @@ -1,33 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Apollo11_Mosaic_p", - Name = [[LRO Narrow Angle Camera, Apollo 11 Landing Site]], - FilePath = asset.localResource("LRO_NAC_Apollo11_Mosaic_p.vrt"), - Description = [[This is the site where American astronauts Neil Armstrong and Edwin “Buzz” Aldrin made the first human landing on the Moon on July 20, 1969. Armstrong and Aldrin landed here aboard the lunar module Eagle, while Michael Collins remained in orbit around the Moon in the command module Columbia. Armstrong and Aldrin conducted one EVA on the lunar surface lasting 2 hours, 31 minutes 40 seconds, remaining within 60 meters of the lunar module. They collected 21.55 kg of lunar sample material for return to the Earth. - -In this LRO NAC view of the landing site, the descent stage of the Eagle is the largest man-made object visible. The dark tracks of the astronauts’ footprints extend out from it clustered primarily in 3 directions. To the northwest, the tracks extend to the location where the astronauts set up a TV camera. To the south, tracks extend to where a Lunar Ranging Retroreflector and the Passive Seismic Experiment Package were deployed. To the east, the tracks extend to the rim of Little West Crater. - -The landing site, located at 0.67416 N, 23.47314 E, is in the southwest part of Mare Tranquilitatis, an area characterized by extensive deposits of mare basalt. -]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO Narrow Angle Camera, Apollo 11 Landing Site]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Apollo11_Mosaic_p%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO Narrow Angle Camera, Apollo 11 Landing Site layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Apollo_12_Landing_Site/LRO_NAC_Apollo12_Mosaic_p.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Apollo_12_Landing_Site/LRO_NAC_Apollo12_Mosaic_p.vrt deleted file mode 100644 index 9323505fef..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Apollo_12_Landing_Site/LRO_NAC_Apollo12_Mosaic_p.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 5.3644180297851563e-06, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -5.3644180297851563e-06 - - 0 - Gray - - LRO_NAC_Apollo12_Mosaic_p.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Apollo12_Mosaic_p.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Apollo_12_Landing_Site/LRO_Narrow_Angle_Camera_Apollo_12_Landing_Site.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Apollo_12_Landing_Site/LRO_Narrow_Angle_Camera_Apollo_12_Landing_Site.asset deleted file mode 100644 index 1cc834a55e..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Apollo_12_Landing_Site/LRO_Narrow_Angle_Camera_Apollo_12_Landing_Site.asset +++ /dev/null @@ -1,33 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Apollo12_Mosaic_p", - Name = [[LRO Narrow Angle Camera, Apollo 12 Landing Site]], - FilePath = asset.localResource("LRO_NAC_Apollo12_Mosaic_p.vrt"), - Description = [[This is the site where American astronauts Charles “Pete” Conrad and Alan Bean made the second human landing on the Moon on November 19, 1969. Conrad and Bean landed here aboard the lunar module Intrepid, while Richard Gordon remained in orbit around the Moon in the command module Yankee Clipper. Apollo 12 demonstrated the key capability of a precision landing, with Intrepid touching down less than 200 meters from the site where the Surveyor 3 probe had landed on April 20, 1967. Conrad and Bean conducted 2 EVAs on the lunar surface. The first, lasting 3 hours, 56 minutes, extended to the northwest for deployment of the ALSEP instrument package, and the continued to the rim of a 350-meter diameter crater dubbed Middle Crescent. The second EVA, lasting 3 hours, 49 minutes, was a loop trip of 1.5 km around several craters to the south, including retrieval of a camera from Surveyor 3. They collected 34.35 kilograms of lunar sample material for return to the Earth. - -In this LRO NAC view of the landing site, the descent stage of the Intrepid is the largest man-made object visible. The dark tracks of the astronauts’ footprints extend out from it. To the northwest, the tracks extend about 130 meters to were components of the ALSEP can be seen. About 160 meters to the southeast of Intrepid, Surveyor 3 is visible with a dense cluster of footprints around it. - -The landing site, located at 3.0138 S N, 23.4219 W, is in the southern part of Oceanus Procellarum, an area characterized by extensive deposits of basalt significantly younger than that at the Apollo 11 site. The site also provided the first samples of KREEP, material rich in potassium, phosphorus, and rare earth elements. The potential for sampling ejecta from one of the rays extending from the crater Copernicus added to the attractiveness of the site. -]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO Narrow Angle Camera, Apollo 12 Landing Site]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Apollo12_Mosaic_p%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO Narrow Angle Camera, Apollo 12 Landing Site layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Apollo_14_Landing_Site/LRO_NAC_Apollo14_Mosaic_p.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Apollo_14_Landing_Site/LRO_NAC_Apollo14_Mosaic_p.vrt deleted file mode 100644 index 1432e1afc1..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Apollo_14_Landing_Site/LRO_NAC_Apollo14_Mosaic_p.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["Moon2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.0728836059570313e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.0728836059570313e-05 - - 0 - Gray - - LRO_NAC_Apollo14_Mosaic_p.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Apollo14_Mosaic_p.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Apollo_14_Landing_Site/LRO_Narrow_Angle_Camera_Apollo_14_Landing_Site.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Apollo_14_Landing_Site/LRO_Narrow_Angle_Camera_Apollo_14_Landing_Site.asset deleted file mode 100644 index c575db2b11..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Apollo_14_Landing_Site/LRO_Narrow_Angle_Camera_Apollo_14_Landing_Site.asset +++ /dev/null @@ -1,32 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Apollo14_Mosaic_p", - Name = [[LRO Narrow Angle Camera, Apollo 14 Landing Site]], - FilePath = asset.localResource("LRO_NAC_Apollo14_Mosaic_p.vrt"), - Description = [[This is the site where American astronauts Alan Shepard and Edgar Mitchell made the third human landing on the Moon on February 5, 1971. Shepard and Mitchell landed here aboard the lunar module Antares, while Stuart Roosa remained in orbit around the Moon in the command module Kitty Hawk. Shephard and Mitchell conducted 2 EVAs on the lunar surface. The first, lasting 4 hours, 47 minutes, 50 seconds, extended to the west for deployment of the ALSEP instrument package, included collection of a contingency sample, and covered a total distance of about 550 meters. The second EVA, lasting 4 hours, 34 minutes, 41 seconds, was intended to visit Cone Crater, 370 meters in diameter and located approximately 1.2 kilometers to the northeast. To help transport the load of equipment and retrieved samples on this EVA, the astronauts were equipped with a hand-pulled cart, the Modular Equipment Transporter (MET). The rough, hummocky terrain made navigation difficult during the second EVA, and the astronauts were not able to identify the rim of Cone Crater, though later imagery showed that they reached a point about 20 meters south of the crater rim. Shepard and Mitchell collected 42.80 kilograms of lunar sample material for return to the Earth. - -In this LRO NAC view of the landing site, the descent stage of the Antares is the largest man-made object visible. The dark tracks of the astronauts’ footprints from the first EVA extend to the west, where components of the ALSEP are visible. Extending to the northeast of Antares’ landing site, the track of the astronauts’ footprints and the tracks of the MET’s wheels can be traced toward Cone Crater. - -The landing site, located at 3.64589 S, 17.47194 W, was selected largely with the goal of sampling material from the Imbrium Basin impact, whose ejecta covers much of this area, known as the Fra Mauro formation.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO Narrow Angle Camera, Apollo 14 Landing Site]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Apollo14_Mosaic_p%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO Narrow Angle Camera, Apollo 14 Landing Site layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Apollo_15_Landing_Site/LRO_NAC_Apollo15_Mosaic_p.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Apollo_15_Landing_Site/LRO_NAC_Apollo15_Mosaic_p.vrt deleted file mode 100644 index 338dbd5d05..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Apollo_15_Landing_Site/LRO_NAC_Apollo15_Mosaic_p.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["Moon2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 5.3644180297851563e-06, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -5.3644180297851563e-06 - - 0 - Gray - - LRO_NAC_Apollo15_Mosaic_p.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Apollo15_Mosaic_p.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Apollo_15_Landing_Site/LRO_Narrow_Angle_Camera_Apollo_15_Landing_Site.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Apollo_15_Landing_Site/LRO_Narrow_Angle_Camera_Apollo_15_Landing_Site.asset deleted file mode 100644 index cc61f544b2..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Apollo_15_Landing_Site/LRO_Narrow_Angle_Camera_Apollo_15_Landing_Site.asset +++ /dev/null @@ -1,33 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Apollo15_Mosaic_p", - Name = [[LRO Narrow Angle Camera, Apollo 15 Landing Site]], - FilePath = asset.localResource("LRO_NAC_Apollo15_Mosaic_p.vrt"), - Description = [[This is the site where American astronauts David Scott and James Irwin made the fourth human landing on the Moon on July 30, 1971. Scott and Irwin landed here aboard the lunar module Falcon, while Alfred Worden remained in orbit around the Moon in the command module Endeavour. This was the first of the Apollo J missions. These featured a greater emphasis on conducting science on the Moon along with longer stays on the lunar surface. The J missions also included a lunar rover which allowed the astronauts to drive across the lunar surface, covering far greater areas, and carrying back more sample material. Scott first conducted a 33-minute stand-up EVA, surveying and imaging the local terrain through the upper hatch of the lunar module. Scott and Irwin then conducted 3 surface EVAs. The first, lasting 6 hours, 32 minutes, 42 seconds, involved deploying the Lunar Rover, and driving in it on a 10.3-km geological traverse. They drove southwest to the edge of Hadley Rille and then continued south along the edge of the rille. At the end of the first surface EVA, they deployed the Apollo Lunar Surface Experiments Package (ALSEP) approximately 110 meters north-northwest of the lunar module. The second surface EVA, lasting 7 hours, 12 minutes, 14 seconds, featured a 12.5-kilometer lunar rover traverse southeast across the mare and along the base of the Apennine Mountains. The third surface EVA, lasting 4 hours, 49 minutes, 50 seconds, had the astronauts making a 5.1-kilometer traverse west to Hadley Rille northwest along the edge of the rille, and east across the mare back to the lunar module. Scott and Irwin collected 77 kilograms of lunar sample material for return to the Earth. - -In this LRO NAC view of the landing site, the descent stage of the Falcon is the largest man-made object visible. The dark markings of the astronauts’ footprints and rover tire tracks are visible around the landing site, especially extending to the north-northwest, where components of the ALSEP are visible. - -The landing site, located at 26.13239 N, 3.63330 E, was selected to provide access to the basalt of Mare Imbrium, the stratigraphy revealed in the deep channel of Hadley Rille carved by flowing lava, and mountain material from the front of the Apennine Range. -]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO Narrow Angle Camera, Apollo 15 Landing Site]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Apollo15_Mosaic_p%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO Narrow Angle Camera, Apollo 15 Landing Site layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Apollo_16_Landing_Site/LRO_NAC_Apollo16_Mosaic_p.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Apollo_16_Landing_Site/LRO_NAC_Apollo16_Mosaic_p.vrt deleted file mode 100644 index a2d29b41f5..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Apollo_16_Landing_Site/LRO_NAC_Apollo16_Mosaic_p.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.1457672119140625e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.1457672119140625e-05 - - 0 - Gray - - LRO_NAC_Apollo16_Mosaic_p.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Apollo16_Mosaic_p.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Apollo_16_Landing_Site/LRO_Narrow_Angle_Camera_Apollo_16_Landing_Site.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Apollo_16_Landing_Site/LRO_Narrow_Angle_Camera_Apollo_16_Landing_Site.asset deleted file mode 100644 index 50e4463ab4..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Apollo_16_Landing_Site/LRO_Narrow_Angle_Camera_Apollo_16_Landing_Site.asset +++ /dev/null @@ -1,33 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Apollo16_Mosaic_p", - Name = [[LRO Narrow Angle Camera, Apollo 16 Landing Site]], - FilePath = asset.localResource("LRO_NAC_Apollo16_Mosaic_p.vrt"), - Description = [[This is the site where American astronauts John Young and Charles Duke made the fifth human landing on the Moon on April 21, 1972. Young and Duke landed here aboard the lunar module Orion, while Ken Mattingly remained in orbit around the Moon in the command module Casper. Young and Duke conducted 3 surface EVAs. The first, lasting 7 hours, 11 minutes, 2 seconds, included deploying the Apollo Lunar Surface Experiments Package (ALSEP) approximately 95 meters southwest of the lunar module, and conducting a geologic traverse using the lunar rover to a couple of small craters within about 1,400 meters to the west of the landing site. The second surface EVA, lasting 7 hours, 23 minutes, 9 seconds, featured an 11.1-kilometer lunar rover drive south to the Cinco Crater area of Stone Mountain, making stops at 6 stations along the way. across the mare and along the base of the Apennine Mountains. The third surface EVA, lasting 5 hours, 40 minutes, 3 seconds, had the astronauts making a 11.4-kilometer traverse north to North Ray Crater. Young and Duke collected 95.71 kilograms of lunar sample material for return to the Earth. - -In this LRO NAC view of the landing site, the descent stage of the Orion is the largest man-made object visible, within a dark halo on the western rim of a ~30-meter crater. The dark markings of the astronauts’ footprints and rover tire tracks are visible around the landing site, especially extending to the southwest, where components of the ALSEP are visible. - -With the previous Apollo landings having focused on the low, flat, basaltic terrain of the lunar maria or seas, Apollo 16 was the first crewed mission to visit the lunar highlands. The landing site, located at 8.9734 S, 15.5011 E, was located on the boundary of two highland geologic units, the Descartes Formation and the Cayley Formation. Both units were thought to be volcanic in nature, but composed of lavas with higher silica content than the basaltic rocks of the maria; the Descartes Formation was widely thought to be rhyolite. However, the astronauts quickly discovered on their traverses that the rocks around them were overwhelmingly breccias. The great surprise of Apollo 16 was the discovery that the highland terrain was not silicic lava, but fluidized ejecta from a great basin-forming impact, an that the rocks were crustal material, largely anorthosite and gabbro. -]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO Narrow Angle Camera, Apollo 16 Landing Site]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Apollo16_Mosaic_p%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO Narrow Angle Camera, Apollo 16 Landing Site layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_ColorHillShade_Apollo_17/LRO_Narrow_Angle_Camera_ColorHillShade_Apollo_17.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_ColorHillShade_Apollo_17/LRO_Narrow_Angle_Camera_ColorHillShade_Apollo_17.asset deleted file mode 100644 index 8cd64c7f3b..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_ColorHillShade_Apollo_17/LRO_Narrow_Angle_Camera_ColorHillShade_Apollo_17.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "NAC_DTM_APOLLO17_CLRSHADE", - Name = [[LRO Narrow Angle Camera, ColorHillShade Apollo 17]], - FilePath = asset.localResource("NAC_DTM_APOLLO17_CLRSHADE.vrt"), - Description = [[Color-coded topography draped over the shaded relief from a 5m Digital Terrain Model (DTM) of the Apollo 17 landing site created with Narrow Angle Camera (NAC) stereo image pairs from the Lunar Reconnaissance Orbiter Camera (LROC) aboard the Lunar Reconnaissance Orbiter (LRO). The shaded relief image was generated with the sun azimuth of 315 degrees (northwest) and sun altitude of 45 degrees. ]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO Narrow Angle Camera, ColorHillShade Apollo 17]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=NAC_DTM_APOLLO17_CLRSHADE%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO Narrow Angle Camera, ColorHillShade Apollo 17 layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_ColorHillShade_Apollo_17/NAC_DTM_APOLLO17_CLRSHADE.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_ColorHillShade_Apollo_17/NAC_DTM_APOLLO17_CLRSHADE.vrt deleted file mode 100644 index 51b80e3398..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_ColorHillShade_Apollo_17/NAC_DTM_APOLLO17_CLRSHADE.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - NAC_DTM_APOLLO17_CLRSHADE.wms - 1 - - - - 0 - - - - 0 - Green - - NAC_DTM_APOLLO17_CLRSHADE.wms - 2 - - - - 0 - - - - 0 - Blue - - NAC_DTM_APOLLO17_CLRSHADE.wms - 3 - - - - 0 - - - - Alpha - - NAC_DTM_APOLLO17_CLRSHADE.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_HillShade_Apollo_17/LRO_Narrow_Angle_Camera_HillShade_Apollo_17.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_HillShade_Apollo_17/LRO_Narrow_Angle_Camera_HillShade_Apollo_17.asset deleted file mode 100644 index 2b8a526398..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_HillShade_Apollo_17/LRO_Narrow_Angle_Camera_HillShade_Apollo_17.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "NAC_DTM_APOLLO17_SHADE", - Name = [[LRO Narrow Angle Camera, HillShade Apollo 17]], - FilePath = asset.localResource("NAC_DTM_APOLLO17_SHADE.vrt"), - Description = [[This is a shaded-relief derived from a 5m Digital Terrain Model (DTM) of the Apollo 17 landing site created with Narrow Angle Camera (NAC) stereo image pairs from the Lunar Reconnaissance Orbiter Camera (LROC) aboard the Lunar Reconnaissance Orbiter (LRO). The shaded relief image was generated with the sun azimuth of 315 degrees (northwest) and sun altitude of 45 degrees. Image is a TIFF image, 8 bits/sample, 1 samples/pixel in single image plane configuration.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO Narrow Angle Camera, HillShade Apollo 17]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=NAC_DTM_APOLLO17_SHADE%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO Narrow Angle Camera, HillShade Apollo 17 layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_HillShade_Apollo_17/NAC_DTM_APOLLO17_SHADE.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_HillShade_Apollo_17/NAC_DTM_APOLLO17_SHADE.vrt deleted file mode 100644 index 96e814babc..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_HillShade_Apollo_17/NAC_DTM_APOLLO17_SHADE.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Gray - - NAC_DTM_APOLLO17_SHADE.wms - 1 - - - - 0 - - - - Alpha - - NAC_DTM_APOLLO17_SHADE.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Apollo_11/A11_60x60km.eq.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Apollo_11/A11_60x60km.eq.vrt deleted file mode 100644 index 60991b8db3..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Apollo_11/A11_60x60km.eq.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.0728836059570313e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.0728836059570313e-05 - - 0 - Gray - - A11_60x60km.eq.wms - 1 - - - - 0 - - - - Alpha - - A11_60x60km.eq.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Apollo_11/LRO_Narrow_Angle_Camera_Mosaic_Apollo_11.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Apollo_11/LRO_Narrow_Angle_Camera_Mosaic_Apollo_11.asset deleted file mode 100644 index 0b3b1f6faa..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Apollo_11/LRO_Narrow_Angle_Camera_Mosaic_Apollo_11.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "A11_60x60kmeq", - Name = [[LRO Narrow Angle Camera, Mosaic Apollo 11]], - FilePath = asset.localResource("A11_60x60km.eq.vrt"), - Description = [[This is a Lunar Reconnaisance Orbiter (LRO) Narrow Angle Camera (NAC) mosaic centered at the Apollo 11 landing site with an extent of 60x60km. Each NAC image was processed in ISIS3 at a resolution of 50cm pixel, color balanced, and synthesized into a single output.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO Narrow Angle Camera, Mosaic Apollo 11]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=A11_60x60km.eq%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO Narrow Angle Camera, Mosaic Apollo 11 layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Apollo_12/A12_60x60km.0_3.eq.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Apollo_12/A12_60x60km.0_3.eq.vrt deleted file mode 100644 index c5dc3dcbc0..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Apollo_12/A12_60x60km.0_3.eq.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.0728836059570313e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.0728836059570313e-05 - - 0 - Gray - - A12_60x60km.0_3.eq.wms - 1 - - - - 0 - - - - Alpha - - A12_60x60km.0_3.eq.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Apollo_12/LRO_Narrow_Angle_Camera_Mosaic_Apollo_12.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Apollo_12/LRO_Narrow_Angle_Camera_Mosaic_Apollo_12.asset deleted file mode 100644 index 7a116b2622..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Apollo_12/LRO_Narrow_Angle_Camera_Mosaic_Apollo_12.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "A12_60x60km0_3eq", - Name = [[LRO Narrow Angle Camera, Mosaic Apollo 12]], - FilePath = asset.localResource("A12_60x60km.0_3.eq.vrt"), - Description = [[This is a Lunar Reconnaissance Orbiter (LRO) Narrow Angle Camera (NAC) mosaic centered at the Apollo 12 landing site with an extent of 60x60km. Each NAC image was processed in ISIS3 at a resolution of 50cm pixel, color balanced, and synthesized into a single output. Apollo 12 was second crewed mission to land on the surface of the Moon. The mission launched on November 14th 1969, and landed five days later at the Ocean of Storms within walking distance of the Surveyor 3 spacecraft.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO Narrow Angle Camera, Mosaic Apollo 12]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=A12_60x60km.0_3.eq%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO Narrow Angle Camera, Mosaic Apollo 12 layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Apollo_14/A14_60x60km.0_3.eq.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Apollo_14/A14_60x60km.0_3.eq.vrt deleted file mode 100644 index a8d95a0807..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Apollo_14/A14_60x60km.0_3.eq.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.0728836059570313e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.0728836059570313e-05 - - 0 - Gray - - A14_60x60km.0_3.eq.wms - 1 - - - - 0 - - - - Alpha - - A14_60x60km.0_3.eq.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Apollo_14/LRO_Narrow_Angle_Camera_Mosaic_Apollo_14.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Apollo_14/LRO_Narrow_Angle_Camera_Mosaic_Apollo_14.asset deleted file mode 100644 index 6a73f179ed..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Apollo_14/LRO_Narrow_Angle_Camera_Mosaic_Apollo_14.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "A14_60x60km0_3eq", - Name = [[LRO Narrow Angle Camera, Mosaic Apollo 14]], - FilePath = asset.localResource("A14_60x60km.0_3.eq.vrt"), - Description = [[This is a Lunar Reconnaissance Orbiter (LRO) Narrow Angle Camera (NAC) mosaic centered at the Apollo 14 landing site with an extent of 60x60km. Each NAC image was processed in ISIS3 at a resolution of 50cm pixel, color balanced, and synthesized into a single output. Apollo 14 landed on the Moon February 15th 1971.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO Narrow Angle Camera, Mosaic Apollo 14]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=A14_60x60km.0_3.eq%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO Narrow Angle Camera, Mosaic Apollo 14 layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Apollo_15/A15_60x60km.0_2.eq.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Apollo_15/A15_60x60km.0_2.eq.vrt deleted file mode 100644 index 9374bc51bd..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Apollo_15/A15_60x60km.0_2.eq.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.0728836059570313e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.0728836059570313e-05 - - 0 - Gray - - A15_60x60km.0_2.eq.wms - 1 - - - - 0 - - - - Alpha - - A15_60x60km.0_2.eq.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Apollo_15/LRO_Narrow_Angle_Camera_Mosaic_Apollo_15.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Apollo_15/LRO_Narrow_Angle_Camera_Mosaic_Apollo_15.asset deleted file mode 100644 index 58d2e8c1c5..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Apollo_15/LRO_Narrow_Angle_Camera_Mosaic_Apollo_15.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "A15_60x60km0_2eq", - Name = [[LRO Narrow Angle Camera, Mosaic Apollo 15]], - FilePath = asset.localResource("A15_60x60km.0_2.eq.vrt"), - Description = [[This is a Lunar Reconnaisance Orbiter (LRO) Narrow Angle Camera (NAC) mosaic centered at the Apollo 15 landing site with an extent of 60x60km. Each NAC image was processed in ISIS3 at a resolution of 50cm pixel, color balanced, and synthesized into a single output.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO Narrow Angle Camera, Mosaic Apollo 15]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=A15_60x60km.0_2.eq%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO Narrow Angle Camera, Mosaic Apollo 15 layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Apollo_16/A16_60x60km.eq.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Apollo_16/A16_60x60km.eq.vrt deleted file mode 100644 index 24055183f1..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Apollo_16/A16_60x60km.eq.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.0728836059570313e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.0728836059570313e-05 - - 0 - Gray - - A16_60x60km.eq.wms - 1 - - - - 0 - - - - Alpha - - A16_60x60km.eq.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Apollo_16/LRO_Narrow_Angle_Camera_Mosaic_Apollo_16.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Apollo_16/LRO_Narrow_Angle_Camera_Mosaic_Apollo_16.asset deleted file mode 100644 index 77bbbccf99..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Apollo_16/LRO_Narrow_Angle_Camera_Mosaic_Apollo_16.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "A16_60x60kmeq", - Name = [[LRO Narrow Angle Camera, Mosaic Apollo 16]], - FilePath = asset.localResource("A16_60x60km.eq.vrt"), - Description = [[This is a Lunar Reconnaisance Orbiter (LRO) Narrow Angle Camera (NAC) mosaic centered at the Apollo 16 landing site with an extent of 60x60km. Each NAC image was processed in ISIS3 at a resolution of 50cm pixel, color balanced, and synthesized into a single output.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO Narrow Angle Camera, Mosaic Apollo 16]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=A16_60x60km.eq%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO Narrow Angle Camera, Mosaic Apollo 16 layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Apollo_17/A17_60x60km.eq.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Apollo_17/A17_60x60km.eq.vrt deleted file mode 100644 index fa1a59bae7..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Apollo_17/A17_60x60km.eq.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.0728836059570313e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.0728836059570313e-05 - - 0 - Gray - - A17_60x60km.eq.wms - 1 - - - - 0 - - - - Alpha - - A17_60x60km.eq.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Apollo_17/LRO_Narrow_Angle_Camera_Mosaic_Apollo_17.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Apollo_17/LRO_Narrow_Angle_Camera_Mosaic_Apollo_17.asset deleted file mode 100644 index e5b7460152..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Apollo_17/LRO_Narrow_Angle_Camera_Mosaic_Apollo_17.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "NAC_DTM_APOLLO17_MOSAIC_120CM", - Name = [[LRO Narrow Angle Camera, Mosaic Apollo 17]], - FilePath = asset.localResource("NAC_DTM_APOLLO17_MOSAIC_120CM.vrt"), - Description = [[This is a mosaic of Narrow Angle Camera (NAC) images orthorectified with a 5m/ Digital Terrain Model (DTM) of the Apollo 17 landing site. NAC stereo image pairs from the Lunar Reconnaissance Orbiter Camera (LROC) aboard the Lunar Reconnaissance Orbiter (LRO). ). Images were processed ISIS 3.4.4 with SER enhancements and SOCET SET v5.5(c) from BAE Systems to create the DTM, and then the input images were orthorectified.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO Narrow Angle Camera, Mosaic Apollo 17]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=NAC_DTM_APOLLO17_MOSAIC_120CM%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO Narrow Angle Camera, Mosaic Apollo 17 layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Apollo_17/NAC_DTM_APOLLO17_MOSAIC_120CM.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Apollo_17/NAC_DTM_APOLLO17_MOSAIC_120CM.vrt deleted file mode 100644 index ed79194450..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Apollo_17/NAC_DTM_APOLLO17_MOSAIC_120CM.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.1457672119140625e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.1457672119140625e-05 - - 0 - Gray - - NAC_DTM_APOLLO17_MOSAIC_120CM.wms - 1 - - - - 0 - - - - Alpha - - NAC_DTM_APOLLO17_MOSAIC_120CM.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Apollo_17/NAC_DTM_APOLLO17_MOSAIC_120CM.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Apollo_17/NAC_DTM_APOLLO17_MOSAIC_120CM.wms deleted file mode 100644 index 856e4fca1a..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Apollo_17/NAC_DTM_APOLLO17_MOSAIC_120CM.wms +++ /dev/null @@ -1,24 +0,0 @@ - - - https://trek.nasa.gov/tiles/Moon/EQ/NAC_DTM_APOLLO17_MOSAIC_120CM/1.0.0//default/default028mm/${z}/${y}/${x}.png - - - -180 - 90 - 180 - -90 - 2 - 1 - 15 - top - - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - - 256 - 256 - 1 - 10 - - 404,400 - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Apollo_17_Landing_Site/LRO_Narrow_Angle_Camera_Mosaic_Apollo_17_Landing_Site.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Apollo_17_Landing_Site/LRO_Narrow_Angle_Camera_Mosaic_Apollo_17_Landing_Site.asset deleted file mode 100644 index fd95f3ce35..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Apollo_17_Landing_Site/LRO_Narrow_Angle_Camera_Mosaic_Apollo_17_Landing_Site.asset +++ /dev/null @@ -1,32 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "M129086118ndgcs", - Name = [[LRO Narrow Angle Camera, Mosaic Apollo 17 Landing Site]], - FilePath = asset.localResource("M129086118.nd.gcs.vrt"), - Description = [[This is the site where American astronauts Eugene Cernan and Harrison Schmitt made the sixth and final human landing on the Moon of the Apollo program on December 11, 1972. Cernan and Schmitt landed here aboard the lunar module Challenger, while Ronald Evans remained in orbit around the Moon in the command module America. With a PhD in geology, Schmitt was the first and only professional scientist to have visited the Moon. Cernan and Schmitt conducted 3 surface EVAs. The first, lasting 7 hours, 11 minutes, 53 seconds, included deploying the Apollo Lunar Surface Experiments Package (ALSEP) approximately 185 meters west-northwest of the lunar module, and conducting a 3.5-kilometer geologic traverse using the lunar rover to the rim of Steno, a small impact crater south of the landing site. The second surface EVA, lasting 7 hours, 36 minutes, 56 seconds, featured a 20.4-kilometer geologic traverse south and west. Stops included a location at the base of South Massif where a landslide had brought ancient highland rocks from high on the mountain into reach, and at Shorty Crater, which was found to be impact rather than volcanic in origin, but which excavated an older volcanic deposit which yielded the famous “orange soil”, beads of volcanic glass erupted in a lunar fire fountain. The third surface EVA, lasting 7 hours, 15 minutes, 8 seconds, had the astronauts making a 20.4-kilometer geologic traverse north and east to North Massif. Stops on this traverse included taking samples of early lunar crust material from large boulders near the base of the massif that had rolled down from high up on the mountain. Cernan and Schmitt collected 110.52 kilograms of lunar sample material for return to the Earth. - -In this LRO NAC view of the landing site, the descent stage of the Challenger is the largest man-made object visible. The dark markings of the astronauts’ footprints and rover tire tracks are visible around the landing site, especially extending to the west-northwest, where components of the ALSEP are visible. - -The landing site, located at 20.1911 N, 30.7723 E, is in a narrow valley in the Taurus Mountains near the crater Littrow. The Taurus Mountains form part of the Serenitatis impact basin, and sampling some of the ancient highland terrain into which the basin was excavated could help determine the date of the basin’s formation. Mare basalt subsequently flooded the floor of the valley, and after that parts of the area were blanketed by pyroclastic ash deposits erupting from dark-haloed volcanic craters. The site could therefore provide access to a diverse range of sample material.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO Narrow Angle Camera, Mosaic Apollo 17 Landing Site]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=M129086118.nd.gcs%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO Narrow Angle Camera, Mosaic Apollo 17 Landing Site layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Apollo_17_Landing_Site/M129086118.nd.gcs.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Apollo_17_Landing_Site/M129086118.nd.gcs.vrt deleted file mode 100644 index 59ca0bd8d3..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Apollo_17_Landing_Site/M129086118.nd.gcs.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.0728836059570313e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.0728836059570313e-05 - - 0 - Gray - - M129086118.nd.gcs.wms - 1 - - - - 0 - - - - Alpha - - M129086118.nd.gcs.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Ingenii/LRO_Narrow_Angle_Camera_Mosaic_Ingenii.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Ingenii/LRO_Narrow_Angle_Camera_Mosaic_Ingenii.asset deleted file mode 100644 index 66f367dd1e..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Ingenii/LRO_Narrow_Angle_Camera_Mosaic_Ingenii.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "ingenii_skylight", - Name = [[LRO Narrow Angle Camera, Mosaic Ingenii]], - FilePath = asset.localResource("ingenii_skylight.vrt"), - Description = [[Mare Ingenii is notable for being one of the few examples of a mare on the far side of the Moon, and the site for notable lunar swirls, enigmatic bright albedo features. This was enough to qualify the area as a Constellation Region of Interest. However, the area became even more interesting with the discovery of a lunar pit in imagery obtained using the Kaguya Terrain Camera. It measures about 130 m in diameter, and researchers speculate that the pit could be a skylight resulting from the collapse of the roof of a lava tube. Whether this is actually the case, and if so, the accessibility and extent of the lava tube have yet to be determined. However, such lava tubes are of great interest as potential locations for lunar bases, offering protection from extreme swings in temperature, galactic and solar radiation, and meteoroid impacts. This data layer was obtained using the Narrow Angle Camera aboard the Lunar Reconnaissance Orbiter and is a is a mosaic of 2 NAC strips centered on the Mare Ingenii pit.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO Narrow Angle Camera, Mosaic Ingenii]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=ingenii_skylight%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO Narrow Angle Camera, Mosaic Ingenii layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Ingenii/ingenii_skylight.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Ingenii/ingenii_skylight.vrt deleted file mode 100644 index 3245076e2d..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Ingenii/ingenii_skylight.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.0728836059570313e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.0728836059570313e-05 - - 0 - Gray - - ingenii_skylight.wms - 1 - - - - 0 - - - - Alpha - - ingenii_skylight.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Marius/LRO_Narrow_Angle_Camera_Mosaic_Marius.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Marius/LRO_Narrow_Angle_Camera_Mosaic_Marius.asset deleted file mode 100644 index 86ee29e22b..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Marius/LRO_Narrow_Angle_Camera_Mosaic_Marius.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "marius_skylight", - Name = [[LRO Narrow Angle Camera, Mosaic Marius]], - FilePath = asset.localResource("marius_skylight.vrt"), - Description = [[The Marius Hills represents one of the most prominent collection of volcanic domes on the Moon. The area was a candidate landing site for the Apollo program and was also designated as a Constellation Region of Interest. It remains a site under consideration for possible future missions. In addition to volcanic domes, the area features basaltic flows, sinuous rilles, and one prominent lunar pit. The Marius Hills pit measures 58 x 49 m in diameter and 40 m deep. It was first noticed in an image taken with the Kaguya Terrain Camera on May 20, 2008, by a team led by Junichi Haruyama . The fact that the Marius Hills pit is located on the floor of a sinuous rille has encouraged speculation the pit could be a skylight resulting from the collapse of the roof of a lava tube. Whether this is actually the case, and if so, the accessibility and extent of the lava tube have yet to be determined. However, such lava tubes are of great interest as potential locations for lunar bases, offering protection from extreme swings in temperature, galactic and solar radiation, and meteoroid impacts. This data layer was obtained using the Narrow Angle Camera aboard the Lunar Reconnaissance Orbiter and is a is a mosaic of 2 NAC strips centered on the Marius Hills pit.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO Narrow Angle Camera, Mosaic Marius]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=marius_skylight%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO Narrow Angle Camera, Mosaic Marius layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Marius/marius_skylight.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Marius/marius_skylight.vrt deleted file mode 100644 index 48c3f87956..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Marius/marius_skylight.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.0728836059570313e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.0728836059570313e-05 - - 0 - Gray - - marius_skylight.wms - 1 - - - - 0 - - - - Alpha - - marius_skylight.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Schrodinger/LRO_NAC_Schrodinger.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Schrodinger/LRO_NAC_Schrodinger.vrt deleted file mode 100644 index 388d520e58..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Schrodinger/LRO_NAC_Schrodinger.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Gray - - LRO_NAC_Schrodinger.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_Schrodinger.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Schrodinger/LRO_Narrow_Angle_Camera_Mosaic_Schrodinger.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Schrodinger/LRO_Narrow_Angle_Camera_Mosaic_Schrodinger.asset deleted file mode 100644 index 3d08e34098..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Schrodinger/LRO_Narrow_Angle_Camera_Mosaic_Schrodinger.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_Schrodinger", - Name = [[LRO Narrow Angle Camera, Mosaic Schrodinger]], - FilePath = asset.localResource("LRO_NAC_Schrodinger.vrt"), - Description = [[This is a visible image mosaic generated using Lunar Reconnaissance Orbiter Camera (LROC) Narrow Angle Camera (NAC) images from the Lunar Reconnaissance Orbiter mission. The images were orthorectified using a digital elevation model (DEM) created from LROC NAC stereo images, when available, or LRO's Lunar Orbiter Laser Altimeter (LOLA) global DEM. The mosaic is generated at the same resolution at which the individual LROC NAC images were gathered, which is approximately 0.5 meters/pixel. The mosaic was registered horizontally to the LOLA global DEM.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO Narrow Angle Camera, Mosaic Schrodinger]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_Schrodinger%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO Narrow Angle Camera, Mosaic Schrodinger layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Schrodinger_Extra/LRO_Narrow_Angle_Camera_Mosaic_Schrodinger_Extra.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Schrodinger_Extra/LRO_Narrow_Angle_Camera_Mosaic_Schrodinger_Extra.asset deleted file mode 100644 index 4c22c4a065..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Schrodinger_Extra/LRO_Narrow_Angle_Camera_Mosaic_Schrodinger_Extra.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "schrodingerextraswathseq", - Name = [[LRO Narrow Angle Camera, Mosaic Schrodinger Extra]], - FilePath = asset.localResource("schrodinger.extraswaths.eq.vrt"), - Description = [[TBD]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO Narrow Angle Camera, Mosaic Schrodinger Extra]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=schrodinger.extraswaths.eq%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO Narrow Angle Camera, Mosaic Schrodinger Extra layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Schrodinger_Extra/schrodinger.extraswaths.eq.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Schrodinger_Extra/schrodinger.extraswaths.eq.vrt deleted file mode 100644 index d67526a8f6..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Schrodinger_Extra/schrodinger.extraswaths.eq.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Gray - - schrodinger.extraswaths.eq.wms - 1 - - - - 0 - - - - Alpha - - schrodinger.extraswaths.eq.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Schrodinger_Landing_Site/LRO_NAC_SchrodingerLandingSite2.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Schrodinger_Landing_Site/LRO_NAC_SchrodingerLandingSite2.vrt deleted file mode 100644 index c21a2819e4..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Schrodinger_Landing_Site/LRO_NAC_SchrodingerLandingSite2.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Gray - - LRO_NAC_SchrodingerLandingSite2.wms - 1 - - - - 0 - - - - Alpha - - LRO_NAC_SchrodingerLandingSite2.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Schrodinger_Landing_Site/LRO_Narrow_Angle_Camera_Mosaic_Schrodinger_Landing_Site.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Schrodinger_Landing_Site/LRO_Narrow_Angle_Camera_Mosaic_Schrodinger_Landing_Site.asset deleted file mode 100644 index a3a5081e83..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Schrodinger_Landing_Site/LRO_Narrow_Angle_Camera_Mosaic_Schrodinger_Landing_Site.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_NAC_SchrodingerLandingSite2", - Name = [[LRO Narrow Angle Camera, Mosaic Schrodinger Landing Site]], - FilePath = asset.localResource("LRO_NAC_SchrodingerLandingSite2.vrt"), - Description = [[This is a visible image mosaic generated using Lunar Reconnaissance Orbiter Camera (LROC) Narrow Angle Camera (NAC) images from the Lunar Reconnaissance Orbiter mission. The images were orthorectified using a digital elevation model (DEM) created from LROC NAC stereo images, when available, or LRO's Lunar Orbiter Laser Altimeter (LOLA) global DEM. The mosaic is generated at the same resolution at which the individual LROC NAC images were gathered, which is approximately 0.5 meters/pixel. The mosaic was registered horizontally to the LOLA global DEM.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO Narrow Angle Camera, Mosaic Schrodinger Landing Site]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_NAC_SchrodingerLandingSite2%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO Narrow Angle Camera, Mosaic Schrodinger Landing Site layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Schrodinger_NorthEast/LRO_Narrow_Angle_Camera_Mosaic_Schrodinger_NorthEast.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Schrodinger_NorthEast/LRO_Narrow_Angle_Camera_Mosaic_Schrodinger_NorthEast.asset deleted file mode 100644 index 7ca8cdab67..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Schrodinger_NorthEast/LRO_Narrow_Angle_Camera_Mosaic_Schrodinger_NorthEast.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "schrodingerneequirect", - Name = [[LRO Narrow Angle Camera, Mosaic Schrodinger NorthEast]], - FilePath = asset.localResource("schrodinger.ne.equirect.vrt"), - Description = [[This is a visible image mosaic generated using Lunar Reconnaissance Orbiter Camera (LROC) Narrow Angle Camera (NAC) images from the Lunar Reconnaissance Orbiter mission. Each NAC image was registered horizontally to the LRO's Lunar Orbiter Laser Altimeter (LOLA) global DEM, and then mosaicked together and color balanced. The mosaic is generated at the same resolution at which the individual LROC NAC images were gathered, which is approximately 1 meters/pixel.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO Narrow Angle Camera, Mosaic Schrodinger NorthEast]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=schrodinger.ne.equirect%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO Narrow Angle Camera, Mosaic Schrodinger NorthEast layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Schrodinger_NorthEast/schrodinger.ne.equirect.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Schrodinger_NorthEast/schrodinger.ne.equirect.vrt deleted file mode 100644 index f5df974544..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Schrodinger_NorthEast/schrodinger.ne.equirect.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Gray - - schrodinger.ne.equirect.wms - 1 - - - - 0 - - - - Alpha - - schrodinger.ne.equirect.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Schrodinger_SouthCenter/LRO_Narrow_Angle_Camera_Mosaic_Schrodinger_SouthCenter.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Schrodinger_SouthCenter/LRO_Narrow_Angle_Camera_Mosaic_Schrodinger_SouthCenter.asset deleted file mode 100644 index ae3434b564..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Schrodinger_SouthCenter/LRO_Narrow_Angle_Camera_Mosaic_Schrodinger_SouthCenter.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "schrodingerscequirect", - Name = [[LRO Narrow Angle Camera, Mosaic Schrodinger SouthCenter]], - FilePath = asset.localResource("schrodinger.sc.equirect.vrt"), - Description = [[This is a visible image mosaic generated using Lunar Reconnaissance Orbiter Camera (LROC) Narrow Angle Camera (NAC) images from the Lunar Reconnaissance Orbiter mission. Each NAC image was registered horizontally to the LRO's Lunar Orbiter Laser Altimeter (LOLA) global DEM, and then mosaicked together and color balanced. The mosaic is generated at the same resolution at which the individual LROC NAC images were gathered, which is approximately 1 meters/pixel.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO Narrow Angle Camera, Mosaic Schrodinger SouthCenter]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=schrodinger.sc.equirect%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO Narrow Angle Camera, Mosaic Schrodinger SouthCenter layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Schrodinger_SouthCenter/schrodinger.sc.equirect.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Schrodinger_SouthCenter/schrodinger.sc.equirect.vrt deleted file mode 100644 index 885dc44c69..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Schrodinger_SouthCenter/schrodinger.sc.equirect.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Gray - - schrodinger.sc.equirect.wms - 1 - - - - 0 - - - - Alpha - - schrodinger.sc.equirect.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Schrodinger_SouthEast/LRO_Narrow_Angle_Camera_Mosaic_Schrodinger_SouthEast.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Schrodinger_SouthEast/LRO_Narrow_Angle_Camera_Mosaic_Schrodinger_SouthEast.asset deleted file mode 100644 index 69fbd67cf6..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Schrodinger_SouthEast/LRO_Narrow_Angle_Camera_Mosaic_Schrodinger_SouthEast.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "schrodingerseequirect", - Name = [[LRO Narrow Angle Camera, Mosaic Schrodinger SouthEast]], - FilePath = asset.localResource("schrodinger.se.equirect.vrt"), - Description = [[This is a visible image mosaic generated using Lunar Reconnaissance Orbiter Camera (LROC) Narrow Angle Camera (NAC) images from the Lunar Reconnaissance Orbiter mission. Each NAC image was registered horizontally to the LRO's Lunar Orbiter Laser Altimeter (LOLA) global DEM, and then mosaicked together and color balanced. The mosaic is generated at the same resolution at which the individual LROC NAC images were gathered, which is approximately 1 meters/pixel.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO Narrow Angle Camera, Mosaic Schrodinger SouthEast]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=schrodinger.se.equirect%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO Narrow Angle Camera, Mosaic Schrodinger SouthEast layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Schrodinger_SouthEast/schrodinger.se.equirect.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Schrodinger_SouthEast/schrodinger.se.equirect.vrt deleted file mode 100644 index d43b2fbfc9..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Schrodinger_SouthEast/schrodinger.se.equirect.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Gray - - schrodinger.se.equirect.wms - 1 - - - - 0 - - - - Alpha - - schrodinger.se.equirect.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Small_Tranquilltatis_1/LRO_Narrow_Angle_Camera_Mosaic_Small_Tranquilltatis_1.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Small_Tranquilltatis_1/LRO_Narrow_Angle_Camera_Mosaic_Small_Tranquilltatis_1.asset deleted file mode 100644 index 0c1468ae99..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Small_Tranquilltatis_1/LRO_Narrow_Angle_Camera_Mosaic_Small_Tranquilltatis_1.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "small_tranq_skylight_1", - Name = [[LRO Narrow Angle Camera, Mosaic Small Tranquilltatis 1]], - FilePath = asset.localResource("small_tranq_skylight_1.vrt"), - Description = [[The discovery of three lunar pits using imagery from imagery obtained using the Kaguya Terrain Camera led researchers to wonder how common such features might be. A very successful campaign was mounted to search Lunar Reconnaissance Orbiter Narrow Angle Camera (NAC) images to see if the higher resolution of NAC might reveal more lunar pits smaller than were detectable with the Kaguya Terrain Camera (R. V. Wagner and M. S. Robinson, 2015, UPDATE: THE SEARCH FOR LUNAR PITS, 2nd International Planetary Caves Conference). Researchers speculate that these lunar pits could be skylights resulting from roof collapse in lava tubes. Whether this is actually the case, and if so, the accessibility and extent of the lava tubes have yet to be determined. However, such lava tubes are of great interest as potential locations for lunar bases, offering protection from extreme swings in temperature, galactic and solar radiation, and meteoroid impacts. This data layer was obtained using the Narrow Angle Camera aboard the Lunar Reconnaissance Orbiter and is a is a mosaic of 2 NAC strips centered on a small pit in Mare Tranquillitatis.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO Narrow Angle Camera, Mosaic Small Tranquilltatis 1]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=small_tranq_skylight_1%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO Narrow Angle Camera, Mosaic Small Tranquilltatis 1 layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Small_Tranquilltatis_1/small_tranq_skylight_1.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Small_Tranquilltatis_1/small_tranq_skylight_1.vrt deleted file mode 100644 index 2385c6e42c..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Small_Tranquilltatis_1/small_tranq_skylight_1.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.0728836059570313e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.0728836059570313e-05 - - 0 - Gray - - small_tranq_skylight_1.wms - 1 - - - - 0 - - - - Alpha - - small_tranq_skylight_1.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Small_Tranquilltatis_2/LRO_Narrow_Angle_Camera_Mosaic_Small_Tranquilltatis_2.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Small_Tranquilltatis_2/LRO_Narrow_Angle_Camera_Mosaic_Small_Tranquilltatis_2.asset deleted file mode 100644 index e3a2d060db..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Small_Tranquilltatis_2/LRO_Narrow_Angle_Camera_Mosaic_Small_Tranquilltatis_2.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "small_tranq_skylight_2", - Name = [[LRO Narrow Angle Camera, Mosaic Small Tranquilltatis 2]], - FilePath = asset.localResource("small_tranq_skylight_2.vrt"), - Description = [[The discovery of three lunar pits using imagery from imagery obtained using the Kaguya Terrain Camera led researchers to wonder how common such features might be. A very successful campaign was mounted to search Lunar Reconnaissance Orbiter Narrow Angle Camera (NAC) images to see if the higher resolution of NAC might reveal more lunar pits smaller than were detectable with the Kaguya Terrain Camera (R. V. Wagner and M. S. Robinson, 2015, UPDATE: THE SEARCH FOR LUNAR PITS, 2nd International Planetary Caves Conference). Researchers speculate that these lunar pits could be skylights resulting from roof collapse in lava tubes. Whether this is actually the case, and if so, the accessibility and extent of the lava tubes have yet to be determined. However, such lava tubes are of great interest as potential locations for lunar bases, offering protection from extreme swings in temperature, galactic and solar radiation, and meteoroid impacts. This data layer was obtained using the Narrow Angle Camera aboard the Lunar Reconnaissance Orbiter and is a is a mosaic of 2 NAC strips centered on a small pit in Mare Tranquillitatis.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO Narrow Angle Camera, Mosaic Small Tranquilltatis 2]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=small_tranq_skylight_2%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO Narrow Angle Camera, Mosaic Small Tranquilltatis 2 layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Small_Tranquilltatis_2/small_tranq_skylight_2.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Small_Tranquilltatis_2/small_tranq_skylight_2.vrt deleted file mode 100644 index 01d1418ba1..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Mosaic_Small_Tranquilltatis_2/small_tranq_skylight_2.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.0728836059570313e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.0728836059570313e-05 - - 0 - Gray - - small_tranq_skylight_2.wms - 1 - - - - 0 - - - - Alpha - - small_tranq_skylight_2.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Slope_Apollo_17/LRO_Narrow_Angle_Camera_Slope_Apollo_17.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Slope_Apollo_17/LRO_Narrow_Angle_Camera_Slope_Apollo_17.asset deleted file mode 100644 index 2eecba4395..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Slope_Apollo_17/LRO_Narrow_Angle_Camera_Slope_Apollo_17.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "NAC_DTM_APOLLO17_SLOPE", - Name = [[LRO Narrow Angle Camera, Slope Apollo 17]], - FilePath = asset.localResource("NAC_DTM_APOLLO17_SLOPE.vrt"), - Description = [[This is a color slope map derived from a 5m Digital Terrain Model (DTM) of the Apollo 17 landing site created with Narrow Angle Camera (NAC) stereo image pairs from the Lunar Reconnaissance Orbiter Camera (LROC) aboard the Lunar Reconnaissance Orbiter (LRO). Image is 3-channel RGB TIFF, 8 bits/sample, 3 samples/pixel in single image plane configuration]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO Narrow Angle Camera, Slope Apollo 17]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=NAC_DTM_APOLLO17_SLOPE%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO Narrow Angle Camera, Slope Apollo 17 layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Slope_Apollo_17/NAC_DTM_APOLLO17_SLOPE.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Slope_Apollo_17/NAC_DTM_APOLLO17_SLOPE.vrt deleted file mode 100644 index af973e89c7..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_Narrow_Angle_Camera_Slope_Apollo_17/NAC_DTM_APOLLO17_SLOPE.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - NAC_DTM_APOLLO17_SLOPE.wms - 1 - - - - 0 - - - - 0 - Green - - NAC_DTM_APOLLO17_SLOPE.wms - 2 - - - - 0 - - - - 0 - Blue - - NAC_DTM_APOLLO17_SLOPE.wms - 3 - - - - 0 - - - - Alpha - - NAC_DTM_APOLLO17_SLOPE.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_WAC-GLD100_DEM.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_WAC-GLD100_DEM.asset new file mode 100644 index 0000000000..b79cfafafa --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_WAC-GLD100_DEM.asset @@ -0,0 +1,34 @@ +-- This file was automatically generated using a script found at +-- https://github.com/OpenSpace/scripts/treks-to-openspace. See the README.md file +-- in that repository for more information on how to run the script to update these +-- files. In particular in the case of errors, prefer to change that script rather +-- than the individual files + +local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier + +local treks_LRO_WACGLD100_Gray_79S79N_256ppd = { + Identifier = "LRO_WACGLD100_Gray_79S79N_256ppd", + Name = [[LRO WAC-GLD100 DEM, Grayscale]], + FilePath = asset.localResource("LRO_WAC-GLD100_DEM/Grayscale.vrt"), + Description = [[]] +} + +asset.onInitialize(function() + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_WACGLD100_Gray_79S79N_256ppd) +end) + +asset.onDeinitialize(function() + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_WACGLD100_Gray_79S79N_256ppd") +end) + +asset.export("LRO_WACGLD100_Gray_79S79N_256ppd", treks_LRO_WACGLD100_Gray_79S79N_256ppd) + + +asset.meta = { + Name = [[NASA Treks Layers for Moon LRO_WAC-GLD100_DEM], + Version = "1.0", + Author = "NASA/Treks", + URL = "https://trek.nasa.gov/moon", + License = "NASA/Treks", + Description = [[LRO_WAC-GLD100_DEM layers from NASA/Treks for Moon]] +} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_WAC-GLD100_DEM/Grayscale.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_WAC-GLD100_DEM/Grayscale.vrt new file mode 100644 index 0000000000..de4cc775b4 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_WAC-GLD100_DEM/Grayscale.vrt @@ -0,0 +1,29 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 5.4931640625000000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -5.4931640625000000e-03 + + 0 + Gray + + Grayscale.wms + 1 + + + + 0 + + + + Alpha + + Grayscale.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_WAC-GLD100_DEM_Grayscale/LRO_WAC-GLD100_Gray_79S79N_256ppd.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_WAC-GLD100_DEM/Grayscale.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_WAC-GLD100_DEM_Grayscale/LRO_WAC-GLD100_Gray_79S79N_256ppd.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_WAC-GLD100_DEM/Grayscale.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_WAC-GLD100_DEM_Grayscale/LRO_WAC-GLD100_DEM_Grayscale.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_WAC-GLD100_DEM_Grayscale/LRO_WAC-GLD100_DEM_Grayscale.asset deleted file mode 100644 index 21cb75370b..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_WAC-GLD100_DEM_Grayscale/LRO_WAC-GLD100_DEM_Grayscale.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_WAC-GLD100_Gray_79S79N_256ppd", - Name = [[LRO WAC-GLD100 DEM, Grayscale]], - FilePath = asset.localResource("LRO_WAC-GLD100_Gray_79S79N_256ppd.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO WAC-GLD100 DEM, Grayscale]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_WAC-GLD100_Gray_79S79N_256ppd%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO WAC-GLD100 DEM, Grayscale layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_WAC-GLD100_DEM_Grayscale/LRO_WAC-GLD100_Gray_79S79N_256ppd.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_WAC-GLD100_DEM_Grayscale/LRO_WAC-GLD100_Gray_79S79N_256ppd.vrt deleted file mode 100644 index 243823897e..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_WAC-GLD100_DEM_Grayscale/LRO_WAC-GLD100_Gray_79S79N_256ppd.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 5.4931640625000000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -5.4931640625000000e-03 - - 0 - Gray - - LRO_WAC-GLD100_Gray_79S79N_256ppd.wms - 1 - - - - 0 - - - - Alpha - - LRO_WAC-GLD100_Gray_79S79N_256ppd.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_WAC_GLD100_DEM.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_WAC_GLD100_DEM.asset new file mode 100644 index 0000000000..b1e8e6ab82 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_WAC_GLD100_DEM.asset @@ -0,0 +1,44 @@ +-- This file was automatically generated using a script found at +-- https://github.com/OpenSpace/scripts/treks-to-openspace. See the README.md file +-- in that repository for more information on how to run the script to update these +-- files. In particular in the case of errors, prefer to change that script rather +-- than the individual files + +local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier + +local treks_LRO_WACGLD100_ClrShade_79S79N_256ppd = { + Identifier = "LRO_WACGLD100_ClrShade_79S79N_256ppd", + Name = [[LRO WAC GLD100 DEM, ColorHillShade]], + FilePath = asset.localResource("LRO_WAC_GLD100_DEM/ColorHillShade.vrt"), + Description = [[]] +} + +local treks_LRO_WACGLD100_Shade_79S79N_256ppd = { + Identifier = "LRO_WACGLD100_Shade_79S79N_256ppd", + Name = [[LRO WAC GLD100 DEM, Hillshade]], + FilePath = asset.localResource("LRO_WAC_GLD100_DEM/Hillshade.vrt"), + Description = [[]] +} + +asset.onInitialize(function() + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_WACGLD100_ClrShade_79S79N_256ppd) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_LRO_WACGLD100_Shade_79S79N_256ppd) +end) + +asset.onDeinitialize(function() + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_WACGLD100_ClrShade_79S79N_256ppd") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_LRO_WACGLD100_Shade_79S79N_256ppd") +end) + +asset.export("LRO_WACGLD100_ClrShade_79S79N_256ppd", treks_LRO_WACGLD100_ClrShade_79S79N_256ppd) +asset.export("LRO_WACGLD100_Shade_79S79N_256ppd", treks_LRO_WACGLD100_Shade_79S79N_256ppd) + + +asset.meta = { + Name = [[NASA Treks Layers for Moon LRO_WAC_GLD100_DEM], + Version = "1.0", + Author = "NASA/Treks", + URL = "https://trek.nasa.gov/moon", + License = "NASA/Treks", + Description = [[LRO_WAC_GLD100_DEM layers from NASA/Treks for Moon]] +} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_WAC_GLD100_DEM/ColorHillShade.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_WAC_GLD100_DEM/ColorHillShade.vrt new file mode 100644 index 0000000000..324bdaecbe --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_WAC_GLD100_DEM/ColorHillShade.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 5.4931640625000000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -5.4931640625000000e-03 + + 0 + Red + + ColorHillShade.wms + 1 + + + + 0 + + + + 0 + Green + + ColorHillShade.wms + 2 + + + + 0 + + + + 0 + Blue + + ColorHillShade.wms + 3 + + + + 0 + + + + Alpha + + ColorHillShade.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_WAC_GLD100_DEM_ColorHillShade/LRO_WAC-GLD100_ClrShade_79S79N_256ppd.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_WAC_GLD100_DEM/ColorHillShade.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_WAC_GLD100_DEM_ColorHillShade/LRO_WAC-GLD100_ClrShade_79S79N_256ppd.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_WAC_GLD100_DEM/ColorHillShade.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_WAC_GLD100_DEM/Hillshade.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_WAC_GLD100_DEM/Hillshade.vrt new file mode 100644 index 0000000000..025306d592 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_WAC_GLD100_DEM/Hillshade.vrt @@ -0,0 +1,29 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 5.4931640625000000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -5.4931640625000000e-03 + + 0 + Gray + + Hillshade.wms + 1 + + + + 0 + + + + Alpha + + Hillshade.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_WAC_GLD100_DEM_Hillshade/LRO_WAC-GLD100_Shade_79S79N_256ppd.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_WAC_GLD100_DEM/Hillshade.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_WAC_GLD100_DEM_Hillshade/LRO_WAC-GLD100_Shade_79S79N_256ppd.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_WAC_GLD100_DEM/Hillshade.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_WAC_GLD100_DEM_ColorHillShade/LRO_WAC-GLD100_ClrShade_79S79N_256ppd.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_WAC_GLD100_DEM_ColorHillShade/LRO_WAC-GLD100_ClrShade_79S79N_256ppd.vrt deleted file mode 100644 index 78ef574a46..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_WAC_GLD100_DEM_ColorHillShade/LRO_WAC-GLD100_ClrShade_79S79N_256ppd.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 5.4931640625000000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -5.4931640625000000e-03 - - 0 - Red - - LRO_WAC-GLD100_ClrShade_79S79N_256ppd.wms - 1 - - - - 0 - - - - 0 - Green - - LRO_WAC-GLD100_ClrShade_79S79N_256ppd.wms - 2 - - - - 0 - - - - 0 - Blue - - LRO_WAC-GLD100_ClrShade_79S79N_256ppd.wms - 3 - - - - 0 - - - - Alpha - - LRO_WAC-GLD100_ClrShade_79S79N_256ppd.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_WAC_GLD100_DEM_ColorHillShade/LRO_WAC_GLD100_DEM_ColorHillShade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_WAC_GLD100_DEM_ColorHillShade/LRO_WAC_GLD100_DEM_ColorHillShade.asset deleted file mode 100644 index b4faaa304e..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_WAC_GLD100_DEM_ColorHillShade/LRO_WAC_GLD100_DEM_ColorHillShade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_WAC-GLD100_ClrShade_79S79N_256ppd", - Name = [[LRO WAC GLD100 DEM, ColorHillShade]], - FilePath = asset.localResource("LRO_WAC-GLD100_ClrShade_79S79N_256ppd.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO WAC GLD100 DEM, ColorHillShade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_WAC-GLD100_ClrShade_79S79N_256ppd%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO WAC GLD100 DEM, ColorHillShade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_WAC_GLD100_DEM_Hillshade/LRO_WAC-GLD100_Shade_79S79N_256ppd.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_WAC_GLD100_DEM_Hillshade/LRO_WAC-GLD100_Shade_79S79N_256ppd.vrt deleted file mode 100644 index 188e286172..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_WAC_GLD100_DEM_Hillshade/LRO_WAC-GLD100_Shade_79S79N_256ppd.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400.0,0.0]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 5.4931640625000000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -5.4931640625000000e-03 - - 0 - Gray - - LRO_WAC-GLD100_Shade_79S79N_256ppd.wms - 1 - - - - 0 - - - - Alpha - - LRO_WAC-GLD100_Shade_79S79N_256ppd.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_WAC_GLD100_DEM_Hillshade/LRO_WAC_GLD100_DEM_Hillshade.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_WAC_GLD100_DEM_Hillshade/LRO_WAC_GLD100_DEM_Hillshade.asset deleted file mode 100644 index 2673aa6250..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_WAC_GLD100_DEM_Hillshade/LRO_WAC_GLD100_DEM_Hillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_WAC-GLD100_Shade_79S79N_256ppd", - Name = [[LRO WAC GLD100 DEM, Hillshade]], - FilePath = asset.localResource("LRO_WAC-GLD100_Shade_79S79N_256ppd.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO WAC GLD100 DEM, Hillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_WAC-GLD100_Shade_79S79N_256ppd%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO WAC GLD100 DEM, Hillshade layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_WAC_Mosaic_v2/LRO_WAC_Mosaic_Global_303ppd_v02.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_WAC_Mosaic_v2/LRO_WAC_Mosaic_Global_303ppd_v02.vrt deleted file mode 100644 index ef37e7cad6..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_WAC_Mosaic_v2/LRO_WAC_Mosaic_Global_303ppd_v02.vrt +++ /dev/null @@ -1,29 +0,0 @@ - - GEOGCS["GCS_Moon",DATUM["Moon",SPHEROID["Moon",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.3732910156250000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.3732910156250000e-03 - - 0 - Gray - - LRO_WAC_Mosaic_Global_303ppd_v02.wms - 1 - - - - 0 - - - - Alpha - - LRO_WAC_Mosaic_Global_303ppd_v02.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_WAC_Mosaic_v2/LRO_WAC_Mosaic_v2.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_WAC_Mosaic_v2/LRO_WAC_Mosaic_v2.asset deleted file mode 100644 index a07c5f7492..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_WAC_Mosaic_v2/LRO_WAC_Mosaic_v2.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "LRO_WAC_Mosaic_Global_303ppd_v02", - Name = [[LRO WAC Mosaic v2]], - FilePath = asset.localResource("LRO_WAC_Mosaic_Global_303ppd_v02.vrt"), - Description = [[]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO WAC Mosaic v2]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=LRO_WAC_Mosaic_Global_303ppd_v02%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO WAC Mosaic v2 layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_and_Kaguya_Multi_Instruments_1895.21mpp.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_and_Kaguya_Multi_Instruments_1895.21mpp.asset new file mode 100644 index 0000000000..b712baf75b --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_and_Kaguya_Multi_Instruments_1895.21mpp.asset @@ -0,0 +1,74 @@ +-- This file was automatically generated using a script found at +-- https://github.com/OpenSpace/scripts/treks-to-openspace. See the README.md file +-- in that repository for more information on how to run the script to update these +-- files. In particular in the case of errors, prefer to change that script rather +-- than the individual files + +local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier + +local treks_3He_Dig_Here_Layer = { + Identifier = "3He_Dig_Here_Layer", + Name = [[LRO and Kaguya Multi Instruments 1895.21mpp, 3He Dig Here]], + FilePath = asset.localResource("LRO_and_Kaguya_Multi_Instruments_1895.21mpp/3He_Dig_Here.vrt"), + Description = [[This data represents potential Helium-3 deposits and other solar wind implanted volatiles on the Moon. This data layer has been generated by querying specific criteria from the following datasets: Titanium Oxide (TiO2) abundance from Lunar Reconnaissance Orbiter’s (LRO) Wide-Angle Camera (WAC), Optical Maturity Index (OMAT) from Kaguya Lunar Multiband Imager (MI), slope from LRO’s Lunar Orbital Laser Altimeter (LOLA), and Rock Abundance from LRO’s Lunar Radiometer Experiment (DIVINER). For this “Dig Here” layer, the following criteria has been applied: TiO2 > 9.0%, OMAT < 0.15, Slope < 4°, and rock abundance < 0.02%. The research on Helium-3 as a potential use for fuel for a fusion cell and the data presented as a result of this research culminated as an outcome of a group project at the Colorado School of Mines. The research for this data should be credited to: Stewart Ray, Colleen Olson, Lisa Robibero, Steven Coutts, and Maxwell Sissman of the Planetary and Terrestrial Mining Sciences Symposium and Space Resources Roundtable, Colorado School of Mines.]] +} + +local treks_3He_Likely_Layer = { + Identifier = "3He_Likely_Layer", + Name = [[LRO and Kaguya Multi Instruments 1895.21mpp, 3He Likely]], + FilePath = asset.localResource("LRO_and_Kaguya_Multi_Instruments_1895.21mpp/3He_Likely.vrt"), + Description = [[This data represents potential Helium-3 deposits and other solar wind implanted volatiles on the Moon. This data layer has been generated by querying specific criteria from the following datasets: Titanium Oxide (TiO2) abundance from Lunar Reconnaissance Orbiter’s (LRO) Wide-Angle Camera (WAC), Optical Maturity Index (OMAT) from Kaguya Lunar Multiband Imager (MI), slope from LRO’s Lunar Orbital Laser Altimeter (LOLA), and Rock Abundance from LRO’s Lunar Radiometer Experiment (DIVINER). For this “Likely” layer, the following criteria has been applied: TiO2 > 3.0%, OMAT < 0.25, Slope < 20°, and rock abundance < 0.10%. The research on Helium-3 as a potential use for fuel for a fusion cell and the data presented as a result of this research culminated as an outcome of a group project at the Colorado School of Mines. The research for this data should be credited to: Stewart Ray, Colleen Olson, Lisa Robibero, Steven Coutts, and Maxwell Sissman of the Planetary and Terrestrial Mining Sciences Symposium and Space Resources Roundtable, Colorado School of Mines.]] +} + +local treks_3He_More_Likely_Layer = { + Identifier = "3He_More_Likely_Layer", + Name = [[LRO and Kaguya Multi Instruments 1895.21mpp, 3He More Likely]], + FilePath = asset.localResource("LRO_and_Kaguya_Multi_Instruments_1895.21mpp/3He_More_Likely.vrt"), + Description = [[This data represents potential Helium-3 deposits and other solar wind implanted volatiles on the Moon. This data layer has been generated by querying specific criteria from the following datasets: Titanium Oxide (TiO2) abundance from Lunar Reconnaissance Orbiter’s (LRO) Wide-Angle Camera (WAC), Optical Maturity Index (OMAT) from Kaguya Lunar Multiband Imager (MI), slope from LRO’s Lunar Orbital Laser Altimeter (LOLA), and Rock Abundance from LRO’s Lunar Radiometer Experiment (DIVINER). For this “More Likely” layer, the following criteria has been applied: TiO2 > 4.5%, OMAT < 0.225, Slope < 16°, and rock abundance < 0.08%. The research on Helium-3 as a potential use for fuel for a fusion cell and the data presented as a result of this research culminated as an outcome of a group project at the Colorado School of Mines. The research for this data should be credited to: Stewart Ray, Colleen Olson, Lisa Robibero, Steven Coutts, and Maxwell Sissman of the Planetary and Terrestrial Mining Sciences Symposium and Space Resources Roundtable, Colorado School of Mines.]] +} + +local treks_3He_Most_Likely_Layer = { + Identifier = "3He_Most_Likely_Layer", + Name = [[LRO and Kaguya Multi Instruments 1895.21mpp, 3He Most Likely]], + FilePath = asset.localResource("LRO_and_Kaguya_Multi_Instruments_1895.21mpp/3He_Most_Likely.vrt"), + Description = [[This data represents potential Helium-3 deposits and other solar wind implanted volatiles on the Moon. This data layer has been generated by querying specific criteria from the following datasets: Titanium Oxide (TiO2) abundance from Lunar Reconnaissance Orbiter’s (LRO) Wide-Angle Camera (WAC), Optical Maturity Index (OMAT) from Kaguya Lunar Multiband Imager (MI), slope from LRO’s Lunar Orbital Laser Altimeter (LOLA), and Rock Abundance from LRO’s Lunar Radiometer Experiment (DIVINER). For this “Most Likely” layer, the following criteria has been applied: TiO2 > 7.5%, OMAT < 0.175, Slope < 8°, and rock abundance < 0.04%. The research on Helium-3 as a potential use for fuel for a fusion cell and the data presented as a result of this research culminated as an outcome of a group project at the Colorado School of Mines. The research for this data should be credited to: Stewart Ray, Colleen Olson, Lisa Robibero, Steven Coutts, and Maxwell Sissman of the Planetary and Terrestrial Mining Sciences Symposium and Space Resources Roundtable, Colorado School of Mines.]] +} + +local treks_3He_Very_Likely_Layer = { + Identifier = "3He_Very_Likely_Layer", + Name = [[LRO and Kaguya Multi Instruments 1895.21mpp, 3He Very Likely]], + FilePath = asset.localResource("LRO_and_Kaguya_Multi_Instruments_1895.21mpp/3He_Very_Likely.vrt"), + Description = [[This data represents potential Helium-3 deposits and other solar wind implanted volatiles on the Moon. This data layer has been generated by querying specific criteria from the following datasets: Titanium Oxide (TiO2) abundance from Lunar Reconnaissance Orbiter’s (LRO) Wide-Angle Camera (WAC), Optical Maturity Index (OMAT) from Kaguya Lunar Multiband Imager (MI), slope from LRO’s Lunar Orbital Laser Altimeter (LOLA), and Rock Abundance from LRO’s Lunar Radiometer Experiment (DIVINER). For this “Very Likely” layer, the following criteria has been applied: TiO2 > 6.0%, OMAT < 0.20, Slope < 12°, and rock abundance < 0.06%. The research on Helium-3 as a potential use for fuel for a fusion cell and the data presented as a result of this research culminated as an outcome of a group project at the Colorado School of Mines. The research for this data should be credited to: Stewart Ray, Colleen Olson, Lisa Robibero, Steven Coutts, and Maxwell Sissman of the Planetary and Terrestrial Mining Sciences Symposium and Space Resources Roundtable, Colorado School of Mines.]] +} + +asset.onInitialize(function() + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_3He_Dig_Here_Layer) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_3He_Likely_Layer) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_3He_More_Likely_Layer) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_3He_Most_Likely_Layer) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_3He_Very_Likely_Layer) +end) + +asset.onDeinitialize(function() + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_3He_Dig_Here_Layer") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_3He_Likely_Layer") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_3He_More_Likely_Layer") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_3He_Most_Likely_Layer") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_3He_Very_Likely_Layer") +end) + +asset.export("3He_Dig_Here_Layer", treks_3He_Dig_Here_Layer) +asset.export("3He_Likely_Layer", treks_3He_Likely_Layer) +asset.export("3He_More_Likely_Layer", treks_3He_More_Likely_Layer) +asset.export("3He_Most_Likely_Layer", treks_3He_Most_Likely_Layer) +asset.export("3He_Very_Likely_Layer", treks_3He_Very_Likely_Layer) + + +asset.meta = { + Name = [[NASA Treks Layers for Moon LRO_and_Kaguya_Multi_Instruments_1895.21mpp], + Version = "1.0", + Author = "NASA/Treks", + URL = "https://trek.nasa.gov/moon", + License = "NASA/Treks", + Description = [[LRO_and_Kaguya_Multi_Instruments_1895.21mpp layers from NASA/Treks for Moon]] +} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_and_Kaguya_Multi_Instruments_1895.21mpp/3He_Dig_Here.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_and_Kaguya_Multi_Instruments_1895.21mpp/3He_Dig_Here.vrt new file mode 100644 index 0000000000..e7657e3621 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_and_Kaguya_Multi_Instruments_1895.21mpp/3He_Dig_Here.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.3732910156250000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.3732910156250000e-03 + + 0 + Red + + 3He_Dig_Here.wms + 1 + + + + 0 + + + + 0 + Green + + 3He_Dig_Here.wms + 2 + + + + 0 + + + + 0 + Blue + + 3He_Dig_Here.wms + 3 + + + + 0 + + + + Alpha + + 3He_Dig_Here.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_and_Kaguya_Multi_Instruments_1895.21mpp_3He_Dig_Here/3He_Dig_Here_Layer.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_and_Kaguya_Multi_Instruments_1895.21mpp/3He_Dig_Here.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_and_Kaguya_Multi_Instruments_1895.21mpp_3He_Dig_Here/3He_Dig_Here_Layer.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_and_Kaguya_Multi_Instruments_1895.21mpp/3He_Dig_Here.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_and_Kaguya_Multi_Instruments_1895.21mpp/3He_Likely.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_and_Kaguya_Multi_Instruments_1895.21mpp/3He_Likely.vrt new file mode 100644 index 0000000000..0b79ee6c65 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_and_Kaguya_Multi_Instruments_1895.21mpp/3He_Likely.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.3732910156250000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.3732910156250000e-03 + + 0 + Red + + 3He_Likely.wms + 1 + + + + 0 + + + + 0 + Green + + 3He_Likely.wms + 2 + + + + 0 + + + + 0 + Blue + + 3He_Likely.wms + 3 + + + + 0 + + + + Alpha + + 3He_Likely.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_and_Kaguya_Multi_Instruments_1895.21mpp_3He_Likely/3He_Likely_Layer.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_and_Kaguya_Multi_Instruments_1895.21mpp/3He_Likely.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_and_Kaguya_Multi_Instruments_1895.21mpp_3He_Likely/3He_Likely_Layer.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_and_Kaguya_Multi_Instruments_1895.21mpp/3He_Likely.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_and_Kaguya_Multi_Instruments_1895.21mpp/3He_More_Likely.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_and_Kaguya_Multi_Instruments_1895.21mpp/3He_More_Likely.vrt new file mode 100644 index 0000000000..d51a95ebca --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_and_Kaguya_Multi_Instruments_1895.21mpp/3He_More_Likely.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.3732910156250000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.3732910156250000e-03 + + 0 + Red + + 3He_More_Likely.wms + 1 + + + + 0 + + + + 0 + Green + + 3He_More_Likely.wms + 2 + + + + 0 + + + + 0 + Blue + + 3He_More_Likely.wms + 3 + + + + 0 + + + + Alpha + + 3He_More_Likely.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_and_Kaguya_Multi_Instruments_1895.21mpp_3He_More_Likely/3He_More_Likely_Layer.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_and_Kaguya_Multi_Instruments_1895.21mpp/3He_More_Likely.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_and_Kaguya_Multi_Instruments_1895.21mpp_3He_More_Likely/3He_More_Likely_Layer.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_and_Kaguya_Multi_Instruments_1895.21mpp/3He_More_Likely.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_and_Kaguya_Multi_Instruments_1895.21mpp/3He_Most_Likely.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_and_Kaguya_Multi_Instruments_1895.21mpp/3He_Most_Likely.vrt new file mode 100644 index 0000000000..4afcb518e4 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_and_Kaguya_Multi_Instruments_1895.21mpp/3He_Most_Likely.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.3732910156250000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.3732910156250000e-03 + + 0 + Red + + 3He_Most_Likely.wms + 1 + + + + 0 + + + + 0 + Green + + 3He_Most_Likely.wms + 2 + + + + 0 + + + + 0 + Blue + + 3He_Most_Likely.wms + 3 + + + + 0 + + + + Alpha + + 3He_Most_Likely.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_and_Kaguya_Multi_Instruments_1895.21mpp_3He_Most_Likely/3He_Most_Likely_Layer.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_and_Kaguya_Multi_Instruments_1895.21mpp/3He_Most_Likely.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_and_Kaguya_Multi_Instruments_1895.21mpp_3He_Most_Likely/3He_Most_Likely_Layer.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_and_Kaguya_Multi_Instruments_1895.21mpp/3He_Most_Likely.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_and_Kaguya_Multi_Instruments_1895.21mpp/3He_Very_Likely.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_and_Kaguya_Multi_Instruments_1895.21mpp/3He_Very_Likely.vrt new file mode 100644 index 0000000000..1858891802 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_and_Kaguya_Multi_Instruments_1895.21mpp/3He_Very_Likely.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.3732910156250000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.3732910156250000e-03 + + 0 + Red + + 3He_Very_Likely.wms + 1 + + + + 0 + + + + 0 + Green + + 3He_Very_Likely.wms + 2 + + + + 0 + + + + 0 + Blue + + 3He_Very_Likely.wms + 3 + + + + 0 + + + + Alpha + + 3He_Very_Likely.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_and_Kaguya_Multi_Instruments_1895.21mpp_3He_Very_Likely/3He_Very_Likely_Layer.wms b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_and_Kaguya_Multi_Instruments_1895.21mpp/3He_Very_Likely.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_and_Kaguya_Multi_Instruments_1895.21mpp_3He_Very_Likely/3He_Very_Likely_Layer.wms rename to data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_and_Kaguya_Multi_Instruments_1895.21mpp/3He_Very_Likely.wms diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_and_Kaguya_Multi_Instruments_1895.21mpp_3He_Dig_Here/3He_Dig_Here_Layer.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_and_Kaguya_Multi_Instruments_1895.21mpp_3He_Dig_Here/3He_Dig_Here_Layer.vrt deleted file mode 100644 index a590a86754..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_and_Kaguya_Multi_Instruments_1895.21mpp_3He_Dig_Here/3He_Dig_Here_Layer.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.3732910156250000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.3732910156250000e-03 - - 0 - Red - - 3He_Dig_Here_Layer.wms - 1 - - - - 0 - - - - 0 - Green - - 3He_Dig_Here_Layer.wms - 2 - - - - 0 - - - - 0 - Blue - - 3He_Dig_Here_Layer.wms - 3 - - - - 0 - - - - Alpha - - 3He_Dig_Here_Layer.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_and_Kaguya_Multi_Instruments_1895.21mpp_3He_Dig_Here/LRO_and_Kaguya_Multi_Instruments_1895.21mpp_3He_Dig_Here.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_and_Kaguya_Multi_Instruments_1895.21mpp_3He_Dig_Here/LRO_and_Kaguya_Multi_Instruments_1895.21mpp_3He_Dig_Here.asset deleted file mode 100644 index 5e065c8293..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_and_Kaguya_Multi_Instruments_1895.21mpp_3He_Dig_Here/LRO_and_Kaguya_Multi_Instruments_1895.21mpp_3He_Dig_Here.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "3He_Dig_Here_Layer", - Name = [[LRO and Kaguya Multi Instruments 1895.21mpp, 3He Dig Here]], - FilePath = asset.localResource("3He_Dig_Here_Layer.vrt"), - Description = [[This data represents potential Helium-3 deposits and other solar wind implanted volatiles on the Moon. This data layer has been generated by querying specific criteria from the following datasets: Titanium Oxide (TiO2) abundance from Lunar Reconnaissance Orbiter’s (LRO) Wide-Angle Camera (WAC), Optical Maturity Index (OMAT) from Kaguya Lunar Multiband Imager (MI), slope from LRO’s Lunar Orbital Laser Altimeter (LOLA), and Rock Abundance from LRO’s Lunar Radiometer Experiment (DIVINER). For this “Dig Here” layer, the following criteria has been applied: TiO2 > 9.0%, OMAT < 0.15, Slope < 4°, and rock abundance < 0.02%. The research on Helium-3 as a potential use for fuel for a fusion cell and the data presented as a result of this research culminated as an outcome of a group project at the Colorado School of Mines. The research for this data should be credited to: Stewart Ray, Colleen Olson, Lisa Robibero, Steven Coutts, and Maxwell Sissman of the Planetary and Terrestrial Mining Sciences Symposium and Space Resources Roundtable, Colorado School of Mines.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO and Kaguya Multi Instruments 1895.21mpp, 3He Dig Here]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=3He_Dig_Here_Layer%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO and Kaguya Multi Instruments 1895.21mpp, 3He Dig Here layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_and_Kaguya_Multi_Instruments_1895.21mpp_3He_Likely/3He_Likely_Layer.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_and_Kaguya_Multi_Instruments_1895.21mpp_3He_Likely/3He_Likely_Layer.vrt deleted file mode 100644 index 667ce5bcf9..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_and_Kaguya_Multi_Instruments_1895.21mpp_3He_Likely/3He_Likely_Layer.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.3732910156250000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.3732910156250000e-03 - - 0 - Red - - 3He_Likely_Layer.wms - 1 - - - - 0 - - - - 0 - Green - - 3He_Likely_Layer.wms - 2 - - - - 0 - - - - 0 - Blue - - 3He_Likely_Layer.wms - 3 - - - - 0 - - - - Alpha - - 3He_Likely_Layer.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_and_Kaguya_Multi_Instruments_1895.21mpp_3He_Likely/LRO_and_Kaguya_Multi_Instruments_1895.21mpp_3He_Likely.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_and_Kaguya_Multi_Instruments_1895.21mpp_3He_Likely/LRO_and_Kaguya_Multi_Instruments_1895.21mpp_3He_Likely.asset deleted file mode 100644 index fee91695b7..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_and_Kaguya_Multi_Instruments_1895.21mpp_3He_Likely/LRO_and_Kaguya_Multi_Instruments_1895.21mpp_3He_Likely.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "3He_Likely_Layer", - Name = [[LRO and Kaguya Multi Instruments 1895.21mpp, 3He Likely]], - FilePath = asset.localResource("3He_Likely_Layer.vrt"), - Description = [[This data represents potential Helium-3 deposits and other solar wind implanted volatiles on the Moon. This data layer has been generated by querying specific criteria from the following datasets: Titanium Oxide (TiO2) abundance from Lunar Reconnaissance Orbiter’s (LRO) Wide-Angle Camera (WAC), Optical Maturity Index (OMAT) from Kaguya Lunar Multiband Imager (MI), slope from LRO’s Lunar Orbital Laser Altimeter (LOLA), and Rock Abundance from LRO’s Lunar Radiometer Experiment (DIVINER). For this “Likely” layer, the following criteria has been applied: TiO2 > 3.0%, OMAT < 0.25, Slope < 20°, and rock abundance < 0.10%. The research on Helium-3 as a potential use for fuel for a fusion cell and the data presented as a result of this research culminated as an outcome of a group project at the Colorado School of Mines. The research for this data should be credited to: Stewart Ray, Colleen Olson, Lisa Robibero, Steven Coutts, and Maxwell Sissman of the Planetary and Terrestrial Mining Sciences Symposium and Space Resources Roundtable, Colorado School of Mines.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO and Kaguya Multi Instruments 1895.21mpp, 3He Likely]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=3He_Likely_Layer%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO and Kaguya Multi Instruments 1895.21mpp, 3He Likely layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_and_Kaguya_Multi_Instruments_1895.21mpp_3He_More_Likely/3He_More_Likely_Layer.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_and_Kaguya_Multi_Instruments_1895.21mpp_3He_More_Likely/3He_More_Likely_Layer.vrt deleted file mode 100644 index 6c1980e6a2..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_and_Kaguya_Multi_Instruments_1895.21mpp_3He_More_Likely/3He_More_Likely_Layer.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.3732910156250000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.3732910156250000e-03 - - 0 - Red - - 3He_More_Likely_Layer.wms - 1 - - - - 0 - - - - 0 - Green - - 3He_More_Likely_Layer.wms - 2 - - - - 0 - - - - 0 - Blue - - 3He_More_Likely_Layer.wms - 3 - - - - 0 - - - - Alpha - - 3He_More_Likely_Layer.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_and_Kaguya_Multi_Instruments_1895.21mpp_3He_More_Likely/LRO_and_Kaguya_Multi_Instruments_1895.21mpp_3He_More_Likely.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_and_Kaguya_Multi_Instruments_1895.21mpp_3He_More_Likely/LRO_and_Kaguya_Multi_Instruments_1895.21mpp_3He_More_Likely.asset deleted file mode 100644 index fa41b45115..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_and_Kaguya_Multi_Instruments_1895.21mpp_3He_More_Likely/LRO_and_Kaguya_Multi_Instruments_1895.21mpp_3He_More_Likely.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "3He_More_Likely_Layer", - Name = [[LRO and Kaguya Multi Instruments 1895.21mpp, 3He More Likely]], - FilePath = asset.localResource("3He_More_Likely_Layer.vrt"), - Description = [[This data represents potential Helium-3 deposits and other solar wind implanted volatiles on the Moon. This data layer has been generated by querying specific criteria from the following datasets: Titanium Oxide (TiO2) abundance from Lunar Reconnaissance Orbiter’s (LRO) Wide-Angle Camera (WAC), Optical Maturity Index (OMAT) from Kaguya Lunar Multiband Imager (MI), slope from LRO’s Lunar Orbital Laser Altimeter (LOLA), and Rock Abundance from LRO’s Lunar Radiometer Experiment (DIVINER). For this “More Likely” layer, the following criteria has been applied: TiO2 > 4.5%, OMAT < 0.225, Slope < 16°, and rock abundance < 0.08%. The research on Helium-3 as a potential use for fuel for a fusion cell and the data presented as a result of this research culminated as an outcome of a group project at the Colorado School of Mines. The research for this data should be credited to: Stewart Ray, Colleen Olson, Lisa Robibero, Steven Coutts, and Maxwell Sissman of the Planetary and Terrestrial Mining Sciences Symposium and Space Resources Roundtable, Colorado School of Mines.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO and Kaguya Multi Instruments 1895.21mpp, 3He More Likely]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=3He_More_Likely_Layer%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO and Kaguya Multi Instruments 1895.21mpp, 3He More Likely layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_and_Kaguya_Multi_Instruments_1895.21mpp_3He_Most_Likely/3He_Most_Likely_Layer.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_and_Kaguya_Multi_Instruments_1895.21mpp_3He_Most_Likely/3He_Most_Likely_Layer.vrt deleted file mode 100644 index eeb30eb7f7..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_and_Kaguya_Multi_Instruments_1895.21mpp_3He_Most_Likely/3He_Most_Likely_Layer.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.3732910156250000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.3732910156250000e-03 - - 0 - Red - - 3He_Most_Likely_Layer.wms - 1 - - - - 0 - - - - 0 - Green - - 3He_Most_Likely_Layer.wms - 2 - - - - 0 - - - - 0 - Blue - - 3He_Most_Likely_Layer.wms - 3 - - - - 0 - - - - Alpha - - 3He_Most_Likely_Layer.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_and_Kaguya_Multi_Instruments_1895.21mpp_3He_Most_Likely/LRO_and_Kaguya_Multi_Instruments_1895.21mpp_3He_Most_Likely.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_and_Kaguya_Multi_Instruments_1895.21mpp_3He_Most_Likely/LRO_and_Kaguya_Multi_Instruments_1895.21mpp_3He_Most_Likely.asset deleted file mode 100644 index 9c066875b6..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_and_Kaguya_Multi_Instruments_1895.21mpp_3He_Most_Likely/LRO_and_Kaguya_Multi_Instruments_1895.21mpp_3He_Most_Likely.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "3He_Most_Likely_Layer", - Name = [[LRO and Kaguya Multi Instruments 1895.21mpp, 3He Most Likely]], - FilePath = asset.localResource("3He_Most_Likely_Layer.vrt"), - Description = [[This data represents potential Helium-3 deposits and other solar wind implanted volatiles on the Moon. This data layer has been generated by querying specific criteria from the following datasets: Titanium Oxide (TiO2) abundance from Lunar Reconnaissance Orbiter’s (LRO) Wide-Angle Camera (WAC), Optical Maturity Index (OMAT) from Kaguya Lunar Multiband Imager (MI), slope from LRO’s Lunar Orbital Laser Altimeter (LOLA), and Rock Abundance from LRO’s Lunar Radiometer Experiment (DIVINER). For this “Most Likely” layer, the following criteria has been applied: TiO2 > 7.5%, OMAT < 0.175, Slope < 8°, and rock abundance < 0.04%. The research on Helium-3 as a potential use for fuel for a fusion cell and the data presented as a result of this research culminated as an outcome of a group project at the Colorado School of Mines. The research for this data should be credited to: Stewart Ray, Colleen Olson, Lisa Robibero, Steven Coutts, and Maxwell Sissman of the Planetary and Terrestrial Mining Sciences Symposium and Space Resources Roundtable, Colorado School of Mines.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO and Kaguya Multi Instruments 1895.21mpp, 3He Most Likely]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=3He_Most_Likely_Layer%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO and Kaguya Multi Instruments 1895.21mpp, 3He Most Likely layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_and_Kaguya_Multi_Instruments_1895.21mpp_3He_Very_Likely/3He_Very_Likely_Layer.vrt b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_and_Kaguya_Multi_Instruments_1895.21mpp_3He_Very_Likely/3He_Very_Likely_Layer.vrt deleted file mode 100644 index 6dc19d8785..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_and_Kaguya_Multi_Instruments_1895.21mpp_3He_Very_Likely/3He_Very_Likely_Layer.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Moon_2000",DATUM["D_Moon_2000",SPHEROID["Moon_2000_IAU_IAG",1737400,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.3732910156250000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.3732910156250000e-03 - - 0 - Red - - 3He_Very_Likely_Layer.wms - 1 - - - - 0 - - - - 0 - Green - - 3He_Very_Likely_Layer.wms - 2 - - - - 0 - - - - 0 - Blue - - 3He_Very_Likely_Layer.wms - 3 - - - - 0 - - - - Alpha - - 3He_Very_Likely_Layer.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_and_Kaguya_Multi_Instruments_1895.21mpp_3He_Very_Likely/LRO_and_Kaguya_Multi_Instruments_1895.21mpp_3He_Very_Likely.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_and_Kaguya_Multi_Instruments_1895.21mpp_3He_Very_Likely/LRO_and_Kaguya_Multi_Instruments_1895.21mpp_3He_Very_Likely.asset deleted file mode 100644 index 10529c44d6..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/LRO_and_Kaguya_Multi_Instruments_1895.21mpp_3He_Very_Likely/LRO_and_Kaguya_Multi_Instruments_1895.21mpp_3He_Very_Likely.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/earth/moon/moon").Moon.Identifier - -local layer = { - Identifier = "3He_Very_Likely_Layer", - Name = [[LRO and Kaguya Multi Instruments 1895.21mpp, 3He Very Likely]], - FilePath = asset.localResource("3He_Very_Likely_Layer.vrt"), - Description = [[This data represents potential Helium-3 deposits and other solar wind implanted volatiles on the Moon. This data layer has been generated by querying specific criteria from the following datasets: Titanium Oxide (TiO2) abundance from Lunar Reconnaissance Orbiter’s (LRO) Wide-Angle Camera (WAC), Optical Maturity Index (OMAT) from Kaguya Lunar Multiband Imager (MI), slope from LRO’s Lunar Orbital Laser Altimeter (LOLA), and Rock Abundance from LRO’s Lunar Radiometer Experiment (DIVINER). For this “Very Likely” layer, the following criteria has been applied: TiO2 > 6.0%, OMAT < 0.20, Slope < 12°, and rock abundance < 0.06%. The research on Helium-3 as a potential use for fuel for a fusion cell and the data presented as a result of this research culminated as an outcome of a group project at the Colorado School of Mines. The research for this data should be credited to: Stewart Ray, Colleen Olson, Lisa Robibero, Steven Coutts, and Maxwell Sissman of the Planetary and Terrestrial Mining Sciences Symposium and Space Resources Roundtable, Colorado School of Mines.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[LRO and Kaguya Multi Instruments 1895.21mpp, 3He Very Likely]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/moon/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104903&d=&l=3He_Very_Likely_Layer%2Ctrue%2C1&b=moon&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[LRO and Kaguya Multi Instruments 1895.21mpp, 3He Very Likely layer from NASA/Treks for Moon]] -} diff --git a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/all_treks_layers.asset b/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/all_treks_layers.asset deleted file mode 100644 index 229d21f4a1..0000000000 --- a/data/assets/scene/solarsystem/planets/earth/moon/nasa-treks/all_treks_layers.asset +++ /dev/null @@ -1,741 +0,0 @@ -asset.require("./Apollo_15_Metric_Cam_DEM_ColorHillshade/Apollo_15_Metric_Cam_DEM_ColorHillshade") -asset.require("./Apollo_15_Metric_Cam_DEM_Colorized_Confidence/Apollo_15_Metric_Cam_DEM_Colorized_Confidence") -asset.require("./Apollo_15_Metric_Cam_DEM_Grayscale/Apollo_15_Metric_Cam_DEM_Grayscale") -asset.require("./Apollo_15_Metric_Cam_DEM_Hillshade/Apollo_15_Metric_Cam_DEM_Hillshade") -asset.require("./Apollo_15_Metric_Cam_Image_Mosaic/Apollo_15_Metric_Cam_Image_Mosaic") -asset.require("./Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_1_ColorHillshade/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_1_ColorHillshade") -asset.require("./Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_1_Colorized_Confidence/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_1_Colorized_Confidence") -asset.require("./Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_1_Colorized_Slope/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_1_Colorized_Slope") -asset.require("./Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_1_Grayscale/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_1_Grayscale") -asset.require("./Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_1_Hillshade/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_1_Hillshade") -asset.require("./Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_2_ColorHillshade/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_2_ColorHillshade") -asset.require("./Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_2_Colorized_Confidence/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_2_Colorized_Confidence") -asset.require("./Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_2_Colorized_Slope/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_2_Colorized_Slope") -asset.require("./Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_2_Grayscale/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_2_Grayscale") -asset.require("./Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_2_Hillshade/Apollo_15_Pan_Cam_DEM_Aristarchus_Plateau_2_Hillshade") -asset.require("./Apollo_15_Pan_Cam_DEM_Tsiolkovskiy_Crater_ColorHillshade/Apollo_15_Pan_Cam_DEM_Tsiolkovskiy_Crater_ColorHillshade") -asset.require("./Apollo_15_Pan_Cam_DEM_Tsiolkovskiy_Crater_Colorized_Confidence/Apollo_15_Pan_Cam_DEM_Tsiolkovskiy_Crater_Colorized_Confidence") -asset.require("./Apollo_15_Pan_Cam_DEM_Tsiolkovskiy_Crater_Colorized_Slope/Apollo_15_Pan_Cam_DEM_Tsiolkovskiy_Crater_Colorized_Slope") -asset.require("./Apollo_15_Pan_Cam_DEM_Tsiolkovskiy_Crater_Grayscale/Apollo_15_Pan_Cam_DEM_Tsiolkovskiy_Crater_Grayscale") -asset.require("./Apollo_15_Pan_Cam_DEM_Tsiolkovskiy_Crater_Hillshade/Apollo_15_Pan_Cam_DEM_Tsiolkovskiy_Crater_Hillshade") -asset.require("./Apollo_15_Pan_Cam_Image_Mosaic_Aristarchus_Plateau_1/Apollo_15_Pan_Cam_Image_Mosaic_Aristarchus_Plateau_1") -asset.require("./Apollo_15_Pan_Cam_Image_Mosaic_Aristarchus_Plateau_2/Apollo_15_Pan_Cam_Image_Mosaic_Aristarchus_Plateau_2") -asset.require("./Apollo_15_Pan_Cam_Image_Mosaic_Tsiolkovskiy_Crater/Apollo_15_Pan_Cam_Image_Mosaic_Tsiolkovskiy_Crater") -asset.require("./Apollo_16_Metric_Cam_DEM_Colorized_Confidence/Apollo_16_Metric_Cam_DEM_Colorized_Confidence") -asset.require("./Apollo_16_Metric_Cam_DEM_Grayscale/Apollo_16_Metric_Cam_DEM_Grayscale") -asset.require("./Apollo_16_Metric_Cam_DEM_Hillshade/Apollo_16_Metric_Cam_DEM_Hillshade") -asset.require("./Apollo_17_Metric_Cam_DEM_ColorHillshade/Apollo_17_Metric_Cam_DEM_ColorHillshade") -asset.require("./Apollo_17_Metric_Cam_DEM_Grayscale/Apollo_17_Metric_Cam_DEM_Grayscale") -asset.require("./Apollo_17_Metric_Cam_Image_Mosaic/Apollo_17_Metric_Cam_Image_Mosaic") -asset.require("./Apollo_Zone_Metric_Cam_Image_Mosaic/Apollo_Zone_Metric_Cam_Image_Mosaic") -asset.require("./Apollo_Zone_Metric_Cam_Hillshade/Apollo_Zone_Metric_Cam_Hillshade") -asset.require("./Clementine_UVVIS_FeO_Weight_Percent/Clementine_UVVIS_FeO_Weight_Percent") -asset.require("./Clementine_UVVIS_Optical_Maturity/Clementine_UVVIS_Optical_Maturity") -asset.require("./Clementine_UVVIS_TiO2_Weight_Percent/Clementine_UVVIS_TiO2_Weight_Percent") -asset.require("./Kaguya_LGM2011_Freeair_Gravity_Colorized/Kaguya_LGM2011_Freeair_Gravity_Colorized") -asset.require("./Kaguya_LGM2011_Freeair_Gravity_Greyscale/Kaguya_LGM2011_Freeair_Gravity_Greyscale") -asset.require("./Kaguya_LGM2011_Surface_Gravity_Colorized/Kaguya_LGM2011_Surface_Gravity_Colorized") -asset.require("./Kaguya_LGM2011_Surface_Gravity_Greyscale/Kaguya_LGM2011_Surface_Gravity_Greyscale") -asset.require("./Kaguya_TC_Ortho_Mosaic/Kaguya_TC_Ortho_Mosaic") -asset.require("./LOLA_Roughness_16ppd_Colorized/LOLA_Roughness_16ppd_Colorized") -asset.require("./LOLA_Slope_16ppd_Colorized/LOLA_Slope_16ppd_Colorized") -asset.require("./LOLA_and_TC_Stereo_DEM_Merge_512ppd_Shade/LOLA_and_TC_Stereo_DEM_Merge_512ppd_Shade") -asset.require("./LP_NS_H_Abundance/LP_NS_H_Abundance") -asset.require("./LRO_Diviner_CF_Mosaic/LRO_Diviner_CF_Mosaic") -asset.require("./LRO_Diviner_CF_Mosaic_128ppd_Colorized/LRO_Diviner_CF_Mosaic_128ppd_Colorized") -asset.require("./LRO_Diviner_CF_Mosaic_Filled/LRO_Diviner_CF_Mosaic_Filled") -asset.require("./LRO_Diviner_Surface_Temp_Avg_Color/LRO_Diviner_Surface_Temp_Avg_Color") -asset.require("./LRO_Diviner_Surface_Temp_Normal_Avg_Color/LRO_Diviner_Surface_Temp_Normal_Avg_Color") -asset.require("./LRO_Diviner_Surface_Temperature_Mosaic_128ppd_Colorized/LRO_Diviner_Surface_Temperature_Mosaic_128ppd_Colorized") -asset.require("./LRO_LOLA_DEM_ColorHillshade/LRO_LOLA_DEM_ColorHillshade") -asset.require("./LRO_LOLA_DEM_ColorHillshade_v6/LRO_LOLA_DEM_ColorHillshade_v6") -asset.require("./LRO_LOLA_DEM_Coverage/LRO_LOLA_DEM_Coverage") -asset.require("./LRO_LOLA_DEM_Hillshade/LRO_LOLA_DEM_Hillshade") -asset.require("./LRO_LOLA_DEM_Hillshade/LRO_LOLA_DEM_Hillshade") -asset.require("./LRO_LOLA_DEM_No_Data_Mask/LRO_LOLA_DEM_No_Data_Mask") -asset.require("./LRO_LROC_Crater_Abundance_Hazard_Aitken_Crater/LRO_LROC_Crater_Abundance_Hazard_Aitken_Crater") -asset.require("./LRO_LROC_Crater_Abundance_Hazard_Alphonsus_Crater/LRO_LROC_Crater_Abundance_Hazard_Alphonsus_Crater") -asset.require("./LRO_LROC_Crater_Abundance_Hazard_Anaxagoras_Crater/LRO_LROC_Crater_Abundance_Hazard_Anaxagoras_Crater") -asset.require("./LRO_LROC_Crater_Abundance_Hazard_Apollo_15/LRO_LROC_Crater_Abundance_Hazard_Apollo_15") -asset.require("./LRO_LROC_Crater_Abundance_Hazard_Apollo_16/LRO_LROC_Crater_Abundance_Hazard_Apollo_16") -asset.require("./LRO_LROC_Crater_Abundance_Hazard_Apollo_Basin/LRO_LROC_Crater_Abundance_Hazard_Apollo_Basin") -asset.require("./LRO_LROC_Crater_Abundance_Hazard_Aristarchus_1/LRO_LROC_Crater_Abundance_Hazard_Aristarchus_1") -asset.require("./LRO_LROC_Crater_Abundance_Hazard_Aristarchus_2/LRO_LROC_Crater_Abundance_Hazard_Aristarchus_2") -asset.require("./LRO_LROC_Crater_Abundance_Hazard_Balmer_Basin/LRO_LROC_Crater_Abundance_Hazard_Balmer_Basin") -asset.require("./LRO_LROC_Crater_Abundance_Hazard_Bullialdus_Crater/LRO_LROC_Crater_Abundance_Hazard_Bullialdus_Crater") -asset.require("./LRO_LROC_Crater_Abundance_Hazard_Gruithuisen_Domes/LRO_LROC_Crater_Abundance_Hazard_Gruithuisen_Domes") -asset.require("./LRO_LROC_Crater_Abundance_Hazard_Hertzsprung/LRO_LROC_Crater_Abundance_Hazard_Hertzsprung") -asset.require("./LRO_LROC_Crater_Abundance_Hazard_Hortensius_Domes/LRO_LROC_Crater_Abundance_Hazard_Hortensius_Domes") -asset.require("./LRO_LROC_Crater_Abundance_Hazard_King_Crater/LRO_LROC_Crater_Abundance_Hazard_King_Crater") -asset.require("./LRO_LROC_Crater_Abundance_Hazard_Lichtenberg_Crater/LRO_LROC_Crater_Abundance_Hazard_Lichtenberg_Crater") -asset.require("./LRO_LROC_Crater_Abundance_Hazard_Mare_Crisium/LRO_LROC_Crater_Abundance_Hazard_Mare_Crisium") -asset.require("./LRO_LROC_Crater_Abundance_Hazard_Montes_Pyrenaeus/LRO_LROC_Crater_Abundance_Hazard_Montes_Pyrenaeus") -asset.require("./LRO_LROC_Crater_Abundance_Hazard_Orientale_1/LRO_LROC_Crater_Abundance_Hazard_Orientale_1") -asset.require("./LRO_LROC_Crater_Abundance_Hazard_Plato_Ejecta/LRO_LROC_Crater_Abundance_Hazard_Plato_Ejecta") -asset.require("./LRO_LROC_Crater_Abundance_Hazard_South_Pole-Aitken_Basin_Interior/LRO_LROC_Crater_Abundance_Hazard_South_Pole-Aitken_Basin_Interior") -asset.require("./LRO_LROC_Crater_Abundance_Hazard_Stratton_(Dewar)_High_Fe_Anomaly/LRO_LROC_Crater_Abundance_Hazard_Stratton_(Dewar)_High_Fe_Anomaly") -asset.require("./LRO_LROC_Crater_Abundance_Hazard_Sulpicius_Gallus/LRO_LROC_Crater_Abundance_Hazard_Sulpicius_Gallus") -asset.require("./LRO_LROC_Crater_Abundance_Hazard_Tycho_Crater/LRO_LROC_Crater_Abundance_Hazard_Tycho_Crater") -asset.require("./LRO_LROC_Crater_Abundance_Aitken_Crater/LRO_LROC_Crater_Abundance_Aitken_Crater") -asset.require("./LRO_LROC_Crater_Abundance_Alphonsus_Crater/LRO_LROC_Crater_Abundance_Alphonsus_Crater") -asset.require("./LRO_LROC_Crater_Abundance_Anaxagoras_Crater/LRO_LROC_Crater_Abundance_Anaxagoras_Crater") -asset.require("./LRO_LROC_Crater_Abundance_Apollo_15/LRO_LROC_Crater_Abundance_Apollo_15") -asset.require("./LRO_LROC_Crater_Abundance_Apollo_16/LRO_LROC_Crater_Abundance_Apollo_16") -asset.require("./LRO_LROC_Crater_Abundance_Apollo_Basin/LRO_LROC_Crater_Abundance_Apollo_Basin") -asset.require("./LRO_LROC_Crater_Abundance_Aristarchus_1/LRO_LROC_Crater_Abundance_Aristarchus_1") -asset.require("./LRO_LROC_Crater_Abundance_Aristarchus_2/LRO_LROC_Crater_Abundance_Aristarchus_2") -asset.require("./LRO_LROC_Crater_Abundance_Balmer_Basin/LRO_LROC_Crater_Abundance_Balmer_Basin") -asset.require("./LRO_LROC_Crater_Abundance_Bullialdus_Crater/LRO_LROC_Crater_Abundance_Bullialdus_Crater") -asset.require("./LRO_LROC_Crater_Abundance_Gruithuisen_Domes/LRO_LROC_Crater_Abundance_Gruithuisen_Domes") -asset.require("./LRO_LROC_Crater_Abundance_Hertzsprung/LRO_LROC_Crater_Abundance_Hertzsprung") -asset.require("./LRO_LROC_Crater_Abundance_Hortensius_Domes/LRO_LROC_Crater_Abundance_Hortensius_Domes") -asset.require("./LRO_LROC_Crater_Abundance_King_Crater/LRO_LROC_Crater_Abundance_King_Crater") -asset.require("./LRO_LROC_Crater_Abundance_Lichtenberg_Crater/LRO_LROC_Crater_Abundance_Lichtenberg_Crater") -asset.require("./LRO_LROC_Crater_Abundance_Mare_Crisium/LRO_LROC_Crater_Abundance_Mare_Crisium") -asset.require("./LRO_LROC_Crater_Abundance_Montes_Pyrenaeus/LRO_LROC_Crater_Abundance_Montes_Pyrenaeus") -asset.require("./LRO_LROC_Crater_Abundance_Orientale_1/LRO_LROC_Crater_Abundance_Orientale_1") -asset.require("./LRO_LROC_Crater_Abundance_Plato_Ejecta/LRO_LROC_Crater_Abundance_Plato_Ejecta") -asset.require("./LRO_LROC_Crater_Abundance_South_Pole-Aitken_Basin_Interior/LRO_LROC_Crater_Abundance_South_Pole-Aitken_Basin_Interior") -asset.require("./LRO_LROC_Crater_Abundance_Stratton_(Dewar)_High_Fe_Anomaly/LRO_LROC_Crater_Abundance_Stratton_(Dewar)_High_Fe_Anomaly") -asset.require("./LRO_LROC_Crater_Abundance_Sulpicius_Gallus/LRO_LROC_Crater_Abundance_Sulpicius_Gallus") -asset.require("./LRO_LROC_Crater_Abundance_Tycho_Crater/LRO_LROC_Crater_Abundance_Tycho_Crater") -asset.require("./LRO_LROC_Crater_Density_Hazard_Aitken_Crater/LRO_LROC_Crater_Density_Hazard_Aitken_Crater") -asset.require("./LRO_LROC_Crater_Density_Hazard_Alphonsus_Crater/LRO_LROC_Crater_Density_Hazard_Alphonsus_Crater") -asset.require("./LRO_LROC_Crater_Density_Hazard_Anaxagoras_Crater/LRO_LROC_Crater_Density_Hazard_Anaxagoras_Crater") -asset.require("./LRO_LROC_Crater_Density_Hazard_Apollo_15/LRO_LROC_Crater_Density_Hazard_Apollo_15") -asset.require("./LRO_LROC_Crater_Density_Hazard_Apollo_16/LRO_LROC_Crater_Density_Hazard_Apollo_16") -asset.require("./LRO_LROC_Crater_Density_Hazard_Apollo_Basin/LRO_LROC_Crater_Density_Hazard_Apollo_Basin") -asset.require("./LRO_LROC_Crater_Density_Hazard_Aristarchus_1/LRO_LROC_Crater_Density_Hazard_Aristarchus_1") -asset.require("./LRO_LROC_Crater_Density_Hazard_Aristarchus_2/LRO_LROC_Crater_Density_Hazard_Aristarchus_2") -asset.require("./LRO_LROC_Crater_Density_Hazard_Balmer_Basin/LRO_LROC_Crater_Density_Hazard_Balmer_Basin") -asset.require("./LRO_LROC_Crater_Density_Hazard_Bullialdus_Crater/LRO_LROC_Crater_Density_Hazard_Bullialdus_Crater") -asset.require("./LRO_LROC_Crater_Density_Hazard_Gruithuisen_Domes/LRO_LROC_Crater_Density_Hazard_Gruithuisen_Domes") -asset.require("./LRO_LROC_Crater_Density_Hazard_Hertzsprung/LRO_LROC_Crater_Density_Hazard_Hertzsprung") -asset.require("./LRO_LROC_Crater_Density_Hazard_Hortensius_Domes/LRO_LROC_Crater_Density_Hazard_Hortensius_Domes") -asset.require("./LRO_LROC_Crater_Density_Hazard_King_Crater/LRO_LROC_Crater_Density_Hazard_King_Crater") -asset.require("./LRO_LROC_Crater_Density_Hazard_Lichtenberg_Crater/LRO_LROC_Crater_Density_Hazard_Lichtenberg_Crater") -asset.require("./LRO_LROC_Crater_Density_Hazard_Mare_Crisium/LRO_LROC_Crater_Density_Hazard_Mare_Crisium") -asset.require("./LRO_LROC_Crater_Density_Hazard_Montes_Pyrenaeus/LRO_LROC_Crater_Density_Hazard_Montes_Pyrenaeus") -asset.require("./LRO_LROC_Crater_Density_Hazard_Orientale_1/LRO_LROC_Crater_Density_Hazard_Orientale_1") -asset.require("./LRO_LROC_Crater_Density_Hazard_Plato_Ejecta/LRO_LROC_Crater_Density_Hazard_Plato_Ejecta") -asset.require("./LRO_LROC_Crater_Density_Hazard_South_Pole-Aitken_Basin_Interior/LRO_LROC_Crater_Density_Hazard_South_Pole-Aitken_Basin_Interior") -asset.require("./LRO_LROC_Crater_Density_Hazard_Stratton_(Dewar)_High_Fe_Anomaly/LRO_LROC_Crater_Density_Hazard_Stratton_(Dewar)_High_Fe_Anomaly") -asset.require("./LRO_LROC_Crater_Density_Hazard_Sulpicius_Gallus/LRO_LROC_Crater_Density_Hazard_Sulpicius_Gallus") -asset.require("./LRO_LROC_Crater_Density_Hazard_Tycho_Crater/LRO_LROC_Crater_Density_Hazard_Tycho_Crater") -asset.require("./LRO_LROC_Crater_Density_Aitken_Crater/LRO_LROC_Crater_Density_Aitken_Crater") -asset.require("./LRO_LROC_Crater_Density_Alphonsus_Crater/LRO_LROC_Crater_Density_Alphonsus_Crater") -asset.require("./LRO_LROC_Crater_Density_Anaxagoras_Crater/LRO_LROC_Crater_Density_Anaxagoras_Crater") -asset.require("./LRO_LROC_Crater_Density_Apollo_15/LRO_LROC_Crater_Density_Apollo_15") -asset.require("./LRO_LROC_Crater_Density_Apollo_16/LRO_LROC_Crater_Density_Apollo_16") -asset.require("./LRO_LROC_Crater_Density_Apollo_Basin/LRO_LROC_Crater_Density_Apollo_Basin") -asset.require("./LRO_LROC_Crater_Density_Aristarchus_1/LRO_LROC_Crater_Density_Aristarchus_1") -asset.require("./LRO_LROC_Crater_Density_Aristarchus_2/LRO_LROC_Crater_Density_Aristarchus_2") -asset.require("./LRO_LROC_Crater_Density_Balmer_Basin/LRO_LROC_Crater_Density_Balmer_Basin") -asset.require("./LRO_LROC_Crater_Density_Bullialdus_Crater/LRO_LROC_Crater_Density_Bullialdus_Crater") -asset.require("./LRO_LROC_Crater_Density_Gruithuisen_Domes/LRO_LROC_Crater_Density_Gruithuisen_Domes") -asset.require("./LRO_LROC_Crater_Density_Hertzsprung/LRO_LROC_Crater_Density_Hertzsprung") -asset.require("./LRO_LROC_Crater_Density_Hortensius_Domes/LRO_LROC_Crater_Density_Hortensius_Domes") -asset.require("./LRO_LROC_Crater_Density_King_Crater/LRO_LROC_Crater_Density_King_Crater") -asset.require("./LRO_LROC_Crater_Density_Lichtenberg_Crater/LRO_LROC_Crater_Density_Lichtenberg_Crater") -asset.require("./LRO_LROC_Crater_Density_Mare_Crisium/LRO_LROC_Crater_Density_Mare_Crisium") -asset.require("./LRO_LROC_Crater_Density_Montes_Pyrenaeus/LRO_LROC_Crater_Density_Montes_Pyrenaeus") -asset.require("./LRO_LROC_Crater_Density_Orientale_1/LRO_LROC_Crater_Density_Orientale_1") -asset.require("./LRO_LROC_Crater_Density_Plato_Ejecta/LRO_LROC_Crater_Density_Plato_Ejecta") -asset.require("./LRO_LROC_Crater_Density_South_Pole-Aitken_Basin_Interior/LRO_LROC_Crater_Density_South_Pole-Aitken_Basin_Interior") -asset.require("./LRO_LROC_Crater_Density_Stratton_(Dewar)_High_Fe_Anomaly/LRO_LROC_Crater_Density_Stratton_(Dewar)_High_Fe_Anomaly") -asset.require("./LRO_LROC_Crater_Density_Sulpicius_Gallus/LRO_LROC_Crater_Density_Sulpicius_Gallus") -asset.require("./LRO_LROC_Crater_Density_Tycho_Crater/LRO_LROC_Crater_Density_Tycho_Crater") -asset.require("./LRO_LROC_DEM_Aitken_Crater_15m_Color_Roughness/LRO_LROC_DEM_Aitken_Crater_15m_Color_Roughness") -asset.require("./LRO_LROC_DEM_Aitken_Crater_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Aitken_Crater_15m_Color_Roughness_Hazard") -asset.require("./LRO_LROC_DEM_Aitken_Crater_15m_Color_Slope/LRO_LROC_DEM_Aitken_Crater_15m_Color_Slope") -asset.require("./LRO_LROC_DEM_Aitken_Crater_15m_Color_Slope_Hazard/LRO_LROC_DEM_Aitken_Crater_15m_Color_Slope_Hazard") -asset.require("./LRO_LROC_DEM_Aitken_Crater_3m_Color_Roughness/LRO_LROC_DEM_Aitken_Crater_3m_Color_Roughness") -asset.require("./LRO_LROC_DEM_Aitken_Crater_3m_Color_Roughness_Hazard/LRO_LROC_DEM_Aitken_Crater_3m_Color_Roughness_Hazard") -asset.require("./LRO_LROC_DEM_Aitken_Crater_3m_Color_Slope/LRO_LROC_DEM_Aitken_Crater_3m_Color_Slope") -asset.require("./LRO_LROC_DEM_Aitken_Crater_3m_Color_Slope_Hazard/LRO_LROC_DEM_Aitken_Crater_3m_Color_Slope_Hazard") -asset.require("./LRO_LROC_DEM_Aitken_Crater_ColorHillshade/LRO_LROC_DEM_Aitken_Crater_ColorHillshade") -asset.require("./LRO_LROC_DEM_Aitken_Crater_Colorized_Confidence/LRO_LROC_DEM_Aitken_Crater_Colorized_Confidence") -asset.require("./LRO_LROC_DEM_Aitken_Crater_Colorized_Slope/LRO_LROC_DEM_Aitken_Crater_Colorized_Slope") -asset.require("./LRO_LROC_DEM_Aitken_Crater_Grayscale/LRO_LROC_DEM_Aitken_Crater_Grayscale") -asset.require("./LRO_LROC_DEM_Aitken_Crater_Hillshade/LRO_LROC_DEM_Aitken_Crater_Hillshade") -asset.require("./LRO_LROC_DEM_Alphonsus_Crater_15m_Color_Roughness/LRO_LROC_DEM_Alphonsus_Crater_15m_Color_Roughness") -asset.require("./LRO_LROC_DEM_Alphonsus_Crater_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Alphonsus_Crater_15m_Color_Roughness_Hazard") -asset.require("./LRO_LROC_DEM_Alphonsus_Crater_15m_Color_Slope/LRO_LROC_DEM_Alphonsus_Crater_15m_Color_Slope") -asset.require("./LRO_LROC_DEM_Alphonsus_Crater_15m_Color_Slope_Hazard/LRO_LROC_DEM_Alphonsus_Crater_15m_Color_Slope_Hazard") -asset.require("./LRO_LROC_DEM_Alphonsus_Crater_4m_Color_Roughness/LRO_LROC_DEM_Alphonsus_Crater_4m_Color_Roughness") -asset.require("./LRO_LROC_DEM_Alphonsus_Crater_4m_Color_Roughness_Hazard/LRO_LROC_DEM_Alphonsus_Crater_4m_Color_Roughness_Hazard") -asset.require("./LRO_LROC_DEM_Alphonsus_Crater_4m_Color_Slope/LRO_LROC_DEM_Alphonsus_Crater_4m_Color_Slope") -asset.require("./LRO_LROC_DEM_Alphonsus_Crater_4m_Color_Slope_Hazard/LRO_LROC_DEM_Alphonsus_Crater_4m_Color_Slope_Hazard") -asset.require("./LRO_LROC_DEM_Alphonsus_ColorHillshade/LRO_LROC_DEM_Alphonsus_ColorHillshade") -asset.require("./LRO_LROC_DEM_Alphonsus_Colorized_Confidence/LRO_LROC_DEM_Alphonsus_Colorized_Confidence") -asset.require("./LRO_LROC_DEM_Alphonsus_Colorized_Slope/LRO_LROC_DEM_Alphonsus_Colorized_Slope") -asset.require("./LRO_LROC_DEM_Alphonsus_Grayscale/LRO_LROC_DEM_Alphonsus_Grayscale") -asset.require("./LRO_LROC_DEM_Alphonsus_Hillshade/LRO_LROC_DEM_Alphonsus_Hillshade") -asset.require("./LRO_LROC_DEM_Anaxagoras_Crater_15m_Color_Roughness/LRO_LROC_DEM_Anaxagoras_Crater_15m_Color_Roughness") -asset.require("./LRO_LROC_DEM_Anaxagoras_Crater_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Anaxagoras_Crater_15m_Color_Roughness_Hazard") -asset.require("./LRO_LROC_DEM_Anaxagoras_Crater_15m_Color_Slope/LRO_LROC_DEM_Anaxagoras_Crater_15m_Color_Slope") -asset.require("./LRO_LROC_DEM_Anaxagoras_Crater_15m_Color_Slope_Hazard/LRO_LROC_DEM_Anaxagoras_Crater_15m_Color_Slope_Hazard") -asset.require("./LRO_LROC_DEM_Anaxagoras_Crater_3m_Color_Roughness/LRO_LROC_DEM_Anaxagoras_Crater_3m_Color_Roughness") -asset.require("./LRO_LROC_DEM_Anaxagoras_Crater_3m_Color_Roughness_Hazard/LRO_LROC_DEM_Anaxagoras_Crater_3m_Color_Roughness_Hazard") -asset.require("./LRO_LROC_DEM_Anaxagoras_Crater_3m_Color_Slope/LRO_LROC_DEM_Anaxagoras_Crater_3m_Color_Slope") -asset.require("./LRO_LROC_DEM_Anaxagoras_Crater_3m_Color_Slope_Hazard/LRO_LROC_DEM_Anaxagoras_Crater_3m_Color_Slope_Hazard") -asset.require("./LRO_LROC_DEM_Anaxagoras_Crater_ColorHillshade/LRO_LROC_DEM_Anaxagoras_Crater_ColorHillshade") -asset.require("./LRO_LROC_DEM_Anaxagoras_Crater_Colorized_Confidence/LRO_LROC_DEM_Anaxagoras_Crater_Colorized_Confidence") -asset.require("./LRO_LROC_DEM_Anaxagoras_Crater_Colorized_Slope/LRO_LROC_DEM_Anaxagoras_Crater_Colorized_Slope") -asset.require("./LRO_LROC_DEM_Anaxagoras_Crater_Grayscale/LRO_LROC_DEM_Anaxagoras_Crater_Grayscale") -asset.require("./LRO_LROC_DEM_Anaxagoras_Crater_Hillshade/LRO_LROC_DEM_Anaxagoras_Crater_Hillshade") -asset.require("./LRO_LROC_DEM_Apollo_15_15m_Color_Roughness/LRO_LROC_DEM_Apollo_15_15m_Color_Roughness") -asset.require("./LRO_LROC_DEM_Apollo_15_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Apollo_15_15m_Color_Roughness_Hazard") -asset.require("./LRO_LROC_DEM_Apollo_15_15m_Color_Slope/LRO_LROC_DEM_Apollo_15_15m_Color_Slope") -asset.require("./LRO_LROC_DEM_Apollo_15_15m_Color_Slope_Hazard/LRO_LROC_DEM_Apollo_15_15m_Color_Slope_Hazard") -asset.require("./LRO_LROC_DEM_Apollo_15_3m_Color_Roughness/LRO_LROC_DEM_Apollo_15_3m_Color_Roughness") -asset.require("./LRO_LROC_DEM_Apollo_15_3m_Color_Roughness_Hazard/LRO_LROC_DEM_Apollo_15_3m_Color_Roughness_Hazard") -asset.require("./LRO_LROC_DEM_Apollo_15_3m_Color_Slope/LRO_LROC_DEM_Apollo_15_3m_Color_Slope") -asset.require("./LRO_LROC_DEM_Apollo_15_3m_Color_Slope_Hazard/LRO_LROC_DEM_Apollo_15_3m_Color_Slope_Hazard") -asset.require("./LRO_LROC_DEM_Apollo_15_ColorHillshade/LRO_LROC_DEM_Apollo_15_ColorHillshade") -asset.require("./LRO_LROC_DEM_Apollo_15_ColorHillshade_Slope/LRO_LROC_DEM_Apollo_15_ColorHillshade_Slope") -asset.require("./LRO_LROC_DEM_Apollo_15_Colorized_Confidence/LRO_LROC_DEM_Apollo_15_Colorized_Confidence") -asset.require("./LRO_LROC_DEM_Apollo_15_Grayscale/LRO_LROC_DEM_Apollo_15_Grayscale") -asset.require("./LRO_LROC_DEM_Apollo_15_Hillshade/LRO_LROC_DEM_Apollo_15_Hillshade") -asset.require("./LRO_LROC_DEM_Apollo_16_15m_Color_Roughness/LRO_LROC_DEM_Apollo_16_15m_Color_Roughness") -asset.require("./LRO_LROC_DEM_Apollo_16_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Apollo_16_15m_Color_Roughness_Hazard") -asset.require("./LRO_LROC_DEM_Apollo_16_15m_Color_Slope/LRO_LROC_DEM_Apollo_16_15m_Color_Slope") -asset.require("./LRO_LROC_DEM_Apollo_16_15m_Color_Slope_Hazard/LRO_LROC_DEM_Apollo_16_15m_Color_Slope_Hazard") -asset.require("./LRO_LROC_DEM_Apollo_16_3m_Color_Roughness/LRO_LROC_DEM_Apollo_16_3m_Color_Roughness") -asset.require("./LRO_LROC_DEM_Apollo_16_3m_Color_Roughness_Hazard/LRO_LROC_DEM_Apollo_16_3m_Color_Roughness_Hazard") -asset.require("./LRO_LROC_DEM_Apollo_16_3m_Color_Slope/LRO_LROC_DEM_Apollo_16_3m_Color_Slope") -asset.require("./LRO_LROC_DEM_Apollo_16_3m_Color_Slope_Hazard/LRO_LROC_DEM_Apollo_16_3m_Color_Slope_Hazard") -asset.require("./LRO_LROC_DEM_Apollo_16_ColorHillshade/LRO_LROC_DEM_Apollo_16_ColorHillshade") -asset.require("./LRO_LROC_DEM_Apollo_16_ColorHillshade_Slope/LRO_LROC_DEM_Apollo_16_ColorHillshade_Slope") -asset.require("./LRO_LROC_DEM_Apollo_16_Colorized_Confidence/LRO_LROC_DEM_Apollo_16_Colorized_Confidence") -asset.require("./LRO_LROC_DEM_Apollo_16_Grayscale/LRO_LROC_DEM_Apollo_16_Grayscale") -asset.require("./LRO_LROC_DEM_Apollo_16_Hillshade/LRO_LROC_DEM_Apollo_16_Hillshade") -asset.require("./LRO_LROC_DEM_Apollo_Basin_15m_Color_Roughness/LRO_LROC_DEM_Apollo_Basin_15m_Color_Roughness") -asset.require("./LRO_LROC_DEM_Apollo_Basin_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Apollo_Basin_15m_Color_Roughness_Hazard") -asset.require("./LRO_LROC_DEM_Apollo_Basin_15m_Color_Slope/LRO_LROC_DEM_Apollo_Basin_15m_Color_Slope") -asset.require("./LRO_LROC_DEM_Apollo_Basin_15m_Color_Slope_Hazard/LRO_LROC_DEM_Apollo_Basin_15m_Color_Slope_Hazard") -asset.require("./LRO_LROC_DEM_Apollo_Basin_3m_Color_Roughness/LRO_LROC_DEM_Apollo_Basin_3m_Color_Roughness") -asset.require("./LRO_LROC_DEM_Apollo_Basin_3m_Color_Roughness_Hazard/LRO_LROC_DEM_Apollo_Basin_3m_Color_Roughness_Hazard") -asset.require("./LRO_LROC_DEM_Apollo_Basin_3m_Color_Slope/LRO_LROC_DEM_Apollo_Basin_3m_Color_Slope") -asset.require("./LRO_LROC_DEM_Apollo_Basin_3m_Color_Slope_Hazard/LRO_LROC_DEM_Apollo_Basin_3m_Color_Slope_Hazard") -asset.require("./LRO_LROC_DEM_Apollo_Basin_ColorHillshade/LRO_LROC_DEM_Apollo_Basin_ColorHillshade") -asset.require("./LRO_LROC_DEM_Apollo_Basin_Colorized_Confidence/LRO_LROC_DEM_Apollo_Basin_Colorized_Confidence") -asset.require("./LRO_LROC_DEM_Apollo_Basin_Colorized_Slope/LRO_LROC_DEM_Apollo_Basin_Colorized_Slope") -asset.require("./LRO_LROC_DEM_Apollo_Basin_Grayscale/LRO_LROC_DEM_Apollo_Basin_Grayscale") -asset.require("./LRO_LROC_DEM_Apollo_Basin_Hillshade/LRO_LROC_DEM_Apollo_Basin_Hillshade") -asset.require("./LRO_LROC_DEM_Aristarchus_1_15m_Color_Roughness/LRO_LROC_DEM_Aristarchus_1_15m_Color_Roughness") -asset.require("./LRO_LROC_DEM_Aristarchus_1_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Aristarchus_1_15m_Color_Roughness_Hazard") -asset.require("./LRO_LROC_DEM_Aristarchus_1_15m_Color_Slope/LRO_LROC_DEM_Aristarchus_1_15m_Color_Slope") -asset.require("./LRO_LROC_DEM_Aristarchus_1_15m_Color_Slope_Hazard/LRO_LROC_DEM_Aristarchus_1_15m_Color_Slope_Hazard") -asset.require("./LRO_LROC_DEM_Aristarchus_1_4m_Color_Roughness/LRO_LROC_DEM_Aristarchus_1_4m_Color_Roughness") -asset.require("./LRO_LROC_DEM_Aristarchus_1_4m_Color_Roughness_Hazard/LRO_LROC_DEM_Aristarchus_1_4m_Color_Roughness_Hazard") -asset.require("./LRO_LROC_DEM_Aristarchus_1_4m_Color_Slope/LRO_LROC_DEM_Aristarchus_1_4m_Color_Slope") -asset.require("./LRO_LROC_DEM_Aristarchus_1_4m_Color_Slope_Hazard/LRO_LROC_DEM_Aristarchus_1_4m_Color_Slope_Hazard") -asset.require("./LRO_LROC_DEM_Aristarchus_1_ColorHillshade/LRO_LROC_DEM_Aristarchus_1_ColorHillshade") -asset.require("./LRO_LROC_DEM_Aristarchus_1_ColorHillshade_Slope/LRO_LROC_DEM_Aristarchus_1_ColorHillshade_Slope") -asset.require("./LRO_LROC_DEM_Aristarchus_1_Colorized_Confidence/LRO_LROC_DEM_Aristarchus_1_Colorized_Confidence") -asset.require("./LRO_LROC_DEM_Aristarchus_1_Grayscale/LRO_LROC_DEM_Aristarchus_1_Grayscale") -asset.require("./LRO_LROC_DEM_Aristarchus_1_Hillshade/LRO_LROC_DEM_Aristarchus_1_Hillshade") -asset.require("./LRO_LROC_DEM_Aristarchus_2_15m_Color_Roughness/LRO_LROC_DEM_Aristarchus_2_15m_Color_Roughness") -asset.require("./LRO_LROC_DEM_Aristarchus_2_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Aristarchus_2_15m_Color_Roughness_Hazard") -asset.require("./LRO_LROC_DEM_Aristarchus_2_15m_Color_Slope/LRO_LROC_DEM_Aristarchus_2_15m_Color_Slope") -asset.require("./LRO_LROC_DEM_Aristarchus_2_15m_Color_Slope_Hazard/LRO_LROC_DEM_Aristarchus_2_15m_Color_Slope_Hazard") -asset.require("./LRO_LROC_DEM_Aristarchus_2_3m_Color_Roughness/LRO_LROC_DEM_Aristarchus_2_3m_Color_Roughness") -asset.require("./LRO_LROC_DEM_Aristarchus_2_3m_Color_Roughness_Hazard/LRO_LROC_DEM_Aristarchus_2_3m_Color_Roughness_Hazard") -asset.require("./LRO_LROC_DEM_Aristarchus_2_3m_Color_Slope/LRO_LROC_DEM_Aristarchus_2_3m_Color_Slope") -asset.require("./LRO_LROC_DEM_Aristarchus_2_3m_Color_Slope_Hazard/LRO_LROC_DEM_Aristarchus_2_3m_Color_Slope_Hazard") -asset.require("./LRO_LROC_DEM_Aristarchus_2_ColorHillshade/LRO_LROC_DEM_Aristarchus_2_ColorHillshade") -asset.require("./LRO_LROC_DEM_Aristarchus_2_Colorized_Confidence/LRO_LROC_DEM_Aristarchus_2_Colorized_Confidence") -asset.require("./LRO_LROC_DEM_Aristarchus_2_Colorized_Slope/LRO_LROC_DEM_Aristarchus_2_Colorized_Slope") -asset.require("./LRO_LROC_DEM_Aristarchus_2_Grayscale/LRO_LROC_DEM_Aristarchus_2_Grayscale") -asset.require("./LRO_LROC_DEM_Aristarchus_2_Hillshade/LRO_LROC_DEM_Aristarchus_2_Hillshade") -asset.require("./LRO_LROC_DEM_Balmer_Basin_15m_Color_Roughness/LRO_LROC_DEM_Balmer_Basin_15m_Color_Roughness") -asset.require("./LRO_LROC_DEM_Balmer_Basin_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Balmer_Basin_15m_Color_Roughness_Hazard") -asset.require("./LRO_LROC_DEM_Balmer_Basin_15m_Color_Slope/LRO_LROC_DEM_Balmer_Basin_15m_Color_Slope") -asset.require("./LRO_LROC_DEM_Balmer_Basin_15m_Color_Slope_Hazard/LRO_LROC_DEM_Balmer_Basin_15m_Color_Slope_Hazard") -asset.require("./LRO_LROC_DEM_Balmer_Basin_3m_Color_Roughness/LRO_LROC_DEM_Balmer_Basin_3m_Color_Roughness") -asset.require("./LRO_LROC_DEM_Balmer_Basin_3m_Color_Roughness_Hazard/LRO_LROC_DEM_Balmer_Basin_3m_Color_Roughness_Hazard") -asset.require("./LRO_LROC_DEM_Balmer_Basin_3m_Color_Slope/LRO_LROC_DEM_Balmer_Basin_3m_Color_Slope") -asset.require("./LRO_LROC_DEM_Balmer_Basin_3m_Color_Slope_Hazard/LRO_LROC_DEM_Balmer_Basin_3m_Color_Slope_Hazard") -asset.require("./LRO_LROC_DEM_Balmer_Basin_ColorHillshade/LRO_LROC_DEM_Balmer_Basin_ColorHillshade") -asset.require("./LRO_LROC_DEM_Balmer_Basin_Colorized_Confidence/LRO_LROC_DEM_Balmer_Basin_Colorized_Confidence") -asset.require("./LRO_LROC_DEM_Balmer_Basin_Colorized_Slope/LRO_LROC_DEM_Balmer_Basin_Colorized_Slope") -asset.require("./LRO_LROC_DEM_Balmer_Basin_Grayscale/LRO_LROC_DEM_Balmer_Basin_Grayscale") -asset.require("./LRO_LROC_DEM_Balmer_Basin_Hillshade/LRO_LROC_DEM_Balmer_Basin_Hillshade") -asset.require("./LRO_LROC_DEM_Bullialdus_Crater_15m_Color_Roughness/LRO_LROC_DEM_Bullialdus_Crater_15m_Color_Roughness") -asset.require("./LRO_LROC_DEM_Bullialdus_Crater_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Bullialdus_Crater_15m_Color_Roughness_Hazard") -asset.require("./LRO_LROC_DEM_Bullialdus_Crater_15m_Color_Slope/LRO_LROC_DEM_Bullialdus_Crater_15m_Color_Slope") -asset.require("./LRO_LROC_DEM_Bullialdus_Crater_15m_Color_Slope_Hazard/LRO_LROC_DEM_Bullialdus_Crater_15m_Color_Slope_Hazard") -asset.require("./LRO_LROC_DEM_Bullialdus_Crater_8m_Color_Roughness/LRO_LROC_DEM_Bullialdus_Crater_8m_Color_Roughness") -asset.require("./LRO_LROC_DEM_Bullialdus_Crater_8m_Color_Roughness_Hazard/LRO_LROC_DEM_Bullialdus_Crater_8m_Color_Roughness_Hazard") -asset.require("./LRO_LROC_DEM_Bullialdus_Crater_8m_Color_Slope/LRO_LROC_DEM_Bullialdus_Crater_8m_Color_Slope") -asset.require("./LRO_LROC_DEM_Bullialdus_Crater_8m_Color_Slope_Hazard/LRO_LROC_DEM_Bullialdus_Crater_8m_Color_Slope_Hazard") -asset.require("./LRO_LROC_DEM_Bullialdus_Crater_ColorHillshade/LRO_LROC_DEM_Bullialdus_Crater_ColorHillshade") -asset.require("./LRO_LROC_DEM_Bullialdus_Crater_Colorized_Confidence/LRO_LROC_DEM_Bullialdus_Crater_Colorized_Confidence") -asset.require("./LRO_LROC_DEM_Bullialdus_Crater_Colorized_Slope/LRO_LROC_DEM_Bullialdus_Crater_Colorized_Slope") -asset.require("./LRO_LROC_DEM_Bullialdus_Crater_Grayscale/LRO_LROC_DEM_Bullialdus_Crater_Grayscale") -asset.require("./LRO_LROC_DEM_Bullialdus_Crater_Hillshade/LRO_LROC_DEM_Bullialdus_Crater_Hillshade") -asset.require("./LRO_LROC_DEM_Compton_Belkovich_Th_Anomaly_ColorHillshade/LRO_LROC_DEM_Compton_Belkovich_Th_Anomaly_ColorHillshade") -asset.require("./LRO_LROC_DEM_Compton_Belkovich_Th_Anomaly_Colorized_Confidence/LRO_LROC_DEM_Compton_Belkovich_Th_Anomaly_Colorized_Confidence") -asset.require("./LRO_LROC_DEM_Compton_Belkovich_Th_Anomaly_Colorized_Slope/LRO_LROC_DEM_Compton_Belkovich_Th_Anomaly_Colorized_Slope") -asset.require("./LRO_LROC_DEM_Compton_Belkovich_Th_Anomaly_Grayscale/LRO_LROC_DEM_Compton_Belkovich_Th_Anomaly_Grayscale") -asset.require("./LRO_LROC_DEM_Compton_Belkovich_Th_Anomaly_Hillshade/LRO_LROC_DEM_Compton_Belkovich_Th_Anomaly_Hillshade") -asset.require("./LRO_LROC_DEM_Dante_Crater_15m_Color_Roughness/LRO_LROC_DEM_Dante_Crater_15m_Color_Roughness") -asset.require("./LRO_LROC_DEM_Dante_Crater_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Dante_Crater_15m_Color_Roughness_Hazard") -asset.require("./LRO_LROC_DEM_Dante_Crater_15m_Color_Slope/LRO_LROC_DEM_Dante_Crater_15m_Color_Slope") -asset.require("./LRO_LROC_DEM_Dante_Crater_15m_Color_Slope_Hazard/LRO_LROC_DEM_Dante_Crater_15m_Color_Slope_Hazard") -asset.require("./LRO_LROC_DEM_Dante_Crater_3m_Color_Roughness/LRO_LROC_DEM_Dante_Crater_3m_Color_Roughness") -asset.require("./LRO_LROC_DEM_Dante_Crater_3m_Color_Roughness_Hazard/LRO_LROC_DEM_Dante_Crater_3m_Color_Roughness_Hazard") -asset.require("./LRO_LROC_DEM_Dante_Crater_3m_Color_Slope/LRO_LROC_DEM_Dante_Crater_3m_Color_Slope") -asset.require("./LRO_LROC_DEM_Dante_Crater_3m_Color_Slope_Hazard/LRO_LROC_DEM_Dante_Crater_3m_Color_Slope_Hazard") -asset.require("./LRO_LROC_DEM_Dante_Crater_ColorHillshade/LRO_LROC_DEM_Dante_Crater_ColorHillshade") -asset.require("./LRO_LROC_DEM_Dante_Crater_Colorized_Confidence/LRO_LROC_DEM_Dante_Crater_Colorized_Confidence") -asset.require("./LRO_LROC_DEM_Dante_Crater_Colorized_Slope/LRO_LROC_DEM_Dante_Crater_Colorized_Slope") -asset.require("./LRO_LROC_DEM_Dante_Crater_Grayscale/LRO_LROC_DEM_Dante_Crater_Grayscale") -asset.require("./LRO_LROC_DEM_Dante_Crater_Hillshade/LRO_LROC_DEM_Dante_Crater_Hillshade") -asset.require("./LRO_LROC_DEM_Flamsteed_Crater_ColorHillshade/LRO_LROC_DEM_Flamsteed_Crater_ColorHillshade") -asset.require("./LRO_LROC_DEM_Flamsteed_Crater_Colorized_Confidence/LRO_LROC_DEM_Flamsteed_Crater_Colorized_Confidence") -asset.require("./LRO_LROC_DEM_Flamsteed_Crater_Colorized_Slope/LRO_LROC_DEM_Flamsteed_Crater_Colorized_Slope") -asset.require("./LRO_LROC_DEM_Flamsteed_Crater_Grayscale/LRO_LROC_DEM_Flamsteed_Crater_Grayscale") -asset.require("./LRO_LROC_DEM_Flamsteed_Crater_Hillshade/LRO_LROC_DEM_Flamsteed_Crater_Hillshade") -asset.require("./LRO_LROC_DEM_Fresh_Crater_East_of_Lents_ColorHillshade/LRO_LROC_DEM_Fresh_Crater_East_of_Lents_ColorHillshade") -asset.require("./LRO_LROC_DEM_Fresh_Crater_East_of_Lents_Colorized_Slope/LRO_LROC_DEM_Fresh_Crater_East_of_Lents_Colorized_Slope") -asset.require("./LRO_LROC_DEM_Fresh_Crater_East_of_Lents_Grayscale/LRO_LROC_DEM_Fresh_Crater_East_of_Lents_Grayscale") -asset.require("./LRO_LROC_DEM_Gruithuisen_Domes_15m_Color_Roughness/LRO_LROC_DEM_Gruithuisen_Domes_15m_Color_Roughness") -asset.require("./LRO_LROC_DEM_Gruithuisen_Domes_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Gruithuisen_Domes_15m_Color_Roughness_Hazard") -asset.require("./LRO_LROC_DEM_Gruithuisen_Domes_15m_Color_Slope/LRO_LROC_DEM_Gruithuisen_Domes_15m_Color_Slope") -asset.require("./LRO_LROC_DEM_Gruithuisen_Domes_15m_Color_Slope_Hazard/LRO_LROC_DEM_Gruithuisen_Domes_15m_Color_Slope_Hazard") -asset.require("./LRO_LROC_DEM_Gruithuisen_Domes_4m_Color_Roughness/LRO_LROC_DEM_Gruithuisen_Domes_4m_Color_Roughness") -asset.require("./LRO_LROC_DEM_Gruithuisen_Domes_4m_Color_Roughness_Hazard/LRO_LROC_DEM_Gruithuisen_Domes_4m_Color_Roughness_Hazard") -asset.require("./LRO_LROC_DEM_Gruithuisen_Domes_4m_Color_Slope/LRO_LROC_DEM_Gruithuisen_Domes_4m_Color_Slope") -asset.require("./LRO_LROC_DEM_Gruithuisen_Domes_4m_Color_Slope_Hazard/LRO_LROC_DEM_Gruithuisen_Domes_4m_Color_Slope_Hazard") -asset.require("./LRO_LROC_DEM_Gruithuisen_Domes_ColorHillshade/LRO_LROC_DEM_Gruithuisen_Domes_ColorHillshade") -asset.require("./LRO_LROC_DEM_Gruithuisen_Domes_ColorHillshade_Slope/LRO_LROC_DEM_Gruithuisen_Domes_ColorHillshade_Slope") -asset.require("./LRO_LROC_DEM_Gruithuisen_Domes_Colorized_Confidence/LRO_LROC_DEM_Gruithuisen_Domes_Colorized_Confidence") -asset.require("./LRO_LROC_DEM_Gruithuisen_Domes_Grayscale/LRO_LROC_DEM_Gruithuisen_Domes_Grayscale") -asset.require("./LRO_LROC_DEM_Gruithuisen_Domes_Hillshade/LRO_LROC_DEM_Gruithuisen_Domes_Hillshade") -asset.require("./LRO_LROC_DEM_Hertzsprung_15m_Color_Roughness/LRO_LROC_DEM_Hertzsprung_15m_Color_Roughness") -asset.require("./LRO_LROC_DEM_Hertzsprung_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Hertzsprung_15m_Color_Roughness_Hazard") -asset.require("./LRO_LROC_DEM_Hertzsprung_15m_Color_Slope/LRO_LROC_DEM_Hertzsprung_15m_Color_Slope") -asset.require("./LRO_LROC_DEM_Hertzsprung_15m_Color_Slope_Hazard/LRO_LROC_DEM_Hertzsprung_15m_Color_Slope_Hazard") -asset.require("./LRO_LROC_DEM_Hertzsprung_3m_Color_Roughness/LRO_LROC_DEM_Hertzsprung_3m_Color_Roughness") -asset.require("./LRO_LROC_DEM_Hertzsprung_3m_Color_Roughness_Hazard/LRO_LROC_DEM_Hertzsprung_3m_Color_Roughness_Hazard") -asset.require("./LRO_LROC_DEM_Hertzsprung_3m_Color_Slope/LRO_LROC_DEM_Hertzsprung_3m_Color_Slope") -asset.require("./LRO_LROC_DEM_Hertzsprung_3m_Color_Slope_Hazard/LRO_LROC_DEM_Hertzsprung_3m_Color_Slope_Hazard") -asset.require("./LRO_LROC_DEM_Hertzsprung_ColorHillshade/LRO_LROC_DEM_Hertzsprung_ColorHillshade") -asset.require("./LRO_LROC_DEM_Hertzsprung_Colorized_Confidence/LRO_LROC_DEM_Hertzsprung_Colorized_Confidence") -asset.require("./LRO_LROC_DEM_Hertzsprung_Colorized_Slope/LRO_LROC_DEM_Hertzsprung_Colorized_Slope") -asset.require("./LRO_LROC_DEM_Hertzsprung_Grayscale/LRO_LROC_DEM_Hertzsprung_Grayscale") -asset.require("./LRO_LROC_DEM_Hertzsprung_Hillshade/LRO_LROC_DEM_Hertzsprung_Hillshade") -asset.require("./LRO_LROC_DEM_Hortensius_Domes_15m_Color_Roughness/LRO_LROC_DEM_Hortensius_Domes_15m_Color_Roughness") -asset.require("./LRO_LROC_DEM_Hortensius_Domes_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Hortensius_Domes_15m_Color_Roughness_Hazard") -asset.require("./LRO_LROC_DEM_Hortensius_Domes_15m_Color_Slope/LRO_LROC_DEM_Hortensius_Domes_15m_Color_Slope") -asset.require("./LRO_LROC_DEM_Hortensius_Domes_15m_Color_Slope_Hazard/LRO_LROC_DEM_Hortensius_Domes_15m_Color_Slope_Hazard") -asset.require("./LRO_LROC_DEM_Hortensius_Domes_4m_Color_Roughness/LRO_LROC_DEM_Hortensius_Domes_4m_Color_Roughness") -asset.require("./LRO_LROC_DEM_Hortensius_Domes_4m_Color_Roughness_Hazard/LRO_LROC_DEM_Hortensius_Domes_4m_Color_Roughness_Hazard") -asset.require("./LRO_LROC_DEM_Hortensius_Domes_4m_Color_Slope/LRO_LROC_DEM_Hortensius_Domes_4m_Color_Slope") -asset.require("./LRO_LROC_DEM_Hortensius_Domes_4m_Color_Slope_Hazard/LRO_LROC_DEM_Hortensius_Domes_4m_Color_Slope_Hazard") -asset.require("./LRO_LROC_DEM_Hortensius_Domes_ColorHillshade/LRO_LROC_DEM_Hortensius_Domes_ColorHillshade") -asset.require("./LRO_LROC_DEM_Hortensius_Domes_ColorHillshade_Slope/LRO_LROC_DEM_Hortensius_Domes_ColorHillshade_Slope") -asset.require("./LRO_LROC_DEM_Hortensius_Domes_Colorized_Confidence/LRO_LROC_DEM_Hortensius_Domes_Colorized_Confidence") -asset.require("./LRO_LROC_DEM_Hortensius_Domes_Grayscale/LRO_LROC_DEM_Hortensius_Domes_Grayscale") -asset.require("./LRO_LROC_DEM_Hortensius_Domes_Hillshade/LRO_LROC_DEM_Hortensius_Domes_Hillshade") -asset.require("./LRO_LROC_DEM_Humboldtianum_Basin_ColorHillshade/LRO_LROC_DEM_Humboldtianum_Basin_ColorHillshade") -asset.require("./LRO_LROC_DEM_Humboldtianum_Basin_Colorized_Confidence/LRO_LROC_DEM_Humboldtianum_Basin_Colorized_Confidence") -asset.require("./LRO_LROC_DEM_Humboldtianum_Basin_Colorized_Slope/LRO_LROC_DEM_Humboldtianum_Basin_Colorized_Slope") -asset.require("./LRO_LROC_DEM_Humboldtianum_Basin_Grayscale/LRO_LROC_DEM_Humboldtianum_Basin_Grayscale") -asset.require("./LRO_LROC_DEM_Humboldtianum_Basin_Hillshade/LRO_LROC_DEM_Humboldtianum_Basin_Hillshade") -asset.require("./LRO_LROC_DEM_Ina_(D-Caldera)_ColorHillshade/LRO_LROC_DEM_Ina_(D-Caldera)_ColorHillshade") -asset.require("./LRO_LROC_DEM_Ina_D-Caldera_ColorHillshade_Slope/LRO_LROC_DEM_Ina_D-Caldera_ColorHillshade_Slope") -asset.require("./LRO_LROC_DEM_Ina_D-Caldera_Colorized_Confidence/LRO_LROC_DEM_Ina_D-Caldera_Colorized_Confidence") -asset.require("./LRO_LROC_DEM_Ina_D-Caldera_Grayscale/LRO_LROC_DEM_Ina_D-Caldera_Grayscale") -asset.require("./LRO_LROC_DEM_Ina_D-Caldera_Hillshade/LRO_LROC_DEM_Ina_D-Caldera_Hillshade") -asset.require("./LRO_LROC_DEM_King_Crater_15m_Color_Roughness/LRO_LROC_DEM_King_Crater_15m_Color_Roughness") -asset.require("./LRO_LROC_DEM_King_Crater_15m_Color_Roughness_Hazard/LRO_LROC_DEM_King_Crater_15m_Color_Roughness_Hazard") -asset.require("./LRO_LROC_DEM_King_Crater_15m_Color_Slope/LRO_LROC_DEM_King_Crater_15m_Color_Slope") -asset.require("./LRO_LROC_DEM_King_Crater_15m_Color_Slope_Hazard/LRO_LROC_DEM_King_Crater_15m_Color_Slope_Hazard") -asset.require("./LRO_LROC_DEM_King_Crater_4m_Color_Roughness/LRO_LROC_DEM_King_Crater_4m_Color_Roughness") -asset.require("./LRO_LROC_DEM_King_Crater_4m_Color_Roughness_Hazard/LRO_LROC_DEM_King_Crater_4m_Color_Roughness_Hazard") -asset.require("./LRO_LROC_DEM_King_Crater_4m_Color_Slope/LRO_LROC_DEM_King_Crater_4m_Color_Slope") -asset.require("./LRO_LROC_DEM_King_Crater_4m_Color_Slope_Hazard/LRO_LROC_DEM_King_Crater_4m_Color_Slope_Hazard") -asset.require("./LRO_LROC_DEM_King_Crater_ColorHillshade/LRO_LROC_DEM_King_Crater_ColorHillshade") -asset.require("./LRO_LROC_DEM_King_Crater_Colorized_Confidence/LRO_LROC_DEM_King_Crater_Colorized_Confidence") -asset.require("./LRO_LROC_DEM_King_Crater_Colorized_Slope/LRO_LROC_DEM_King_Crater_Colorized_Slope") -asset.require("./LRO_LROC_DEM_King_Crater_Grayscale/LRO_LROC_DEM_King_Crater_Grayscale") -asset.require("./LRO_LROC_DEM_King_Crater_Hillshade/LRO_LROC_DEM_King_Crater_Hillshade") -asset.require("./LRO_LROC_DEM_Lichtenberg_Crater_15m_Color_Roughness/LRO_LROC_DEM_Lichtenberg_Crater_15m_Color_Roughness") -asset.require("./LRO_LROC_DEM_Lichtenberg_Crater_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Lichtenberg_Crater_15m_Color_Roughness_Hazard") -asset.require("./LRO_LROC_DEM_Lichtenberg_Crater_15m_Color_Slope/LRO_LROC_DEM_Lichtenberg_Crater_15m_Color_Slope") -asset.require("./LRO_LROC_DEM_Lichtenberg_Crater_15m_Color_Slope_Hazard/LRO_LROC_DEM_Lichtenberg_Crater_15m_Color_Slope_Hazard") -asset.require("./LRO_LROC_DEM_Lichtenberg_Crater_4m_Color_Roughness/LRO_LROC_DEM_Lichtenberg_Crater_4m_Color_Roughness") -asset.require("./LRO_LROC_DEM_Lichtenberg_Crater_4m_Color_Roughness_Hazard/LRO_LROC_DEM_Lichtenberg_Crater_4m_Color_Roughness_Hazard") -asset.require("./LRO_LROC_DEM_Lichtenberg_Crater_4m_Color_Slope/LRO_LROC_DEM_Lichtenberg_Crater_4m_Color_Slope") -asset.require("./LRO_LROC_DEM_Lichtenberg_Crater_4m_Color_Slope_Hazard/LRO_LROC_DEM_Lichtenberg_Crater_4m_Color_Slope_Hazard") -asset.require("./LRO_LROC_DEM_Lichtenberg_Crater_ColorHillshade/LRO_LROC_DEM_Lichtenberg_Crater_ColorHillshade") -asset.require("./LRO_LROC_DEM_Lichtenberg_Crater_ColorHillshade_Slope/LRO_LROC_DEM_Lichtenberg_Crater_ColorHillshade_Slope") -asset.require("./LRO_LROC_DEM_Lichtenberg_Crater_Colorized_Confidence/LRO_LROC_DEM_Lichtenberg_Crater_Colorized_Confidence") -asset.require("./LRO_LROC_DEM_Lichtenberg_Crater_Grayscale/LRO_LROC_DEM_Lichtenberg_Crater_Grayscale") -asset.require("./LRO_LROC_DEM_Lichtenberg_Crater_Hillshade/LRO_LROC_DEM_Lichtenberg_Crater_Hillshade") -asset.require("./LRO_LROC_DEM_Mare_Crisium_15m_Color_Roughness/LRO_LROC_DEM_Mare_Crisium_15m_Color_Roughness") -asset.require("./LRO_LROC_DEM_Mare_Crisium_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Mare_Crisium_15m_Color_Roughness_Hazard") -asset.require("./LRO_LROC_DEM_Mare_Crisium_15m_Color_Slope/LRO_LROC_DEM_Mare_Crisium_15m_Color_Slope") -asset.require("./LRO_LROC_DEM_Mare_Crisium_15m_Color_Slope_Hazard/LRO_LROC_DEM_Mare_Crisium_15m_Color_Slope_Hazard") -asset.require("./LRO_LROC_DEM_Mare_Crisium_3m_Color_Roughness/LRO_LROC_DEM_Mare_Crisium_3m_Color_Roughness") -asset.require("./LRO_LROC_DEM_Mare_Crisium_3m_Color_Roughness_Hazard/LRO_LROC_DEM_Mare_Crisium_3m_Color_Roughness_Hazard") -asset.require("./LRO_LROC_DEM_Mare_Crisium_3m_Color_Slope/LRO_LROC_DEM_Mare_Crisium_3m_Color_Slope") -asset.require("./LRO_LROC_DEM_Mare_Crisium_3m_Color_Slope_Hazard/LRO_LROC_DEM_Mare_Crisium_3m_Color_Slope_Hazard") -asset.require("./LRO_LROC_DEM_Mare_Crisium_ColorHillshade/LRO_LROC_DEM_Mare_Crisium_ColorHillshade") -asset.require("./LRO_LROC_DEM_Mare_Crisium_Colorized_Confidence/LRO_LROC_DEM_Mare_Crisium_Colorized_Confidence") -asset.require("./LRO_LROC_DEM_Mare_Crisium_Colorized_Slope/LRO_LROC_DEM_Mare_Crisium_Colorized_Slope") -asset.require("./LRO_LROC_DEM_Mare_Crisium_Grayscale/LRO_LROC_DEM_Mare_Crisium_Grayscale") -asset.require("./LRO_LROC_DEM_Mare_Crisium_Hillshade/LRO_LROC_DEM_Mare_Crisium_Hillshade") -asset.require("./LRO_LROC_DEM_Mare_Ingenii_ColorHillshade/LRO_LROC_DEM_Mare_Ingenii_ColorHillshade") -asset.require("./LRO_LROC_DEM_Mare_Ingenii_ColorHillshade_Slope/LRO_LROC_DEM_Mare_Ingenii_ColorHillshade_Slope") -asset.require("./LRO_LROC_DEM_Mare_Ingenii_Colorized_Confidence/LRO_LROC_DEM_Mare_Ingenii_Colorized_Confidence") -asset.require("./LRO_LROC_DEM_Mare_Ingenii_Grayscale/LRO_LROC_DEM_Mare_Ingenii_Grayscale") -asset.require("./LRO_LROC_DEM_Mare_Ingenii_Hillshade/LRO_LROC_DEM_Mare_Ingenii_Hillshade") -asset.require("./LRO_LROC_DEM_Mare_Moscoviense_ColorHillshade/LRO_LROC_DEM_Mare_Moscoviense_ColorHillshade") -asset.require("./LRO_LROC_DEM_Mare_Moscoviense_Colorized_Confidence/LRO_LROC_DEM_Mare_Moscoviense_Colorized_Confidence") -asset.require("./LRO_LROC_DEM_Mare_Moscoviense_Colorized_Slope/LRO_LROC_DEM_Mare_Moscoviense_Colorized_Slope") -asset.require("./LRO_LROC_DEM_Mare_Moscoviense_Grayscale/LRO_LROC_DEM_Mare_Moscoviense_Grayscale") -asset.require("./LRO_LROC_DEM_Mare_Moscoviense_Hillshade/LRO_LROC_DEM_Mare_Moscoviense_Hillshade") -asset.require("./LRO_LROC_DEM_Mare_Smythii_ColorHillshade/LRO_LROC_DEM_Mare_Smythii_ColorHillshade") -asset.require("./LRO_LROC_DEM_Mare_Smythii_Colorized_Confidence/LRO_LROC_DEM_Mare_Smythii_Colorized_Confidence") -asset.require("./LRO_LROC_DEM_Mare_Smythii_Colorized_Slope/LRO_LROC_DEM_Mare_Smythii_Colorized_Slope") -asset.require("./LRO_LROC_DEM_Mare_Smythii_Grayscale/LRO_LROC_DEM_Mare_Smythii_Grayscale") -asset.require("./LRO_LROC_DEM_Mare_Smythii_Hillshade/LRO_LROC_DEM_Mare_Smythii_Hillshade") -asset.require("./LRO_LROC_DEM_Mare_Tranquillitatis_ColorHillshade/LRO_LROC_DEM_Mare_Tranquillitatis_ColorHillshade") -asset.require("./LRO_LROC_DEM_Mare_Tranquillitatis_Colorized_Confidence/LRO_LROC_DEM_Mare_Tranquillitatis_Colorized_Confidence") -asset.require("./LRO_LROC_DEM_Mare_Tranquillitatis_Colorized_Slope/LRO_LROC_DEM_Mare_Tranquillitatis_Colorized_Slope") -asset.require("./LRO_LROC_DEM_Mare_Tranquillitatis_Grayscale/LRO_LROC_DEM_Mare_Tranquillitatis_Grayscale") -asset.require("./LRO_LROC_DEM_Mare_Tranquillitatis_Hillshade/LRO_LROC_DEM_Mare_Tranquillitatis_Hillshade") -asset.require("./LRO_LROC_DEM_Marius_Hills_ColorHillshade/LRO_LROC_DEM_Marius_Hills_ColorHillshade") -asset.require("./LRO_LROC_DEM_Marius_Hills_ColorHillshade_Slope/LRO_LROC_DEM_Marius_Hills_ColorHillshade_Slope") -asset.require("./LRO_LROC_DEM_Marius_Hills_Colorized_Confidence/LRO_LROC_DEM_Marius_Hills_Colorized_Confidence") -asset.require("./LRO_LROC_DEM_Marius_Hills_Grayscale/LRO_LROC_DEM_Marius_Hills_Grayscale") -asset.require("./LRO_LROC_DEM_Marius_Hills_Hillshade/LRO_LROC_DEM_Marius_Hills_Hillshade") -asset.require("./LRO_LROC_DEM_Montes_Pyrenaeus_15m_Color_Roughness/LRO_LROC_DEM_Montes_Pyrenaeus_15m_Color_Roughness") -asset.require("./LRO_LROC_DEM_Montes_Pyrenaeus_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Montes_Pyrenaeus_15m_Color_Roughness_Hazard") -asset.require("./LRO_LROC_DEM_Montes_Pyrenaeus_15m_Color_Slope/LRO_LROC_DEM_Montes_Pyrenaeus_15m_Color_Slope") -asset.require("./LRO_LROC_DEM_Montes_Pyrenaeus_15m_Color_Slope_Hazard/LRO_LROC_DEM_Montes_Pyrenaeus_15m_Color_Slope_Hazard") -asset.require("./LRO_LROC_DEM_Montes_Pyrenaeus_3m_Color_Roughness/LRO_LROC_DEM_Montes_Pyrenaeus_3m_Color_Roughness") -asset.require("./LRO_LROC_DEM_Montes_Pyrenaeus_3m_Color_Roughness_Hazard/LRO_LROC_DEM_Montes_Pyrenaeus_3m_Color_Roughness_Hazard") -asset.require("./LRO_LROC_DEM_Montes_Pyrenaeus_3m_Color_Slope/LRO_LROC_DEM_Montes_Pyrenaeus_3m_Color_Slope") -asset.require("./LRO_LROC_DEM_Montes_Pyrenaeus_3m_Color_Slope_Hazard/LRO_LROC_DEM_Montes_Pyrenaeus_3m_Color_Slope_Hazard") -asset.require("./LRO_LROC_DEM_Montes_Pyrenaeus_ColorHillshade/LRO_LROC_DEM_Montes_Pyrenaeus_ColorHillshade") -asset.require("./LRO_LROC_DEM_Montes_Pyrenaeus_Colorized_Confidence/LRO_LROC_DEM_Montes_Pyrenaeus_Colorized_Confidence") -asset.require("./LRO_LROC_DEM_Montes_Pyrenaeus_Colorized_Slope/LRO_LROC_DEM_Montes_Pyrenaeus_Colorized_Slope") -asset.require("./LRO_LROC_DEM_Montes_Pyrenaeus_Grayscale/LRO_LROC_DEM_Montes_Pyrenaeus_Grayscale") -asset.require("./LRO_LROC_DEM_Montes_Pyrenaeus_Hillshade/LRO_LROC_DEM_Montes_Pyrenaeus_Hillshade") -asset.require("./LRO_LROC_DEM_Murchison_Crater_ColorHillshade/LRO_LROC_DEM_Murchison_Crater_ColorHillshade") -asset.require("./LRO_LROC_DEM_Murchison_Crater_Colorized_Confidence/LRO_LROC_DEM_Murchison_Crater_Colorized_Confidence") -asset.require("./LRO_LROC_DEM_Murchison_Crater_Colorized_Slope/LRO_LROC_DEM_Murchison_Crater_Colorized_Slope") -asset.require("./LRO_LROC_DEM_Murchison_Crater_Grayscale/LRO_LROC_DEM_Murchison_Crater_Grayscale") -asset.require("./LRO_LROC_DEM_Murchison_Crater_Hillshade/LRO_LROC_DEM_Murchison_Crater_Hillshade") -asset.require("./LRO_LROC_DEM_Orientale_1_15m_Color_Roughness/LRO_LROC_DEM_Orientale_1_15m_Color_Roughness") -asset.require("./LRO_LROC_DEM_Orientale_1_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Orientale_1_15m_Color_Roughness_Hazard") -asset.require("./LRO_LROC_DEM_Orientale_1_15m_Color_Slope/LRO_LROC_DEM_Orientale_1_15m_Color_Slope") -asset.require("./LRO_LROC_DEM_Orientale_1_15m_Color_Slope_Hazard/LRO_LROC_DEM_Orientale_1_15m_Color_Slope_Hazard") -asset.require("./LRO_LROC_DEM_Orientale_1_4m_Color_Roughness/LRO_LROC_DEM_Orientale_1_4m_Color_Roughness") -asset.require("./LRO_LROC_DEM_Orientale_1_4m_Color_Roughness_Hazard/LRO_LROC_DEM_Orientale_1_4m_Color_Roughness_Hazard") -asset.require("./LRO_LROC_DEM_Orientale_1_4m_Color_Slope/LRO_LROC_DEM_Orientale_1_4m_Color_Slope") -asset.require("./LRO_LROC_DEM_Orientale_1_4m_Color_Slope_Hazard/LRO_LROC_DEM_Orientale_1_4m_Color_Slope_Hazard") -asset.require("./LRO_LROC_DEM_Orientale_1_ColorHillshade/LRO_LROC_DEM_Orientale_1_ColorHillshade") -asset.require("./LRO_LROC_DEM_Orientale_1_Colorized_Confidence/LRO_LROC_DEM_Orientale_1_Colorized_Confidence") -asset.require("./LRO_LROC_DEM_Orientale_1_Colorized_Slope/LRO_LROC_DEM_Orientale_1_Colorized_Slope") -asset.require("./LRO_LROC_DEM_Orientale_1_Grayscale/LRO_LROC_DEM_Orientale_1_Grayscale") -asset.require("./LRO_LROC_DEM_Orientale_1_Hillshade/LRO_LROC_DEM_Orientale_1_Hillshade") -asset.require("./LRO_LROC_DEM_Plato_Ejecta_15m_Color_Roughness/LRO_LROC_DEM_Plato_Ejecta_15m_Color_Roughness") -asset.require("./LRO_LROC_DEM_Plato_Ejecta_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Plato_Ejecta_15m_Color_Roughness_Hazard") -asset.require("./LRO_LROC_DEM_Plato_Ejecta_15m_Color_Slope/LRO_LROC_DEM_Plato_Ejecta_15m_Color_Slope") -asset.require("./LRO_LROC_DEM_Plato_Ejecta_15m_Color_Slope_Hazard/LRO_LROC_DEM_Plato_Ejecta_15m_Color_Slope_Hazard") -asset.require("./LRO_LROC_DEM_Plato_Ejecta_3m_Color_Roughness/LRO_LROC_DEM_Plato_Ejecta_3m_Color_Roughness") -asset.require("./LRO_LROC_DEM_Plato_Ejecta_3m_Color_Roughness_Hazard/LRO_LROC_DEM_Plato_Ejecta_3m_Color_Roughness_Hazard") -asset.require("./LRO_LROC_DEM_Plato_Ejecta_3m_Color_Slope/LRO_LROC_DEM_Plato_Ejecta_3m_Color_Slope") -asset.require("./LRO_LROC_DEM_Plato_Ejecta_3m_Color_Slope_Hazard/LRO_LROC_DEM_Plato_Ejecta_3m_Color_Slope_Hazard") -asset.require("./LRO_LROC_DEM_Plato_Ejecta_ColorHillshade/LRO_LROC_DEM_Plato_Ejecta_ColorHillshade") -asset.require("./LRO_LROC_DEM_Plato_Ejecta_Colorized_Confidence/LRO_LROC_DEM_Plato_Ejecta_Colorized_Confidence") -asset.require("./LRO_LROC_DEM_Plato_Ejecta_Colorized_Slope/LRO_LROC_DEM_Plato_Ejecta_Colorized_Slope") -asset.require("./LRO_LROC_DEM_Plato_Ejecta_Grayscale/LRO_LROC_DEM_Plato_Ejecta_Grayscale") -asset.require("./LRO_LROC_DEM_Plato_Ejecta_Hillshade/LRO_LROC_DEM_Plato_Ejecta_Hillshade") -asset.require("./LRO_LROC_DEM_Reiner_Gamma_ColorHillshade/LRO_LROC_DEM_Reiner_Gamma_ColorHillshade") -asset.require("./LRO_LROC_DEM_Reiner_Gamma_ColorHillshade_Slope/LRO_LROC_DEM_Reiner_Gamma_ColorHillshade_Slope") -asset.require("./LRO_LROC_DEM_Reiner_Gamma_Colorized_Confidence/LRO_LROC_DEM_Reiner_Gamma_Colorized_Confidence") -asset.require("./LRO_LROC_DEM_Reiner_Gamma_Grayscale/LRO_LROC_DEM_Reiner_Gamma_Grayscale") -asset.require("./LRO_LROC_DEM_Reiner_Gamma_Hillshade/LRO_LROC_DEM_Reiner_Gamma_Hillshade") -asset.require("./LRO_LROC_DEM_Riccioli_Crater_ColorHillshade/LRO_LROC_DEM_Riccioli_Crater_ColorHillshade") -asset.require("./LRO_LROC_DEM_Riccioli_Crater_Colorized_Confidence/LRO_LROC_DEM_Riccioli_Crater_Colorized_Confidence") -asset.require("./LRO_LROC_DEM_Riccioli_Crater_Colorized_Slope/LRO_LROC_DEM_Riccioli_Crater_Colorized_Slope") -asset.require("./LRO_LROC_DEM_Riccioli_Crater_Grayscale/LRO_LROC_DEM_Riccioli_Crater_Grayscale") -asset.require("./LRO_LROC_DEM_Riccioli_Crater_Hillshade/LRO_LROC_DEM_Riccioli_Crater_Hillshade") -asset.require("./LRO_LROC_DEM_Rima_Bode_ColorHillshade/LRO_LROC_DEM_Rima_Bode_ColorHillshade") -asset.require("./LRO_LROC_DEM_Rima_Bode_Colorized_Confidence/LRO_LROC_DEM_Rima_Bode_Colorized_Confidence") -asset.require("./LRO_LROC_DEM_Rima_Bode_Colorized_Slope/LRO_LROC_DEM_Rima_Bode_Colorized_Slope") -asset.require("./LRO_LROC_DEM_Rima_Bode_Grayscale/LRO_LROC_DEM_Rima_Bode_Grayscale") -asset.require("./LRO_LROC_DEM_Rima_Bode_Hillshade/LRO_LROC_DEM_Rima_Bode_Hillshade") -asset.require("./LRO_LROC_DEM_Rimae_Prinz_ColorHillshade/LRO_LROC_DEM_Rimae_Prinz_ColorHillshade") -asset.require("./LRO_LROC_DEM_Rimae_Prinz_Colorized_Confidence/LRO_LROC_DEM_Rimae_Prinz_Colorized_Confidence") -asset.require("./LRO_LROC_DEM_Rimae_Prinz_Colorized_Slope/LRO_LROC_DEM_Rimae_Prinz_Colorized_Slope") -asset.require("./LRO_LROC_DEM_Rimae_Prinz_Grayscale/LRO_LROC_DEM_Rimae_Prinz_Grayscale") -asset.require("./LRO_LROC_DEM_Rimae_Prinz_Hillshade/LRO_LROC_DEM_Rimae_Prinz_Hillshade") -asset.require("./LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_15m_Color_Roughness/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_15m_Color_Roughness") -asset.require("./LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_15m_Color_Roughness_Hazard/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_15m_Color_Roughness_Hazard") -asset.require("./LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_15m_Color_Slope/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_15m_Color_Slope") -asset.require("./LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_15m_Color_Slope_Hazard/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_15m_Color_Slope_Hazard") -asset.require("./LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_3m_Color_Roughness/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_3m_Color_Roughness") -asset.require("./LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_3m_Color_Roughness_Hazard/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_3m_Color_Roughness_Hazard") -asset.require("./LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_3m_Color_Slope/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_3m_Color_Slope") -asset.require("./LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_3m_Color_Slope_Hazard/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_3m_Color_Slope_Hazard") -asset.require("./LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_ColorHillshade/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_ColorHillshade") -asset.require("./LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_Colorized_Confidence/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_Colorized_Confidence") -asset.require("./LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_Colorized_Slope/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_Colorized_Slope") -asset.require("./LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_Grayscale/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_Grayscale") -asset.require("./LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_Hillshade/LRO_LROC_DEM_South_Pole-Aitken_Basin_Interior_Hillshade") -asset.require("./LRO_LROC_DEM_South_Pole-Aitken_Rim_ColorHillshade/LRO_LROC_DEM_South_Pole-Aitken_Rim_ColorHillshade") -asset.require("./LRO_LROC_DEM_South_Pole-Aitken_Rim_ColorHillshade_Slope/LRO_LROC_DEM_South_Pole-Aitken_Rim_ColorHillshade_Slope") -asset.require("./LRO_LROC_DEM_South_Pole-Aitken_Rim_Colorized_Confidence/LRO_LROC_DEM_South_Pole-Aitken_Rim_Colorized_Confidence") -asset.require("./LRO_LROC_DEM_South_Pole-Aitken_Rim_Grayscale/LRO_LROC_DEM_South_Pole-Aitken_Rim_Grayscale") -asset.require("./LRO_LROC_DEM_South_Pole-Aitken_Rim_Hillshade/LRO_LROC_DEM_South_Pole-Aitken_Rim_Hillshade") -asset.require("./LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_15m_Color_Roughness/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_15m_Color_Roughness") -asset.require("./LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_15m_Color_Roughness_Hazard") -asset.require("./LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_15m_Color_Slope/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_15m_Color_Slope") -asset.require("./LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_15m_Color_Slope_Hazard/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_15m_Color_Slope_Hazard") -asset.require("./LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_3m_Color_Roughness/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_3m_Color_Roughness") -asset.require("./LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_3m_Color_Roughness_Hazard/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_3m_Color_Roughness_Hazard") -asset.require("./LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_3m_Color_Slope/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_3m_Color_Slope") -asset.require("./LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_3m_Color_Slope_Hazard/LRO_LROC_DEM_Stratton_(Dewar)_High_Fe_Anomaly_3m_Color_Slope_Hazard") -asset.require("./LRO_LROC_DEM_Stratton_(Dewar)_ColorHillshade/LRO_LROC_DEM_Stratton_(Dewar)_ColorHillshade") -asset.require("./LRO_LROC_DEM_Stratton_(Dewar)_Colorized_Confidence/LRO_LROC_DEM_Stratton_(Dewar)_Colorized_Confidence") -asset.require("./LRO_LROC_DEM_Stratton_(Dewar)_Colorized_Slope/LRO_LROC_DEM_Stratton_(Dewar)_Colorized_Slope") -asset.require("./LRO_LROC_DEM_Stratton_(Dewar)_Grayscale/LRO_LROC_DEM_Stratton_(Dewar)_Grayscale") -asset.require("./LRO_LROC_DEM_Stratton_(Dewar)_Hillshade/LRO_LROC_DEM_Stratton_(Dewar)_Hillshade") -asset.require("./LRO_LROC_DEM_Sulpicius_Gallus_15m_Color_Roughness/LRO_LROC_DEM_Sulpicius_Gallus_15m_Color_Roughness") -asset.require("./LRO_LROC_DEM_Sulpicius_Gallus_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Sulpicius_Gallus_15m_Color_Roughness_Hazard") -asset.require("./LRO_LROC_DEM_Sulpicius_Gallus_15m_Color_Slope/LRO_LROC_DEM_Sulpicius_Gallus_15m_Color_Slope") -asset.require("./LRO_LROC_DEM_Sulpicius_Gallus_15m_Color_Slope_Hazard/LRO_LROC_DEM_Sulpicius_Gallus_15m_Color_Slope_Hazard") -asset.require("./LRO_LROC_DEM_Sulpicius_Gallus_4m_Color_Roughness/LRO_LROC_DEM_Sulpicius_Gallus_4m_Color_Roughness") -asset.require("./LRO_LROC_DEM_Sulpicius_Gallus_4m_Color_Roughness_Hazard/LRO_LROC_DEM_Sulpicius_Gallus_4m_Color_Roughness_Hazard") -asset.require("./LRO_LROC_DEM_Sulpicius_Gallus_4m_Color_Slope/LRO_LROC_DEM_Sulpicius_Gallus_4m_Color_Slope") -asset.require("./LRO_LROC_DEM_Sulpicius_Gallus_4m_Color_Slope_Hazard/LRO_LROC_DEM_Sulpicius_Gallus_4m_Color_Slope_Hazard") -asset.require("./LRO_LROC_DEM_Sulpicius_Gallus_ColorHillshade/LRO_LROC_DEM_Sulpicius_Gallus_ColorHillshade") -asset.require("./LRO_LROC_DEM_Sulpicius_Gallus_ColorHillshade_Slope/LRO_LROC_DEM_Sulpicius_Gallus_ColorHillshade_Slope") -asset.require("./LRO_LROC_DEM_Sulpicius_Gallus_Colorized_Confidence/LRO_LROC_DEM_Sulpicius_Gallus_Colorized_Confidence") -asset.require("./LRO_LROC_DEM_Sulpicius_Gallus_Grayscale/LRO_LROC_DEM_Sulpicius_Gallus_Grayscale") -asset.require("./LRO_LROC_DEM_Sulpicius_Gallus_Hillshade/LRO_LROC_DEM_Sulpicius_Gallus_Hillshade") -asset.require("./LRO_LROC_DEM_Tsiolkovskiy_Crater_15m_Color_Roughness/LRO_LROC_DEM_Tsiolkovskiy_Crater_15m_Color_Roughness") -asset.require("./LRO_LROC_DEM_Tsiolkovskiy_Crater_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Tsiolkovskiy_Crater_15m_Color_Roughness_Hazard") -asset.require("./LRO_LROC_DEM_Tsiolkovskiy_Crater_15m_Color_Slope/LRO_LROC_DEM_Tsiolkovskiy_Crater_15m_Color_Slope") -asset.require("./LRO_LROC_DEM_Tsiolkovskiy_Crater_15m_Color_Slope_Hazard/LRO_LROC_DEM_Tsiolkovskiy_Crater_15m_Color_Slope_Hazard") -asset.require("./LRO_LROC_DEM_Tsiolkovskiy_Crater_3m_Color_Roughness/LRO_LROC_DEM_Tsiolkovskiy_Crater_3m_Color_Roughness") -asset.require("./LRO_LROC_DEM_Tsiolkovskiy_Crater_3m_Color_Roughness_Hazard/LRO_LROC_DEM_Tsiolkovskiy_Crater_3m_Color_Roughness_Hazard") -asset.require("./LRO_LROC_DEM_Tsiolkovskiy_Crater_3m_Color_Slope/LRO_LROC_DEM_Tsiolkovskiy_Crater_3m_Color_Slope") -asset.require("./LRO_LROC_DEM_Tsiolkovskiy_Crater_3m_Color_Slope_Hazard/LRO_LROC_DEM_Tsiolkovskiy_Crater_3m_Color_Slope_Hazard") -asset.require("./LRO_LROC_DEM_Tsiolkovskiy_Crater_ColorHillshade/LRO_LROC_DEM_Tsiolkovskiy_Crater_ColorHillshade") -asset.require("./LRO_LROC_DEM_Tsiolkovskiy_Crater_Colorized_Confidence/LRO_LROC_DEM_Tsiolkovskiy_Crater_Colorized_Confidence") -asset.require("./LRO_LROC_DEM_Tsiolkovskiy_Crater_Colorized_Slope/LRO_LROC_DEM_Tsiolkovskiy_Crater_Colorized_Slope") -asset.require("./LRO_LROC_DEM_Tsiolkovskiy_Crater_Grayscale/LRO_LROC_DEM_Tsiolkovskiy_Crater_Grayscale") -asset.require("./LRO_LROC_DEM_Tsiolkovskiy_Crater_Hillshade/LRO_LROC_DEM_Tsiolkovskiy_Crater_Hillshade") -asset.require("./LRO_LROC_DEM_Tycho_Crater_15m_Color_Roughness/LRO_LROC_DEM_Tycho_Crater_15m_Color_Roughness") -asset.require("./LRO_LROC_DEM_Tycho_Crater_15m_Color_Roughness_Hazard/LRO_LROC_DEM_Tycho_Crater_15m_Color_Roughness_Hazard") -asset.require("./LRO_LROC_DEM_Tycho_Crater_15m_Color_Slope/LRO_LROC_DEM_Tycho_Crater_15m_Color_Slope") -asset.require("./LRO_LROC_DEM_Tycho_Crater_15m_Color_Slope_Hazard/LRO_LROC_DEM_Tycho_Crater_15m_Color_Slope_Hazard") -asset.require("./LRO_LROC_DEM_Tycho_Crater_3m_Color_Roughness/LRO_LROC_DEM_Tycho_Crater_3m_Color_Roughness") -asset.require("./LRO_LROC_DEM_Tycho_Crater_3m_Color_Roughness_Hazard/LRO_LROC_DEM_Tycho_Crater_3m_Color_Roughness_Hazard") -asset.require("./LRO_LROC_DEM_Tycho_Crater_3m_Color_Slope/LRO_LROC_DEM_Tycho_Crater_3m_Color_Slope") -asset.require("./LRO_LROC_DEM_Tycho_Crater_3m_Color_Slope_Hazard/LRO_LROC_DEM_Tycho_Crater_3m_Color_Slope_Hazard") -asset.require("./LRO_LROC_DEM_Tycho_Crater_ColorHillshade/LRO_LROC_DEM_Tycho_Crater_ColorHillshade") -asset.require("./LRO_LROC_DEM_Tycho_Crater_Colorized_Confidence/LRO_LROC_DEM_Tycho_Crater_Colorized_Confidence") -asset.require("./LRO_LROC_DEM_Tycho_Crater_Colorized_Slope/LRO_LROC_DEM_Tycho_Crater_Colorized_Slope") -asset.require("./LRO_LROC_DEM_Tycho_Crater_Grayscale/LRO_LROC_DEM_Tycho_Crater_Grayscale") -asset.require("./LRO_LROC_DEM_Tycho_Crater_Hillshade/LRO_LROC_DEM_Tycho_Crater_Hillshade") -asset.require("./LRO_LROC_Image_Mosaic_26cm_Apollo_11/LRO_LROC_Image_Mosaic_26cm_Apollo_11") -asset.require("./LRO_LROC_Image_Mosaic_28cm_Apollo_14/LRO_LROC_Image_Mosaic_28cm_Apollo_14") -asset.require("./LRO_LROC_Image_Mosaic_Aitken_Crater/LRO_LROC_Image_Mosaic_Aitken_Crater") -asset.require("./LRO_LROC_Image_Mosaic_Alphonsus/LRO_LROC_Image_Mosaic_Alphonsus") -asset.require("./LRO_LROC_Image_Mosaic_Apollo_15/LRO_LROC_Image_Mosaic_Apollo_15") -asset.require("./LRO_LROC_Image_Mosaic_Apollo_16/LRO_LROC_Image_Mosaic_Apollo_16") -asset.require("./LRO_LROC_Image_Mosaic_Aristarchus_1/LRO_LROC_Image_Mosaic_Aristarchus_1") -asset.require("./LRO_LROC_Image_Mosaic_Aristarchus_2/LRO_LROC_Image_Mosaic_Aristarchus_2") -asset.require("./LRO_LROC_Image_Mosaic_Balmer_Basin/LRO_LROC_Image_Mosaic_Balmer_Basin") -asset.require("./LRO_LROC_Image_Mosaic_Compton_Belkovich_Th_Anomaly/LRO_LROC_Image_Mosaic_Compton_Belkovich_Th_Anomaly") -asset.require("./LRO_LROC_Image_Mosaic_Flamsteed_Crater/LRO_LROC_Image_Mosaic_Flamsteed_Crater") -asset.require("./LRO_LROC_Image_Mosaic_Gruithuisen_Domes/LRO_LROC_Image_Mosaic_Gruithuisen_Domes") -asset.require("./LRO_LROC_Image_Mosaic_Hertzsprung/LRO_LROC_Image_Mosaic_Hertzsprung") -asset.require("./LRO_LROC_Image_Mosaic_Hortensius_Domes/LRO_LROC_Image_Mosaic_Hortensius_Domes") -asset.require("./LRO_LROC_Image_Mosaic_Humboldtianum_Basin/LRO_LROC_Image_Mosaic_Humboldtianum_Basin") -asset.require("./LRO_LROC_Image_Mosaic_Ina_D-Caldera/LRO_LROC_Image_Mosaic_Ina_D-Caldera") -asset.require("./LRO_LROC_Image_Mosaic_King_Crater/LRO_LROC_Image_Mosaic_King_Crater") -asset.require("./LRO_LROC_Image_Mosaic_Lichtenberg_Crater/LRO_LROC_Image_Mosaic_Lichtenberg_Crater") -asset.require("./LRO_LROC_Image_Mosaic_Mare_Ingenii/LRO_LROC_Image_Mosaic_Mare_Ingenii") -asset.require("./LRO_LROC_Image_Mosaic_Mare_Moscoviense/LRO_LROC_Image_Mosaic_Mare_Moscoviense") -asset.require("./LRO_LROC_Image_Mosaic_Mare_Smythii/LRO_LROC_Image_Mosaic_Mare_Smythii") -asset.require("./LRO_LROC_Image_Mosaic_Mare_Tranquillitatis/LRO_LROC_Image_Mosaic_Mare_Tranquillitatis") -asset.require("./LRO_LROC_Image_Mosaic_Marius_Hills/LRO_LROC_Image_Mosaic_Marius_Hills") -asset.require("./LRO_LROC_Image_Mosaic_Montes_Pyrenaeus/LRO_LROC_Image_Mosaic_Montes_Pyrenaeus") -asset.require("./LRO_LROC_Image_Mosaic_Murchison_Crater/LRO_LROC_Image_Mosaic_Murchison_Crater") -asset.require("./LRO_LROC_Image_Mosaic_Orientale_1/LRO_LROC_Image_Mosaic_Orientale_1") -asset.require("./LRO_LROC_Image_Mosaic_Reiner_Gamma/LRO_LROC_Image_Mosaic_Reiner_Gamma") -asset.require("./LRO_LROC_Image_Mosaic_Riccioli_Crater/LRO_LROC_Image_Mosaic_Riccioli_Crater") -asset.require("./LRO_LROC_Image_Mosaic_Rima_Bode/LRO_LROC_Image_Mosaic_Rima_Bode") -asset.require("./LRO_LROC_Image_Mosaic_Rimae_Prinz/LRO_LROC_Image_Mosaic_Rimae_Prinz") -asset.require("./LRO_LROC_Image_Mosaic_South_Pole-Aitken_Basin_Interior/LRO_LROC_Image_Mosaic_South_Pole-Aitken_Basin_Interior") -asset.require("./LRO_LROC_Image_Mosaic_South_Pole-Aitken_Rim/LRO_LROC_Image_Mosaic_South_Pole-Aitken_Rim") -asset.require("./LRO_LROC_Image_Mosaic_Stratton_(Dewar)/LRO_LROC_Image_Mosaic_Stratton_(Dewar)") -asset.require("./LRO_LROC_Image_Mosaic_Sulpicius_Gallus/LRO_LROC_Image_Mosaic_Sulpicius_Gallus") -asset.require("./LRO_LROC_Image_Mosaic_Tsiolkovskiy_Crater/LRO_LROC_Image_Mosaic_Tsiolkovskiy_Crater") -asset.require("./LRO_LROC_Image_Mosaic_Tycho_Crater/LRO_LROC_Image_Mosaic_Tycho_Crater") -asset.require("./LRO_LROC_Mosaic_Fresh_Crater_East_of_Lents/LRO_LROC_Mosaic_Fresh_Crater_East_of_Lents") -asset.require("./LRO_LROC_Rock_Abundance_Hazard_Aitken_Crater/LRO_LROC_Rock_Abundance_Hazard_Aitken_Crater") -asset.require("./LRO_LROC_Rock_Abundance_Hazard_Alphonsus_Crater/LRO_LROC_Rock_Abundance_Hazard_Alphonsus_Crater") -asset.require("./LRO_LROC_Rock_Abundance_Hazard_Anaxagoras_Crater/LRO_LROC_Rock_Abundance_Hazard_Anaxagoras_Crater") -asset.require("./LRO_LROC_Rock_Abundance_Hazard_Apollo_15/LRO_LROC_Rock_Abundance_Hazard_Apollo_15") -asset.require("./LRO_LROC_Rock_Abundance_Hazard_Apollo_16/LRO_LROC_Rock_Abundance_Hazard_Apollo_16") -asset.require("./LRO_LROC_Rock_Abundance_Hazard_Apollo_Basin/LRO_LROC_Rock_Abundance_Hazard_Apollo_Basin") -asset.require("./LRO_LROC_Rock_Abundance_Hazard_Aristarchus_1/LRO_LROC_Rock_Abundance_Hazard_Aristarchus_1") -asset.require("./LRO_LROC_Rock_Abundance_Hazard_Aristarchus_2/LRO_LROC_Rock_Abundance_Hazard_Aristarchus_2") -asset.require("./LRO_LROC_Rock_Abundance_Hazard_Balmer_Basin/LRO_LROC_Rock_Abundance_Hazard_Balmer_Basin") -asset.require("./LRO_LROC_Rock_Abundance_Hazard_Bullialdus_Crater/LRO_LROC_Rock_Abundance_Hazard_Bullialdus_Crater") -asset.require("./LRO_LROC_Rock_Abundance_Hazard_Gruithuisen_Domes/LRO_LROC_Rock_Abundance_Hazard_Gruithuisen_Domes") -asset.require("./LRO_LROC_Rock_Abundance_Hazard_Hertzsprung/LRO_LROC_Rock_Abundance_Hazard_Hertzsprung") -asset.require("./LRO_LROC_Rock_Abundance_Hazard_Hortensius_Domes/LRO_LROC_Rock_Abundance_Hazard_Hortensius_Domes") -asset.require("./LRO_LROC_Rock_Abundance_Hazard_King_Crater/LRO_LROC_Rock_Abundance_Hazard_King_Crater") -asset.require("./LRO_LROC_Rock_Abundance_Hazard_Lichtenberg_Crater/LRO_LROC_Rock_Abundance_Hazard_Lichtenberg_Crater") -asset.require("./LRO_LROC_Rock_Abundance_Hazard_Mare_Crisium/LRO_LROC_Rock_Abundance_Hazard_Mare_Crisium") -asset.require("./LRO_LROC_Rock_Abundance_Hazard_Montes_Pyrenaeus/LRO_LROC_Rock_Abundance_Hazard_Montes_Pyrenaeus") -asset.require("./LRO_LROC_Rock_Abundance_Hazard_Orientale_1/LRO_LROC_Rock_Abundance_Hazard_Orientale_1") -asset.require("./LRO_LROC_Rock_Abundance_Hazard_Plato_Ejecta/LRO_LROC_Rock_Abundance_Hazard_Plato_Ejecta") -asset.require("./LRO_LROC_Rock_Abundance_Hazard_South_Pole-Aitken_Basin_Interior/LRO_LROC_Rock_Abundance_Hazard_South_Pole-Aitken_Basin_Interior") -asset.require("./LRO_LROC_Rock_Abundance_Hazard_Stratton_(Dewar)_High_Fe_Anomaly/LRO_LROC_Rock_Abundance_Hazard_Stratton_(Dewar)_High_Fe_Anomaly") -asset.require("./LRO_LROC_Rock_Abundance_Hazard_Sulpicius_Gallus/LRO_LROC_Rock_Abundance_Hazard_Sulpicius_Gallus") -asset.require("./LRO_LROC_Rock_Abundance_Hazard_Tycho_Crater/LRO_LROC_Rock_Abundance_Hazard_Tycho_Crater") -asset.require("./LRO_LROC_Rock_Abundance_Aitken_Crater/LRO_LROC_Rock_Abundance_Aitken_Crater") -asset.require("./LRO_LROC_Rock_Abundance_Alphonsus_Crater/LRO_LROC_Rock_Abundance_Alphonsus_Crater") -asset.require("./LRO_LROC_Rock_Abundance_Anaxagoras_Crater/LRO_LROC_Rock_Abundance_Anaxagoras_Crater") -asset.require("./LRO_LROC_Rock_Abundance_Apollo_15/LRO_LROC_Rock_Abundance_Apollo_15") -asset.require("./LRO_LROC_Rock_Abundance_Apollo_16/LRO_LROC_Rock_Abundance_Apollo_16") -asset.require("./LRO_LROC_Rock_Abundance_Apollo_Basin/LRO_LROC_Rock_Abundance_Apollo_Basin") -asset.require("./LRO_LROC_Rock_Abundance_Aristarchus_1/LRO_LROC_Rock_Abundance_Aristarchus_1") -asset.require("./LRO_LROC_Rock_Abundance_Aristarchus_2/LRO_LROC_Rock_Abundance_Aristarchus_2") -asset.require("./LRO_LROC_Rock_Abundance_Balmer_Basin/LRO_LROC_Rock_Abundance_Balmer_Basin") -asset.require("./LRO_LROC_Rock_Abundance_Bullialdus_Crater/LRO_LROC_Rock_Abundance_Bullialdus_Crater") -asset.require("./LRO_LROC_Rock_Abundance_Gruithuisen_Domes/LRO_LROC_Rock_Abundance_Gruithuisen_Domes") -asset.require("./LRO_LROC_Rock_Abundance_Hertzsprung/LRO_LROC_Rock_Abundance_Hertzsprung") -asset.require("./LRO_LROC_Rock_Abundance_Hortensius_Domes/LRO_LROC_Rock_Abundance_Hortensius_Domes") -asset.require("./LRO_LROC_Rock_Abundance_King_Crater/LRO_LROC_Rock_Abundance_King_Crater") -asset.require("./LRO_LROC_Rock_Abundance_Lichtenberg_Crater/LRO_LROC_Rock_Abundance_Lichtenberg_Crater") -asset.require("./LRO_LROC_Rock_Abundance_Mare_Crisium/LRO_LROC_Rock_Abundance_Mare_Crisium") -asset.require("./LRO_LROC_Rock_Abundance_Montes_Pyrenaeus/LRO_LROC_Rock_Abundance_Montes_Pyrenaeus") -asset.require("./LRO_LROC_Rock_Abundance_Orientale_1/LRO_LROC_Rock_Abundance_Orientale_1") -asset.require("./LRO_LROC_Rock_Abundance_Plato_Ejecta/LRO_LROC_Rock_Abundance_Plato_Ejecta") -asset.require("./LRO_LROC_Rock_Abundance_South_Pole-Aitken_Basin_Interior/LRO_LROC_Rock_Abundance_South_Pole-Aitken_Basin_Interior") -asset.require("./LRO_LROC_Rock_Abundance_Stratton_(Dewar)_High_Fe_Anomaly/LRO_LROC_Rock_Abundance_Stratton_(Dewar)_High_Fe_Anomaly") -asset.require("./LRO_LROC_Rock_Abundance_Sulpicius_Gallus/LRO_LROC_Rock_Abundance_Sulpicius_Gallus") -asset.require("./LRO_LROC_Rock_Abundance_Tycho_Crater/LRO_LROC_Rock_Abundance_Tycho_Crater") -asset.require("./LRO_LROC_Rock_Density_Hazard_Alphonsus_Crater/LRO_LROC_Rock_Density_Hazard_Alphonsus_Crater") -asset.require("./LRO_LROC_Rock_Density_Hazard_Anaxagoras_Crater/LRO_LROC_Rock_Density_Hazard_Anaxagoras_Crater") -asset.require("./LRO_LROC_Rock_Density_Hazard_Apollo_15/LRO_LROC_Rock_Density_Hazard_Apollo_15") -asset.require("./LRO_LROC_Rock_Density_Hazard_Apollo_16/LRO_LROC_Rock_Density_Hazard_Apollo_16") -asset.require("./LRO_LROC_Rock_Density_Hazard_Apollo_Basin/LRO_LROC_Rock_Density_Hazard_Apollo_Basin") -asset.require("./LRO_LROC_Rock_Density_Hazard_Aristarchus_1/LRO_LROC_Rock_Density_Hazard_Aristarchus_1") -asset.require("./LRO_LROC_Rock_Density_Hazard_Aristarchus_2/LRO_LROC_Rock_Density_Hazard_Aristarchus_2") -asset.require("./LRO_LROC_Rock_Density_Hazard_Balmer_Basin/LRO_LROC_Rock_Density_Hazard_Balmer_Basin") -asset.require("./LRO_LROC_Rock_Density_Hazard_Bullialdus_Crater/LRO_LROC_Rock_Density_Hazard_Bullialdus_Crater") -asset.require("./LRO_LROC_Rock_Density_Hazard_Gruithuisen_Domes/LRO_LROC_Rock_Density_Hazard_Gruithuisen_Domes") -asset.require("./LRO_LROC_Rock_Density_Hazard_Hertzsprung/LRO_LROC_Rock_Density_Hazard_Hertzsprung") -asset.require("./LRO_LROC_Rock_Density_Hazard_Hortensius_Domes/LRO_LROC_Rock_Density_Hazard_Hortensius_Domes") -asset.require("./LRO_LROC_Rock_Density_Hazard_King_Crater/LRO_LROC_Rock_Density_Hazard_King_Crater") -asset.require("./LRO_LROC_Rock_Density_Hazard_Lichtenberg_Crater/LRO_LROC_Rock_Density_Hazard_Lichtenberg_Crater") -asset.require("./LRO_LROC_Rock_Density_Hazard_Mare_Crisium/LRO_LROC_Rock_Density_Hazard_Mare_Crisium") -asset.require("./LRO_LROC_Rock_Density_Hazard_Montes_Pyrenaeus/LRO_LROC_Rock_Density_Hazard_Montes_Pyrenaeus") -asset.require("./LRO_LROC_Rock_Density_Hazard_Orientale_1/LRO_LROC_Rock_Density_Hazard_Orientale_1") -asset.require("./LRO_LROC_Rock_Density_Hazard_Plato_Ejecta/LRO_LROC_Rock_Density_Hazard_Plato_Ejecta") -asset.require("./LRO_LROC_Rock_Density_Hazard_South_Pole-Aitken_Basin_Interior/LRO_LROC_Rock_Density_Hazard_South_Pole-Aitken_Basin_Interior") -asset.require("./LRO_LROC_Rock_Density_Hazard_Stratton_(Dewar)_High_Fe_Anomaly/LRO_LROC_Rock_Density_Hazard_Stratton_(Dewar)_High_Fe_Anomaly") -asset.require("./LRO_LROC_Rock_Density_Hazard_Sulpicius_Gallus/LRO_LROC_Rock_Density_Hazard_Sulpicius_Gallus") -asset.require("./LRO_LROC_Rock_Density_Hazard_Tycho_Crater/LRO_LROC_Rock_Density_Hazard_Tycho_Crater") -asset.require("./LRO_LROC_Rock_Density_Aitken_Crater/LRO_LROC_Rock_Density_Aitken_Crater") -asset.require("./LRO_LROC_Rock_Density_Alphonsus_Crater/LRO_LROC_Rock_Density_Alphonsus_Crater") -asset.require("./LRO_LROC_Rock_Density_Anaxagoras_Crater/LRO_LROC_Rock_Density_Anaxagoras_Crater") -asset.require("./LRO_LROC_Rock_Density_Apollo_15/LRO_LROC_Rock_Density_Apollo_15") -asset.require("./LRO_LROC_Rock_Density_Apollo_16/LRO_LROC_Rock_Density_Apollo_16") -asset.require("./LRO_LROC_Rock_Density_Apollo_Basin/LRO_LROC_Rock_Density_Apollo_Basin") -asset.require("./LRO_LROC_Rock_Density_Aristarchus_1/LRO_LROC_Rock_Density_Aristarchus_1") -asset.require("./LRO_LROC_Rock_Density_Aristarchus_2/LRO_LROC_Rock_Density_Aristarchus_2") -asset.require("./LRO_LROC_Rock_Density_Balmer_Basin/LRO_LROC_Rock_Density_Balmer_Basin") -asset.require("./LRO_LROC_Rock_Density_Bullialdus_Crater/LRO_LROC_Rock_Density_Bullialdus_Crater") -asset.require("./LRO_LROC_Rock_Density_Gruithuisen_Domes/LRO_LROC_Rock_Density_Gruithuisen_Domes") -asset.require("./LRO_LROC_Rock_Density_Hazard_Aitken_Crater/LRO_LROC_Rock_Density_Hazard_Aitken_Crater") -asset.require("./LRO_LROC_Rock_Density_Hertzsprung/LRO_LROC_Rock_Density_Hertzsprung") -asset.require("./LRO_LROC_Rock_Density_Hortensius_Domes/LRO_LROC_Rock_Density_Hortensius_Domes") -asset.require("./LRO_LROC_Rock_Density_King_Crater/LRO_LROC_Rock_Density_King_Crater") -asset.require("./LRO_LROC_Rock_Density_Lichtenberg_Crater/LRO_LROC_Rock_Density_Lichtenberg_Crater") -asset.require("./LRO_LROC_Rock_Density_Mare_Crisium/LRO_LROC_Rock_Density_Mare_Crisium") -asset.require("./LRO_LROC_Rock_Density_Montes_Pyrenaeus/LRO_LROC_Rock_Density_Montes_Pyrenaeus") -asset.require("./LRO_LROC_Rock_Density_Orientale_1/LRO_LROC_Rock_Density_Orientale_1") -asset.require("./LRO_LROC_Rock_Density_Plato_Ejecta/LRO_LROC_Rock_Density_Plato_Ejecta") -asset.require("./LRO_LROC_Rock_Density_South_Pole-Aitken_Basin_Interior/LRO_LROC_Rock_Density_South_Pole-Aitken_Basin_Interior") -asset.require("./LRO_LROC_Rock_Density_Stratton_(Dewar)_High_Fe_Anomaly/LRO_LROC_Rock_Density_Stratton_(Dewar)_High_Fe_Anomaly") -asset.require("./LRO_LROC_Rock_Density_Sulpicius_Gallus/LRO_LROC_Rock_Density_Sulpicius_Gallus") -asset.require("./LRO_LROC_Rock_Density_Tycho_Crater/LRO_LROC_Rock_Density_Tycho_Crater") -asset.require("./LRO_LROC_WAC_Image_Mosaic/LRO_LROC_WAC_Image_Mosaic") -asset.require("./LRO_Laser_Altimeter_Albedo_Global/LRO_Laser_Altimeter_Albedo_Global") -asset.require("./LRO_Mini-RF_Circular_Polarization_Ratio_Grayscale/LRO_Mini-RF_Circular_Polarization_Ratio_Grayscale") -asset.require("./LRO_Mini-RF_First_Stokes_Parameter/LRO_Mini-RF_First_Stokes_Parameter") -asset.require("./LRO_Narrow_Angle_Camera_Apollo_11_Landing_Site/LRO_Narrow_Angle_Camera_Apollo_11_Landing_Site") -asset.require("./LRO_Narrow_Angle_Camera_Apollo_12_Landing_Site/LRO_Narrow_Angle_Camera_Apollo_12_Landing_Site") -asset.require("./LRO_Narrow_Angle_Camera_Apollo_14_Landing_Site/LRO_Narrow_Angle_Camera_Apollo_14_Landing_Site") -asset.require("./LRO_Narrow_Angle_Camera_Apollo_15_Landing_Site/LRO_Narrow_Angle_Camera_Apollo_15_Landing_Site") -asset.require("./LRO_Narrow_Angle_Camera_Apollo_16_Landing_Site/LRO_Narrow_Angle_Camera_Apollo_16_Landing_Site") -asset.require("./LRO_Narrow_Angle_Camera_ColorHillShade_Apollo_17/LRO_Narrow_Angle_Camera_ColorHillShade_Apollo_17") -asset.require("./LRO_Narrow_Angle_Camera_HillShade_Apollo_17/LRO_Narrow_Angle_Camera_HillShade_Apollo_17") -asset.require("./LRO_Narrow_Angle_Camera_Mosaic_Apollo_11/LRO_Narrow_Angle_Camera_Mosaic_Apollo_11") -asset.require("./LRO_Narrow_Angle_Camera_Mosaic_Apollo_12/LRO_Narrow_Angle_Camera_Mosaic_Apollo_12") -asset.require("./LRO_Narrow_Angle_Camera_Mosaic_Apollo_14/LRO_Narrow_Angle_Camera_Mosaic_Apollo_14") -asset.require("./LRO_Narrow_Angle_Camera_Mosaic_Apollo_15/LRO_Narrow_Angle_Camera_Mosaic_Apollo_15") -asset.require("./LRO_Narrow_Angle_Camera_Mosaic_Apollo_16/LRO_Narrow_Angle_Camera_Mosaic_Apollo_16") -asset.require("./LRO_Narrow_Angle_Camera_Mosaic_Apollo_17/LRO_Narrow_Angle_Camera_Mosaic_Apollo_17") -asset.require("./LRO_Narrow_Angle_Camera_Mosaic_Apollo_17/LRO_Narrow_Angle_Camera_Mosaic_Apollo_17") -asset.require("./LRO_Narrow_Angle_Camera_Mosaic_Apollo_17_Landing_Site/LRO_Narrow_Angle_Camera_Mosaic_Apollo_17_Landing_Site") -asset.require("./LRO_Narrow_Angle_Camera_Mosaic_Ingenii/LRO_Narrow_Angle_Camera_Mosaic_Ingenii") -asset.require("./LRO_Narrow_Angle_Camera_Mosaic_Marius/LRO_Narrow_Angle_Camera_Mosaic_Marius") -asset.require("./LRO_Narrow_Angle_Camera_Mosaic_Schrodinger/LRO_Narrow_Angle_Camera_Mosaic_Schrodinger") -asset.require("./LRO_Narrow_Angle_Camera_Mosaic_Schrodinger_Extra/LRO_Narrow_Angle_Camera_Mosaic_Schrodinger_Extra") -asset.require("./LRO_Narrow_Angle_Camera_Mosaic_Schrodinger_Landing_Site/LRO_Narrow_Angle_Camera_Mosaic_Schrodinger_Landing_Site") -asset.require("./LRO_Narrow_Angle_Camera_Mosaic_Schrodinger_NorthEast/LRO_Narrow_Angle_Camera_Mosaic_Schrodinger_NorthEast") -asset.require("./LRO_Narrow_Angle_Camera_Mosaic_Schrodinger_SouthCenter/LRO_Narrow_Angle_Camera_Mosaic_Schrodinger_SouthCenter") -asset.require("./LRO_Narrow_Angle_Camera_Mosaic_Schrodinger_SouthEast/LRO_Narrow_Angle_Camera_Mosaic_Schrodinger_SouthEast") -asset.require("./LRO_Narrow_Angle_Camera_Mosaic_Small_Tranquilltatis_1/LRO_Narrow_Angle_Camera_Mosaic_Small_Tranquilltatis_1") -asset.require("./LRO_Narrow_Angle_Camera_Mosaic_Small_Tranquilltatis_2/LRO_Narrow_Angle_Camera_Mosaic_Small_Tranquilltatis_2") -asset.require("./LRO_Narrow_Angle_Camera_Slope_Apollo_17/LRO_Narrow_Angle_Camera_Slope_Apollo_17") -asset.require("./LRO_WAC_GLD100_DEM_ColorHillShade/LRO_WAC_GLD100_DEM_ColorHillShade") -asset.require("./LRO_WAC_GLD100_DEM_Hillshade/LRO_WAC_GLD100_DEM_Hillshade") -asset.require("./LRO_WAC_Mosaic_v2/LRO_WAC_Mosaic_v2") -asset.require("./LRO_WAC-GLD100_DEM_Grayscale/LRO_WAC-GLD100_DEM_Grayscale") -asset.require("./LROC_NAC_Uncontrolled_Mosaic_of_Mare_Unit_in_Schrodinger_Crater/LROC_NAC_Uncontrolled_Mosaic_of_Mare_Unit_in_Schrodinger_Crater") -asset.require("./LROC_NAC_Uncontrolled_Mosaic_of_Massif_in_Schrodinger_Crater/LROC_NAC_Uncontrolled_Mosaic_of_Massif_in_Schrodinger_Crater") -asset.require("./LROC_NAC_Uncontrolled_Mosaic_of_Region_Inside_Schrodinger_Crater_50cmpx/LROC_NAC_Uncontrolled_Mosaic_of_Region_Inside_Schrodinger_Crater_50cmpx") -asset.require("./LROC_NAC_Uncontrolled_Mosaic_of_Schrodinger_Crater_10mpx/LROC_NAC_Uncontrolled_Mosaic_of_Schrodinger_Crater_10mpx") -asset.require("./LRO_NAC_Mosaic_Lacus_Mortis_Extended_Version/LRO_NAC_Mosaic_Lacus_Mortis_Extended_Version") -asset.require("./LRO_NAC_ColorHillshade_Lacus_Mortis/LRO_NAC_ColorHillshade_Lacus_Mortis") -asset.require("./LRO_LROC_NAC_Image_Mosaic_N_Pole_Avg_Merge/LRO_LROC_NAC_Image_Mosaic_N_Pole_Avg_Merge") -asset.require("./LRO_LROC_NAC_Image_Mosaic_S_Pole_Avg_Merge/LRO_LROC_NAC_Image_Mosaic_S_Pole_Avg_Merge") -asset.require("./LRO_LOLA_and_Kaguya_TC_Color_Hillshade_512ppd/LRO_LOLA_and_Kaguya_TC_Color_Hillshade_512ppd") -asset.require("./LRO_LOLA_and_Kaguya_TC_Hillshade_512ppd/LRO_LOLA_and_Kaguya_TC_Hillshade_512ppd") -asset.require("./LRO_LOLA_DEM_N_Pole_87.5_deg_ColorHillshade/LRO_LOLA_DEM_N_Pole_87.5_deg_ColorHillshade") -asset.require("./LRO_LOLA_DEM_N_Pole_87.5_deg_Hillshade/LRO_LOLA_DEM_N_Pole_87.5_deg_Hillshade") -asset.require("./LRO_LOLA_DEM_S_Pole_87.5_deg_ColorHillshade/LRO_LOLA_DEM_S_Pole_87.5_deg_ColorHillshade") -asset.require("./LRO_LOLA_DEM_S_Pole_87.5_deg_Hillshade/LRO_LOLA_DEM_S_Pole_87.5_deg_Hillshade") -asset.require("./LRO_LOLA_DEM_N_Pole_75_deg_ColorHillshade/LRO_LOLA_DEM_N_Pole_75_deg_ColorHillshade") -asset.require("./LRO_LOLA_DEM_N_Pole_75_deg_Hillshade/LRO_LOLA_DEM_N_Pole_75_deg_Hillshade") -asset.require("./LRO_LOLA_DEM_S_Pole_75_deg_ColorHillshade/LRO_LOLA_DEM_S_Pole_75_deg_ColorHillshade") -asset.require("./LRO_LOLA_DEM_S_Pole_75_deg_Hillshade/LRO_LOLA_DEM_S_Pole_75_deg_Hillshade") -asset.require("./Clementine_UVVIS_Warped_Color_Ratio/Clementine_UVVIS_Warped_Color_Ratio") -asset.require("./LOLA_Slope_Northpole_120m_Colorized/LOLA_Slope_Northpole_120m_Colorized") -asset.require("./LOLA_Slope_Southpole_120m_Colorized/LOLA_Slope_Southpole_120m_Colorized") -asset.require("./LOLA_Permanently_Shadowed_Regions_Northpole_240m/LOLA_Permanently_Shadowed_Regions_Northpole_240m") -asset.require("./LOLA_Permanently_Shadowed_Regions_Southpole_240m/LOLA_Permanently_Shadowed_Regions_Southpole_240m") -asset.require("./LRO_and_Kaguya_Multi_Instruments_1895.21mpp_3He_Dig_Here/LRO_and_Kaguya_Multi_Instruments_1895.21mpp_3He_Dig_Here") -asset.require("./LRO_and_Kaguya_Multi_Instruments_1895.21mpp_3He_Likely/LRO_and_Kaguya_Multi_Instruments_1895.21mpp_3He_Likely") -asset.require("./LRO_and_Kaguya_Multi_Instruments_1895.21mpp_3He_More_Likely/LRO_and_Kaguya_Multi_Instruments_1895.21mpp_3He_More_Likely") -asset.require("./LRO_and_Kaguya_Multi_Instruments_1895.21mpp_3He_Most_Likely/LRO_and_Kaguya_Multi_Instruments_1895.21mpp_3He_Most_Likely") -asset.require("./LRO_and_Kaguya_Multi_Instruments_1895.21mpp_3He_Very_Likely/LRO_and_Kaguya_Multi_Instruments_1895.21mpp_3He_Very_Likely") diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MEX_HRSC.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MEX_HRSC.asset new file mode 100644 index 0000000000..3223495309 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MEX_HRSC.asset @@ -0,0 +1,44 @@ +-- This file was automatically generated using a script found at +-- https://github.com/OpenSpace/scripts/treks-to-openspace. See the README.md file +-- in that repository for more information on how to run the script to update these +-- files. In particular in the case of errors, prefer to change that script rather +-- than the individual files + +local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier + +local treks_hrsc_dem_martian_east = { + Identifier = "hrsc_dem_martian_east", + Name = [[MEX HRSC, Martian Path Eastern Section DEM]], + FilePath = asset.localResource("MEX_HRSC/Martian_Path_Eastern_Section_DEM.vrt"), + Description = [[This layer is a greyscale mosaic assembled using data from the High Resolution Stereo Camera aboard the European Space Agency's Mars Express orbiter. HRSC is being used to obtain color and stereo images that will map 100% of Mars' surface at resolution better than 30 m/pixel, and 50% of the surface at better than 15 m/pixel. Each of the nine CCD lines of HRSC, a linescan imager (pushbroom camera), contains 5184 pixels. The channels consist of red, green, blue, near-infrared, three stereo channels (backward, nadir, and forward) and two photometric channels. The digital elevation model used for this layer is a combination of data derived from the HRSC and the Mars Orbiter Laser Altimeter.]] +} + +local treks_MC11E11_HRDTMAR_DA5 = { + Identifier = "MC11E11_HRDTMAR_DA5", + Name = [[MEX HRSC, Martian Path MC11 Quad DEM]], + FilePath = asset.localResource("MEX_HRSC/Martian_Path_MC11_Quad_DEM.vrt"), + Description = [[This layer is a greyscale mosaic assembled using data from the High Resolution Stereo Camera aboard the European Space Agency's Mars Express orbiter. HRSC is being used to obtain color and stereo images that will map 100% of Mars' surface at resolution better than 30 m/pixel, and 50% of the surface at better than 15 m/pixel. Each of the nine CCD lines of HRSC, a linescan imager (pushbroom camera), contains 5184 pixels. The channels consist of red, green, blue, near-infrared, three stereo channels (backward, nadir, and forward) and two photometric channels. The digital elevation model used for this layer is a combination of data derived from the HRSC and the Mars Orbiter Laser Altimeter.]] +} + +asset.onInitialize(function() + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_hrsc_dem_martian_east) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_MC11E11_HRDTMAR_DA5) +end) + +asset.onDeinitialize(function() + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_hrsc_dem_martian_east") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_MC11E11_HRDTMAR_DA5") +end) + +asset.export("hrsc_dem_martian_east", treks_hrsc_dem_martian_east) +asset.export("MC11E11_HRDTMAR_DA5", treks_MC11E11_HRDTMAR_DA5) + + +asset.meta = { + Name = [[NASA Treks Layers for Mars MEX_HRSC], + Version = "1.0", + Author = "NASA/Treks", + URL = "https://trek.nasa.gov/mars", + License = "NASA/Treks", + Description = [[MEX_HRSC layers from NASA/Treks for Mars]] +} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MEX_HRSC/Martian_Path_Eastern_Section_DEM.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MEX_HRSC/Martian_Path_Eastern_Section_DEM.vrt new file mode 100644 index 0000000000..657819cf30 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MEX_HRSC/Martian_Path_Eastern_Section_DEM.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 6.8664550781250000e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -6.8664550781250000e-04 + + 0 + Red + + Martian_Path_Eastern_Section_DEM.wms + 1 + + + + 0 + + + + 0 + Green + + Martian_Path_Eastern_Section_DEM.wms + 2 + + + + 0 + + + + 0 + Blue + + Martian_Path_Eastern_Section_DEM.wms + 3 + + + + 0 + + + + Alpha + + Martian_Path_Eastern_Section_DEM.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MEX_HRSC_Martian_Path_Eastern_Section_DEM/hrsc_dem_martian_east.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MEX_HRSC/Martian_Path_Eastern_Section_DEM.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MEX_HRSC_Martian_Path_Eastern_Section_DEM/hrsc_dem_martian_east.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MEX_HRSC/Martian_Path_Eastern_Section_DEM.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MEX_HRSC/Martian_Path_MC11_Quad_DEM.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MEX_HRSC/Martian_Path_MC11_Quad_DEM.vrt new file mode 100644 index 0000000000..7f1890cbc6 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MEX_HRSC/Martian_Path_MC11_Quad_DEM.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 6.8664550781250000e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -6.8664550781250000e-04 + + 0 + Red + + Martian_Path_MC11_Quad_DEM.wms + 1 + + + + 0 + + + + 0 + Green + + Martian_Path_MC11_Quad_DEM.wms + 2 + + + + 0 + + + + 0 + Blue + + Martian_Path_MC11_Quad_DEM.wms + 3 + + + + 0 + + + + Alpha + + Martian_Path_MC11_Quad_DEM.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MEX_HRSC_Martian_Path_MC11_Quad_DEM/MC11E11_HRDTMAR_DA5.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MEX_HRSC/Martian_Path_MC11_Quad_DEM.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MEX_HRSC_Martian_Path_MC11_Quad_DEM/MC11E11_HRDTMAR_DA5.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MEX_HRSC/Martian_Path_MC11_Quad_DEM.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MEX_HRSC_Martian_Path_Eastern_Section_DEM/MEX_HRSC_Martian_Path_Eastern_Section_DEM.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MEX_HRSC_Martian_Path_Eastern_Section_DEM/MEX_HRSC_Martian_Path_Eastern_Section_DEM.asset deleted file mode 100644 index 3b1e98e1d4..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MEX_HRSC_Martian_Path_Eastern_Section_DEM/MEX_HRSC_Martian_Path_Eastern_Section_DEM.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "hrsc_dem_martian_east", - Name = [[MEX HRSC, Martian Path Eastern Section DEM]], - FilePath = asset.localResource("hrsc_dem_martian_east.vrt"), - Description = [[This layer is a greyscale mosaic assembled using data from the High Resolution Stereo Camera aboard the European Space Agency's Mars Express orbiter. HRSC is being used to obtain color and stereo images that will map 100% of Mars' surface at resolution better than 30 m/pixel, and 50% of the surface at better than 15 m/pixel. Each of the nine CCD lines of HRSC, a linescan imager (pushbroom camera), contains 5184 pixels. The channels consist of red, green, blue, near-infrared, three stereo channels (backward, nadir, and forward) and two photometric channels. The digital elevation model used for this layer is a combination of data derived from the HRSC and the Mars Orbiter Laser Altimeter.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MEX HRSC, Martian Path Eastern Section DEM]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=hrsc_dem_martian_east%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MEX HRSC, Martian Path Eastern Section DEM layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MEX_HRSC_Martian_Path_Eastern_Section_DEM/hrsc_dem_martian_east.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MEX_HRSC_Martian_Path_Eastern_Section_DEM/hrsc_dem_martian_east.vrt deleted file mode 100644 index dafd0ff8e9..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MEX_HRSC_Martian_Path_Eastern_Section_DEM/hrsc_dem_martian_east.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 6.8664550781250000e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -6.8664550781250000e-04 - - 0 - Red - - hrsc_dem_martian_east.wms - 1 - - - - 0 - - - - 0 - Green - - hrsc_dem_martian_east.wms - 2 - - - - 0 - - - - 0 - Blue - - hrsc_dem_martian_east.wms - 3 - - - - 0 - - - - Alpha - - hrsc_dem_martian_east.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MEX_HRSC_Martian_Path_MC11_Quad_DEM/MC11E11_HRDTMAR_DA5.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MEX_HRSC_Martian_Path_MC11_Quad_DEM/MC11E11_HRDTMAR_DA5.vrt deleted file mode 100644 index 0dff979fbd..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MEX_HRSC_Martian_Path_MC11_Quad_DEM/MC11E11_HRDTMAR_DA5.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 6.8664550781250000e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -6.8664550781250000e-04 - - 0 - Red - - MC11E11_HRDTMAR_DA5.wms - 1 - - - - 0 - - - - 0 - Green - - MC11E11_HRDTMAR_DA5.wms - 2 - - - - 0 - - - - 0 - Blue - - MC11E11_HRDTMAR_DA5.wms - 3 - - - - 0 - - - - Alpha - - MC11E11_HRDTMAR_DA5.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MEX_HRSC_Martian_Path_MC11_Quad_DEM/MEX_HRSC_Martian_Path_MC11_Quad_DEM.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MEX_HRSC_Martian_Path_MC11_Quad_DEM/MEX_HRSC_Martian_Path_MC11_Quad_DEM.asset deleted file mode 100644 index e28970c69e..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MEX_HRSC_Martian_Path_MC11_Quad_DEM/MEX_HRSC_Martian_Path_MC11_Quad_DEM.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "MC11E11_HRDTMAR_DA5", - Name = [[MEX HRSC, Martian Path MC11 Quad DEM]], - FilePath = asset.localResource("MC11E11_HRDTMAR_DA5.vrt"), - Description = [[This layer is a greyscale mosaic assembled using data from the High Resolution Stereo Camera aboard the European Space Agency's Mars Express orbiter. HRSC is being used to obtain color and stereo images that will map 100% of Mars' surface at resolution better than 30 m/pixel, and 50% of the surface at better than 15 m/pixel. Each of the nine CCD lines of HRSC, a linescan imager (pushbroom camera), contains 5184 pixels. The channels consist of red, green, blue, near-infrared, three stereo channels (backward, nadir, and forward) and two photometric channels. The digital elevation model used for this layer is a combination of data derived from the HRSC and the Mars Orbiter Laser Altimeter.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MEX HRSC, Martian Path MC11 Quad DEM]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=MC11E11_HRDTMAR_DA5%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MEX HRSC, Martian Path MC11 Quad DEM layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOC_Atlas.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOC_Atlas.asset new file mode 100644 index 0000000000..d15e6a2ed9 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOC_Atlas.asset @@ -0,0 +1,36 @@ +-- This file was automatically generated using a script found at +-- https://github.com/OpenSpace/scripts/treks-to-openspace. See the README.md file +-- in that repository for more information on how to run the script to update these +-- files. In particular in the case of errors, prefer to change that script rather +-- than the individual files + +local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier + +local treks_msss_atlas_simp_clon = { + Identifier = "msss_atlas_simp_clon", + Name = [[MGS MOC Atlas, Global Color Mosaic]], + FilePath = asset.localResource("MGS_MOC_Atlas/Global_Color_Mosaic.vrt"), + Description = [[This data was acquired using the Mars Orbiter Camera instrument aboard NASA's Mars Global Surveyor spacecraft (MGS). MGS was launched on November 7, 1996 and arrived at Mars on September 11, 1997. It maintained a circular polar orbit, completing an orbital revolution every 117.65 minutes at an average altitude of 378 km (235 mi). Until November 2, 2006, MGS characterized and mapped Mars' surface features, properties, topography, composition, and processes, as well as studied Mars' weather and atmospheric structure. + +The Mars Orbiter Camera (MOC) consisted of 3 instruments. A black-and-white narrow angle camera captured high resolution images (typically 1.5 to 12 m per pixel) and red and blue wide angle cameras for context (240 m per pixel) and daily global imaging (7.5 km per pixel). This mosaic was assembled from Wide Angle red images (primarily those acquired in May-June 1999) from the Mars Orbiter Camera.]] +} + +asset.onInitialize(function() + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_msss_atlas_simp_clon) +end) + +asset.onDeinitialize(function() + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_msss_atlas_simp_clon") +end) + +asset.export("msss_atlas_simp_clon", treks_msss_atlas_simp_clon) + + +asset.meta = { + Name = [[NASA Treks Layers for Mars MGS_MOC_Atlas], + Version = "1.0", + Author = "NASA/Treks", + URL = "https://trek.nasa.gov/mars", + License = "NASA/Treks", + Description = [[MGS_MOC_Atlas layers from NASA/Treks for Mars]] +} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOC_Atlas/Global_Color_Mosaic.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOC_Atlas/Global_Color_Mosaic.vrt new file mode 100644 index 0000000000..859cb4853d --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOC_Atlas/Global_Color_Mosaic.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 5.4931640625000000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -5.4931640625000000e-03 + + 0 + Red + + Global_Color_Mosaic.wms + 1 + + + + 0 + + + + 0 + Green + + Global_Color_Mosaic.wms + 2 + + + + 0 + + + + 0 + Blue + + Global_Color_Mosaic.wms + 3 + + + + 0 + + + + Alpha + + Global_Color_Mosaic.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOC_Atlas_Global_Color_Mosaic/msss_atlas_simp_clon.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOC_Atlas/Global_Color_Mosaic.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOC_Atlas_Global_Color_Mosaic/msss_atlas_simp_clon.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOC_Atlas/Global_Color_Mosaic.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOC_Atlas_Global_Color_Mosaic/MGS_MOC_Atlas_Global_Color_Mosaic.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOC_Atlas_Global_Color_Mosaic/MGS_MOC_Atlas_Global_Color_Mosaic.asset deleted file mode 100644 index 67b592ef3c..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOC_Atlas_Global_Color_Mosaic/MGS_MOC_Atlas_Global_Color_Mosaic.asset +++ /dev/null @@ -1,30 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "msss_atlas_simp_clon", - Name = [[MGS MOC Atlas, Global Color Mosaic]], - FilePath = asset.localResource("msss_atlas_simp_clon.vrt"), - Description = [[This data was acquired using the Mars Orbiter Camera instrument aboard NASA's Mars Global Surveyor spacecraft (MGS). MGS was launched on November 7, 1996 and arrived at Mars on September 11, 1997. It maintained a circular polar orbit, completing an orbital revolution every 117.65 minutes at an average altitude of 378 km (235 mi). Until November 2, 2006, MGS characterized and mapped Mars' surface features, properties, topography, composition, and processes, as well as studied Mars' weather and atmospheric structure. - -The Mars Orbiter Camera (MOC) consisted of 3 instruments. A black-and-white narrow angle camera captured high resolution images (typically 1.5 to 12 m per pixel) and red and blue wide angle cameras for context (240 m per pixel) and daily global imaging (7.5 km per pixel). This mosaic was assembled from Wide Angle red images (primarily those acquired in May-June 1999) from the Mars Orbiter Camera.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MGS MOC Atlas, Global Color Mosaic]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=msss_atlas_simp_clon%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MGS MOC Atlas, Global Color Mosaic layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOC_Atlas_Global_Color_Mosaic/msss_atlas_simp_clon.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOC_Atlas_Global_Color_Mosaic/msss_atlas_simp_clon.vrt deleted file mode 100644 index 0d698116b0..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOC_Atlas_Global_Color_Mosaic/msss_atlas_simp_clon.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 5.4931640625000000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -5.4931640625000000e-03 - - 0 - Red - - msss_atlas_simp_clon.wms - 1 - - - - 0 - - - - 0 - Green - - msss_atlas_simp_clon.wms - 2 - - - - 0 - - - - 0 - Blue - - msss_atlas_simp_clon.wms - 3 - - - - 0 - - - - Alpha - - msss_atlas_simp_clon.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOLA.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOLA.asset new file mode 100644 index 0000000000..896f7a26d2 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOLA.asset @@ -0,0 +1,60 @@ +-- This file was automatically generated using a script found at +-- https://github.com/OpenSpace/scripts/treks-to-openspace. See the README.md file +-- in that repository for more information on how to run the script to update these +-- files. In particular in the case of errors, prefer to change that script rather +-- than the individual files + +local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier + +local treks_Mars_MGS_MOLA_ClrShade_merge_global_463m = { + Identifier = "Mars_MGS_MOLA_ClrShade_merge_global_463m", + Name = [[MGS MOLA, Global Color Hillshade]], + FilePath = asset.localResource("MGS_MOLA/Global_Color_Hillshade.vrt"), + Description = [[This data was acquired using the Mars Orbiter Laser Altimeter instrument aboard NASA's Mars Global Surveyor spacecraft (MGS). MGS was launched on November 7, 1996 and arrived at Mars on September 11, 1997. It maintained a circular polar orbit, completing an orbital revolution every 117.65 minutes at an average altitude of 378 km (235 mi). Until November 2, 2006, MGS characterized and mapped Mars' surface features, properties, topography, composition, and processes, as well as studied Mars' weather and atmospheric structure. + +The Mars Orbiter Laser Altimeter (MOLA) made precise measurements of the heights and depths of surface features on Mars. MOLA fired infrared laser pulses downward 10 times per second, and measured the time it took for the reflected pulses to return from the surface. Converting this data to a colorized hillshade makes it particularly easy to visualize surface topography. The image used for the base of this map represents more than 600 million measurements gathered between 1999 and 2001. The average accuracy of each point is originally ~100 meters in horizontal position and the total elevation uncertainty is at least ±3 m.]] +} + +local treks_mola128_mola64_merge_90Nto90S_SimpleC_clon0 = { + Identifier = "mola128_mola64_merge_90Nto90S_SimpleC_clon0", + Name = [[MGS MOLA, Global DEM]], + FilePath = asset.localResource("MGS_MOLA/Global_DEM.vrt"), + Description = [[This data was acquired using the Mars Orbiter Laser Altimeter instrument aboard NASA’s Mars Global Surveyor spacecraft (MGS). MGS was launched on November 7, 1996 and arrived at Mars on September 11, 1997. It maintained a circular polar orbit, completing an orbital revolution every 117.65 minutes at an average altitude of 378 km (235 mi). Until November 2, 2006, MGS characterized and mapped Mars’ surface features, properties, topography, composition, and processes, as well as studied Mars’ weather and atmospheric structure. + +The DEM represents more than 600 million measurements gathered between 1999 and 2001, adjusted for consistency and converted to planetary radii. These have been converted to elevations above the areoid as determined from a Martian gravity field solution GMM-2B, truncated to degree and order 50, and oriented according to current standards. The average accuracy of each point is originally ~100 meters in horizontal position and ~1 meter in radius. However, the total elevation uncertainty is at least ±3 m due to the global error in the areoid (±1.8 meters) and regional uncertainties in its shape. This DEM is a blend of data obtained with a resolution of 128 pixels per degree and 64 pixels per degree. The majority of the surface is covered at the higher resolution 128 pixels per degree. In projection, these pixels are 463 meters in size at the equator. However, these higher resolution data are very sparse near the two poles (above 87° north and below 87° south latitude) because these areas were sampled by only a few off-nadir altimetry tracks. Gaps between tracks of 1–2 km are common, and some gaps of up to 12 km occur near the equator.This data was acquired using the Mars Orbiter Laser Altimeter instrument aboard NASA’s Mars Global Surveyor spacecraft (MGS). MGS was launched on November 7, 1996 and arrived at Mars on September 11, 1997. It maintained a circular polar orbit, completing an orbital revolution every 117.65 minutes at an average altitude of 378 km (235 mi). Until November 2, 2006, MGS characterized and mapped Mars’ surface features, properties, topography, composition, and processes, as well as studied Mars’ weather and atmospheric structure. + +The DEM represents more than 600 million measurements gathered between 1999 and 2001, adjusted for consistency and converted to planetary radii. These have been converted to elevations above the areoid as determined from a Martian gravity field solution GMM-2B, truncated to degree and order 50, and oriented according to current standards. The average accuracy of each point is originally ~100 meters in horizontal position and ~1 meter in radius. However, the total elevation uncertainty is at least ±3 m due to the global error in the areoid (±1.8 meters) and regional uncertainties in its shape. This DEM is a blend of data obtained with a resolution of 128 pixels per degree and 64 pixels per degree. The majority of the surface is covered at the higher resolution 128 pixels per degree. In projection, these pixels are 463 meters in size at the equator. However, these higher resolution data are very sparse near the two poles (above 87° north and below 87° south latitude) because these areas were sampled by only a few off-nadir altimetry tracks. Gaps between tracks of 1–2 km are common, and some gaps of up to 12 km occur near the equator.]] +} + +local treks_mola_roughness = { + Identifier = "mola_roughness", + Name = [[MGS MOLA, Global Surface Roughness]], + FilePath = asset.localResource("MGS_MOLA/Global_Surface_Roughness.vrt"), + Description = [[The Mars Orbiter Laser Altimeter (MOLA) aboard the Mars Global Surveyor (MGS) spacecraft, made precise altimetry measurements from orbit around Mars from September 1997 to June, 2001. The MOLA instrument transmitted infrared laser pulses towards Mars at a rate of 10 times per second, and measured the time of flight to determine the range (distance) of the MGS spacecraft to the Martian surface. The range measurements resulted in precise topographic maps of Mars. This kilometer-scale global roughness map is presented as an RGB composite image. The Blue, Green and Red channels contain roughness at 0.6 km, 2.4 km, and 9.2 km baselines. Brighter shades denote rougher surface. Thus, general brightness denotes general roughness, and color hue denotes the nature of the scale dependence of roughness. Map resolution/scale: 8 ppd/7.5km. Kreslavsky and Head, 2000, JGR, VOL. 105, NO. Ell, PAGES 26,695-26,711]] +} + +asset.onInitialize(function() + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_Mars_MGS_MOLA_ClrShade_merge_global_463m) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_mola128_mola64_merge_90Nto90S_SimpleC_clon0) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_mola_roughness) +end) + +asset.onDeinitialize(function() + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_Mars_MGS_MOLA_ClrShade_merge_global_463m") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_mola128_mola64_merge_90Nto90S_SimpleC_clon0") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_mola_roughness") +end) + +asset.export("Mars_MGS_MOLA_ClrShade_merge_global_463m", treks_Mars_MGS_MOLA_ClrShade_merge_global_463m) +asset.export("mola128_mola64_merge_90Nto90S_SimpleC_clon0", treks_mola128_mola64_merge_90Nto90S_SimpleC_clon0) +asset.export("mola_roughness", treks_mola_roughness) + + +asset.meta = { + Name = [[NASA Treks Layers for Mars MGS_MOLA], + Version = "1.0", + Author = "NASA/Treks", + URL = "https://trek.nasa.gov/mars", + License = "NASA/Treks", + Description = [[MGS_MOLA layers from NASA/Treks for Mars]] +} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOLA/Global_Color_Hillshade.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOLA/Global_Color_Hillshade.vrt new file mode 100644 index 0000000000..7a32cc9a4e --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOLA/Global_Color_Hillshade.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Global_Color_Hillshade.wms + 1 + + + + 0 + + + + 0 + Green + + Global_Color_Hillshade.wms + 2 + + + + 0 + + + + 0 + Blue + + Global_Color_Hillshade.wms + 3 + + + + 0 + + + + Alpha + + Global_Color_Hillshade.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOLA_Global_Color_Hillshade/Mars_MGS_MOLA_ClrShade_merge_global_463m.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOLA/Global_Color_Hillshade.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOLA_Global_Color_Hillshade/Mars_MGS_MOLA_ClrShade_merge_global_463m.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOLA/Global_Color_Hillshade.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOLA/Global_DEM.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOLA/Global_DEM.vrt new file mode 100644 index 0000000000..c78343b1ae --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOLA/Global_DEM.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.0986328125000000e-02, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.0986328125000000e-02 + + 0 + Red + + Global_DEM.wms + 1 + + + + 0 + + + + 0 + Green + + Global_DEM.wms + 2 + + + + 0 + + + + 0 + Blue + + Global_DEM.wms + 3 + + + + 0 + + + + Alpha + + Global_DEM.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOLA_Global_DEM/mola128_mola64_merge_90Nto90S_SimpleC_clon0.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOLA/Global_DEM.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOLA_Global_DEM/mola128_mola64_merge_90Nto90S_SimpleC_clon0.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOLA/Global_DEM.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOLA/Global_Surface_Roughness.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOLA/Global_Surface_Roughness.vrt new file mode 100644 index 0000000000..4822892950 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOLA/Global_Surface_Roughness.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.7578125000000000e-01, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7578125000000000e-01 + + 0 + Red + + Global_Surface_Roughness.wms + 1 + + + + 0 + + + + 0 + Green + + Global_Surface_Roughness.wms + 2 + + + + 0 + + + + 0 + Blue + + Global_Surface_Roughness.wms + 3 + + + + 0 + + + + Alpha + + Global_Surface_Roughness.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOLA_Global_Surface_Roughness/mola_roughness.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOLA/Global_Surface_Roughness.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOLA_Global_Surface_Roughness/mola_roughness.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOLA/Global_Surface_Roughness.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOLA_Global_Color_Hillshade/MGS_MOLA_Global_Color_Hillshade.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOLA_Global_Color_Hillshade/MGS_MOLA_Global_Color_Hillshade.asset deleted file mode 100644 index 105c68ec86..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOLA_Global_Color_Hillshade/MGS_MOLA_Global_Color_Hillshade.asset +++ /dev/null @@ -1,30 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "Mars_MGS_MOLA_ClrShade_merge_global_463m", - Name = [[MGS MOLA, Global Color Hillshade]], - FilePath = asset.localResource("Mars_MGS_MOLA_ClrShade_merge_global_463m.vrt"), - Description = [[This data was acquired using the Mars Orbiter Laser Altimeter instrument aboard NASA's Mars Global Surveyor spacecraft (MGS). MGS was launched on November 7, 1996 and arrived at Mars on September 11, 1997. It maintained a circular polar orbit, completing an orbital revolution every 117.65 minutes at an average altitude of 378 km (235 mi). Until November 2, 2006, MGS characterized and mapped Mars' surface features, properties, topography, composition, and processes, as well as studied Mars' weather and atmospheric structure. - -The Mars Orbiter Laser Altimeter (MOLA) made precise measurements of the heights and depths of surface features on Mars. MOLA fired infrared laser pulses downward 10 times per second, and measured the time it took for the reflected pulses to return from the surface. Converting this data to a colorized hillshade makes it particularly easy to visualize surface topography. The image used for the base of this map represents more than 600 million measurements gathered between 1999 and 2001. The average accuracy of each point is originally ~100 meters in horizontal position and the total elevation uncertainty is at least ±3 m.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MGS MOLA, Global Color Hillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=Mars_MGS_MOLA_ClrShade_merge_global_463m%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MGS MOLA, Global Color Hillshade layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOLA_Global_Color_Hillshade/Mars_MGS_MOLA_ClrShade_merge_global_463m.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOLA_Global_Color_Hillshade/Mars_MGS_MOLA_ClrShade_merge_global_463m.vrt deleted file mode 100644 index 1d28f64022..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOLA_Global_Color_Hillshade/Mars_MGS_MOLA_ClrShade_merge_global_463m.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - Mars_MGS_MOLA_ClrShade_merge_global_463m.wms - 1 - - - - 0 - - - - 0 - Green - - Mars_MGS_MOLA_ClrShade_merge_global_463m.wms - 2 - - - - 0 - - - - 0 - Blue - - Mars_MGS_MOLA_ClrShade_merge_global_463m.wms - 3 - - - - 0 - - - - Alpha - - Mars_MGS_MOLA_ClrShade_merge_global_463m.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOLA_Global_DEM/MGS_MOLA_Global_DEM.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOLA_Global_DEM/MGS_MOLA_Global_DEM.asset deleted file mode 100644 index 4141236cf7..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOLA_Global_DEM/MGS_MOLA_Global_DEM.asset +++ /dev/null @@ -1,32 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "mola128_mola64_merge_90Nto90S_SimpleC_clon0", - Name = [[MGS MOLA, Global DEM]], - FilePath = asset.localResource("mola128_mola64_merge_90Nto90S_SimpleC_clon0.vrt"), - Description = [[This data was acquired using the Mars Orbiter Laser Altimeter instrument aboard NASA’s Mars Global Surveyor spacecraft (MGS). MGS was launched on November 7, 1996 and arrived at Mars on September 11, 1997. It maintained a circular polar orbit, completing an orbital revolution every 117.65 minutes at an average altitude of 378 km (235 mi). Until November 2, 2006, MGS characterized and mapped Mars’ surface features, properties, topography, composition, and processes, as well as studied Mars’ weather and atmospheric structure. - -The DEM represents more than 600 million measurements gathered between 1999 and 2001, adjusted for consistency and converted to planetary radii. These have been converted to elevations above the areoid as determined from a Martian gravity field solution GMM-2B, truncated to degree and order 50, and oriented according to current standards. The average accuracy of each point is originally ~100 meters in horizontal position and ~1 meter in radius. However, the total elevation uncertainty is at least ±3 m due to the global error in the areoid (±1.8 meters) and regional uncertainties in its shape. This DEM is a blend of data obtained with a resolution of 128 pixels per degree and 64 pixels per degree. The majority of the surface is covered at the higher resolution 128 pixels per degree. In projection, these pixels are 463 meters in size at the equator. However, these higher resolution data are very sparse near the two poles (above 87° north and below 87° south latitude) because these areas were sampled by only a few off-nadir altimetry tracks. Gaps between tracks of 1–2 km are common, and some gaps of up to 12 km occur near the equator.This data was acquired using the Mars Orbiter Laser Altimeter instrument aboard NASA’s Mars Global Surveyor spacecraft (MGS). MGS was launched on November 7, 1996 and arrived at Mars on September 11, 1997. It maintained a circular polar orbit, completing an orbital revolution every 117.65 minutes at an average altitude of 378 km (235 mi). Until November 2, 2006, MGS characterized and mapped Mars’ surface features, properties, topography, composition, and processes, as well as studied Mars’ weather and atmospheric structure. - -The DEM represents more than 600 million measurements gathered between 1999 and 2001, adjusted for consistency and converted to planetary radii. These have been converted to elevations above the areoid as determined from a Martian gravity field solution GMM-2B, truncated to degree and order 50, and oriented according to current standards. The average accuracy of each point is originally ~100 meters in horizontal position and ~1 meter in radius. However, the total elevation uncertainty is at least ±3 m due to the global error in the areoid (±1.8 meters) and regional uncertainties in its shape. This DEM is a blend of data obtained with a resolution of 128 pixels per degree and 64 pixels per degree. The majority of the surface is covered at the higher resolution 128 pixels per degree. In projection, these pixels are 463 meters in size at the equator. However, these higher resolution data are very sparse near the two poles (above 87° north and below 87° south latitude) because these areas were sampled by only a few off-nadir altimetry tracks. Gaps between tracks of 1–2 km are common, and some gaps of up to 12 km occur near the equator.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MGS MOLA, Global DEM]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=mola128_mola64_merge_90Nto90S_SimpleC_clon0%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MGS MOLA, Global DEM layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOLA_Global_DEM/mola128_mola64_merge_90Nto90S_SimpleC_clon0.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOLA_Global_DEM/mola128_mola64_merge_90Nto90S_SimpleC_clon0.vrt deleted file mode 100644 index 7fdc533023..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOLA_Global_DEM/mola128_mola64_merge_90Nto90S_SimpleC_clon0.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.0986328125000000e-02, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.0986328125000000e-02 - - 0 - Red - - mola128_mola64_merge_90Nto90S_SimpleC_clon0.wms - 1 - - - - 0 - - - - 0 - Green - - mola128_mola64_merge_90Nto90S_SimpleC_clon0.wms - 2 - - - - 0 - - - - 0 - Blue - - mola128_mola64_merge_90Nto90S_SimpleC_clon0.wms - 3 - - - - 0 - - - - Alpha - - mola128_mola64_merge_90Nto90S_SimpleC_clon0.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOLA_Global_Surface_Roughness/MGS_MOLA_Global_Surface_Roughness.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOLA_Global_Surface_Roughness/MGS_MOLA_Global_Surface_Roughness.asset deleted file mode 100644 index 33061de637..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOLA_Global_Surface_Roughness/MGS_MOLA_Global_Surface_Roughness.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "mola_roughness", - Name = [[MGS MOLA, Global Surface Roughness]], - FilePath = asset.localResource("mola_roughness.vrt"), - Description = [[The Mars Orbiter Laser Altimeter (MOLA) aboard the Mars Global Surveyor (MGS) spacecraft, made precise altimetry measurements from orbit around Mars from September 1997 to June, 2001. The MOLA instrument transmitted infrared laser pulses towards Mars at a rate of 10 times per second, and measured the time of flight to determine the range (distance) of the MGS spacecraft to the Martian surface. The range measurements resulted in precise topographic maps of Mars. This kilometer-scale global roughness map is presented as an RGB composite image. The Blue, Green and Red channels contain roughness at 0.6 km, 2.4 km, and 9.2 km baselines. Brighter shades denote rougher surface. Thus, general brightness denotes general roughness, and color hue denotes the nature of the scale dependence of roughness. Map resolution/scale: 8 ppd/7.5km. Kreslavsky and Head, 2000, JGR, VOL. 105, NO. Ell, PAGES 26,695-26,711]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MGS MOLA, Global Surface Roughness]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=mola_roughness%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MGS MOLA, Global Surface Roughness layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOLA_Global_Surface_Roughness/mola_roughness.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOLA_Global_Surface_Roughness/mola_roughness.vrt deleted file mode 100644 index 4a76766e20..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOLA_Global_Surface_Roughness/mola_roughness.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.7578125000000000e-01, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7578125000000000e-01 - - 0 - Red - - mola_roughness.wms - 1 - - - - 0 - - - - 0 - Green - - mola_roughness.wms - 2 - - - - 0 - - - - 0 - Blue - - mola_roughness.wms - 3 - - - - 0 - - - - Alpha - - mola_roughness.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOLA_and_Mars_Express_HRSC.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOLA_and_Mars_Express_HRSC.asset new file mode 100644 index 0000000000..64e7eec5c4 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOLA_and_Mars_Express_HRSC.asset @@ -0,0 +1,56 @@ +-- This file was automatically generated using a script found at +-- https://github.com/OpenSpace/scripts/treks-to-openspace. See the README.md file +-- in that repository for more information on how to run the script to update these +-- files. In particular in the case of errors, prefer to change that script rather +-- than the individual files + +local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier + +local treks_Mars_MOLA_blend200ppx_HRSC_ClrShade_clon0dd_200mpp_lzw = { + Identifier = "Mars_MOLA_blend200ppx_HRSC_ClrShade_clon0dd_200mpp_lzw", + Name = [[MGS MOLA and Mars Express HRSC, Color Hillshade Blend]], + FilePath = asset.localResource("MGS_MOLA_and_Mars_Express_HRSC/Color_Hillshade_Blend.vrt"), + Description = [[This data product is a blend of digital terrain model (DTM) data derived from the Mars Orbiter Laser Altimeter (MOLA) instrument aboard NASA’s Mars Global Surveyor spacecraft (MGS), and the High-Resolution Stereo Camera (HRSC) aboard the European Space Agency’s Mars Express spacecraft. + +MOLA fired infrared laser pulses downward 10 times per second, and measured the time it took for the reflected pulses to return from the surface. The image used for the MOLA base of this map represents more than 600 million measurements gathered between 1999 and 2001. The average accuracy of each point is originally ~100 meters in horizontal position and the total elevation uncertainty is at least ±3 m. MOLA produced global topographic coverage with a spatial resolution of about 300 x 1000 m at the equator, and better near the poles. + +HRSC, the only dedicated stereo camera orbiting Mars, is a multi-sensor push broom instrument comprising 9 CCD line sensors mounted in parallel for simultaneous high-resolution stereo, multicolor and multi-phase imaging by delivering 9 superimposed image swaths. The HRSC design permits stereo imaging with triple to quintuple panchromatic along-track stereo including a nadir-directed, forward and aft-looking (+/-18.91), and 2 inner (+/-12.81) stereo line sensors. The along-track acquisition of stereo imagery avoids changes in atmospheric and illumination conditions. The sub-pixel accuracy of the three-dimensional point determination allows the derivation of digital terrain models DTMs with a grid size of up to 50 m and a height accuracy of a single pixel with up to 10 m. + +R. Jaumann, et al. (2007), The high-resolution stereo camera (HRSC) experiment on Mars Express: instrument aspects and experiment conduct from interplanetary cruise through the nominal mission, Planet. Space Sci., 55 (7–8) (2007), pp. 928-952]] +} + +local treks_Mars_MOLA_blend200ppx_HRSC_Shade_clon0dd_200mpp_lzw = { + Identifier = "Mars_MOLA_blend200ppx_HRSC_Shade_clon0dd_200mpp_lzw", + Name = [[MGS MOLA and Mars Express HRSC, Hillshade Blend]], + FilePath = asset.localResource("MGS_MOLA_and_Mars_Express_HRSC/Hillshade_Blend.vrt"), + Description = [[This data product is a blend of digital terrain model (DTM) data derived from the Mars Orbiter Laser Altimeter (MOLA) instrument aboard NASA’s Mars Global Surveyor spacecraft (MGS), and the High-Resolution Stereo Camera (HRSC) aboard the European Space Agency’s Mars Express spacecraft. + +MOLA fired infrared laser pulses downward 10 times per second, and measured the time it took for the reflected pulses to return from the surface. The image used for the MOLA base of this map represents more than 600 million measurements gathered between 1999 and 2001. The average accuracy of each point is originally ~100 meters in horizontal position and the total elevation uncertainty is at least ±3 m. MOLA produced global topographic coverage with a spatial resolution of about 300 x 1000 m at the equator, and better near the poles. + +HRSC, the only dedicated stereo camera orbiting Mars, is a multi-sensor push broom instrument comprising 9 CCD line sensors mounted in parallel for simultaneous high-resolution stereo, multicolor and multi-phase imaging by delivering 9 superimposed image swaths. The HRSC design permits stereo imaging with triple to quintuple panchromatic along-track stereo including a nadir-directed, forward and aft-looking (+/-18.91), and 2 inner (+/-12.81) stereo line sensors. The along-track acquisition of stereo imagery avoids changes in atmospheric and illumination conditions. The sub-pixel accuracy of the three-dimensional point determination allows the derivation of digital terrain models DTMs with a grid size of up to 50 m and a height accuracy of a single pixel with up to 10 m. + +R. Jaumann, et al. (2007), The high-resolution stereo camera (HRSC) experiment on Mars Express: instrument aspects and experiment conduct from interplanetary cruise through the nominal mission, Planet. Space Sci., 55 (7–8) (2007), pp. 928-952]] +} + +asset.onInitialize(function() + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_Mars_MOLA_blend200ppx_HRSC_ClrShade_clon0dd_200mpp_lzw) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_Mars_MOLA_blend200ppx_HRSC_Shade_clon0dd_200mpp_lzw) +end) + +asset.onDeinitialize(function() + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_Mars_MOLA_blend200ppx_HRSC_ClrShade_clon0dd_200mpp_lzw") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_Mars_MOLA_blend200ppx_HRSC_Shade_clon0dd_200mpp_lzw") +end) + +asset.export("Mars_MOLA_blend200ppx_HRSC_ClrShade_clon0dd_200mpp_lzw", treks_Mars_MOLA_blend200ppx_HRSC_ClrShade_clon0dd_200mpp_lzw) +asset.export("Mars_MOLA_blend200ppx_HRSC_Shade_clon0dd_200mpp_lzw", treks_Mars_MOLA_blend200ppx_HRSC_Shade_clon0dd_200mpp_lzw) + + +asset.meta = { + Name = [[NASA Treks Layers for Mars MGS_MOLA_and_Mars_Express_HRSC], + Version = "1.0", + Author = "NASA/Treks", + URL = "https://trek.nasa.gov/mars", + License = "NASA/Treks", + Description = [[MGS_MOLA_and_Mars_Express_HRSC layers from NASA/Treks for Mars]] +} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOLA_and_Mars_Express_HRSC/Color_Hillshade_Blend.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOLA_and_Mars_Express_HRSC/Color_Hillshade_Blend.vrt new file mode 100644 index 0000000000..477a17d929 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOLA_and_Mars_Express_HRSC/Color_Hillshade_Blend.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.3732910156250000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.3732910156250000e-03 + + 0 + Red + + Color_Hillshade_Blend.wms + 1 + + + + 0 + + + + 0 + Green + + Color_Hillshade_Blend.wms + 2 + + + + 0 + + + + 0 + Blue + + Color_Hillshade_Blend.wms + 3 + + + + 0 + + + + Alpha + + Color_Hillshade_Blend.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOLA_and_Mars_Express_HRSC_Color_Hillshade_Blend/Mars_MOLA_blend200ppx_HRSC_ClrShade_clon0dd_200mpp_lzw.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOLA_and_Mars_Express_HRSC/Color_Hillshade_Blend.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOLA_and_Mars_Express_HRSC_Color_Hillshade_Blend/Mars_MOLA_blend200ppx_HRSC_ClrShade_clon0dd_200mpp_lzw.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOLA_and_Mars_Express_HRSC/Color_Hillshade_Blend.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOLA_and_Mars_Express_HRSC/Hillshade_Blend.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOLA_and_Mars_Express_HRSC/Hillshade_Blend.vrt new file mode 100644 index 0000000000..fde9a13456 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOLA_and_Mars_Express_HRSC/Hillshade_Blend.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.3732910156250000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.3732910156250000e-03 + + 0 + Red + + Hillshade_Blend.wms + 1 + + + + 0 + + + + 0 + Green + + Hillshade_Blend.wms + 2 + + + + 0 + + + + 0 + Blue + + Hillshade_Blend.wms + 3 + + + + 0 + + + + Alpha + + Hillshade_Blend.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOLA_and_Mars_Express_HRSC_Hillshade_Blend/Mars_MOLA_blend200ppx_HRSC_Shade_clon0dd_200mpp_lzw.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOLA_and_Mars_Express_HRSC/Hillshade_Blend.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOLA_and_Mars_Express_HRSC_Hillshade_Blend/Mars_MOLA_blend200ppx_HRSC_Shade_clon0dd_200mpp_lzw.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOLA_and_Mars_Express_HRSC/Hillshade_Blend.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOLA_and_Mars_Express_HRSC_Color_Hillshade_Blend/MGS_MOLA_and_Mars_Express_HRSC_Color_Hillshade_Blend.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOLA_and_Mars_Express_HRSC_Color_Hillshade_Blend/MGS_MOLA_and_Mars_Express_HRSC_Color_Hillshade_Blend.asset deleted file mode 100644 index 7b9011c6b7..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOLA_and_Mars_Express_HRSC_Color_Hillshade_Blend/MGS_MOLA_and_Mars_Express_HRSC_Color_Hillshade_Blend.asset +++ /dev/null @@ -1,34 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "Mars_MOLA_blend200ppx_HRSC_ClrShade_clon0dd_200mpp_lzw", - Name = [[MGS MOLA and Mars Express HRSC, Color Hillshade Blend]], - FilePath = asset.localResource("Mars_MOLA_blend200ppx_HRSC_ClrShade_clon0dd_200mpp_lzw.vrt"), - Description = [[This data product is a blend of digital terrain model (DTM) data derived from the Mars Orbiter Laser Altimeter (MOLA) instrument aboard NASA’s Mars Global Surveyor spacecraft (MGS), and the High-Resolution Stereo Camera (HRSC) aboard the European Space Agency’s Mars Express spacecraft. - -MOLA fired infrared laser pulses downward 10 times per second, and measured the time it took for the reflected pulses to return from the surface. The image used for the MOLA base of this map represents more than 600 million measurements gathered between 1999 and 2001. The average accuracy of each point is originally ~100 meters in horizontal position and the total elevation uncertainty is at least ±3 m. MOLA produced global topographic coverage with a spatial resolution of about 300 x 1000 m at the equator, and better near the poles. - -HRSC, the only dedicated stereo camera orbiting Mars, is a multi-sensor push broom instrument comprising 9 CCD line sensors mounted in parallel for simultaneous high-resolution stereo, multicolor and multi-phase imaging by delivering 9 superimposed image swaths. The HRSC design permits stereo imaging with triple to quintuple panchromatic along-track stereo including a nadir-directed, forward and aft-looking (+/-18.91), and 2 inner (+/-12.81) stereo line sensors. The along-track acquisition of stereo imagery avoids changes in atmospheric and illumination conditions. The sub-pixel accuracy of the three-dimensional point determination allows the derivation of digital terrain models DTMs with a grid size of up to 50 m and a height accuracy of a single pixel with up to 10 m. - -R. Jaumann, et al. (2007), The high-resolution stereo camera (HRSC) experiment on Mars Express: instrument aspects and experiment conduct from interplanetary cruise through the nominal mission, Planet. Space Sci., 55 (7–8) (2007), pp. 928-952]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MGS MOLA and Mars Express HRSC, Color Hillshade Blend]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=Mars_MOLA_blend200ppx_HRSC_ClrShade_clon0dd_200mpp_lzw%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MGS MOLA and Mars Express HRSC, Color Hillshade Blend layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOLA_and_Mars_Express_HRSC_Color_Hillshade_Blend/Mars_MOLA_blend200ppx_HRSC_ClrShade_clon0dd_200mpp_lzw.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOLA_and_Mars_Express_HRSC_Color_Hillshade_Blend/Mars_MOLA_blend200ppx_HRSC_ClrShade_clon0dd_200mpp_lzw.vrt deleted file mode 100644 index d562f209b7..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOLA_and_Mars_Express_HRSC_Color_Hillshade_Blend/Mars_MOLA_blend200ppx_HRSC_ClrShade_clon0dd_200mpp_lzw.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.3732910156250000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.3732910156250000e-03 - - 0 - Red - - Mars_MOLA_blend200ppx_HRSC_ClrShade_clon0dd_200mpp_lzw.wms - 1 - - - - 0 - - - - 0 - Green - - Mars_MOLA_blend200ppx_HRSC_ClrShade_clon0dd_200mpp_lzw.wms - 2 - - - - 0 - - - - 0 - Blue - - Mars_MOLA_blend200ppx_HRSC_ClrShade_clon0dd_200mpp_lzw.wms - 3 - - - - 0 - - - - Alpha - - Mars_MOLA_blend200ppx_HRSC_ClrShade_clon0dd_200mpp_lzw.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOLA_and_Mars_Express_HRSC_Hillshade_Blend/MGS_MOLA_and_Mars_Express_HRSC_Hillshade_Blend.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOLA_and_Mars_Express_HRSC_Hillshade_Blend/MGS_MOLA_and_Mars_Express_HRSC_Hillshade_Blend.asset deleted file mode 100644 index 82c889bc55..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOLA_and_Mars_Express_HRSC_Hillshade_Blend/MGS_MOLA_and_Mars_Express_HRSC_Hillshade_Blend.asset +++ /dev/null @@ -1,34 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "Mars_MOLA_blend200ppx_HRSC_Shade_clon0dd_200mpp_lzw", - Name = [[MGS MOLA and Mars Express HRSC, Hillshade Blend]], - FilePath = asset.localResource("Mars_MOLA_blend200ppx_HRSC_Shade_clon0dd_200mpp_lzw.vrt"), - Description = [[This data product is a blend of digital terrain model (DTM) data derived from the Mars Orbiter Laser Altimeter (MOLA) instrument aboard NASA’s Mars Global Surveyor spacecraft (MGS), and the High-Resolution Stereo Camera (HRSC) aboard the European Space Agency’s Mars Express spacecraft. - -MOLA fired infrared laser pulses downward 10 times per second, and measured the time it took for the reflected pulses to return from the surface. The image used for the MOLA base of this map represents more than 600 million measurements gathered between 1999 and 2001. The average accuracy of each point is originally ~100 meters in horizontal position and the total elevation uncertainty is at least ±3 m. MOLA produced global topographic coverage with a spatial resolution of about 300 x 1000 m at the equator, and better near the poles. - -HRSC, the only dedicated stereo camera orbiting Mars, is a multi-sensor push broom instrument comprising 9 CCD line sensors mounted in parallel for simultaneous high-resolution stereo, multicolor and multi-phase imaging by delivering 9 superimposed image swaths. The HRSC design permits stereo imaging with triple to quintuple panchromatic along-track stereo including a nadir-directed, forward and aft-looking (+/-18.91), and 2 inner (+/-12.81) stereo line sensors. The along-track acquisition of stereo imagery avoids changes in atmospheric and illumination conditions. The sub-pixel accuracy of the three-dimensional point determination allows the derivation of digital terrain models DTMs with a grid size of up to 50 m and a height accuracy of a single pixel with up to 10 m. - -R. Jaumann, et al. (2007), The high-resolution stereo camera (HRSC) experiment on Mars Express: instrument aspects and experiment conduct from interplanetary cruise through the nominal mission, Planet. Space Sci., 55 (7–8) (2007), pp. 928-952]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MGS MOLA and Mars Express HRSC, Hillshade Blend]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=Mars_MOLA_blend200ppx_HRSC_Shade_clon0dd_200mpp_lzw%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MGS MOLA and Mars Express HRSC, Hillshade Blend layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOLA_and_Mars_Express_HRSC_Hillshade_Blend/Mars_MOLA_blend200ppx_HRSC_Shade_clon0dd_200mpp_lzw.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOLA_and_Mars_Express_HRSC_Hillshade_Blend/Mars_MOLA_blend200ppx_HRSC_Shade_clon0dd_200mpp_lzw.vrt deleted file mode 100644 index cde96b8b22..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_MOLA_and_Mars_Express_HRSC_Hillshade_Blend/Mars_MOLA_blend200ppx_HRSC_Shade_clon0dd_200mpp_lzw.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.3732910156250000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.3732910156250000e-03 - - 0 - Red - - Mars_MOLA_blend200ppx_HRSC_Shade_clon0dd_200mpp_lzw.wms - 1 - - - - 0 - - - - 0 - Green - - Mars_MOLA_blend200ppx_HRSC_Shade_clon0dd_200mpp_lzw.wms - 2 - - - - 0 - - - - 0 - Blue - - Mars_MOLA_blend200ppx_HRSC_Shade_clon0dd_200mpp_lzw.wms - 3 - - - - 0 - - - - Alpha - - Mars_MOLA_blend200ppx_HRSC_Shade_clon0dd_200mpp_lzw.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_TES.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_TES.asset new file mode 100644 index 0000000000..163522a292 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_TES.asset @@ -0,0 +1,84 @@ +-- This file was automatically generated using a script found at +-- https://github.com/OpenSpace/scripts/treks-to-openspace. See the README.md file +-- in that repository for more information on how to run the script to update these +-- files. In particular in the case of errors, prefer to change that script rather +-- than the individual files + +local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier + +local treks_TES_Dust = { + Identifier = "TES_Dust", + Name = [[MGS TES, Global Dust]], + FilePath = asset.localResource("MGS_TES/Global_Dust.vrt"), + Description = [[The Thermal Emission Spectrometer (TES) is one of the instruments aboard the Mars Global Surveyor spacecraft. TES is designed to measure the thermal infrared energy (heat) emitted from Mars. This technique, called thermal emission spectroscopy, can tell us much about the geology and atmosphere of Mars. Dust is widespread and abundant across the surface of Mars. However, in the wind-blown environment of Mars, dust accumulates tickly in some areas and is blown clear of other areas. Thick accumulations of dust mask the underlying surface, making measurements of surface composition from orbit difficult or even impossible. Preferred landing site candidates will ideally be relatively dust free. An index of the relative abundance of spectrally obscuring dust across the Martian surface was developed using data from TES. While closely correlated with albedo, the TES dust cover index (DCI) is a more direct metric for the presence or absence of dust on a particular surface and is independent of albedo. This becomes important for the types of light-toned layered deposits and surfaces that likely will be among the candidates for future landing sites. Map resolution/scale: 16ppd/3.5km. Ruff and Christensen, 2002, JGR, VOL. 107, NO. E12, 5127]] +} + +local treks_tes_ruffdust = { + Identifier = "tes_ruffdust", + Name = [[MGS TES, Global Dust Index]], + FilePath = asset.localResource("MGS_TES/Global_Dust_Index.vrt"), + Description = [[The Thermal Emission Spectrometer (TES) is one of the instruments aboard the Mars Global Surveyor spacecraft. TES is designed to measure the thermal infrared energy (heat) emitted from Mars. This technique, called thermal emission spectroscopy, can tell us much about the geology and atmosphere of Mars. Dust is widespread and abundant across the surface of Mars. However, in the wind-blown environment of Mars, dust accumulates tickly in some areas and is blown clear of other areas. Thick accumulations of dust mask the underlying surface, making measurements of surface composition from orbit difficult or even impossible. Preferred landing site candidates will ideally be relatively dust free. An index of the relative abundance of spectrally obscuring dust across the Martian surface was developed using data from TES. While closely correlated with albedo, the TES dust cover index (DCI) is a more direct metric for the presence or absence of dust on a particular surface and is independent of albedo. This becomes important for the types of light-toned layered deposits and surfaces that likely will be among the candidates for future landing sites. Map resolution/scale: 16ppd/3.5km. Ruff and Christensen, 2002, JGR, VOL. 107, NO. E12, 5127]] +} + +local treks_TES_Clinopyroxene = { + Identifier = "TES_Clinopyroxene", + Name = [[MGS TES, Global High-Ca Pyroxene Abundance]], + FilePath = asset.localResource("MGS_TES/Global_High-Ca_Pyroxene_Abundance.vrt"), + Description = [[The Thermal Emission Spectrometer (TES) is one of the instruments aboard the Mars Global Surveyor spacecraft. TES is designed to measure the thermal infrared energy (heat) emitted from Mars. This technique, called thermal emission spectroscopy, can tell us much about the geology and atmosphere of Mars. A deconvolution method was used to remove atmospheric components and determine surface mineralogy from TES data at 1 pixel per degree (ppd). Minerals were grouped into categories on the basis of compositional and spectral similarity, and global concentration maps were produced. High-Ca pyroxenes are identified in concentrations of 0.10 - 0.20 in equatorial low albedo regions. The highest concentrations are present in Syrtis Major. High-latitude, low-albedo regions are characterized by concentrations of 0 - 0.10. Light regions have 0 - 0.05 high-Ca pyroxene concentrations. Only equatorial low-albedo regions have pyroxene concentrations above the detection limit. Map resolution/scale: 4 ppd/16km. Joshua L. Bandfield, 2002, JGR, VOL. 107, NO. E6, 5042]] +} + +local treks_TES_Plagioclase = { + Identifier = "TES_Plagioclase", + Name = [[MGS TES, Global Plagioclase Abundance]], + FilePath = asset.localResource("MGS_TES/Global_Plagioclase_Abundance.vrt"), + Description = [[The Thermal Emission Spectrometer (TES) is one of the instruments aboard the Mars Global Surveyor spacecraft. TES is designed to measure the thermal infrared energy (heat) emitted from Mars. This technique, called thermal emission spectroscopy, can tell us much about the geology and atmosphere of Mars. A deconvolution method was used to remove atmospheric components and determine surface mineralogy from TES data at 1 pixel per degree (ppd). Minerals were grouped into categories on the basis of compositional and spectral similarity, and global concentration maps were produced. Plagioclase is present in high concentrations in low-albedo regions. High-latitude, low albedo regions have concentrations of 0.05 - 0.15. Equatorial low-albedo regions display concentrations of 0.10 - 0.20 with the highest concentrations in the Syrtis Major region. High-albedo surfaces have plagioclase concentrations of 0 - 0.05, well below the detectable limit. Where there are significant concentrations, average plagioclase compositions are intermediate to calcic. Map resolution/scale: 4 ppd/16km. Joshua L. Bandfield, 2002, JGR, VOL. 107, NO. E6, 5042]] +} + +local treks_TES_Glass_Clay = { + Identifier = "TES_Glass_Clay", + Name = [[MGS TES, Global Sheet Silicates/High-Si Glass]], + FilePath = asset.localResource("MGS_TES/Global_Sheet_SilicatesHigh-Si_Glass.vrt"), + Description = [[The Thermal Emission Spectrometer (TES) is one of the instruments aboard the Mars Global Surveyor spacecraft. TES is designed to measure the thermal infrared energy (heat) emitted from Mars. This technique, called thermal emission spectroscopy, can tell us much about the geology and atmosphere of Mars. A deconvolution method was used to remove atmospheric components and determine surface mineralogy from TES data at 1 pixel per degree (ppd). Minerals were grouped into categories on the basis of compositional and spectral similarity, and global concentration maps were produced. The sheet silicate and high-Si glass map is slightly noisier than the other mineralogy maps. This is likely due to the spectral similarity between the sheet silicate and high-Si glass end-member group and the atmospheric dust spectral shapes. The highest concentrations are located in northern hemisphere low-albedo regions with concentrations of 0.05 - 0.20. High concentrations are also present in several isolated regions south of Solis Planum, southeast of Hellas Basin, and along the edge of the southern polar cap. High albedo regions contain 0 - 0.10 sheet silicate and high-Si glass concentrations. Equatorial and southern hemisphere low-albedo regions typically have concentrations of 0.05 - 0.15 with the exception of some isolated areas. Map resolution/scale: 4 ppd/16km. Joshua L. Bandfield, 2002, JGR, VOL. 107, NO. E6, 5042]] +} + +local treks_TES_Thermal_Inertia = { + Identifier = "TES_Thermal_Inertia", + Name = [[MGS TES, Global Thermal Inertia]], + FilePath = asset.localResource("MGS_TES/Global_Thermal_Inertia.vrt"), + Description = [[The Thermal Emission Spectrometer (TES) is one of the instruments aboard the Mars Global Surveyor spacecraft. TES is designed to measure the thermal infrared energy (heat) emitted from Mars. This technique, called thermal emission spectroscopy, can tell us much about the geology and atmosphere of Mars. One of the objectives of the MGS TES instrument is the derivation of thermal inertia of the surface at 3-km spatial resolution. Thermal inertia represents the ability of a material to conduct and store heat, and in the context of planetary science, it is a measure of the subsurface's ability to store heat during the day and reradiate it during the night. While compositional differences (ie, mineralogy) will have some effect, for a terrestrial planetary surface such as that of Mars, thermal inertia will depend predominantly on the physical properties of the near surface materials such as particle size, degree of induration (ie, cementation of grains), rock abundance, and exposure of bedrock (rocks will have a much higher thermal inertia than sand or dust - that is, it takes longer to heat rocks up during the day and to cool them off at night). For example, on a visit to the desert you may notice that sandy areas are much hotter at midday than adjacent rocks, and the sand cools off quickly after sunset whereas the rocks remain warm well into the evening. Map resolution/scale: 20 ppd/3km. Putzig et al, 2005, Icarus 173, 325-341]] +} + +asset.onInitialize(function() + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_TES_Dust) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_tes_ruffdust) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_TES_Clinopyroxene) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_TES_Plagioclase) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_TES_Glass_Clay) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_TES_Thermal_Inertia) +end) + +asset.onDeinitialize(function() + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_TES_Dust") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_tes_ruffdust") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_TES_Clinopyroxene") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_TES_Plagioclase") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_TES_Glass_Clay") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_TES_Thermal_Inertia") +end) + +asset.export("TES_Dust", treks_TES_Dust) +asset.export("tes_ruffdust", treks_tes_ruffdust) +asset.export("TES_Clinopyroxene", treks_TES_Clinopyroxene) +asset.export("TES_Plagioclase", treks_TES_Plagioclase) +asset.export("TES_Glass_Clay", treks_TES_Glass_Clay) +asset.export("TES_Thermal_Inertia", treks_TES_Thermal_Inertia) + + +asset.meta = { + Name = [[NASA Treks Layers for Mars MGS_TES], + Version = "1.0", + Author = "NASA/Treks", + URL = "https://trek.nasa.gov/mars", + License = "NASA/Treks", + Description = [[MGS_TES layers from NASA/Treks for Mars]] +} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_TES/Global_Dust.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_TES/Global_Dust.vrt new file mode 100644 index 0000000000..c51802edd6 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_TES/Global_Dust.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.7578125000000000e-01, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7578125000000000e-01 + + 0 + Red + + Global_Dust.wms + 1 + + + + 0 + + + + 0 + Green + + Global_Dust.wms + 2 + + + + 0 + + + + 0 + Blue + + Global_Dust.wms + 3 + + + + 0 + + + + Alpha + + Global_Dust.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_TES_Global_Dust/TES_Dust.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_TES/Global_Dust.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_TES_Global_Dust/TES_Dust.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_TES/Global_Dust.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_TES/Global_Dust_Index.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_TES/Global_Dust_Index.vrt new file mode 100644 index 0000000000..ff09288fef --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_TES/Global_Dust_Index.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 8.7890625000000000e-02, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.7890625000000000e-02 + + 0 + Red + + Global_Dust_Index.wms + 1 + + + + 0 + + + + 0 + Green + + Global_Dust_Index.wms + 2 + + + + 0 + + + + 0 + Blue + + Global_Dust_Index.wms + 3 + + + + 0 + + + + Alpha + + Global_Dust_Index.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_TES_Global_Dust_Index/tes_ruffdust.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_TES/Global_Dust_Index.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_TES_Global_Dust_Index/tes_ruffdust.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_TES/Global_Dust_Index.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_TES/Global_High-Ca_Pyroxene_Abundance.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_TES/Global_High-Ca_Pyroxene_Abundance.vrt new file mode 100644 index 0000000000..313ad21033 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_TES/Global_High-Ca_Pyroxene_Abundance.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.7578125000000000e-01, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7578125000000000e-01 + + 0 + Red + + Global_High-Ca_Pyroxene_Abundance.wms + 1 + + + + 0 + + + + 0 + Green + + Global_High-Ca_Pyroxene_Abundance.wms + 2 + + + + 0 + + + + 0 + Blue + + Global_High-Ca_Pyroxene_Abundance.wms + 3 + + + + 0 + + + + Alpha + + Global_High-Ca_Pyroxene_Abundance.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_TES_Global_High-Ca_Pyroxene_Abundance/TES_Clinopyroxene.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_TES/Global_High-Ca_Pyroxene_Abundance.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_TES_Global_High-Ca_Pyroxene_Abundance/TES_Clinopyroxene.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_TES/Global_High-Ca_Pyroxene_Abundance.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_TES/Global_Plagioclase_Abundance.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_TES/Global_Plagioclase_Abundance.vrt new file mode 100644 index 0000000000..8d8f743384 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_TES/Global_Plagioclase_Abundance.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.7578125000000000e-01, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7578125000000000e-01 + + 0 + Red + + Global_Plagioclase_Abundance.wms + 1 + + + + 0 + + + + 0 + Green + + Global_Plagioclase_Abundance.wms + 2 + + + + 0 + + + + 0 + Blue + + Global_Plagioclase_Abundance.wms + 3 + + + + 0 + + + + Alpha + + Global_Plagioclase_Abundance.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_TES_Global_Plagioclase_Abundance/TES_Plagioclase.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_TES/Global_Plagioclase_Abundance.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_TES_Global_Plagioclase_Abundance/TES_Plagioclase.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_TES/Global_Plagioclase_Abundance.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_TES/Global_Sheet_SilicatesHigh-Si_Glass.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_TES/Global_Sheet_SilicatesHigh-Si_Glass.vrt new file mode 100644 index 0000000000..ed9ffacf10 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_TES/Global_Sheet_SilicatesHigh-Si_Glass.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.7578125000000000e-01, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7578125000000000e-01 + + 0 + Red + + Global_Sheet_SilicatesHigh-Si_Glass.wms + 1 + + + + 0 + + + + 0 + Green + + Global_Sheet_SilicatesHigh-Si_Glass.wms + 2 + + + + 0 + + + + 0 + Blue + + Global_Sheet_SilicatesHigh-Si_Glass.wms + 3 + + + + 0 + + + + Alpha + + Global_Sheet_SilicatesHigh-Si_Glass.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_TES_Global_Sheet_SilicatesHigh-Si_Glass/TES_Glass_Clay.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_TES/Global_Sheet_SilicatesHigh-Si_Glass.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_TES_Global_Sheet_SilicatesHigh-Si_Glass/TES_Glass_Clay.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_TES/Global_Sheet_SilicatesHigh-Si_Glass.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_TES/Global_Thermal_Inertia.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_TES/Global_Thermal_Inertia.vrt new file mode 100644 index 0000000000..6aff2192f6 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_TES/Global_Thermal_Inertia.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.7578125000000000e-01, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7578125000000000e-01 + + 0 + Red + + Global_Thermal_Inertia.wms + 1 + + + + 0 + + + + 0 + Green + + Global_Thermal_Inertia.wms + 2 + + + + 0 + + + + 0 + Blue + + Global_Thermal_Inertia.wms + 3 + + + + 0 + + + + Alpha + + Global_Thermal_Inertia.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_TES_Global_Thermal_Inertia/TES_Thermal_Inertia.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_TES/Global_Thermal_Inertia.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_TES_Global_Thermal_Inertia/TES_Thermal_Inertia.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_TES/Global_Thermal_Inertia.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_TES_Global_Dust/MGS_TES_Global_Dust.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_TES_Global_Dust/MGS_TES_Global_Dust.asset deleted file mode 100644 index a1cddfdc11..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_TES_Global_Dust/MGS_TES_Global_Dust.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "TES_Dust", - Name = [[MGS TES, Global Dust]], - FilePath = asset.localResource("TES_Dust.vrt"), - Description = [[The Thermal Emission Spectrometer (TES) is one of the instruments aboard the Mars Global Surveyor spacecraft. TES is designed to measure the thermal infrared energy (heat) emitted from Mars. This technique, called thermal emission spectroscopy, can tell us much about the geology and atmosphere of Mars. Dust is widespread and abundant across the surface of Mars. However, in the wind-blown environment of Mars, dust accumulates tickly in some areas and is blown clear of other areas. Thick accumulations of dust mask the underlying surface, making measurements of surface composition from orbit difficult or even impossible. Preferred landing site candidates will ideally be relatively dust free. An index of the relative abundance of spectrally obscuring dust across the Martian surface was developed using data from TES. While closely correlated with albedo, the TES dust cover index (DCI) is a more direct metric for the presence or absence of dust on a particular surface and is independent of albedo. This becomes important for the types of light-toned layered deposits and surfaces that likely will be among the candidates for future landing sites. Map resolution/scale: 16ppd/3.5km. Ruff and Christensen, 2002, JGR, VOL. 107, NO. E12, 5127]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MGS TES, Global Dust]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=TES_Dust%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MGS TES, Global Dust layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_TES_Global_Dust/TES_Dust.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_TES_Global_Dust/TES_Dust.vrt deleted file mode 100644 index 1d33c1f613..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_TES_Global_Dust/TES_Dust.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.7578125000000000e-01, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7578125000000000e-01 - - 0 - Red - - TES_Dust.wms - 1 - - - - 0 - - - - 0 - Green - - TES_Dust.wms - 2 - - - - 0 - - - - 0 - Blue - - TES_Dust.wms - 3 - - - - 0 - - - - Alpha - - TES_Dust.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_TES_Global_Dust_Index/MGS_TES_Global_Dust_Index.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_TES_Global_Dust_Index/MGS_TES_Global_Dust_Index.asset deleted file mode 100644 index 9c00d65f10..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_TES_Global_Dust_Index/MGS_TES_Global_Dust_Index.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "tes_ruffdust", - Name = [[MGS TES, Global Dust Index]], - FilePath = asset.localResource("tes_ruffdust.vrt"), - Description = [[The Thermal Emission Spectrometer (TES) is one of the instruments aboard the Mars Global Surveyor spacecraft. TES is designed to measure the thermal infrared energy (heat) emitted from Mars. This technique, called thermal emission spectroscopy, can tell us much about the geology and atmosphere of Mars. Dust is widespread and abundant across the surface of Mars. However, in the wind-blown environment of Mars, dust accumulates tickly in some areas and is blown clear of other areas. Thick accumulations of dust mask the underlying surface, making measurements of surface composition from orbit difficult or even impossible. Preferred landing site candidates will ideally be relatively dust free. An index of the relative abundance of spectrally obscuring dust across the Martian surface was developed using data from TES. While closely correlated with albedo, the TES dust cover index (DCI) is a more direct metric for the presence or absence of dust on a particular surface and is independent of albedo. This becomes important for the types of light-toned layered deposits and surfaces that likely will be among the candidates for future landing sites. Map resolution/scale: 16ppd/3.5km. Ruff and Christensen, 2002, JGR, VOL. 107, NO. E12, 5127]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MGS TES, Global Dust Index]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=tes_ruffdust%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MGS TES, Global Dust Index layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_TES_Global_Dust_Index/tes_ruffdust.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_TES_Global_Dust_Index/tes_ruffdust.vrt deleted file mode 100644 index 474e05d832..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_TES_Global_Dust_Index/tes_ruffdust.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.7890625000000000e-02, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.7890625000000000e-02 - - 0 - Red - - tes_ruffdust.wms - 1 - - - - 0 - - - - 0 - Green - - tes_ruffdust.wms - 2 - - - - 0 - - - - 0 - Blue - - tes_ruffdust.wms - 3 - - - - 0 - - - - Alpha - - tes_ruffdust.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_TES_Global_High-Ca_Pyroxene_Abundance/MGS_TES_Global_High-Ca_Pyroxene_Abundance.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_TES_Global_High-Ca_Pyroxene_Abundance/MGS_TES_Global_High-Ca_Pyroxene_Abundance.asset deleted file mode 100644 index 1aec46623d..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_TES_Global_High-Ca_Pyroxene_Abundance/MGS_TES_Global_High-Ca_Pyroxene_Abundance.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "TES_Clinopyroxene", - Name = [[MGS TES, Global High-Ca Pyroxene Abundance]], - FilePath = asset.localResource("TES_Clinopyroxene.vrt"), - Description = [[The Thermal Emission Spectrometer (TES) is one of the instruments aboard the Mars Global Surveyor spacecraft. TES is designed to measure the thermal infrared energy (heat) emitted from Mars. This technique, called thermal emission spectroscopy, can tell us much about the geology and atmosphere of Mars. A deconvolution method was used to remove atmospheric components and determine surface mineralogy from TES data at 1 pixel per degree (ppd). Minerals were grouped into categories on the basis of compositional and spectral similarity, and global concentration maps were produced. High-Ca pyroxenes are identified in concentrations of 0.10 - 0.20 in equatorial low albedo regions. The highest concentrations are present in Syrtis Major. High-latitude, low-albedo regions are characterized by concentrations of 0 - 0.10. Light regions have 0 - 0.05 high-Ca pyroxene concentrations. Only equatorial low-albedo regions have pyroxene concentrations above the detection limit. Map resolution/scale: 4 ppd/16km. Joshua L. Bandfield, 2002, JGR, VOL. 107, NO. E6, 5042]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MGS TES, Global High-Ca Pyroxene Abundance]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=TES_Clinopyroxene%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MGS TES, Global High-Ca Pyroxene Abundance layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_TES_Global_High-Ca_Pyroxene_Abundance/TES_Clinopyroxene.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_TES_Global_High-Ca_Pyroxene_Abundance/TES_Clinopyroxene.vrt deleted file mode 100644 index 4102cec295..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_TES_Global_High-Ca_Pyroxene_Abundance/TES_Clinopyroxene.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.7578125000000000e-01, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7578125000000000e-01 - - 0 - Red - - TES_Clinopyroxene.wms - 1 - - - - 0 - - - - 0 - Green - - TES_Clinopyroxene.wms - 2 - - - - 0 - - - - 0 - Blue - - TES_Clinopyroxene.wms - 3 - - - - 0 - - - - Alpha - - TES_Clinopyroxene.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_TES_Global_Plagioclase_Abundance/MGS_TES_Global_Plagioclase_Abundance.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_TES_Global_Plagioclase_Abundance/MGS_TES_Global_Plagioclase_Abundance.asset deleted file mode 100644 index c482f2ec88..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_TES_Global_Plagioclase_Abundance/MGS_TES_Global_Plagioclase_Abundance.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "TES_Plagioclase", - Name = [[MGS TES, Global Plagioclase Abundance]], - FilePath = asset.localResource("TES_Plagioclase.vrt"), - Description = [[The Thermal Emission Spectrometer (TES) is one of the instruments aboard the Mars Global Surveyor spacecraft. TES is designed to measure the thermal infrared energy (heat) emitted from Mars. This technique, called thermal emission spectroscopy, can tell us much about the geology and atmosphere of Mars. A deconvolution method was used to remove atmospheric components and determine surface mineralogy from TES data at 1 pixel per degree (ppd). Minerals were grouped into categories on the basis of compositional and spectral similarity, and global concentration maps were produced. Plagioclase is present in high concentrations in low-albedo regions. High-latitude, low albedo regions have concentrations of 0.05 - 0.15. Equatorial low-albedo regions display concentrations of 0.10 - 0.20 with the highest concentrations in the Syrtis Major region. High-albedo surfaces have plagioclase concentrations of 0 - 0.05, well below the detectable limit. Where there are significant concentrations, average plagioclase compositions are intermediate to calcic. Map resolution/scale: 4 ppd/16km. Joshua L. Bandfield, 2002, JGR, VOL. 107, NO. E6, 5042]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MGS TES, Global Plagioclase Abundance]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=TES_Plagioclase%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MGS TES, Global Plagioclase Abundance layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_TES_Global_Plagioclase_Abundance/TES_Plagioclase.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_TES_Global_Plagioclase_Abundance/TES_Plagioclase.vrt deleted file mode 100644 index 6effb00b19..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_TES_Global_Plagioclase_Abundance/TES_Plagioclase.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.7578125000000000e-01, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7578125000000000e-01 - - 0 - Red - - TES_Plagioclase.wms - 1 - - - - 0 - - - - 0 - Green - - TES_Plagioclase.wms - 2 - - - - 0 - - - - 0 - Blue - - TES_Plagioclase.wms - 3 - - - - 0 - - - - Alpha - - TES_Plagioclase.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_TES_Global_Sheet_SilicatesHigh-Si_Glass/MGS_TES_Global_Sheet_SilicatesHigh-Si_Glass.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_TES_Global_Sheet_SilicatesHigh-Si_Glass/MGS_TES_Global_Sheet_SilicatesHigh-Si_Glass.asset deleted file mode 100644 index f936612c75..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_TES_Global_Sheet_SilicatesHigh-Si_Glass/MGS_TES_Global_Sheet_SilicatesHigh-Si_Glass.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "TES_Glass_Clay", - Name = [[MGS TES, Global Sheet Silicates/High-Si Glass]], - FilePath = asset.localResource("TES_Glass_Clay.vrt"), - Description = [[The Thermal Emission Spectrometer (TES) is one of the instruments aboard the Mars Global Surveyor spacecraft. TES is designed to measure the thermal infrared energy (heat) emitted from Mars. This technique, called thermal emission spectroscopy, can tell us much about the geology and atmosphere of Mars. A deconvolution method was used to remove atmospheric components and determine surface mineralogy from TES data at 1 pixel per degree (ppd). Minerals were grouped into categories on the basis of compositional and spectral similarity, and global concentration maps were produced. The sheet silicate and high-Si glass map is slightly noisier than the other mineralogy maps. This is likely due to the spectral similarity between the sheet silicate and high-Si glass end-member group and the atmospheric dust spectral shapes. The highest concentrations are located in northern hemisphere low-albedo regions with concentrations of 0.05 - 0.20. High concentrations are also present in several isolated regions south of Solis Planum, southeast of Hellas Basin, and along the edge of the southern polar cap. High albedo regions contain 0 - 0.10 sheet silicate and high-Si glass concentrations. Equatorial and southern hemisphere low-albedo regions typically have concentrations of 0.05 - 0.15 with the exception of some isolated areas. Map resolution/scale: 4 ppd/16km. Joshua L. Bandfield, 2002, JGR, VOL. 107, NO. E6, 5042]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MGS TES, Global Sheet Silicates/High-Si Glass]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=TES_Glass_Clay%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MGS TES, Global Sheet Silicates/High-Si Glass layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_TES_Global_Sheet_SilicatesHigh-Si_Glass/TES_Glass_Clay.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_TES_Global_Sheet_SilicatesHigh-Si_Glass/TES_Glass_Clay.vrt deleted file mode 100644 index 4147f03a4d..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_TES_Global_Sheet_SilicatesHigh-Si_Glass/TES_Glass_Clay.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.7578125000000000e-01, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7578125000000000e-01 - - 0 - Red - - TES_Glass_Clay.wms - 1 - - - - 0 - - - - 0 - Green - - TES_Glass_Clay.wms - 2 - - - - 0 - - - - 0 - Blue - - TES_Glass_Clay.wms - 3 - - - - 0 - - - - Alpha - - TES_Glass_Clay.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_TES_Global_Thermal_Inertia/MGS_TES_Global_Thermal_Inertia.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_TES_Global_Thermal_Inertia/MGS_TES_Global_Thermal_Inertia.asset deleted file mode 100644 index ae5df8ad48..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_TES_Global_Thermal_Inertia/MGS_TES_Global_Thermal_Inertia.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "TES_Thermal_Inertia", - Name = [[MGS TES, Global Thermal Inertia]], - FilePath = asset.localResource("TES_Thermal_Inertia.vrt"), - Description = [[The Thermal Emission Spectrometer (TES) is one of the instruments aboard the Mars Global Surveyor spacecraft. TES is designed to measure the thermal infrared energy (heat) emitted from Mars. This technique, called thermal emission spectroscopy, can tell us much about the geology and atmosphere of Mars. One of the objectives of the MGS TES instrument is the derivation of thermal inertia of the surface at 3-km spatial resolution. Thermal inertia represents the ability of a material to conduct and store heat, and in the context of planetary science, it is a measure of the subsurface's ability to store heat during the day and reradiate it during the night. While compositional differences (ie, mineralogy) will have some effect, for a terrestrial planetary surface such as that of Mars, thermal inertia will depend predominantly on the physical properties of the near surface materials such as particle size, degree of induration (ie, cementation of grains), rock abundance, and exposure of bedrock (rocks will have a much higher thermal inertia than sand or dust - that is, it takes longer to heat rocks up during the day and to cool them off at night). For example, on a visit to the desert you may notice that sandy areas are much hotter at midday than adjacent rocks, and the sand cools off quickly after sunset whereas the rocks remain warm well into the evening. Map resolution/scale: 20 ppd/3km. Putzig et al, 2005, Icarus 173, 325-341]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MGS TES, Global Thermal Inertia]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=TES_Thermal_Inertia%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MGS TES, Global Thermal Inertia layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_TES_Global_Thermal_Inertia/TES_Thermal_Inertia.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_TES_Global_Thermal_Inertia/TES_Thermal_Inertia.vrt deleted file mode 100644 index b051ddc770..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MGS_TES_Global_Thermal_Inertia/TES_Thermal_Inertia.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.7578125000000000e-01, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7578125000000000e-01 - - 0 - Red - - TES_Thermal_Inertia.wms - 1 - - - - 0 - - - - 0 - Green - - TES_Thermal_Inertia.wms - 2 - - - - 0 - - - - 0 - Blue - - TES_Thermal_Inertia.wms - 3 - - - - 0 - - - - Alpha - - TES_Thermal_Inertia.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MO_THEMIS-IR_Day.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MO_THEMIS-IR_Day.asset new file mode 100644 index 0000000000..d2740f48c7 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MO_THEMIS-IR_Day.asset @@ -0,0 +1,34 @@ +-- This file was automatically generated using a script found at +-- https://github.com/OpenSpace/scripts/treks-to-openspace. See the README.md file +-- in that repository for more information on how to run the script to update these +-- files. In particular in the case of errors, prefer to change that script rather +-- than the individual files + +local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier + +local treks_THEMIS_DayIR_ControlledMosaics_100m_v2_oct2018 = { + Identifier = "THEMIS_DayIR_ControlledMosaics_100m_v2_oct2018", + Name = [[MO THEMIS-IR Day, Global Mosaic]], + FilePath = asset.localResource("MO_THEMIS-IR_Day/Global_Mosaic.vrt"), + Description = [[This data was acquired using the Thermal Emission Imaging System instrument aboard NASA's Mars Odyssey spacecraft. Odyssey was launched on April 7, 2001 and arrived at Mars on October 24, 2001. It maintains a polar orbit around Mars with an altitude of about 3,800 km or 2,400 miles. Odyssey's mission includes studying the mineralogy of Mars' surface (especially looking at minerals formed in the presence of water), detecting water and shallow buried ice, and studying the radiation environment. The Thermal Emission Imaging System (THEMIS) instrument is a camera system that gathers data in infrared and visible light. The infrared images sample nine different wavelengths allowing spectra to be constructed and compositions of imaged surfaces to be inferred. Daytime infrared Themis images typically emphasize topography, with warmer sunward slopes being brighter than cooler shaded slopes. Nighttime Themis images emphasize differences in thermal inertia between areas being observed, giving insights into the physical characteristics of the surfaces. This map is a THEMIS daytime infrared map. The 2017 release featured preliminary geodetically controlled mosaics tied to a known coordinate system (USGS Viking Orbiter MDIM 2.1), spatially adjusted to align feature boundaries, and orthoprojected at 100 m/pixel scale. Further adjustments have been processed for the 2018 release of this final mosaic.]] +} + +asset.onInitialize(function() + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_THEMIS_DayIR_ControlledMosaics_100m_v2_oct2018) +end) + +asset.onDeinitialize(function() + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_THEMIS_DayIR_ControlledMosaics_100m_v2_oct2018") +end) + +asset.export("THEMIS_DayIR_ControlledMosaics_100m_v2_oct2018", treks_THEMIS_DayIR_ControlledMosaics_100m_v2_oct2018) + + +asset.meta = { + Name = [[NASA Treks Layers for Mars MO_THEMIS-IR_Day], + Version = "1.0", + Author = "NASA/Treks", + URL = "https://trek.nasa.gov/mars", + License = "NASA/Treks", + Description = [[MO_THEMIS-IR_Day layers from NASA/Treks for Mars]] +} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MO_THEMIS-IR_Day/Global_Mosaic.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MO_THEMIS-IR_Day/Global_Mosaic.vrt new file mode 100644 index 0000000000..2820dc60b3 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MO_THEMIS-IR_Day/Global_Mosaic.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 6.8664550781250000e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -6.8664550781250000e-04 + + 0 + Red + + Global_Mosaic.wms + 1 + + + + 0 + + + + 0 + Green + + Global_Mosaic.wms + 2 + + + + 0 + + + + 0 + Blue + + Global_Mosaic.wms + 3 + + + + 0 + + + + Alpha + + Global_Mosaic.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MO_THEMIS-IR_Day_Global_Mosaic/THEMIS_DayIR_ControlledMosaics_100m_v2_oct2018.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MO_THEMIS-IR_Day/Global_Mosaic.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MO_THEMIS-IR_Day_Global_Mosaic/THEMIS_DayIR_ControlledMosaics_100m_v2_oct2018.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MO_THEMIS-IR_Day/Global_Mosaic.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MO_THEMIS-IR_Day_Global_Mosaic/MO_THEMIS-IR_Day_Global_Mosaic.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MO_THEMIS-IR_Day_Global_Mosaic/MO_THEMIS-IR_Day_Global_Mosaic.asset deleted file mode 100644 index 7dff90cde6..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MO_THEMIS-IR_Day_Global_Mosaic/MO_THEMIS-IR_Day_Global_Mosaic.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "THEMIS_DayIR_ControlledMosaics_100m_v2_oct2018", - Name = [[MO THEMIS-IR Day, Global Mosaic]], - FilePath = asset.localResource("THEMIS_DayIR_ControlledMosaics_100m_v2_oct2018.vrt"), - Description = [[This data was acquired using the Thermal Emission Imaging System instrument aboard NASA's Mars Odyssey spacecraft. Odyssey was launched on April 7, 2001 and arrived at Mars on October 24, 2001. It maintains a polar orbit around Mars with an altitude of about 3,800 km or 2,400 miles. Odyssey's mission includes studying the mineralogy of Mars' surface (especially looking at minerals formed in the presence of water), detecting water and shallow buried ice, and studying the radiation environment. The Thermal Emission Imaging System (THEMIS) instrument is a camera system that gathers data in infrared and visible light. The infrared images sample nine different wavelengths allowing spectra to be constructed and compositions of imaged surfaces to be inferred. Daytime infrared Themis images typically emphasize topography, with warmer sunward slopes being brighter than cooler shaded slopes. Nighttime Themis images emphasize differences in thermal inertia between areas being observed, giving insights into the physical characteristics of the surfaces. This map is a THEMIS daytime infrared map. The 2017 release featured preliminary geodetically controlled mosaics tied to a known coordinate system (USGS Viking Orbiter MDIM 2.1), spatially adjusted to align feature boundaries, and orthoprojected at 100 m/pixel scale. Further adjustments have been processed for the 2018 release of this final mosaic.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MO THEMIS-IR Day, Global Mosaic]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=THEMIS_DayIR_ControlledMosaics_100m_v2_oct2018%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MO THEMIS-IR Day, Global Mosaic layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MO_THEMIS-IR_Day_Global_Mosaic/THEMIS_DayIR_ControlledMosaics_100m_v2_oct2018.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MO_THEMIS-IR_Day_Global_Mosaic/THEMIS_DayIR_ControlledMosaics_100m_v2_oct2018.vrt deleted file mode 100644 index 7836d111ea..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MO_THEMIS-IR_Day_Global_Mosaic/THEMIS_DayIR_ControlledMosaics_100m_v2_oct2018.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 6.8664550781250000e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -6.8664550781250000e-04 - - 0 - Red - - THEMIS_DayIR_ControlledMosaics_100m_v2_oct2018.wms - 1 - - - - 0 - - - - 0 - Green - - THEMIS_DayIR_ControlledMosaics_100m_v2_oct2018.wms - 2 - - - - 0 - - - - 0 - Blue - - THEMIS_DayIR_ControlledMosaics_100m_v2_oct2018.wms - 3 - - - - 0 - - - - Alpha - - THEMIS_DayIR_ControlledMosaics_100m_v2_oct2018.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MO_THEMIS-IR_Night.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MO_THEMIS-IR_Night.asset new file mode 100644 index 0000000000..8f92f0682d --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MO_THEMIS-IR_Night.asset @@ -0,0 +1,34 @@ +-- This file was automatically generated using a script found at +-- https://github.com/OpenSpace/scripts/treks-to-openspace. See the README.md file +-- in that repository for more information on how to run the script to update these +-- files. In particular in the case of errors, prefer to change that script rather +-- than the individual files + +local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier + +local treks_THEMIS_NightIR_ControlledMosaics_100m_v2_oct2018 = { + Identifier = "THEMIS_NightIR_ControlledMosaics_100m_v2_oct2018", + Name = [[MO THEMIS-IR Night, Global Mosaic]], + FilePath = asset.localResource("MO_THEMIS-IR_Night/Global_Mosaic.vrt"), + Description = [[This data was acquired using the Thermal Emission Imaging System instrument aboard NASA's Mars Odyssey spacecraft. Odyssey was launched on April 7, 2001 and arrived at Mars on October 24, 2001. It maintains a polar orbit around Mars with an altitude of about 3,800 km or 2,400 miles. Odyssey's mission includes studying the mineralogy of Mars' surface (especially looking at minerals formed in the presence of water), detecting water and shallow buried ice, and studying the radiation environment. The Thermal Emission Imaging System (THEMIS) instrument is a camera system that gathers data in infrared and visible light. The infrared images sample nine different wavelengths allowing spectra to be constructed and compositions of imaged surfaces to be inferred. Daytime infrared Themis images typically emphasize topography, with warmer sunward slopes being brighter than cooler shaded slopes. Nighttime Themis images emphasize differences in thermal inertia between areas being observed, giving insights into the physical characteristics of the surfaces. This map is a THEMIS nighttime infrared map. The 2017 release featured preliminary geodetically controlled mosaics tied to a known coordinate system (USGS Viking Orbiter MDIM 2.1), spatially adjusted to align feature boundaries, and orthoprojected at 100 m/pixel scale. Further adjustments have been processed for the 2018 release of this final mosaic.]] +} + +asset.onInitialize(function() + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_THEMIS_NightIR_ControlledMosaics_100m_v2_oct2018) +end) + +asset.onDeinitialize(function() + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_THEMIS_NightIR_ControlledMosaics_100m_v2_oct2018") +end) + +asset.export("THEMIS_NightIR_ControlledMosaics_100m_v2_oct2018", treks_THEMIS_NightIR_ControlledMosaics_100m_v2_oct2018) + + +asset.meta = { + Name = [[NASA Treks Layers for Mars MO_THEMIS-IR_Night], + Version = "1.0", + Author = "NASA/Treks", + URL = "https://trek.nasa.gov/mars", + License = "NASA/Treks", + Description = [[MO_THEMIS-IR_Night layers from NASA/Treks for Mars]] +} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MO_THEMIS-IR_Night/Global_Mosaic.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MO_THEMIS-IR_Night/Global_Mosaic.vrt new file mode 100644 index 0000000000..2820dc60b3 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MO_THEMIS-IR_Night/Global_Mosaic.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 6.8664550781250000e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -6.8664550781250000e-04 + + 0 + Red + + Global_Mosaic.wms + 1 + + + + 0 + + + + 0 + Green + + Global_Mosaic.wms + 2 + + + + 0 + + + + 0 + Blue + + Global_Mosaic.wms + 3 + + + + 0 + + + + Alpha + + Global_Mosaic.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MO_THEMIS-IR_Night_Global_Mosaic/THEMIS_NightIR_ControlledMosaics_100m_v2_oct2018.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MO_THEMIS-IR_Night/Global_Mosaic.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MO_THEMIS-IR_Night_Global_Mosaic/THEMIS_NightIR_ControlledMosaics_100m_v2_oct2018.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MO_THEMIS-IR_Night/Global_Mosaic.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MO_THEMIS-IR_Night_Global_Mosaic/MO_THEMIS-IR_Night_Global_Mosaic.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MO_THEMIS-IR_Night_Global_Mosaic/MO_THEMIS-IR_Night_Global_Mosaic.asset deleted file mode 100644 index e1fbdf9820..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MO_THEMIS-IR_Night_Global_Mosaic/MO_THEMIS-IR_Night_Global_Mosaic.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "THEMIS_NightIR_ControlledMosaics_100m_v2_oct2018", - Name = [[MO THEMIS-IR Night, Global Mosaic]], - FilePath = asset.localResource("THEMIS_NightIR_ControlledMosaics_100m_v2_oct2018.vrt"), - Description = [[This data was acquired using the Thermal Emission Imaging System instrument aboard NASA's Mars Odyssey spacecraft. Odyssey was launched on April 7, 2001 and arrived at Mars on October 24, 2001. It maintains a polar orbit around Mars with an altitude of about 3,800 km or 2,400 miles. Odyssey's mission includes studying the mineralogy of Mars' surface (especially looking at minerals formed in the presence of water), detecting water and shallow buried ice, and studying the radiation environment. The Thermal Emission Imaging System (THEMIS) instrument is a camera system that gathers data in infrared and visible light. The infrared images sample nine different wavelengths allowing spectra to be constructed and compositions of imaged surfaces to be inferred. Daytime infrared Themis images typically emphasize topography, with warmer sunward slopes being brighter than cooler shaded slopes. Nighttime Themis images emphasize differences in thermal inertia between areas being observed, giving insights into the physical characteristics of the surfaces. This map is a THEMIS nighttime infrared map. The 2017 release featured preliminary geodetically controlled mosaics tied to a known coordinate system (USGS Viking Orbiter MDIM 2.1), spatially adjusted to align feature boundaries, and orthoprojected at 100 m/pixel scale. Further adjustments have been processed for the 2018 release of this final mosaic.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MO THEMIS-IR Night, Global Mosaic]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=THEMIS_NightIR_ControlledMosaics_100m_v2_oct2018%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MO THEMIS-IR Night, Global Mosaic layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MO_THEMIS-IR_Night_Global_Mosaic/THEMIS_NightIR_ControlledMosaics_100m_v2_oct2018.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MO_THEMIS-IR_Night_Global_Mosaic/THEMIS_NightIR_ControlledMosaics_100m_v2_oct2018.vrt deleted file mode 100644 index 4ef528e1e6..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MO_THEMIS-IR_Night_Global_Mosaic/THEMIS_NightIR_ControlledMosaics_100m_v2_oct2018.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 6.8664550781250000e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -6.8664550781250000e-04 - - 0 - Red - - THEMIS_NightIR_ControlledMosaics_100m_v2_oct2018.wms - 1 - - - - 0 - - - - 0 - Green - - THEMIS_NightIR_ControlledMosaics_100m_v2_oct2018.wms - 2 - - - - 0 - - - - 0 - Blue - - THEMIS_NightIR_ControlledMosaics_100m_v2_oct2018.wms - 3 - - - - 0 - - - - Alpha - - THEMIS_NightIR_ControlledMosaics_100m_v2_oct2018.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX.asset new file mode 100644 index 0000000000..270d2cdcc5 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX.asset @@ -0,0 +1,611 @@ +-- This file was automatically generated using a script found at +-- https://github.com/OpenSpace/scripts/treks-to-openspace. See the README.md file +-- in that repository for more information on how to run the script to update these +-- files. In particular in the case of errors, prefer to change that script rather +-- than the individual files + +local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier + +local treks_b21_017819_2025_xn_22n048w = { + Identifier = "b21_017819_2025_xn_22n048w", + Name = [[MRO CTX, 22n048w Mosaic]], + FilePath = asset.localResource("MRO_CTX/22n048w_Mosaic.vrt"), + Description = [[This data was acquired using the Context Camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. + +The Context Camera (CTX) provides black-and-white images with resolutions up to 6 meters/pixel. It provides broader context maps for the higher resolution but narrower fields of view of the HiRISE camera, as well as for other instruments aboard MRO, and is useful for producing mosaicked images of larger areas on Mars' surface.]] +} + +local treks_Acheron_Fossae_CTX_BlockAdj_dd = { + Identifier = "Acheron_Fossae_CTX_BlockAdj_dd", + Name = [[MRO CTX, Acheron Fossae Mosaic]], + FilePath = asset.localResource("MRO_CTX/Acheron_Fossae_Mosaic.vrt"), + Description = [[This data was acquired using the Context Camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. + +The Context Camera (CTX) provides black-and-white images with resolutions up to 6 meters/pixel. It provides broader context maps for the higher resolution but narrower fields of view of the HiRISE camera, as well as for other instruments aboard MRO, and is useful for producing mosaicked images of larger areas on Mars' surface.]] +} + +local treks_Acidalia_Plantia_CTX_BlockAdj_dd = { + Identifier = "Acidalia_Plantia_CTX_BlockAdj_dd", + Name = [[MRO CTX, Acidalia Plantia Mosaic]], + FilePath = asset.localResource("MRO_CTX/Acidalia_Plantia_Mosaic.vrt"), + Description = [[This data was acquired using the Context Camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. + +The Context Camera (CTX) provides black-and-white images with resolutions up to 6 meters/pixel. It provides broader context maps for the higher resolution but narrower fields of view of the HiRISE camera, as well as for other instruments aboard MRO, and is useful for producing mosaicked images of larger areas on Mars' surface.]] +} + +local treks_Arabia_Terra_CTX_BlockAdj_dd = { + Identifier = "Arabia_Terra_CTX_BlockAdj_dd", + Name = [[MRO CTX, Arabia Terra Mosaic]], + FilePath = asset.localResource("MRO_CTX/Arabia_Terra_Mosaic.vrt"), + Description = [[This data was acquired using the Context Camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. + +The Context Camera (CTX) provides black-and-white images with resolutions up to 6 meters/pixel. It provides broader context maps for the higher resolution but narrower fields of view of the HiRISE camera, as well as for other instruments aboard MRO, and is useful for producing mosaicked images of larger areas on Mars' surface.]] +} + +local treks_Aram_Chaos_CTX_BlockAdj_dd = { + Identifier = "Aram_Chaos_CTX_BlockAdj_dd", + Name = [[MRO CTX, Aram Chaos Mosaic]], + FilePath = asset.localResource("MRO_CTX/Aram_Chaos_Mosaic.vrt"), + Description = [[This data was acquired using the Context Camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. + +The Context Camera (CTX) provides black-and-white images with resolutions up to 6 meters/pixel. It provides broader context maps for the higher resolution but narrower fields of view of the HiRISE camera, as well as for other instruments aboard MRO, and is useful for producing mosaicked images of larger areas on Mars' surface.]] +} + +local treks_Arcadia_CTX_BlockAdj_dd = { + Identifier = "Arcadia_CTX_BlockAdj_dd", + Name = [[MRO CTX, Arcadia Mosaic]], + FilePath = asset.localResource("MRO_CTX/Arcadia_Mosaic.vrt"), + Description = [[This data was acquired using the Context Camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. + +The Context Camera (CTX) provides black-and-white images with resolutions up to 6 meters/pixel. It provides broader context maps for the higher resolution but narrower fields of view of the HiRISE camera, as well as for other instruments aboard MRO, and is useful for producing mosaicked images of larger areas on Mars' surface.]] +} + +local treks_Arcadia_Planitia_CTX_BlockAdj_dd = { + Identifier = "Arcadia_Planitia_CTX_BlockAdj_dd", + Name = [[MRO CTX, Arcadia Planitia Mosaic]], + FilePath = asset.localResource("MRO_CTX/Arcadia_Planitia_Mosaic.vrt"), + Description = [[This data was acquired using the Context Camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. + +The Context Camera (CTX) provides black-and-white images with resolutions up to 6 meters/pixel. It provides broader context maps for the higher resolution but narrower fields of view of the HiRISE camera, as well as for other instruments aboard MRO, and is useful for producing mosaicked images of larger areas on Mars' surface.]] +} + +local treks_Ausonia_CTX_BlockAdj_dd = { + Identifier = "Ausonia_CTX_BlockAdj_dd", + Name = [[MRO CTX, Ausonia Mosaic]], + FilePath = asset.localResource("MRO_CTX/Ausonia_Mosaic.vrt"), + Description = [[This data was acquired using the Context Camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. + +The Context Camera (CTX) provides black-and-white images with resolutions up to 6 meters/pixel. It provides broader context maps for the higher resolution but narrower fields of view of the HiRISE camera, as well as for other instruments aboard MRO, and is useful for producing mosaicked images of larger areas on Mars' surface.]] +} + +local treks_Cerberus_CTX_BlockAdj_dd = { + Identifier = "Cerberus_CTX_BlockAdj_dd", + Name = [[MRO CTX, Cerberus Mosaic]], + FilePath = asset.localResource("MRO_CTX/Cerberus_Mosaic.vrt"), + Description = [[This data was acquired using the Context Camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. + +The Context Camera (CTX) provides black-and-white images with resolutions up to 6 meters/pixel. It provides broader context maps for the higher resolution but narrower fields of view of the HiRISE camera, as well as for other instruments aboard MRO, and is useful for producing mosaicked images of larger areas on Mars' surface.]] +} + +local treks_DEM_1m_ColumbiaHills_fixed = { + Identifier = "DEM_1m_ColumbiaHills_fixed", + Name = [[MRO CTX, Columbia Hills DEM]], + FilePath = asset.localResource("MRO_CTX/Columbia_Hills_DEM.vrt"), + Description = [[This data was acquired using the Context Camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. + +The Context Camera (CTX) provides black-and-white images with resolutions up to 6 meters/pixel. It provides broader context maps for the higher resolution but narrower fields of view of the HiRISE camera, as well as for other instruments aboard MRO, and is useful for producing mosaicked images of larger areas on Mars' surface.]] +} + +local treks_Columbus_Crater_CTX_BlockAdj_dd = { + Identifier = "Columbus_Crater_CTX_BlockAdj_dd", + Name = [[MRO CTX, Columbus Crater Mosaic]], + FilePath = asset.localResource("MRO_CTX/Columbus_Crater_Mosaic.vrt"), + Description = [[This data was acquired using the Context Camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. + +The Context Camera (CTX) provides black-and-white images with resolutions up to 6 meters/pixel. It provides broader context maps for the higher resolution but narrower fields of view of the HiRISE camera, as well as for other instruments aboard MRO, and is useful for producing mosaicked images of larger areas on Mars' surface.]] +} + +local treks_Copernicus_Crater_CTX_BlockAdj_dd = { + Identifier = "Copernicus_Crater_CTX_BlockAdj_dd", + Name = [[MRO CTX, Copernicus Crater Mosaic]], + FilePath = asset.localResource("MRO_CTX/Copernicus_Crater_Mosaic.vrt"), + Description = [[This data was acquired using the Context Camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. + +The Context Camera (CTX) provides black-and-white images with resolutions up to 6 meters/pixel. It provides broader context maps for the higher resolution but narrower fields of view of the HiRISE camera, as well as for other instruments aboard MRO, and is useful for producing mosaicked images of larger areas on Mars' surface.]] +} + +local treks_Coprates_EMelas_Chasm_CTX_BlockAdj_dd = { + Identifier = "Coprates_EMelas_Chasm_CTX_BlockAdj_dd", + Name = [[MRO CTX, Coprates EMelas Chasm Mosaic]], + FilePath = asset.localResource("MRO_CTX/Coprates_EMelas_Chasm_Mosaic.vrt"), + Description = [[This data was acquired using the Context Camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. + +The Context Camera (CTX) provides black-and-white images with resolutions up to 6 meters/pixel. It provides broader context maps for the higher resolution but narrower fields of view of the HiRISE camera, as well as for other instruments aboard MRO, and is useful for producing mosaicked images of larger areas on Mars' surface.]] +} + +local treks_curiosity_ctx_mosaic = { + Identifier = "curiosity_ctx_mosaic", + Name = [[MRO CTX, Curiosity Roving Site Mosaic]], + FilePath = asset.localResource("MRO_CTX/Curiosity_Roving_Site_Mosaic.vrt"), + Description = [[This data was acquired using the Context Camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. + +The Context Camera (CTX) provides black-and-white images with resolutions up to 6 meters/pixel. It provides broader context maps for the higher resolution but narrower fields of view of the HiRISE camera, as well as for other instruments aboard MRO, and is useful for producing mosaicked images of larger areas on Mars' surface.]] +} + +local treks_Deuteronilus1_2_CTX_BlockAdj_dd = { + Identifier = "Deuteronilus1_2_CTX_BlockAdj_dd", + Name = [[MRO CTX, Deuteronilus Mensae Mosaic]], + FilePath = asset.localResource("MRO_CTX/Deuteronilus_Mensae_Mosaic.vrt"), + Description = [[This data was acquired using the Context Camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. + +The Context Camera (CTX) provides black-and-white images with resolutions up to 6 meters/pixel. It provides broader context maps for the higher resolution but narrower fields of view of the HiRISE camera, as well as for other instruments aboard MRO, and is useful for producing mosaicked images of larger areas on Mars' surface.]] +} + +local treks_CTX_DEM_East_Melas = { + Identifier = "CTX_DEM_East_Melas", + Name = [[MRO CTX, East Melas DEM]], + FilePath = asset.localResource("MRO_CTX/East_Melas_DEM.vrt"), + Description = [[This is a digital elevation model (DEM) for the Eastern Melas Chasma region of Valles Marineris. It is one of the areas identified as a potential Exploration Zone (EZ) for human exploration of Mars. This DEM was generated by combining 9 stereographic pairs of CTX images. Each individual pair was taken of the same area but from different angles. The nine pairs were joined together to cover a broad area of the EZ. This data was acquired using the Context Camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. The Context Camera (CTX) provides black-and-white images with resolutions up to 6 meters/pixel. It provides broader context maps for the higher resolution but narrower fields of view of the HiRISE camera, as well as for other instruments aboard MRO, and is useful for producing mosaicked images of larger areas on Mars' surface.]] +} + +local treks_CTX_Shade_East_Melas = { + Identifier = "CTX_Shade_East_Melas", + Name = [[MRO CTX, East Melas Hillshade]], + FilePath = asset.localResource("MRO_CTX/East_Melas_Hillshade.vrt"), + Description = [[This is a hillshade rendition of the digital elevation model (DEM) for the Eastern Melas Chasma region of Valles Marineris. It is one of the areas identified as a potential Exploration Zone (EZ) for human exploration of Mars. The hillshade layer is a shaded relief view of the DEM, making it particularly easy to visualize surface topography. The DEM was generated by combining 9 stereographic pairs of CTX images. Each individual pair was taken of the same area but from different angles. The nine pairs were joined together to cover a broad area of the EZ. This data was acquired using the Context Camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. The Context Camera (CTX) provides black-and-white images with resolutions up to 6 meters/pixel. It provides broader context maps for the higher resolution but narrower fields of view of the HiRISE camera, as well as for other instruments aboard MRO, and is useful for producing mosaicked images of larger areas on Mars' surface.]] +} + +local treks_NE_Marineris_Crater_CTX_BlockAdj_dd = { + Identifier = "NE_Marineris_Crater_CTX_BlockAdj_dd", + Name = [[MRO CTX, Eastern Valles Marineris Mosaic]], + FilePath = asset.localResource("MRO_CTX/Eastern_Valles_Marineris_Mosaic.vrt"), + Description = [[This data was acquired using the Context Camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. + +The Context Camera (CTX) provides black-and-white images with resolutions up to 6 meters/pixel. It provides broader context maps for the higher resolution but narrower fields of view of the HiRISE camera, as well as for other instruments aboard MRO, and is useful for producing mosaicked images of larger areas on Mars' surface.]] +} + +local treks_SE_Marineris_CTX_BlockAdj_dd = { + Identifier = "SE_Marineris_CTX_BlockAdj_dd", + Name = [[MRO CTX, Equatorial Valles Marineries Mosaic]], + FilePath = asset.localResource("MRO_CTX/Equatorial_Valles_Marineries_Mosaic.vrt"), + Description = [[This data was acquired using the Context Camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. + +The Context Camera (CTX) provides black-and-white images with resolutions up to 6 meters/pixel. It provides broader context maps for the higher resolution but narrower fields of view of the HiRISE camera, as well as for other instruments aboard MRO, and is useful for producing mosaicked images of larger areas on Mars' surface.]] +} + +local treks_Erebus_Montes_CTX_BlockAdj_dd = { + Identifier = "Erebus_Montes_CTX_BlockAdj_dd", + Name = [[MRO CTX, Erebus Montes Mosaic]], + FilePath = asset.localResource("MRO_CTX/Erebus_Montes_Mosaic.vrt"), + Description = [[This data was acquired using the Context Camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. + +The Context Camera (CTX) provides black-and-white images with resolutions up to 6 meters/pixel. It provides broader context maps for the higher resolution but narrower fields of view of the HiRISE camera, as well as for other instruments aboard MRO, and is useful for producing mosaicked images of larger areas on Mars' surface.]] +} + +local treks_Gale_CTX_BlockAdj_dd = { + Identifier = "Gale_CTX_BlockAdj_dd", + Name = [[MRO CTX, Gale Crater Mosaic]], + FilePath = asset.localResource("MRO_CTX/Gale_Crater_Mosaic.vrt"), + Description = [[This data was acquired using the Context Camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. + +The Context Camera (CTX) provides black-and-white images with resolutions up to 6 meters/pixel. It provides broader context maps for the higher resolution but narrower fields of view of the HiRISE camera, as well as for other instruments aboard MRO, and is useful for producing mosaicked images of larger areas on Mars' surface.]] +} + +local treks_Gusev_CTX_BlockAdj_dd = { + Identifier = "Gusev_CTX_BlockAdj_dd", + Name = [[MRO CTX, Gusev Crater Mosaic]], + FilePath = asset.localResource("MRO_CTX/Gusev_Crater_Mosaic.vrt"), + Description = [[This data was acquired using the Context Camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. + +The Context Camera (CTX) provides black-and-white images with resolutions up to 6 meters/pixel. It provides broader context maps for the higher resolution but narrower fields of view of the HiRISE camera, as well as for other instruments aboard MRO, and is useful for producing mosaicked images of larger areas on Mars' surface.]] +} + +local treks_Hadriacus_CTX_BlockAdj_dd = { + Identifier = "Hadriacus_CTX_BlockAdj_dd", + Name = [[MRO CTX, Hadriacus Mosaic]], + FilePath = asset.localResource("MRO_CTX/Hadriacus_Mosaic.vrt"), + Description = [[This data was acquired using the Context Camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. + +The Context Camera (CTX) provides black-and-white images with resolutions up to 6 meters/pixel. It provides broader context maps for the higher resolution but narrower fields of view of the HiRISE camera, as well as for other instruments aboard MRO, and is useful for producing mosaicked images of larger areas on Mars' surface.]] +} + +local treks_Hale_Crater_CTX_BlockAdj_dd = { + Identifier = "Hale_Crater_CTX_BlockAdj_dd", + Name = [[MRO CTX, Hale Crater Mosaic]], + FilePath = asset.localResource("MRO_CTX/Hale_Crater_Mosaic.vrt"), + Description = [[This data was acquired using the Context Camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. + +The Context Camera (CTX) provides black-and-white images with resolutions up to 6 meters/pixel. It provides broader context maps for the higher resolution but narrower fields of view of the HiRISE camera, as well as for other instruments aboard MRO, and is useful for producing mosaicked images of larger areas on Mars' surface.]] +} + +local treks_Hebrus_CTX_BlockAdj_dd = { + Identifier = "Hebrus_CTX_BlockAdj_dd", + Name = [[MRO CTX, Hebrus Valles Mosaic]], + FilePath = asset.localResource("MRO_CTX/Hebrus_Valles_Mosaic.vrt"), + Description = [[This data was acquired using the Context Camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. + +The Context Camera (CTX) provides black-and-white images with resolutions up to 6 meters/pixel. It provides broader context maps for the higher resolution but narrower fields of view of the HiRISE camera, as well as for other instruments aboard MRO, and is useful for producing mosaicked images of larger areas on Mars' surface.]] +} + +local treks_Hellas_Hellas2_CTX_BlockAdj_dd = { + Identifier = "Hellas_Hellas2_CTX_BlockAdj_dd", + Name = [[MRO CTX, Hellas Eastern Rim Mosaic]], + FilePath = asset.localResource("MRO_CTX/Hellas_Eastern_Rim_Mosaic.vrt"), + Description = [[This data was acquired using the Context Camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. + +The Context Camera (CTX) provides black-and-white images with resolutions up to 6 meters/pixel. It provides broader context maps for the higher resolution but narrower fields of view of the HiRISE camera, as well as for other instruments aboard MRO, and is useful for producing mosaicked images of larger areas on Mars' surface.]] +} + +local treks_Hellas3_CTX_BlockAdj_dd = { + Identifier = "Hellas3_CTX_BlockAdj_dd", + Name = [[MRO CTX, Hellas Mesopotamia Mosaic]], + FilePath = asset.localResource("MRO_CTX/Hellas_Mesopotamia_Mosaic.vrt"), + Description = [[This data was acquired using the Context Camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. + +The Context Camera (CTX) provides black-and-white images with resolutions up to 6 meters/pixel. It provides broader context maps for the higher resolution but narrower fields of view of the HiRISE camera, as well as for other instruments aboard MRO, and is useful for producing mosaicked images of larger areas on Mars' surface.]] +} + +local treks_Huygens_CTX_BlockAdj_dd = { + Identifier = "Huygens_CTX_BlockAdj_dd", + Name = [[MRO CTX, Huygens Crater Mosaic]], + FilePath = asset.localResource("MRO_CTX/Huygens_Crater_Mosaic.vrt"), + Description = [[This data was acquired using the Context Camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. + +The Context Camera (CTX) provides black-and-white images with resolutions up to 6 meters/pixel. It provides broader context maps for the higher resolution but narrower fields of view of the HiRISE camera, as well as for other instruments aboard MRO, and is useful for producing mosaicked images of larger areas on Mars' surface.]] +} + +local treks_Hypanis_Delta_CTX_BlockAdj_dd = { + Identifier = "Hypanis_Delta_CTX_BlockAdj_dd", + Name = [[MRO CTX, Hypanis Delta Mosaic]], + FilePath = asset.localResource("MRO_CTX/Hypanis_Delta_Mosaic.vrt"), + Description = [[This data was acquired using the Context Camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. + +The Context Camera (CTX) provides black-and-white images with resolutions up to 6 meters/pixel. It provides broader context maps for the higher resolution but narrower fields of view of the HiRISE camera, as well as for other instruments aboard MRO, and is useful for producing mosaicked images of larger areas on Mars' surface.]] +} + +local treks_Ismenius_Cavus_CTX_BlockAdj_dd = { + Identifier = "Ismenius_Cavus_CTX_BlockAdj_dd", + Name = [[MRO CTX, Ismenius Cavus Mosaic]], + FilePath = asset.localResource("MRO_CTX/Ismenius_Cavus_Mosaic.vrt"), + Description = [[This data was acquired using the Context Camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. + +The Context Camera (CTX) provides black-and-white images with resolutions up to 6 meters/pixel. It provides broader context maps for the higher resolution but narrower fields of view of the HiRISE camera, as well as for other instruments aboard MRO, and is useful for producing mosaicked images of larger areas on Mars' surface.]] +} + +local treks_Jezero_CTX_BlockAdj_dd = { + Identifier = "Jezero_CTX_BlockAdj_dd", + Name = [[MRO CTX, Jezero Mosaic, Preliminary]], + FilePath = asset.localResource("MRO_CTX/Jezero_Mosaic.vrt"), + Description = [[This data was acquired using the Context Camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. + +The Context Camera (CTX) provides black-and-white images with resolutions up to 6 meters/pixel. It provides broader context maps for the higher resolution but narrower fields of view of the HiRISE camera, as well as for other instruments aboard MRO, and is useful for producing mosaicked images of larger areas on Mars' surface.]] +} + +local treks_Kasei_Valles_CTX_BlockAdj_dd = { + Identifier = "Kasei_Valles_CTX_BlockAdj_dd", + Name = [[MRO CTX, Kasei Valles Mosaic]], + FilePath = asset.localResource("MRO_CTX/Kasei_Valles_Mosaic.vrt"), + Description = [[This data was acquired using the Context Camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. + +The Context Camera (CTX) provides black-and-white images with resolutions up to 6 meters/pixel. It provides broader context maps for the higher resolution but narrower fields of view of the HiRISE camera, as well as for other instruments aboard MRO, and is useful for producing mosaicked images of larger areas on Mars' surface.]] +} + +local treks_Mawrth_Valles_CTX_BlockAdj_dd = { + Identifier = "Mawrth_Valles_CTX_BlockAdj_dd", + Name = [[MRO CTX, Mawrth Vallis Mosaic]], + FilePath = asset.localResource("MRO_CTX/Mawrth_Vallis_Mosaic.vrt"), + Description = [[This data was acquired using the Context Camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. + +The Context Camera (CTX) provides black-and-white images with resolutions up to 6 meters/pixel. It provides broader context maps for the higher resolution but narrower fields of view of the HiRISE camera, as well as for other instruments aboard MRO, and is useful for producing mosaicked images of larger areas on Mars' surface.]] +} + +local treks_McLaughlin_Crater_CTX_BlockAdj_dd = { + Identifier = "McLaughlin_Crater_CTX_BlockAdj_dd", + Name = [[MRO CTX, McLaughlin Crater Mosaic]], + FilePath = asset.localResource("MRO_CTX/McLaughlin_Crater_Mosaic.vrt"), + Description = [[This data was acquired using the Context Camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. + +The Context Camera (CTX) provides black-and-white images with resolutions up to 6 meters/pixel. It provides broader context maps for the higher resolution but narrower fields of view of the HiRISE camera, as well as for other instruments aboard MRO, and is useful for producing mosaicked images of larger areas on Mars' surface.]] +} + +local treks_S_Meridiani_Sinus_Planium_CTX_BlockAdj_dd = { + Identifier = "S_Meridiani_Sinus_Planium_CTX_BlockAdj_dd", + Name = [[MRO CTX, Meridiani Planum - Sinus Meridiani Mosaic]], + FilePath = asset.localResource("MRO_CTX/Meridiani_Planum_-_Sinus_Meridiani_Mosaic.vrt"), + Description = [[This data was acquired using the Context Camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. + +The Context Camera (CTX) provides black-and-white images with resolutions up to 6 meters/pixel. It provides broader context maps for the higher resolution but narrower fields of view of the HiRISE camera, as well as for other instruments aboard MRO, and is useful for producing mosaicked images of larger areas on Mars' surface.]] +} + +local treks_CTX_beta01_uncontrolled_5m_Caltech = { + Identifier = "CTX_beta01_uncontrolled_5m_Caltech", + Name = [[MRO CTX, Mosaic Global Uncontrolled (Caltech)]], + FilePath = asset.localResource("MRO_CTX/Mosaic_Global_Uncontrolled_Caltech.vrt"), + Description = [[This is a preliminary uncontrolled Context Camera (CTX) mosaic, called beta01, that the Murray Lab at Caltech has created to (1) generate a list of orbits that will be included in the final mosaic, (2) decipher challenges involved with generating a product of this unprecedented scale, and (3) solicit feedback from the Mars science community for how best to generate the mosaic in a way that helps as diverse a group of scientists as possible. The CTX camera, as managed by Malin Space Science Systems (MSSS), has attained near global coverage of Mars at the scale of ~5 m/pixel. All data used in the construction of this CTX global mosaic have been publicly released and are freely available via the NASA Planetary Data System. The Murray Lab/Caltech grants free use of the beta01 version of the mosaic for all purposes. When used, data credit should be: NASA/JPL/MSSS/The Caltech Murray Lab/Esri. This tiled web service, as hosted by Esri, is made available using lossy Jpeg compression at an 8 bit data range. + +To access Esri's Tiled Web Service for this mosaic, go to https://usgs.maps.arcgis.com/home/item.html?id=b164957a19544f55a8d6a001c952a590. To download the data, go to http://murray-lab.caltech.edu/CTX/. + + +Credit: NASA/JPL/MSSS/The Caltech Murray Lab/Esri]] +} + +local treks_InSightCTXMosaic_112917 = { + Identifier = "InSightCTXMosaic_112917", + Name = [[MRO CTX, Mosaic InSight]], + FilePath = asset.localResource("MRO_CTX/Mosaic_InSight.vrt"), + Description = [[This is a 5m/px CTX orthophoto mosaic of the InSight Landing Site. After being transformed using a spline transformation, each image had the exterior 100m of pixels removed and was detrended by fitting a third order polynomial and subtracting it from each image. All of the detrended images were then mosaiced into a single image and color balanced using Distributed Gradient-Domain processing.]] +} + +local treks_olympus_monseq = { + Identifier = "olympus_monseq", + Name = [[MRO CTX, Mosaic Olympus Mons]], + FilePath = asset.localResource("MRO_CTX/Mosaic_Olympus_Mons.vrt"), + Description = [[This is a beta section of a CTX global mosaic produced by Jay Dickson. It was created by map projecting CT +X images with ISIS3, and color balancing/stitching the images with Adobe Photoshop. A footprint layer shows the seams + of image boundaries. +reference: +Dickson et al. 2018 LPSC programs with abstracts https://www.hou.usra.edu/meetings/lpsc2018/pdf/2480.pdf]] +} + +local treks_Newton_Crater_CTX_BlockAdj_dd = { + Identifier = "Newton_Crater_CTX_BlockAdj_dd", + Name = [[MRO CTX, Newton Crater Mosaic]], + FilePath = asset.localResource("MRO_CTX/Newton_Crater_Mosaic.vrt"), + Description = [[This data was acquired using the Context Camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. + +The Context Camera (CTX) provides black-and-white images with resolutions up to 6 meters/pixel. It provides broader context maps for the higher resolution but narrower fields of view of the HiRISE camera, as well as for other instruments aboard MRO, and is useful for producing mosaicked images of larger areas on Mars' surface.]] +} + +local treks_Noactis_Landing_CTX_BlockAdj_dd = { + Identifier = "Noactis_Landing_CTX_BlockAdj_dd", + Name = [[MRO CTX, Noctis Landing Mosaic]], + FilePath = asset.localResource("MRO_CTX/Noctis_Landing_Mosaic.vrt"), + Description = [[This data was acquired using the Context Camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. + +The Context Camera (CTX) provides black-and-white images with resolutions up to 6 meters/pixel. It provides broader context maps for the higher resolution but narrower fields of view of the HiRISE camera, as well as for other instruments aboard MRO, and is useful for producing mosaicked images of larger areas on Mars' surface.]] +} + +local treks_Protonilus_CTX_BlockAdj_dd = { + Identifier = "Protonilus_CTX_BlockAdj_dd", + Name = [[MRO CTX, Protonilus Mensae Mosaic]], + FilePath = asset.localResource("MRO_CTX/Protonilus_Mensae_Mosaic.vrt"), + Description = [[This data was acquired using the Context Camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. + +The Context Camera (CTX) provides black-and-white images with resolutions up to 6 meters/pixel. It provides broader context maps for the higher resolution but narrower fields of view of the HiRISE camera, as well as for other instruments aboard MRO, and is useful for producing mosaicked images of larger areas on Mars' surface.]] +} + +local treks_S_Nectaris_Fossae_CTX_BlockAdj_dd = { + Identifier = "S_Nectaris_Fossae_CTX_BlockAdj_dd", + Name = [[MRO CTX, Southern Nectaris Fossae Mosaic]], + FilePath = asset.localResource("MRO_CTX/Southern_Nectaris_Fossae_Mosaic.vrt"), + Description = [[This data was acquired using the Context Camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. + +The Context Camera (CTX) provides black-and-white images with resolutions up to 6 meters/pixel. It provides broader context maps for the higher resolution but narrower fields of view of the HiRISE camera, as well as for other instruments aboard MRO, and is useful for producing mosaicked images of larger areas on Mars' surface.]] +} + +local treks_DEM_1m_VictoriaCrater = { + Identifier = "DEM_1m_VictoriaCrater", + Name = [[MRO CTX, Victoria Crater DEM]], + FilePath = asset.localResource("MRO_CTX/Victoria_Crater_DEM.vrt"), + Description = [[This data was acquired using the Context Camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. + +The Context Camera (CTX) provides black-and-white images with resolutions up to 6 meters/pixel. It provides broader context maps for the higher resolution but narrower fields of view of the HiRISE camera, as well as for other instruments aboard MRO, and is useful for producing mosaicked images of larger areas on Mars' surface.]] +} + +local treks_Viking_CTX_BlockAdj_dd = { + Identifier = "Viking_CTX_BlockAdj_dd", + Name = [[MRO CTX, Viking 1 Landing Site Mosaic]], + FilePath = asset.localResource("MRO_CTX/Viking_1_Landing_Site_Mosaic.vrt"), + Description = [[This data was acquired using the Context Camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. + +The Context Camera (CTX) provides black-and-white images with resolutions up to 6 meters/pixel. It provides broader context maps for the higher resolution but narrower fields of view of the HiRISE camera, as well as for other instruments aboard MRO, and is useful for producing mosaicked images of larger areas on Mars' surface.]] +} + +local treks_b16_015887_2280_xn_48n225w = { + Identifier = "b16_015887_2280_xn_48n225w", + Name = [[MRO CTX, Viking 2 Landing Site Mosaic]], + FilePath = asset.localResource("MRO_CTX/Viking_2_Landing_Site_Mosaic.vrt"), + Description = [[This data was acquired using the Context Camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. + +The Context Camera (CTX) provides black-and-white images with resolutions up to 6 meters/pixel. It provides broader context maps for the higher resolution but narrower fields of view of the HiRISE camera, as well as for other instruments aboard MRO, and is useful for producing mosaicked images of larger areas on Mars' surface.]] +} + +local treks_West_Candor_Chasma_longlat = { + Identifier = "West_Candor_Chasma_longlat", + Name = [[MRO CTX, West Candor Chasma Mosaic]], + FilePath = asset.localResource("MRO_CTX/West_Candor_Chasma_Mosaic.vrt"), + Description = [[This data was acquired using the Context Camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. + +The Context Camera (CTX) provides black-and-white images with resolutions up to 6 meters/pixel. It provides broader context maps for the higher resolution but narrower fields of view of the HiRISE camera, as well as for other instruments aboard MRO, and is useful for producing mosaicked images of larger areas on Mars' surface.]] +} + +local treks_West_Candor_Chasma_DEM_longlat = { + Identifier = "West_Candor_Chasma_DEM_longlat", + Name = [[MRO CTX, West Candor DEM]], + FilePath = asset.localResource("MRO_CTX/West_Candor_DEM.vrt"), + Description = [[This data was acquired using the Context Camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. + +The Context Camera (CTX) provides black-and-white images with resolutions up to 6 meters/pixel. It provides broader context maps for the higher resolution but narrower fields of view of the HiRISE camera, as well as for other instruments aboard MRO, and is useful for producing mosaicked images of larger areas on Mars' surface.]] +} + +local treks_Noachis_CTX_BlockAdj_dd = { + Identifier = "Noachis_CTX_BlockAdj_dd", + Name = [[MRO CTX, Western Noachis Terra Mosaic]], + FilePath = asset.localResource("MRO_CTX/Western_Noachis_Terra_Mosaic.vrt"), + Description = [[This data was acquired using the Context Camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. + +The Context Camera (CTX) provides black-and-white images with resolutions up to 6 meters/pixel. It provides broader context maps for the higher resolution but narrower fields of view of the HiRISE camera, as well as for other instruments aboard MRO, and is useful for producing mosaicked images of larger areas on Mars' surface.]] +} + +local treks_Zephyria_CTX_BlockAdj_dd = { + Identifier = "Zephyria_CTX_BlockAdj_dd", + Name = [[MRO CTX, Zephyria Planum Mosaic]], + FilePath = asset.localResource("MRO_CTX/Zephyria_Planum_Mosaic.vrt"), + Description = [[This data was acquired using the Context Camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. + +The Context Camera (CTX) provides black-and-white images with resolutions up to 6 meters/pixel. It provides broader context maps for the higher resolution but narrower fields of view of the HiRISE camera, as well as for other instruments aboard MRO, and is useful for producing mosaicked images of larger areas on Mars' surface.]] +} + +asset.onInitialize(function() + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_b21_017819_2025_xn_22n048w) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_Acheron_Fossae_CTX_BlockAdj_dd) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_Acidalia_Plantia_CTX_BlockAdj_dd) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_Arabia_Terra_CTX_BlockAdj_dd) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_Aram_Chaos_CTX_BlockAdj_dd) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_Arcadia_CTX_BlockAdj_dd) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_Arcadia_Planitia_CTX_BlockAdj_dd) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_Ausonia_CTX_BlockAdj_dd) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_Cerberus_CTX_BlockAdj_dd) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_DEM_1m_ColumbiaHills_fixed) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_Columbus_Crater_CTX_BlockAdj_dd) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_Copernicus_Crater_CTX_BlockAdj_dd) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_Coprates_EMelas_Chasm_CTX_BlockAdj_dd) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_curiosity_ctx_mosaic) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_Deuteronilus1_2_CTX_BlockAdj_dd) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_CTX_DEM_East_Melas) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_CTX_Shade_East_Melas) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_NE_Marineris_Crater_CTX_BlockAdj_dd) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_SE_Marineris_CTX_BlockAdj_dd) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_Erebus_Montes_CTX_BlockAdj_dd) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_Gale_CTX_BlockAdj_dd) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_Gusev_CTX_BlockAdj_dd) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_Hadriacus_CTX_BlockAdj_dd) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_Hale_Crater_CTX_BlockAdj_dd) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_Hebrus_CTX_BlockAdj_dd) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_Hellas_Hellas2_CTX_BlockAdj_dd) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_Hellas3_CTX_BlockAdj_dd) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_Huygens_CTX_BlockAdj_dd) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_Hypanis_Delta_CTX_BlockAdj_dd) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_Ismenius_Cavus_CTX_BlockAdj_dd) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_Jezero_CTX_BlockAdj_dd) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_Kasei_Valles_CTX_BlockAdj_dd) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_Mawrth_Valles_CTX_BlockAdj_dd) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_McLaughlin_Crater_CTX_BlockAdj_dd) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_S_Meridiani_Sinus_Planium_CTX_BlockAdj_dd) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_CTX_beta01_uncontrolled_5m_Caltech) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_InSightCTXMosaic_112917) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_olympus_monseq) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_Newton_Crater_CTX_BlockAdj_dd) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_Noactis_Landing_CTX_BlockAdj_dd) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_Protonilus_CTX_BlockAdj_dd) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_S_Nectaris_Fossae_CTX_BlockAdj_dd) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_DEM_1m_VictoriaCrater) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_Viking_CTX_BlockAdj_dd) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_b16_015887_2280_xn_48n225w) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_West_Candor_Chasma_longlat) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_West_Candor_Chasma_DEM_longlat) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_Noachis_CTX_BlockAdj_dd) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_Zephyria_CTX_BlockAdj_dd) +end) + +asset.onDeinitialize(function() + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_b21_017819_2025_xn_22n048w") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_Acheron_Fossae_CTX_BlockAdj_dd") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_Acidalia_Plantia_CTX_BlockAdj_dd") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_Arabia_Terra_CTX_BlockAdj_dd") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_Aram_Chaos_CTX_BlockAdj_dd") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_Arcadia_CTX_BlockAdj_dd") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_Arcadia_Planitia_CTX_BlockAdj_dd") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_Ausonia_CTX_BlockAdj_dd") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_Cerberus_CTX_BlockAdj_dd") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_DEM_1m_ColumbiaHills_fixed") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_Columbus_Crater_CTX_BlockAdj_dd") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_Copernicus_Crater_CTX_BlockAdj_dd") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_Coprates_EMelas_Chasm_CTX_BlockAdj_dd") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_curiosity_ctx_mosaic") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_Deuteronilus1_2_CTX_BlockAdj_dd") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_CTX_DEM_East_Melas") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_CTX_Shade_East_Melas") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_NE_Marineris_Crater_CTX_BlockAdj_dd") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_SE_Marineris_CTX_BlockAdj_dd") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_Erebus_Montes_CTX_BlockAdj_dd") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_Gale_CTX_BlockAdj_dd") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_Gusev_CTX_BlockAdj_dd") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_Hadriacus_CTX_BlockAdj_dd") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_Hale_Crater_CTX_BlockAdj_dd") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_Hebrus_CTX_BlockAdj_dd") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_Hellas_Hellas2_CTX_BlockAdj_dd") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_Hellas3_CTX_BlockAdj_dd") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_Huygens_CTX_BlockAdj_dd") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_Hypanis_Delta_CTX_BlockAdj_dd") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_Ismenius_Cavus_CTX_BlockAdj_dd") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_Jezero_CTX_BlockAdj_dd") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_Kasei_Valles_CTX_BlockAdj_dd") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_Mawrth_Valles_CTX_BlockAdj_dd") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_McLaughlin_Crater_CTX_BlockAdj_dd") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_S_Meridiani_Sinus_Planium_CTX_BlockAdj_dd") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_CTX_beta01_uncontrolled_5m_Caltech") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_InSightCTXMosaic_112917") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_olympus_monseq") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_Newton_Crater_CTX_BlockAdj_dd") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_Noactis_Landing_CTX_BlockAdj_dd") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_Protonilus_CTX_BlockAdj_dd") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_S_Nectaris_Fossae_CTX_BlockAdj_dd") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_DEM_1m_VictoriaCrater") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_Viking_CTX_BlockAdj_dd") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_b16_015887_2280_xn_48n225w") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_West_Candor_Chasma_longlat") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_West_Candor_Chasma_DEM_longlat") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_Noachis_CTX_BlockAdj_dd") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_Zephyria_CTX_BlockAdj_dd") +end) + +asset.export("b21_017819_2025_xn_22n048w", treks_b21_017819_2025_xn_22n048w) +asset.export("Acheron_Fossae_CTX_BlockAdj_dd", treks_Acheron_Fossae_CTX_BlockAdj_dd) +asset.export("Acidalia_Plantia_CTX_BlockAdj_dd", treks_Acidalia_Plantia_CTX_BlockAdj_dd) +asset.export("Arabia_Terra_CTX_BlockAdj_dd", treks_Arabia_Terra_CTX_BlockAdj_dd) +asset.export("Aram_Chaos_CTX_BlockAdj_dd", treks_Aram_Chaos_CTX_BlockAdj_dd) +asset.export("Arcadia_CTX_BlockAdj_dd", treks_Arcadia_CTX_BlockAdj_dd) +asset.export("Arcadia_Planitia_CTX_BlockAdj_dd", treks_Arcadia_Planitia_CTX_BlockAdj_dd) +asset.export("Ausonia_CTX_BlockAdj_dd", treks_Ausonia_CTX_BlockAdj_dd) +asset.export("Cerberus_CTX_BlockAdj_dd", treks_Cerberus_CTX_BlockAdj_dd) +asset.export("DEM_1m_ColumbiaHills_fixed", treks_DEM_1m_ColumbiaHills_fixed) +asset.export("Columbus_Crater_CTX_BlockAdj_dd", treks_Columbus_Crater_CTX_BlockAdj_dd) +asset.export("Copernicus_Crater_CTX_BlockAdj_dd", treks_Copernicus_Crater_CTX_BlockAdj_dd) +asset.export("Coprates_EMelas_Chasm_CTX_BlockAdj_dd", treks_Coprates_EMelas_Chasm_CTX_BlockAdj_dd) +asset.export("curiosity_ctx_mosaic", treks_curiosity_ctx_mosaic) +asset.export("Deuteronilus1_2_CTX_BlockAdj_dd", treks_Deuteronilus1_2_CTX_BlockAdj_dd) +asset.export("CTX_DEM_East_Melas", treks_CTX_DEM_East_Melas) +asset.export("CTX_Shade_East_Melas", treks_CTX_Shade_East_Melas) +asset.export("NE_Marineris_Crater_CTX_BlockAdj_dd", treks_NE_Marineris_Crater_CTX_BlockAdj_dd) +asset.export("SE_Marineris_CTX_BlockAdj_dd", treks_SE_Marineris_CTX_BlockAdj_dd) +asset.export("Erebus_Montes_CTX_BlockAdj_dd", treks_Erebus_Montes_CTX_BlockAdj_dd) +asset.export("Gale_CTX_BlockAdj_dd", treks_Gale_CTX_BlockAdj_dd) +asset.export("Gusev_CTX_BlockAdj_dd", treks_Gusev_CTX_BlockAdj_dd) +asset.export("Hadriacus_CTX_BlockAdj_dd", treks_Hadriacus_CTX_BlockAdj_dd) +asset.export("Hale_Crater_CTX_BlockAdj_dd", treks_Hale_Crater_CTX_BlockAdj_dd) +asset.export("Hebrus_CTX_BlockAdj_dd", treks_Hebrus_CTX_BlockAdj_dd) +asset.export("Hellas_Hellas2_CTX_BlockAdj_dd", treks_Hellas_Hellas2_CTX_BlockAdj_dd) +asset.export("Hellas3_CTX_BlockAdj_dd", treks_Hellas3_CTX_BlockAdj_dd) +asset.export("Huygens_CTX_BlockAdj_dd", treks_Huygens_CTX_BlockAdj_dd) +asset.export("Hypanis_Delta_CTX_BlockAdj_dd", treks_Hypanis_Delta_CTX_BlockAdj_dd) +asset.export("Ismenius_Cavus_CTX_BlockAdj_dd", treks_Ismenius_Cavus_CTX_BlockAdj_dd) +asset.export("Jezero_CTX_BlockAdj_dd", treks_Jezero_CTX_BlockAdj_dd) +asset.export("Kasei_Valles_CTX_BlockAdj_dd", treks_Kasei_Valles_CTX_BlockAdj_dd) +asset.export("Mawrth_Valles_CTX_BlockAdj_dd", treks_Mawrth_Valles_CTX_BlockAdj_dd) +asset.export("McLaughlin_Crater_CTX_BlockAdj_dd", treks_McLaughlin_Crater_CTX_BlockAdj_dd) +asset.export("S_Meridiani_Sinus_Planium_CTX_BlockAdj_dd", treks_S_Meridiani_Sinus_Planium_CTX_BlockAdj_dd) +asset.export("CTX_beta01_uncontrolled_5m_Caltech", treks_CTX_beta01_uncontrolled_5m_Caltech) +asset.export("InSightCTXMosaic_112917", treks_InSightCTXMosaic_112917) +asset.export("olympus_monseq", treks_olympus_monseq) +asset.export("Newton_Crater_CTX_BlockAdj_dd", treks_Newton_Crater_CTX_BlockAdj_dd) +asset.export("Noactis_Landing_CTX_BlockAdj_dd", treks_Noactis_Landing_CTX_BlockAdj_dd) +asset.export("Protonilus_CTX_BlockAdj_dd", treks_Protonilus_CTX_BlockAdj_dd) +asset.export("S_Nectaris_Fossae_CTX_BlockAdj_dd", treks_S_Nectaris_Fossae_CTX_BlockAdj_dd) +asset.export("DEM_1m_VictoriaCrater", treks_DEM_1m_VictoriaCrater) +asset.export("Viking_CTX_BlockAdj_dd", treks_Viking_CTX_BlockAdj_dd) +asset.export("b16_015887_2280_xn_48n225w", treks_b16_015887_2280_xn_48n225w) +asset.export("West_Candor_Chasma_longlat", treks_West_Candor_Chasma_longlat) +asset.export("West_Candor_Chasma_DEM_longlat", treks_West_Candor_Chasma_DEM_longlat) +asset.export("Noachis_CTX_BlockAdj_dd", treks_Noachis_CTX_BlockAdj_dd) +asset.export("Zephyria_CTX_BlockAdj_dd", treks_Zephyria_CTX_BlockAdj_dd) + + +asset.meta = { + Name = [[NASA Treks Layers for Mars MRO_CTX], + Version = "1.0", + Author = "NASA/Treks", + URL = "https://trek.nasa.gov/mars", + License = "NASA/Treks", + Description = [[MRO_CTX layers from NASA/Treks for Mars]] +} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/22n048w_Mosaic.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/22n048w_Mosaic.vrt new file mode 100644 index 0000000000..d43f98f32c --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/22n048w_Mosaic.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 + + 0 + Red + + 22n048w_Mosaic.wms + 1 + + + + 0 + + + + 0 + Green + + 22n048w_Mosaic.wms + 2 + + + + 0 + + + + 0 + Blue + + 22n048w_Mosaic.wms + 3 + + + + 0 + + + + Alpha + + 22n048w_Mosaic.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_22n048w_Mosaic/b21_017819_2025_xn_22n048w.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/22n048w_Mosaic.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_22n048w_Mosaic/b21_017819_2025_xn_22n048w.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/22n048w_Mosaic.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Acheron_Fossae_Mosaic.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Acheron_Fossae_Mosaic.vrt new file mode 100644 index 0000000000..c3689fc823 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Acheron_Fossae_Mosaic.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 + + 0 + Red + + Acheron_Fossae_Mosaic.wms + 1 + + + + 0 + + + + 0 + Green + + Acheron_Fossae_Mosaic.wms + 2 + + + + 0 + + + + 0 + Blue + + Acheron_Fossae_Mosaic.wms + 3 + + + + 0 + + + + Alpha + + Acheron_Fossae_Mosaic.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Acheron_Fossae_Mosaic/Acheron_Fossae_CTX_BlockAdj_dd.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Acheron_Fossae_Mosaic.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Acheron_Fossae_Mosaic/Acheron_Fossae_CTX_BlockAdj_dd.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Acheron_Fossae_Mosaic.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Acidalia_Plantia_Mosaic.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Acidalia_Plantia_Mosaic.vrt new file mode 100644 index 0000000000..753c65ea0a --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Acidalia_Plantia_Mosaic.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 + + 0 + Red + + Acidalia_Plantia_Mosaic.wms + 1 + + + + 0 + + + + 0 + Green + + Acidalia_Plantia_Mosaic.wms + 2 + + + + 0 + + + + 0 + Blue + + Acidalia_Plantia_Mosaic.wms + 3 + + + + 0 + + + + Alpha + + Acidalia_Plantia_Mosaic.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Acidalia_Plantia_Mosaic/Acidalia_Plantia_CTX_BlockAdj_dd.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Acidalia_Plantia_Mosaic.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Acidalia_Plantia_Mosaic/Acidalia_Plantia_CTX_BlockAdj_dd.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Acidalia_Plantia_Mosaic.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Arabia_Terra_Mosaic.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Arabia_Terra_Mosaic.vrt new file mode 100644 index 0000000000..a7274589ba --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Arabia_Terra_Mosaic.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 + + 0 + Red + + Arabia_Terra_Mosaic.wms + 1 + + + + 0 + + + + 0 + Green + + Arabia_Terra_Mosaic.wms + 2 + + + + 0 + + + + 0 + Blue + + Arabia_Terra_Mosaic.wms + 3 + + + + 0 + + + + Alpha + + Arabia_Terra_Mosaic.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Arabia_Terra_Mosaic/Arabia_Terra_CTX_BlockAdj_dd.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Arabia_Terra_Mosaic.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Arabia_Terra_Mosaic/Arabia_Terra_CTX_BlockAdj_dd.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Arabia_Terra_Mosaic.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Aram_Chaos_Mosaic.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Aram_Chaos_Mosaic.vrt new file mode 100644 index 0000000000..b422d9d9a3 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Aram_Chaos_Mosaic.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 + + 0 + Red + + Aram_Chaos_Mosaic.wms + 1 + + + + 0 + + + + 0 + Green + + Aram_Chaos_Mosaic.wms + 2 + + + + 0 + + + + 0 + Blue + + Aram_Chaos_Mosaic.wms + 3 + + + + 0 + + + + Alpha + + Aram_Chaos_Mosaic.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Aram_Chaos_Mosaic/Aram_Chaos_CTX_BlockAdj_dd.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Aram_Chaos_Mosaic.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Aram_Chaos_Mosaic/Aram_Chaos_CTX_BlockAdj_dd.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Aram_Chaos_Mosaic.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Arcadia_Mosaic.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Arcadia_Mosaic.vrt new file mode 100644 index 0000000000..4cc1486666 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Arcadia_Mosaic.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 + + 0 + Red + + Arcadia_Mosaic.wms + 1 + + + + 0 + + + + 0 + Green + + Arcadia_Mosaic.wms + 2 + + + + 0 + + + + 0 + Blue + + Arcadia_Mosaic.wms + 3 + + + + 0 + + + + Alpha + + Arcadia_Mosaic.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Arcadia_Mosaic/Arcadia_CTX_BlockAdj_dd.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Arcadia_Mosaic.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Arcadia_Mosaic/Arcadia_CTX_BlockAdj_dd.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Arcadia_Mosaic.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Arcadia_Planitia_Mosaic.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Arcadia_Planitia_Mosaic.vrt new file mode 100644 index 0000000000..1e1d95427a --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Arcadia_Planitia_Mosaic.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 + + 0 + Red + + Arcadia_Planitia_Mosaic.wms + 1 + + + + 0 + + + + 0 + Green + + Arcadia_Planitia_Mosaic.wms + 2 + + + + 0 + + + + 0 + Blue + + Arcadia_Planitia_Mosaic.wms + 3 + + + + 0 + + + + Alpha + + Arcadia_Planitia_Mosaic.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Arcadia_Planitia_Mosaic/Arcadia_Planitia_CTX_BlockAdj_dd.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Arcadia_Planitia_Mosaic.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Arcadia_Planitia_Mosaic/Arcadia_Planitia_CTX_BlockAdj_dd.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Arcadia_Planitia_Mosaic.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Ausonia_Mosaic.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Ausonia_Mosaic.vrt new file mode 100644 index 0000000000..bd2d90100a --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Ausonia_Mosaic.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 + + 0 + Red + + Ausonia_Mosaic.wms + 1 + + + + 0 + + + + 0 + Green + + Ausonia_Mosaic.wms + 2 + + + + 0 + + + + 0 + Blue + + Ausonia_Mosaic.wms + 3 + + + + 0 + + + + Alpha + + Ausonia_Mosaic.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Ausonia_Mosaic/Ausonia_CTX_BlockAdj_dd.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Ausonia_Mosaic.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Ausonia_Mosaic/Ausonia_CTX_BlockAdj_dd.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Ausonia_Mosaic.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Cerberus_Mosaic.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Cerberus_Mosaic.vrt new file mode 100644 index 0000000000..eb9d04da96 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Cerberus_Mosaic.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 + + 0 + Red + + Cerberus_Mosaic.wms + 1 + + + + 0 + + + + 0 + Green + + Cerberus_Mosaic.wms + 2 + + + + 0 + + + + 0 + Blue + + Cerberus_Mosaic.wms + 3 + + + + 0 + + + + Alpha + + Cerberus_Mosaic.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Cerberus_Mosaic/Cerberus_CTX_BlockAdj_dd.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Cerberus_Mosaic.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Cerberus_Mosaic/Cerberus_CTX_BlockAdj_dd.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Cerberus_Mosaic.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Columbia_Hills_DEM.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Columbia_Hills_DEM.vrt new file mode 100644 index 0000000000..b3d0e1a6ce --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Columbia_Hills_DEM.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.1457672119140625e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.1457672119140625e-05 + + 0 + Red + + Columbia_Hills_DEM.wms + 1 + + + + 0 + + + + 0 + Green + + Columbia_Hills_DEM.wms + 2 + + + + 0 + + + + 0 + Blue + + Columbia_Hills_DEM.wms + 3 + + + + 0 + + + + Alpha + + Columbia_Hills_DEM.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Columbia_Hills_DEM/DEM_1m_ColumbiaHills_fixed.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Columbia_Hills_DEM.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Columbia_Hills_DEM/DEM_1m_ColumbiaHills_fixed.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Columbia_Hills_DEM.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Columbus_Crater_Mosaic.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Columbus_Crater_Mosaic.vrt new file mode 100644 index 0000000000..43d0355fbf --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Columbus_Crater_Mosaic.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 + + 0 + Red + + Columbus_Crater_Mosaic.wms + 1 + + + + 0 + + + + 0 + Green + + Columbus_Crater_Mosaic.wms + 2 + + + + 0 + + + + 0 + Blue + + Columbus_Crater_Mosaic.wms + 3 + + + + 0 + + + + Alpha + + Columbus_Crater_Mosaic.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Columbus_Crater_Mosaic/Columbus_Crater_CTX_BlockAdj_dd.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Columbus_Crater_Mosaic.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Columbus_Crater_Mosaic/Columbus_Crater_CTX_BlockAdj_dd.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Columbus_Crater_Mosaic.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Copernicus_Crater_Mosaic.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Copernicus_Crater_Mosaic.vrt new file mode 100644 index 0000000000..aa0f24a39f --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Copernicus_Crater_Mosaic.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 + + 0 + Red + + Copernicus_Crater_Mosaic.wms + 1 + + + + 0 + + + + 0 + Green + + Copernicus_Crater_Mosaic.wms + 2 + + + + 0 + + + + 0 + Blue + + Copernicus_Crater_Mosaic.wms + 3 + + + + 0 + + + + Alpha + + Copernicus_Crater_Mosaic.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Copernicus_Crater_Mosaic/Copernicus_Crater_CTX_BlockAdj_dd.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Copernicus_Crater_Mosaic.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Copernicus_Crater_Mosaic/Copernicus_Crater_CTX_BlockAdj_dd.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Copernicus_Crater_Mosaic.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Coprates_EMelas_Chasm_Mosaic.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Coprates_EMelas_Chasm_Mosaic.vrt new file mode 100644 index 0000000000..95d40a8c7d --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Coprates_EMelas_Chasm_Mosaic.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 + + 0 + Red + + Coprates_EMelas_Chasm_Mosaic.wms + 1 + + + + 0 + + + + 0 + Green + + Coprates_EMelas_Chasm_Mosaic.wms + 2 + + + + 0 + + + + 0 + Blue + + Coprates_EMelas_Chasm_Mosaic.wms + 3 + + + + 0 + + + + Alpha + + Coprates_EMelas_Chasm_Mosaic.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Coprates_EMelas_Chasm_Mosaic/Coprates_EMelas_Chasm_CTX_BlockAdj_dd.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Coprates_EMelas_Chasm_Mosaic.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Coprates_EMelas_Chasm_Mosaic/Coprates_EMelas_Chasm_CTX_BlockAdj_dd.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Coprates_EMelas_Chasm_Mosaic.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Curiosity_Roving_Site_Mosaic.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Curiosity_Roving_Site_Mosaic.vrt new file mode 100644 index 0000000000..b9dd89e9e0 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Curiosity_Roving_Site_Mosaic.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 3.4332275390625000e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -3.4332275390625000e-04 + + 0 + Red + + Curiosity_Roving_Site_Mosaic.wms + 1 + + + + 0 + + + + 0 + Green + + Curiosity_Roving_Site_Mosaic.wms + 2 + + + + 0 + + + + 0 + Blue + + Curiosity_Roving_Site_Mosaic.wms + 3 + + + + 0 + + + + Alpha + + Curiosity_Roving_Site_Mosaic.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Curiosity_Roving_Site_Mosaic/curiosity_ctx_mosaic.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Curiosity_Roving_Site_Mosaic.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Curiosity_Roving_Site_Mosaic/curiosity_ctx_mosaic.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Curiosity_Roving_Site_Mosaic.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Deuteronilus_Mensae_Mosaic.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Deuteronilus_Mensae_Mosaic.vrt new file mode 100644 index 0000000000..eaddca4e16 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Deuteronilus_Mensae_Mosaic.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 + + 0 + Red + + Deuteronilus_Mensae_Mosaic.wms + 1 + + + + 0 + + + + 0 + Green + + Deuteronilus_Mensae_Mosaic.wms + 2 + + + + 0 + + + + 0 + Blue + + Deuteronilus_Mensae_Mosaic.wms + 3 + + + + 0 + + + + Alpha + + Deuteronilus_Mensae_Mosaic.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Deuteronilus_Mensae_Mosaic/Deuteronilus1_2_CTX_BlockAdj_dd.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Deuteronilus_Mensae_Mosaic.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Deuteronilus_Mensae_Mosaic/Deuteronilus1_2_CTX_BlockAdj_dd.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Deuteronilus_Mensae_Mosaic.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/East_Melas_DEM.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/East_Melas_DEM.vrt new file mode 100644 index 0000000000..446cd0c2ad --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/East_Melas_DEM.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 + + 0 + Red + + East_Melas_DEM.wms + 1 + + + + 0 + + + + 0 + Green + + East_Melas_DEM.wms + 2 + + + + 0 + + + + 0 + Blue + + East_Melas_DEM.wms + 3 + + + + 0 + + + + Alpha + + East_Melas_DEM.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_East_Melas_DEM/CTX_DEM_East_Melas.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/East_Melas_DEM.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_East_Melas_DEM/CTX_DEM_East_Melas.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/East_Melas_DEM.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/East_Melas_Hillshade.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/East_Melas_Hillshade.vrt new file mode 100644 index 0000000000..4b6ac8a379 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/East_Melas_Hillshade.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 + + 0 + Red + + East_Melas_Hillshade.wms + 1 + + + + 0 + + + + 0 + Green + + East_Melas_Hillshade.wms + 2 + + + + 0 + + + + 0 + Blue + + East_Melas_Hillshade.wms + 3 + + + + 0 + + + + Alpha + + East_Melas_Hillshade.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_East_Melas_Hillshade/CTX_Shade_East_Melas.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/East_Melas_Hillshade.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_East_Melas_Hillshade/CTX_Shade_East_Melas.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/East_Melas_Hillshade.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Eastern_Valles_Marineris_Mosaic.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Eastern_Valles_Marineris_Mosaic.vrt new file mode 100644 index 0000000000..1ae512c74c --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Eastern_Valles_Marineris_Mosaic.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 + + 0 + Red + + Eastern_Valles_Marineris_Mosaic.wms + 1 + + + + 0 + + + + 0 + Green + + Eastern_Valles_Marineris_Mosaic.wms + 2 + + + + 0 + + + + 0 + Blue + + Eastern_Valles_Marineris_Mosaic.wms + 3 + + + + 0 + + + + Alpha + + Eastern_Valles_Marineris_Mosaic.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Eastern_Valles_Marineris_Mosaic/NE_Marineris_Crater_CTX_BlockAdj_dd.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Eastern_Valles_Marineris_Mosaic.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Eastern_Valles_Marineris_Mosaic/NE_Marineris_Crater_CTX_BlockAdj_dd.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Eastern_Valles_Marineris_Mosaic.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Equatorial_Valles_Marineries_Mosaic.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Equatorial_Valles_Marineries_Mosaic.vrt new file mode 100644 index 0000000000..1817e89156 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Equatorial_Valles_Marineries_Mosaic.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 + + 0 + Red + + Equatorial_Valles_Marineries_Mosaic.wms + 1 + + + + 0 + + + + 0 + Green + + Equatorial_Valles_Marineries_Mosaic.wms + 2 + + + + 0 + + + + 0 + Blue + + Equatorial_Valles_Marineries_Mosaic.wms + 3 + + + + 0 + + + + Alpha + + Equatorial_Valles_Marineries_Mosaic.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Equatorial_Valles_Marineries_Mosaic/SE_Marineris_CTX_BlockAdj_dd.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Equatorial_Valles_Marineries_Mosaic.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Equatorial_Valles_Marineries_Mosaic/SE_Marineris_CTX_BlockAdj_dd.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Equatorial_Valles_Marineries_Mosaic.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Erebus_Montes_Mosaic.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Erebus_Montes_Mosaic.vrt new file mode 100644 index 0000000000..49b8b53d2b --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Erebus_Montes_Mosaic.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 + + 0 + Red + + Erebus_Montes_Mosaic.wms + 1 + + + + 0 + + + + 0 + Green + + Erebus_Montes_Mosaic.wms + 2 + + + + 0 + + + + 0 + Blue + + Erebus_Montes_Mosaic.wms + 3 + + + + 0 + + + + Alpha + + Erebus_Montes_Mosaic.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Erebus_Montes_Mosaic/Erebus_Montes_CTX_BlockAdj_dd.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Erebus_Montes_Mosaic.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Erebus_Montes_Mosaic/Erebus_Montes_CTX_BlockAdj_dd.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Erebus_Montes_Mosaic.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Gale_Crater_Mosaic.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Gale_Crater_Mosaic.vrt new file mode 100644 index 0000000000..528365bb4f --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Gale_Crater_Mosaic.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 + + 0 + Red + + Gale_Crater_Mosaic.wms + 1 + + + + 0 + + + + 0 + Green + + Gale_Crater_Mosaic.wms + 2 + + + + 0 + + + + 0 + Blue + + Gale_Crater_Mosaic.wms + 3 + + + + 0 + + + + Alpha + + Gale_Crater_Mosaic.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Gale_Crater_Mosaic/Gale_CTX_BlockAdj_dd.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Gale_Crater_Mosaic.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Gale_Crater_Mosaic/Gale_CTX_BlockAdj_dd.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Gale_Crater_Mosaic.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Gusev_Crater_Mosaic.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Gusev_Crater_Mosaic.vrt new file mode 100644 index 0000000000..a1e1fb03df --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Gusev_Crater_Mosaic.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 + + 0 + Red + + Gusev_Crater_Mosaic.wms + 1 + + + + 0 + + + + 0 + Green + + Gusev_Crater_Mosaic.wms + 2 + + + + 0 + + + + 0 + Blue + + Gusev_Crater_Mosaic.wms + 3 + + + + 0 + + + + Alpha + + Gusev_Crater_Mosaic.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Gusev_Crater_Mosaic/Gusev_CTX_BlockAdj_dd.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Gusev_Crater_Mosaic.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Gusev_Crater_Mosaic/Gusev_CTX_BlockAdj_dd.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Gusev_Crater_Mosaic.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Hadriacus_Mosaic.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Hadriacus_Mosaic.vrt new file mode 100644 index 0000000000..df2daf7124 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Hadriacus_Mosaic.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 + + 0 + Red + + Hadriacus_Mosaic.wms + 1 + + + + 0 + + + + 0 + Green + + Hadriacus_Mosaic.wms + 2 + + + + 0 + + + + 0 + Blue + + Hadriacus_Mosaic.wms + 3 + + + + 0 + + + + Alpha + + Hadriacus_Mosaic.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Hadriacus_Mosaic/Hadriacus_CTX_BlockAdj_dd.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Hadriacus_Mosaic.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Hadriacus_Mosaic/Hadriacus_CTX_BlockAdj_dd.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Hadriacus_Mosaic.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Hale_Crater_Mosaic.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Hale_Crater_Mosaic.vrt new file mode 100644 index 0000000000..ae92fc5d52 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Hale_Crater_Mosaic.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 + + 0 + Red + + Hale_Crater_Mosaic.wms + 1 + + + + 0 + + + + 0 + Green + + Hale_Crater_Mosaic.wms + 2 + + + + 0 + + + + 0 + Blue + + Hale_Crater_Mosaic.wms + 3 + + + + 0 + + + + Alpha + + Hale_Crater_Mosaic.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Hale_Crater_Mosaic/Hale_Crater_CTX_BlockAdj_dd.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Hale_Crater_Mosaic.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Hale_Crater_Mosaic/Hale_Crater_CTX_BlockAdj_dd.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Hale_Crater_Mosaic.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Hebrus_Valles_Mosaic.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Hebrus_Valles_Mosaic.vrt new file mode 100644 index 0000000000..ff0950cc34 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Hebrus_Valles_Mosaic.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 + + 0 + Red + + Hebrus_Valles_Mosaic.wms + 1 + + + + 0 + + + + 0 + Green + + Hebrus_Valles_Mosaic.wms + 2 + + + + 0 + + + + 0 + Blue + + Hebrus_Valles_Mosaic.wms + 3 + + + + 0 + + + + Alpha + + Hebrus_Valles_Mosaic.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Hebrus_Valles_Mosaic/Hebrus_CTX_BlockAdj_dd.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Hebrus_Valles_Mosaic.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Hebrus_Valles_Mosaic/Hebrus_CTX_BlockAdj_dd.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Hebrus_Valles_Mosaic.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Hellas_Eastern_Rim_Mosaic.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Hellas_Eastern_Rim_Mosaic.vrt new file mode 100644 index 0000000000..be39cfec0b --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Hellas_Eastern_Rim_Mosaic.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 + + 0 + Red + + Hellas_Eastern_Rim_Mosaic.wms + 1 + + + + 0 + + + + 0 + Green + + Hellas_Eastern_Rim_Mosaic.wms + 2 + + + + 0 + + + + 0 + Blue + + Hellas_Eastern_Rim_Mosaic.wms + 3 + + + + 0 + + + + Alpha + + Hellas_Eastern_Rim_Mosaic.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Hellas_Eastern_Rim_Mosaic/Hellas_Hellas2_CTX_BlockAdj_dd.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Hellas_Eastern_Rim_Mosaic.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Hellas_Eastern_Rim_Mosaic/Hellas_Hellas2_CTX_BlockAdj_dd.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Hellas_Eastern_Rim_Mosaic.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Hellas_Mesopotamia_Mosaic.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Hellas_Mesopotamia_Mosaic.vrt new file mode 100644 index 0000000000..c89263fda2 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Hellas_Mesopotamia_Mosaic.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 + + 0 + Red + + Hellas_Mesopotamia_Mosaic.wms + 1 + + + + 0 + + + + 0 + Green + + Hellas_Mesopotamia_Mosaic.wms + 2 + + + + 0 + + + + 0 + Blue + + Hellas_Mesopotamia_Mosaic.wms + 3 + + + + 0 + + + + Alpha + + Hellas_Mesopotamia_Mosaic.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Hellas_Mesopotamia_Mosaic/Hellas3_CTX_BlockAdj_dd.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Hellas_Mesopotamia_Mosaic.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Hellas_Mesopotamia_Mosaic/Hellas3_CTX_BlockAdj_dd.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Hellas_Mesopotamia_Mosaic.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Huygens_Crater_Mosaic.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Huygens_Crater_Mosaic.vrt new file mode 100644 index 0000000000..d480728f6c --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Huygens_Crater_Mosaic.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 + + 0 + Red + + Huygens_Crater_Mosaic.wms + 1 + + + + 0 + + + + 0 + Green + + Huygens_Crater_Mosaic.wms + 2 + + + + 0 + + + + 0 + Blue + + Huygens_Crater_Mosaic.wms + 3 + + + + 0 + + + + Alpha + + Huygens_Crater_Mosaic.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Huygens_Crater_Mosaic/Huygens_CTX_BlockAdj_dd.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Huygens_Crater_Mosaic.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Huygens_Crater_Mosaic/Huygens_CTX_BlockAdj_dd.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Huygens_Crater_Mosaic.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Hypanis_Delta_Mosaic.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Hypanis_Delta_Mosaic.vrt new file mode 100644 index 0000000000..ac350d7694 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Hypanis_Delta_Mosaic.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 + + 0 + Red + + Hypanis_Delta_Mosaic.wms + 1 + + + + 0 + + + + 0 + Green + + Hypanis_Delta_Mosaic.wms + 2 + + + + 0 + + + + 0 + Blue + + Hypanis_Delta_Mosaic.wms + 3 + + + + 0 + + + + Alpha + + Hypanis_Delta_Mosaic.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Hypanis_Delta_Mosaic/Hypanis_Delta_CTX_BlockAdj_dd.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Hypanis_Delta_Mosaic.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Hypanis_Delta_Mosaic/Hypanis_Delta_CTX_BlockAdj_dd.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Hypanis_Delta_Mosaic.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Ismenius_Cavus_Mosaic.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Ismenius_Cavus_Mosaic.vrt new file mode 100644 index 0000000000..221960a582 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Ismenius_Cavus_Mosaic.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 + + 0 + Red + + Ismenius_Cavus_Mosaic.wms + 1 + + + + 0 + + + + 0 + Green + + Ismenius_Cavus_Mosaic.wms + 2 + + + + 0 + + + + 0 + Blue + + Ismenius_Cavus_Mosaic.wms + 3 + + + + 0 + + + + Alpha + + Ismenius_Cavus_Mosaic.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Ismenius_Cavus_Mosaic/Ismenius_Cavus_CTX_BlockAdj_dd.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Ismenius_Cavus_Mosaic.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Ismenius_Cavus_Mosaic/Ismenius_Cavus_CTX_BlockAdj_dd.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Ismenius_Cavus_Mosaic.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Jezero_Mosaic.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Jezero_Mosaic.vrt new file mode 100644 index 0000000000..0a49aa527d --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Jezero_Mosaic.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 + + 0 + Red + + Jezero_Mosaic.wms + 1 + + + + 0 + + + + 0 + Green + + Jezero_Mosaic.wms + 2 + + + + 0 + + + + 0 + Blue + + Jezero_Mosaic.wms + 3 + + + + 0 + + + + Alpha + + Jezero_Mosaic.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Jezero_Mosaic_Preliminary/Jezero_CTX_BlockAdj_dd.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Jezero_Mosaic.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Jezero_Mosaic_Preliminary/Jezero_CTX_BlockAdj_dd.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Jezero_Mosaic.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Kasei_Valles_Mosaic.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Kasei_Valles_Mosaic.vrt new file mode 100644 index 0000000000..ebd5057e2a --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Kasei_Valles_Mosaic.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 + + 0 + Red + + Kasei_Valles_Mosaic.wms + 1 + + + + 0 + + + + 0 + Green + + Kasei_Valles_Mosaic.wms + 2 + + + + 0 + + + + 0 + Blue + + Kasei_Valles_Mosaic.wms + 3 + + + + 0 + + + + Alpha + + Kasei_Valles_Mosaic.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Kasei_Valles_Mosaic/Kasei_Valles_CTX_BlockAdj_dd.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Kasei_Valles_Mosaic.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Kasei_Valles_Mosaic/Kasei_Valles_CTX_BlockAdj_dd.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Kasei_Valles_Mosaic.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Mawrth_Vallis_Mosaic.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Mawrth_Vallis_Mosaic.vrt new file mode 100644 index 0000000000..745729b716 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Mawrth_Vallis_Mosaic.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 + + 0 + Red + + Mawrth_Vallis_Mosaic.wms + 1 + + + + 0 + + + + 0 + Green + + Mawrth_Vallis_Mosaic.wms + 2 + + + + 0 + + + + 0 + Blue + + Mawrth_Vallis_Mosaic.wms + 3 + + + + 0 + + + + Alpha + + Mawrth_Vallis_Mosaic.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Mawrth_Vallis_Mosaic/Mawrth_Valles_CTX_BlockAdj_dd.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Mawrth_Vallis_Mosaic.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Mawrth_Vallis_Mosaic/Mawrth_Valles_CTX_BlockAdj_dd.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Mawrth_Vallis_Mosaic.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/McLaughlin_Crater_Mosaic.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/McLaughlin_Crater_Mosaic.vrt new file mode 100644 index 0000000000..a715988d2d --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/McLaughlin_Crater_Mosaic.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 + + 0 + Red + + McLaughlin_Crater_Mosaic.wms + 1 + + + + 0 + + + + 0 + Green + + McLaughlin_Crater_Mosaic.wms + 2 + + + + 0 + + + + 0 + Blue + + McLaughlin_Crater_Mosaic.wms + 3 + + + + 0 + + + + Alpha + + McLaughlin_Crater_Mosaic.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_McLaughlin_Crater_Mosaic/McLaughlin_Crater_CTX_BlockAdj_dd.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/McLaughlin_Crater_Mosaic.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_McLaughlin_Crater_Mosaic/McLaughlin_Crater_CTX_BlockAdj_dd.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/McLaughlin_Crater_Mosaic.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Meridiani_Planum_-_Sinus_Meridiani_Mosaic.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Meridiani_Planum_-_Sinus_Meridiani_Mosaic.vrt new file mode 100644 index 0000000000..d9fdb60471 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Meridiani_Planum_-_Sinus_Meridiani_Mosaic.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 + + 0 + Red + + Meridiani_Planum_-_Sinus_Meridiani_Mosaic.wms + 1 + + + + 0 + + + + 0 + Green + + Meridiani_Planum_-_Sinus_Meridiani_Mosaic.wms + 2 + + + + 0 + + + + 0 + Blue + + Meridiani_Planum_-_Sinus_Meridiani_Mosaic.wms + 3 + + + + 0 + + + + Alpha + + Meridiani_Planum_-_Sinus_Meridiani_Mosaic.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Meridiani_Planum_-_Sinus_Meridiani_Mosaic/S_Meridiani_Sinus_Planium_CTX_BlockAdj_dd.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Meridiani_Planum_-_Sinus_Meridiani_Mosaic.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Meridiani_Planum_-_Sinus_Meridiani_Mosaic/S_Meridiani_Sinus_Planium_CTX_BlockAdj_dd.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Meridiani_Planum_-_Sinus_Meridiani_Mosaic.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Mosaic_Global_Uncontrolled_Caltech.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Mosaic_Global_Uncontrolled_Caltech.vrt new file mode 100644 index 0000000000..8b08a11f0c --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Mosaic_Global_Uncontrolled_Caltech.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 + + 0 + Red + + Mosaic_Global_Uncontrolled_Caltech.wms + 1 + + + + 0 + + + + 0 + Green + + Mosaic_Global_Uncontrolled_Caltech.wms + 2 + + + + 0 + + + + 0 + Blue + + Mosaic_Global_Uncontrolled_Caltech.wms + 3 + + + + 0 + + + + Alpha + + Mosaic_Global_Uncontrolled_Caltech.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Mosaic_Global_Uncontrolled_(Caltech)/CTX_beta01_uncontrolled_5m_Caltech.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Mosaic_Global_Uncontrolled_Caltech.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Mosaic_Global_Uncontrolled_(Caltech)/CTX_beta01_uncontrolled_5m_Caltech.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Mosaic_Global_Uncontrolled_Caltech.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Mosaic_InSight.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Mosaic_InSight.vrt new file mode 100644 index 0000000000..4d4d372960 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Mosaic_InSight.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 + + 0 + Red + + Mosaic_InSight.wms + 1 + + + + 0 + + + + 0 + Green + + Mosaic_InSight.wms + 2 + + + + 0 + + + + 0 + Blue + + Mosaic_InSight.wms + 3 + + + + 0 + + + + Alpha + + Mosaic_InSight.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Mosaic_InSight/InSightCTXMosaic_112917.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Mosaic_InSight.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Mosaic_InSight/InSightCTXMosaic_112917.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Mosaic_InSight.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Mosaic_Olympus_Mons.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Mosaic_Olympus_Mons.vrt new file mode 100644 index 0000000000..77284d3520 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Mosaic_Olympus_Mons.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 + + 0 + Red + + Mosaic_Olympus_Mons.wms + 1 + + + + 0 + + + + 0 + Green + + Mosaic_Olympus_Mons.wms + 2 + + + + 0 + + + + 0 + Blue + + Mosaic_Olympus_Mons.wms + 3 + + + + 0 + + + + Alpha + + Mosaic_Olympus_Mons.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Mosaic_Olympus_Mons/olympus_mons.eq.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Mosaic_Olympus_Mons.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Mosaic_Olympus_Mons/olympus_mons.eq.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Mosaic_Olympus_Mons.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Newton_Crater_Mosaic.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Newton_Crater_Mosaic.vrt new file mode 100644 index 0000000000..fa9b08edc8 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Newton_Crater_Mosaic.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 + + 0 + Red + + Newton_Crater_Mosaic.wms + 1 + + + + 0 + + + + 0 + Green + + Newton_Crater_Mosaic.wms + 2 + + + + 0 + + + + 0 + Blue + + Newton_Crater_Mosaic.wms + 3 + + + + 0 + + + + Alpha + + Newton_Crater_Mosaic.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Newton_Crater_Mosaic/Newton_Crater_CTX_BlockAdj_dd.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Newton_Crater_Mosaic.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Newton_Crater_Mosaic/Newton_Crater_CTX_BlockAdj_dd.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Newton_Crater_Mosaic.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Noctis_Landing_Mosaic.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Noctis_Landing_Mosaic.vrt new file mode 100644 index 0000000000..eb7b4294b9 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Noctis_Landing_Mosaic.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 + + 0 + Red + + Noctis_Landing_Mosaic.wms + 1 + + + + 0 + + + + 0 + Green + + Noctis_Landing_Mosaic.wms + 2 + + + + 0 + + + + 0 + Blue + + Noctis_Landing_Mosaic.wms + 3 + + + + 0 + + + + Alpha + + Noctis_Landing_Mosaic.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Noctis_Landing_Mosaic/Noactis_Landing_CTX_BlockAdj_dd.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Noctis_Landing_Mosaic.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Noctis_Landing_Mosaic/Noactis_Landing_CTX_BlockAdj_dd.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Noctis_Landing_Mosaic.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Protonilus_Mensae_Mosaic.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Protonilus_Mensae_Mosaic.vrt new file mode 100644 index 0000000000..28056ddcaf --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Protonilus_Mensae_Mosaic.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 + + 0 + Red + + Protonilus_Mensae_Mosaic.wms + 1 + + + + 0 + + + + 0 + Green + + Protonilus_Mensae_Mosaic.wms + 2 + + + + 0 + + + + 0 + Blue + + Protonilus_Mensae_Mosaic.wms + 3 + + + + 0 + + + + Alpha + + Protonilus_Mensae_Mosaic.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Protonilus_Mensae_Mosaic/Protonilus_CTX_BlockAdj_dd.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Protonilus_Mensae_Mosaic.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Protonilus_Mensae_Mosaic/Protonilus_CTX_BlockAdj_dd.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Protonilus_Mensae_Mosaic.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Southern_Nectaris_Fossae_Mosaic.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Southern_Nectaris_Fossae_Mosaic.vrt new file mode 100644 index 0000000000..ba5195825f --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Southern_Nectaris_Fossae_Mosaic.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 + + 0 + Red + + Southern_Nectaris_Fossae_Mosaic.wms + 1 + + + + 0 + + + + 0 + Green + + Southern_Nectaris_Fossae_Mosaic.wms + 2 + + + + 0 + + + + 0 + Blue + + Southern_Nectaris_Fossae_Mosaic.wms + 3 + + + + 0 + + + + Alpha + + Southern_Nectaris_Fossae_Mosaic.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Southern_Nectaris_Fossae_Mosaic/S_Nectaris_Fossae_CTX_BlockAdj_dd.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Southern_Nectaris_Fossae_Mosaic.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Southern_Nectaris_Fossae_Mosaic/S_Nectaris_Fossae_CTX_BlockAdj_dd.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Southern_Nectaris_Fossae_Mosaic.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Victoria_Crater_DEM.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Victoria_Crater_DEM.vrt new file mode 100644 index 0000000000..ca4fa34a41 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Victoria_Crater_DEM.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.1457672119140625e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.1457672119140625e-05 + + 0 + Red + + Victoria_Crater_DEM.wms + 1 + + + + 0 + + + + 0 + Green + + Victoria_Crater_DEM.wms + 2 + + + + 0 + + + + 0 + Blue + + Victoria_Crater_DEM.wms + 3 + + + + 0 + + + + Alpha + + Victoria_Crater_DEM.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Victoria_Crater_DEM/DEM_1m_VictoriaCrater.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Victoria_Crater_DEM.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Victoria_Crater_DEM/DEM_1m_VictoriaCrater.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Victoria_Crater_DEM.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Viking_1_Landing_Site_Mosaic.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Viking_1_Landing_Site_Mosaic.vrt new file mode 100644 index 0000000000..93cac99291 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Viking_1_Landing_Site_Mosaic.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 + + 0 + Red + + Viking_1_Landing_Site_Mosaic.wms + 1 + + + + 0 + + + + 0 + Green + + Viking_1_Landing_Site_Mosaic.wms + 2 + + + + 0 + + + + 0 + Blue + + Viking_1_Landing_Site_Mosaic.wms + 3 + + + + 0 + + + + Alpha + + Viking_1_Landing_Site_Mosaic.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Viking_1_Landing_Site_Mosaic/Viking_CTX_BlockAdj_dd.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Viking_1_Landing_Site_Mosaic.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Viking_1_Landing_Site_Mosaic/Viking_CTX_BlockAdj_dd.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Viking_1_Landing_Site_Mosaic.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Viking_2_Landing_Site_Mosaic.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Viking_2_Landing_Site_Mosaic.vrt new file mode 100644 index 0000000000..c6f2e290a8 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Viking_2_Landing_Site_Mosaic.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 + + 0 + Red + + Viking_2_Landing_Site_Mosaic.wms + 1 + + + + 0 + + + + 0 + Green + + Viking_2_Landing_Site_Mosaic.wms + 2 + + + + 0 + + + + 0 + Blue + + Viking_2_Landing_Site_Mosaic.wms + 3 + + + + 0 + + + + Alpha + + Viking_2_Landing_Site_Mosaic.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Viking_2_Landing_Site_Mosaic/b16_015887_2280_xn_48n225w.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Viking_2_Landing_Site_Mosaic.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Viking_2_Landing_Site_Mosaic/b16_015887_2280_xn_48n225w.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Viking_2_Landing_Site_Mosaic.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/West_Candor_Chasma_Mosaic.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/West_Candor_Chasma_Mosaic.vrt new file mode 100644 index 0000000000..3244777c23 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/West_Candor_Chasma_Mosaic.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 + + 0 + Red + + West_Candor_Chasma_Mosaic.wms + 1 + + + + 0 + + + + 0 + Green + + West_Candor_Chasma_Mosaic.wms + 2 + + + + 0 + + + + 0 + Blue + + West_Candor_Chasma_Mosaic.wms + 3 + + + + 0 + + + + Alpha + + West_Candor_Chasma_Mosaic.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_West_Candor_Chasma_Mosaic/West_Candor_Chasma_longlat.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/West_Candor_Chasma_Mosaic.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_West_Candor_Chasma_Mosaic/West_Candor_Chasma_longlat.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/West_Candor_Chasma_Mosaic.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/West_Candor_DEM.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/West_Candor_DEM.vrt new file mode 100644 index 0000000000..2f89bd341b --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/West_Candor_DEM.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 + + 0 + Red + + West_Candor_DEM.wms + 1 + + + + 0 + + + + 0 + Green + + West_Candor_DEM.wms + 2 + + + + 0 + + + + 0 + Blue + + West_Candor_DEM.wms + 3 + + + + 0 + + + + Alpha + + West_Candor_DEM.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_West_Candor_DEM/West_Candor_Chasma_DEM_longlat.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/West_Candor_DEM.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_West_Candor_DEM/West_Candor_Chasma_DEM_longlat.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/West_Candor_DEM.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Western_Noachis_Terra_Mosaic.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Western_Noachis_Terra_Mosaic.vrt new file mode 100644 index 0000000000..5dff7b3749 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Western_Noachis_Terra_Mosaic.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 + + 0 + Red + + Western_Noachis_Terra_Mosaic.wms + 1 + + + + 0 + + + + 0 + Green + + Western_Noachis_Terra_Mosaic.wms + 2 + + + + 0 + + + + 0 + Blue + + Western_Noachis_Terra_Mosaic.wms + 3 + + + + 0 + + + + Alpha + + Western_Noachis_Terra_Mosaic.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Western_Noachis_Terra_Mosaic/Noachis_CTX_BlockAdj_dd.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Western_Noachis_Terra_Mosaic.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Western_Noachis_Terra_Mosaic/Noachis_CTX_BlockAdj_dd.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Western_Noachis_Terra_Mosaic.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Zephyria_Planum_Mosaic.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Zephyria_Planum_Mosaic.vrt new file mode 100644 index 0000000000..394c6e6ba0 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Zephyria_Planum_Mosaic.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 + + 0 + Red + + Zephyria_Planum_Mosaic.wms + 1 + + + + 0 + + + + 0 + Green + + Zephyria_Planum_Mosaic.wms + 2 + + + + 0 + + + + 0 + Blue + + Zephyria_Planum_Mosaic.wms + 3 + + + + 0 + + + + Alpha + + Zephyria_Planum_Mosaic.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Zephyria_Planum_Mosaic/Zephyria_CTX_BlockAdj_dd.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Zephyria_Planum_Mosaic.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Zephyria_Planum_Mosaic/Zephyria_CTX_BlockAdj_dd.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX/Zephyria_Planum_Mosaic.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_22n048w_Mosaic/MRO_CTX_22n048w_Mosaic.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_22n048w_Mosaic/MRO_CTX_22n048w_Mosaic.asset deleted file mode 100644 index 6ec48ff27d..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_22n048w_Mosaic/MRO_CTX_22n048w_Mosaic.asset +++ /dev/null @@ -1,30 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "b21_017819_2025_xn_22n048w", - Name = [[MRO CTX, 22n048w Mosaic]], - FilePath = asset.localResource("b21_017819_2025_xn_22n048w.vrt"), - Description = [[This data was acquired using the Context Camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. - -The Context Camera (CTX) provides black-and-white images with resolutions up to 6 meters/pixel. It provides broader context maps for the higher resolution but narrower fields of view of the HiRISE camera, as well as for other instruments aboard MRO, and is useful for producing mosaicked images of larger areas on Mars' surface.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MRO CTX, 22n048w Mosaic]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=b21_017819_2025_xn_22n048w%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MRO CTX, 22n048w Mosaic layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_22n048w_Mosaic/b21_017819_2025_xn_22n048w.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_22n048w_Mosaic/b21_017819_2025_xn_22n048w.vrt deleted file mode 100644 index 15d161cc58..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_22n048w_Mosaic/b21_017819_2025_xn_22n048w.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - b21_017819_2025_xn_22n048w.wms - 1 - - - - 0 - - - - 0 - Green - - b21_017819_2025_xn_22n048w.wms - 2 - - - - 0 - - - - 0 - Blue - - b21_017819_2025_xn_22n048w.wms - 3 - - - - 0 - - - - Alpha - - b21_017819_2025_xn_22n048w.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Acheron_Fossae_Mosaic/Acheron_Fossae_CTX_BlockAdj_dd.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Acheron_Fossae_Mosaic/Acheron_Fossae_CTX_BlockAdj_dd.vrt deleted file mode 100644 index 8f5a3ce50b..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Acheron_Fossae_Mosaic/Acheron_Fossae_CTX_BlockAdj_dd.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - Acheron_Fossae_CTX_BlockAdj_dd.wms - 1 - - - - 0 - - - - 0 - Green - - Acheron_Fossae_CTX_BlockAdj_dd.wms - 2 - - - - 0 - - - - 0 - Blue - - Acheron_Fossae_CTX_BlockAdj_dd.wms - 3 - - - - 0 - - - - Alpha - - Acheron_Fossae_CTX_BlockAdj_dd.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Acheron_Fossae_Mosaic/MRO_CTX_Acheron_Fossae_Mosaic.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Acheron_Fossae_Mosaic/MRO_CTX_Acheron_Fossae_Mosaic.asset deleted file mode 100644 index 958c8d47ba..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Acheron_Fossae_Mosaic/MRO_CTX_Acheron_Fossae_Mosaic.asset +++ /dev/null @@ -1,30 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "Acheron_Fossae_CTX_BlockAdj_dd", - Name = [[MRO CTX, Acheron Fossae Mosaic]], - FilePath = asset.localResource("Acheron_Fossae_CTX_BlockAdj_dd.vrt"), - Description = [[This data was acquired using the Context Camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. - -The Context Camera (CTX) provides black-and-white images with resolutions up to 6 meters/pixel. It provides broader context maps for the higher resolution but narrower fields of view of the HiRISE camera, as well as for other instruments aboard MRO, and is useful for producing mosaicked images of larger areas on Mars' surface.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MRO CTX, Acheron Fossae Mosaic]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=Acheron_Fossae_CTX_BlockAdj_dd%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MRO CTX, Acheron Fossae Mosaic layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Acidalia_Plantia_Mosaic/Acidalia_Plantia_CTX_BlockAdj_dd.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Acidalia_Plantia_Mosaic/Acidalia_Plantia_CTX_BlockAdj_dd.vrt deleted file mode 100644 index d27ac8d4d1..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Acidalia_Plantia_Mosaic/Acidalia_Plantia_CTX_BlockAdj_dd.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - Acidalia_Plantia_CTX_BlockAdj_dd.wms - 1 - - - - 0 - - - - 0 - Green - - Acidalia_Plantia_CTX_BlockAdj_dd.wms - 2 - - - - 0 - - - - 0 - Blue - - Acidalia_Plantia_CTX_BlockAdj_dd.wms - 3 - - - - 0 - - - - Alpha - - Acidalia_Plantia_CTX_BlockAdj_dd.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Acidalia_Plantia_Mosaic/MRO_CTX_Acidalia_Plantia_Mosaic.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Acidalia_Plantia_Mosaic/MRO_CTX_Acidalia_Plantia_Mosaic.asset deleted file mode 100644 index c0012152fc..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Acidalia_Plantia_Mosaic/MRO_CTX_Acidalia_Plantia_Mosaic.asset +++ /dev/null @@ -1,30 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "Acidalia_Plantia_CTX_BlockAdj_dd", - Name = [[MRO CTX, Acidalia Plantia Mosaic]], - FilePath = asset.localResource("Acidalia_Plantia_CTX_BlockAdj_dd.vrt"), - Description = [[This data was acquired using the Context Camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. - -The Context Camera (CTX) provides black-and-white images with resolutions up to 6 meters/pixel. It provides broader context maps for the higher resolution but narrower fields of view of the HiRISE camera, as well as for other instruments aboard MRO, and is useful for producing mosaicked images of larger areas on Mars' surface.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MRO CTX, Acidalia Plantia Mosaic]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=Acidalia_Plantia_CTX_BlockAdj_dd%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MRO CTX, Acidalia Plantia Mosaic layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Arabia_Terra_Mosaic/Arabia_Terra_CTX_BlockAdj_dd.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Arabia_Terra_Mosaic/Arabia_Terra_CTX_BlockAdj_dd.vrt deleted file mode 100644 index 1a669bd4d4..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Arabia_Terra_Mosaic/Arabia_Terra_CTX_BlockAdj_dd.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - Arabia_Terra_CTX_BlockAdj_dd.wms - 1 - - - - 0 - - - - 0 - Green - - Arabia_Terra_CTX_BlockAdj_dd.wms - 2 - - - - 0 - - - - 0 - Blue - - Arabia_Terra_CTX_BlockAdj_dd.wms - 3 - - - - 0 - - - - Alpha - - Arabia_Terra_CTX_BlockAdj_dd.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Arabia_Terra_Mosaic/MRO_CTX_Arabia_Terra_Mosaic.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Arabia_Terra_Mosaic/MRO_CTX_Arabia_Terra_Mosaic.asset deleted file mode 100644 index 2aef073d48..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Arabia_Terra_Mosaic/MRO_CTX_Arabia_Terra_Mosaic.asset +++ /dev/null @@ -1,30 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "Arabia_Terra_CTX_BlockAdj_dd", - Name = [[MRO CTX, Arabia Terra Mosaic]], - FilePath = asset.localResource("Arabia_Terra_CTX_BlockAdj_dd.vrt"), - Description = [[This data was acquired using the Context Camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. - -The Context Camera (CTX) provides black-and-white images with resolutions up to 6 meters/pixel. It provides broader context maps for the higher resolution but narrower fields of view of the HiRISE camera, as well as for other instruments aboard MRO, and is useful for producing mosaicked images of larger areas on Mars' surface.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MRO CTX, Arabia Terra Mosaic]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=Arabia_Terra_CTX_BlockAdj_dd%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MRO CTX, Arabia Terra Mosaic layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Aram_Chaos_Mosaic/Aram_Chaos_CTX_BlockAdj_dd.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Aram_Chaos_Mosaic/Aram_Chaos_CTX_BlockAdj_dd.vrt deleted file mode 100644 index db42f6e66f..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Aram_Chaos_Mosaic/Aram_Chaos_CTX_BlockAdj_dd.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - Aram_Chaos_CTX_BlockAdj_dd.wms - 1 - - - - 0 - - - - 0 - Green - - Aram_Chaos_CTX_BlockAdj_dd.wms - 2 - - - - 0 - - - - 0 - Blue - - Aram_Chaos_CTX_BlockAdj_dd.wms - 3 - - - - 0 - - - - Alpha - - Aram_Chaos_CTX_BlockAdj_dd.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Aram_Chaos_Mosaic/MRO_CTX_Aram_Chaos_Mosaic.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Aram_Chaos_Mosaic/MRO_CTX_Aram_Chaos_Mosaic.asset deleted file mode 100644 index c446782056..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Aram_Chaos_Mosaic/MRO_CTX_Aram_Chaos_Mosaic.asset +++ /dev/null @@ -1,30 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "Aram_Chaos_CTX_BlockAdj_dd", - Name = [[MRO CTX, Aram Chaos Mosaic]], - FilePath = asset.localResource("Aram_Chaos_CTX_BlockAdj_dd.vrt"), - Description = [[This data was acquired using the Context Camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. - -The Context Camera (CTX) provides black-and-white images with resolutions up to 6 meters/pixel. It provides broader context maps for the higher resolution but narrower fields of view of the HiRISE camera, as well as for other instruments aboard MRO, and is useful for producing mosaicked images of larger areas on Mars' surface.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MRO CTX, Aram Chaos Mosaic]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=Aram_Chaos_CTX_BlockAdj_dd%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MRO CTX, Aram Chaos Mosaic layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Arcadia_Mosaic/Arcadia_CTX_BlockAdj_dd.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Arcadia_Mosaic/Arcadia_CTX_BlockAdj_dd.vrt deleted file mode 100644 index ab0db396eb..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Arcadia_Mosaic/Arcadia_CTX_BlockAdj_dd.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - Arcadia_CTX_BlockAdj_dd.wms - 1 - - - - 0 - - - - 0 - Green - - Arcadia_CTX_BlockAdj_dd.wms - 2 - - - - 0 - - - - 0 - Blue - - Arcadia_CTX_BlockAdj_dd.wms - 3 - - - - 0 - - - - Alpha - - Arcadia_CTX_BlockAdj_dd.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Arcadia_Mosaic/MRO_CTX_Arcadia_Mosaic.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Arcadia_Mosaic/MRO_CTX_Arcadia_Mosaic.asset deleted file mode 100644 index 06ad25bd90..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Arcadia_Mosaic/MRO_CTX_Arcadia_Mosaic.asset +++ /dev/null @@ -1,30 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "Arcadia_CTX_BlockAdj_dd", - Name = [[MRO CTX, Arcadia Mosaic]], - FilePath = asset.localResource("Arcadia_CTX_BlockAdj_dd.vrt"), - Description = [[This data was acquired using the Context Camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. - -The Context Camera (CTX) provides black-and-white images with resolutions up to 6 meters/pixel. It provides broader context maps for the higher resolution but narrower fields of view of the HiRISE camera, as well as for other instruments aboard MRO, and is useful for producing mosaicked images of larger areas on Mars' surface.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MRO CTX, Arcadia Mosaic]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=Arcadia_CTX_BlockAdj_dd%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MRO CTX, Arcadia Mosaic layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Arcadia_Planitia_Mosaic/Arcadia_Planitia_CTX_BlockAdj_dd.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Arcadia_Planitia_Mosaic/Arcadia_Planitia_CTX_BlockAdj_dd.vrt deleted file mode 100644 index 2f2b1def49..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Arcadia_Planitia_Mosaic/Arcadia_Planitia_CTX_BlockAdj_dd.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - Arcadia_Planitia_CTX_BlockAdj_dd.wms - 1 - - - - 0 - - - - 0 - Green - - Arcadia_Planitia_CTX_BlockAdj_dd.wms - 2 - - - - 0 - - - - 0 - Blue - - Arcadia_Planitia_CTX_BlockAdj_dd.wms - 3 - - - - 0 - - - - Alpha - - Arcadia_Planitia_CTX_BlockAdj_dd.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Arcadia_Planitia_Mosaic/MRO_CTX_Arcadia_Planitia_Mosaic.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Arcadia_Planitia_Mosaic/MRO_CTX_Arcadia_Planitia_Mosaic.asset deleted file mode 100644 index 5b1c42a7be..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Arcadia_Planitia_Mosaic/MRO_CTX_Arcadia_Planitia_Mosaic.asset +++ /dev/null @@ -1,30 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "Arcadia_Planitia_CTX_BlockAdj_dd", - Name = [[MRO CTX, Arcadia Planitia Mosaic]], - FilePath = asset.localResource("Arcadia_Planitia_CTX_BlockAdj_dd.vrt"), - Description = [[This data was acquired using the Context Camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. - -The Context Camera (CTX) provides black-and-white images with resolutions up to 6 meters/pixel. It provides broader context maps for the higher resolution but narrower fields of view of the HiRISE camera, as well as for other instruments aboard MRO, and is useful for producing mosaicked images of larger areas on Mars' surface.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MRO CTX, Arcadia Planitia Mosaic]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=Arcadia_Planitia_CTX_BlockAdj_dd%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MRO CTX, Arcadia Planitia Mosaic layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Ausonia_Mosaic/Ausonia_CTX_BlockAdj_dd.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Ausonia_Mosaic/Ausonia_CTX_BlockAdj_dd.vrt deleted file mode 100644 index cbe3a107f8..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Ausonia_Mosaic/Ausonia_CTX_BlockAdj_dd.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - Ausonia_CTX_BlockAdj_dd.wms - 1 - - - - 0 - - - - 0 - Green - - Ausonia_CTX_BlockAdj_dd.wms - 2 - - - - 0 - - - - 0 - Blue - - Ausonia_CTX_BlockAdj_dd.wms - 3 - - - - 0 - - - - Alpha - - Ausonia_CTX_BlockAdj_dd.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Ausonia_Mosaic/MRO_CTX_Ausonia_Mosaic.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Ausonia_Mosaic/MRO_CTX_Ausonia_Mosaic.asset deleted file mode 100644 index f27a7874e2..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Ausonia_Mosaic/MRO_CTX_Ausonia_Mosaic.asset +++ /dev/null @@ -1,30 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "Ausonia_CTX_BlockAdj_dd", - Name = [[MRO CTX, Ausonia Mosaic]], - FilePath = asset.localResource("Ausonia_CTX_BlockAdj_dd.vrt"), - Description = [[This data was acquired using the Context Camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. - -The Context Camera (CTX) provides black-and-white images with resolutions up to 6 meters/pixel. It provides broader context maps for the higher resolution but narrower fields of view of the HiRISE camera, as well as for other instruments aboard MRO, and is useful for producing mosaicked images of larger areas on Mars' surface.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MRO CTX, Ausonia Mosaic]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=Ausonia_CTX_BlockAdj_dd%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MRO CTX, Ausonia Mosaic layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Cerberus_Mosaic/Cerberus_CTX_BlockAdj_dd.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Cerberus_Mosaic/Cerberus_CTX_BlockAdj_dd.vrt deleted file mode 100644 index ee4074d465..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Cerberus_Mosaic/Cerberus_CTX_BlockAdj_dd.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - Cerberus_CTX_BlockAdj_dd.wms - 1 - - - - 0 - - - - 0 - Green - - Cerberus_CTX_BlockAdj_dd.wms - 2 - - - - 0 - - - - 0 - Blue - - Cerberus_CTX_BlockAdj_dd.wms - 3 - - - - 0 - - - - Alpha - - Cerberus_CTX_BlockAdj_dd.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Cerberus_Mosaic/MRO_CTX_Cerberus_Mosaic.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Cerberus_Mosaic/MRO_CTX_Cerberus_Mosaic.asset deleted file mode 100644 index 21329bb8d6..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Cerberus_Mosaic/MRO_CTX_Cerberus_Mosaic.asset +++ /dev/null @@ -1,30 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "Cerberus_CTX_BlockAdj_dd", - Name = [[MRO CTX, Cerberus Mosaic]], - FilePath = asset.localResource("Cerberus_CTX_BlockAdj_dd.vrt"), - Description = [[This data was acquired using the Context Camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. - -The Context Camera (CTX) provides black-and-white images with resolutions up to 6 meters/pixel. It provides broader context maps for the higher resolution but narrower fields of view of the HiRISE camera, as well as for other instruments aboard MRO, and is useful for producing mosaicked images of larger areas on Mars' surface.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MRO CTX, Cerberus Mosaic]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=Cerberus_CTX_BlockAdj_dd%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MRO CTX, Cerberus Mosaic layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Columbia_Hills_DEM/DEM_1m_ColumbiaHills_fixed.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Columbia_Hills_DEM/DEM_1m_ColumbiaHills_fixed.vrt deleted file mode 100644 index 4f08f0d800..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Columbia_Hills_DEM/DEM_1m_ColumbiaHills_fixed.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.1457672119140625e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.1457672119140625e-05 - - 0 - Red - - DEM_1m_ColumbiaHills_fixed.wms - 1 - - - - 0 - - - - 0 - Green - - DEM_1m_ColumbiaHills_fixed.wms - 2 - - - - 0 - - - - 0 - Blue - - DEM_1m_ColumbiaHills_fixed.wms - 3 - - - - 0 - - - - Alpha - - DEM_1m_ColumbiaHills_fixed.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Columbia_Hills_DEM/MRO_CTX_Columbia_Hills_DEM.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Columbia_Hills_DEM/MRO_CTX_Columbia_Hills_DEM.asset deleted file mode 100644 index 2555086215..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Columbia_Hills_DEM/MRO_CTX_Columbia_Hills_DEM.asset +++ /dev/null @@ -1,30 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "DEM_1m_ColumbiaHills_fixed", - Name = [[MRO CTX, Columbia Hills DEM]], - FilePath = asset.localResource("DEM_1m_ColumbiaHills_fixed.vrt"), - Description = [[This data was acquired using the Context Camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. - -The Context Camera (CTX) provides black-and-white images with resolutions up to 6 meters/pixel. It provides broader context maps for the higher resolution but narrower fields of view of the HiRISE camera, as well as for other instruments aboard MRO, and is useful for producing mosaicked images of larger areas on Mars' surface.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MRO CTX, Columbia Hills DEM]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=DEM_1m_ColumbiaHills_fixed%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MRO CTX, Columbia Hills DEM layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Columbus_Crater_Mosaic/Columbus_Crater_CTX_BlockAdj_dd.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Columbus_Crater_Mosaic/Columbus_Crater_CTX_BlockAdj_dd.vrt deleted file mode 100644 index a24f86dbcb..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Columbus_Crater_Mosaic/Columbus_Crater_CTX_BlockAdj_dd.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - Columbus_Crater_CTX_BlockAdj_dd.wms - 1 - - - - 0 - - - - 0 - Green - - Columbus_Crater_CTX_BlockAdj_dd.wms - 2 - - - - 0 - - - - 0 - Blue - - Columbus_Crater_CTX_BlockAdj_dd.wms - 3 - - - - 0 - - - - Alpha - - Columbus_Crater_CTX_BlockAdj_dd.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Columbus_Crater_Mosaic/MRO_CTX_Columbus_Crater_Mosaic.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Columbus_Crater_Mosaic/MRO_CTX_Columbus_Crater_Mosaic.asset deleted file mode 100644 index 8dd769870c..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Columbus_Crater_Mosaic/MRO_CTX_Columbus_Crater_Mosaic.asset +++ /dev/null @@ -1,30 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "Columbus_Crater_CTX_BlockAdj_dd", - Name = [[MRO CTX, Columbus Crater Mosaic]], - FilePath = asset.localResource("Columbus_Crater_CTX_BlockAdj_dd.vrt"), - Description = [[This data was acquired using the Context Camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. - -The Context Camera (CTX) provides black-and-white images with resolutions up to 6 meters/pixel. It provides broader context maps for the higher resolution but narrower fields of view of the HiRISE camera, as well as for other instruments aboard MRO, and is useful for producing mosaicked images of larger areas on Mars' surface.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MRO CTX, Columbus Crater Mosaic]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=Columbus_Crater_CTX_BlockAdj_dd%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MRO CTX, Columbus Crater Mosaic layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Copernicus_Crater_Mosaic/Copernicus_Crater_CTX_BlockAdj_dd.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Copernicus_Crater_Mosaic/Copernicus_Crater_CTX_BlockAdj_dd.vrt deleted file mode 100644 index 3156e7228c..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Copernicus_Crater_Mosaic/Copernicus_Crater_CTX_BlockAdj_dd.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - Copernicus_Crater_CTX_BlockAdj_dd.wms - 1 - - - - 0 - - - - 0 - Green - - Copernicus_Crater_CTX_BlockAdj_dd.wms - 2 - - - - 0 - - - - 0 - Blue - - Copernicus_Crater_CTX_BlockAdj_dd.wms - 3 - - - - 0 - - - - Alpha - - Copernicus_Crater_CTX_BlockAdj_dd.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Copernicus_Crater_Mosaic/MRO_CTX_Copernicus_Crater_Mosaic.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Copernicus_Crater_Mosaic/MRO_CTX_Copernicus_Crater_Mosaic.asset deleted file mode 100644 index e51589ebee..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Copernicus_Crater_Mosaic/MRO_CTX_Copernicus_Crater_Mosaic.asset +++ /dev/null @@ -1,30 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "Copernicus_Crater_CTX_BlockAdj_dd", - Name = [[MRO CTX, Copernicus Crater Mosaic]], - FilePath = asset.localResource("Copernicus_Crater_CTX_BlockAdj_dd.vrt"), - Description = [[This data was acquired using the Context Camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. - -The Context Camera (CTX) provides black-and-white images with resolutions up to 6 meters/pixel. It provides broader context maps for the higher resolution but narrower fields of view of the HiRISE camera, as well as for other instruments aboard MRO, and is useful for producing mosaicked images of larger areas on Mars' surface.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MRO CTX, Copernicus Crater Mosaic]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=Copernicus_Crater_CTX_BlockAdj_dd%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MRO CTX, Copernicus Crater Mosaic layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Coprates_EMelas_Chasm_Mosaic/Coprates_EMelas_Chasm_CTX_BlockAdj_dd.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Coprates_EMelas_Chasm_Mosaic/Coprates_EMelas_Chasm_CTX_BlockAdj_dd.vrt deleted file mode 100644 index b844c699c5..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Coprates_EMelas_Chasm_Mosaic/Coprates_EMelas_Chasm_CTX_BlockAdj_dd.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - Coprates_EMelas_Chasm_CTX_BlockAdj_dd.wms - 1 - - - - 0 - - - - 0 - Green - - Coprates_EMelas_Chasm_CTX_BlockAdj_dd.wms - 2 - - - - 0 - - - - 0 - Blue - - Coprates_EMelas_Chasm_CTX_BlockAdj_dd.wms - 3 - - - - 0 - - - - Alpha - - Coprates_EMelas_Chasm_CTX_BlockAdj_dd.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Coprates_EMelas_Chasm_Mosaic/MRO_CTX_Coprates_EMelas_Chasm_Mosaic.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Coprates_EMelas_Chasm_Mosaic/MRO_CTX_Coprates_EMelas_Chasm_Mosaic.asset deleted file mode 100644 index 2a1ed8c86e..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Coprates_EMelas_Chasm_Mosaic/MRO_CTX_Coprates_EMelas_Chasm_Mosaic.asset +++ /dev/null @@ -1,30 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "Coprates_EMelas_Chasm_CTX_BlockAdj_dd", - Name = [[MRO CTX, Coprates EMelas Chasm Mosaic]], - FilePath = asset.localResource("Coprates_EMelas_Chasm_CTX_BlockAdj_dd.vrt"), - Description = [[This data was acquired using the Context Camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. - -The Context Camera (CTX) provides black-and-white images with resolutions up to 6 meters/pixel. It provides broader context maps for the higher resolution but narrower fields of view of the HiRISE camera, as well as for other instruments aboard MRO, and is useful for producing mosaicked images of larger areas on Mars' surface.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MRO CTX, Coprates EMelas Chasm Mosaic]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=Coprates_EMelas_Chasm_CTX_BlockAdj_dd%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MRO CTX, Coprates EMelas Chasm Mosaic layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Curiosity_Roving_Site_Mosaic/MRO_CTX_Curiosity_Roving_Site_Mosaic.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Curiosity_Roving_Site_Mosaic/MRO_CTX_Curiosity_Roving_Site_Mosaic.asset deleted file mode 100644 index e29c38051e..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Curiosity_Roving_Site_Mosaic/MRO_CTX_Curiosity_Roving_Site_Mosaic.asset +++ /dev/null @@ -1,30 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "curiosity_ctx_mosaic", - Name = [[MRO CTX, Curiosity Roving Site Mosaic]], - FilePath = asset.localResource("curiosity_ctx_mosaic.vrt"), - Description = [[This data was acquired using the Context Camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. - -The Context Camera (CTX) provides black-and-white images with resolutions up to 6 meters/pixel. It provides broader context maps for the higher resolution but narrower fields of view of the HiRISE camera, as well as for other instruments aboard MRO, and is useful for producing mosaicked images of larger areas on Mars' surface.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MRO CTX, Curiosity Roving Site Mosaic]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=curiosity_ctx_mosaic%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MRO CTX, Curiosity Roving Site Mosaic layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Curiosity_Roving_Site_Mosaic/curiosity_ctx_mosaic.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Curiosity_Roving_Site_Mosaic/curiosity_ctx_mosaic.vrt deleted file mode 100644 index c8ed9dc0d2..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Curiosity_Roving_Site_Mosaic/curiosity_ctx_mosaic.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 3.4332275390625000e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -3.4332275390625000e-04 - - 0 - Red - - curiosity_ctx_mosaic.wms - 1 - - - - 0 - - - - 0 - Green - - curiosity_ctx_mosaic.wms - 2 - - - - 0 - - - - 0 - Blue - - curiosity_ctx_mosaic.wms - 3 - - - - 0 - - - - Alpha - - curiosity_ctx_mosaic.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Deuteronilus_Mensae_Mosaic/Deuteronilus1_2_CTX_BlockAdj_dd.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Deuteronilus_Mensae_Mosaic/Deuteronilus1_2_CTX_BlockAdj_dd.vrt deleted file mode 100644 index e5bb1e4505..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Deuteronilus_Mensae_Mosaic/Deuteronilus1_2_CTX_BlockAdj_dd.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - Deuteronilus1_2_CTX_BlockAdj_dd.wms - 1 - - - - 0 - - - - 0 - Green - - Deuteronilus1_2_CTX_BlockAdj_dd.wms - 2 - - - - 0 - - - - 0 - Blue - - Deuteronilus1_2_CTX_BlockAdj_dd.wms - 3 - - - - 0 - - - - Alpha - - Deuteronilus1_2_CTX_BlockAdj_dd.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Deuteronilus_Mensae_Mosaic/MRO_CTX_Deuteronilus_Mensae_Mosaic.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Deuteronilus_Mensae_Mosaic/MRO_CTX_Deuteronilus_Mensae_Mosaic.asset deleted file mode 100644 index 9f54d6d9fe..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Deuteronilus_Mensae_Mosaic/MRO_CTX_Deuteronilus_Mensae_Mosaic.asset +++ /dev/null @@ -1,30 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "Deuteronilus1_2_CTX_BlockAdj_dd", - Name = [[MRO CTX, Deuteronilus Mensae Mosaic]], - FilePath = asset.localResource("Deuteronilus1_2_CTX_BlockAdj_dd.vrt"), - Description = [[This data was acquired using the Context Camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. - -The Context Camera (CTX) provides black-and-white images with resolutions up to 6 meters/pixel. It provides broader context maps for the higher resolution but narrower fields of view of the HiRISE camera, as well as for other instruments aboard MRO, and is useful for producing mosaicked images of larger areas on Mars' surface.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MRO CTX, Deuteronilus Mensae Mosaic]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=Deuteronilus1_2_CTX_BlockAdj_dd%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MRO CTX, Deuteronilus Mensae Mosaic layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_East_Melas_DEM/CTX_DEM_East_Melas.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_East_Melas_DEM/CTX_DEM_East_Melas.vrt deleted file mode 100644 index ddeb33cc44..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_East_Melas_DEM/CTX_DEM_East_Melas.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 - - 0 - Red - - CTX_DEM_East_Melas.wms - 1 - - - - 0 - - - - 0 - Green - - CTX_DEM_East_Melas.wms - 2 - - - - 0 - - - - 0 - Blue - - CTX_DEM_East_Melas.wms - 3 - - - - 0 - - - - Alpha - - CTX_DEM_East_Melas.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_East_Melas_DEM/MRO_CTX_East_Melas_DEM.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_East_Melas_DEM/MRO_CTX_East_Melas_DEM.asset deleted file mode 100644 index cc10083e78..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_East_Melas_DEM/MRO_CTX_East_Melas_DEM.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "CTX_DEM_East_Melas", - Name = [[MRO CTX, East Melas DEM]], - FilePath = asset.localResource("CTX_DEM_East_Melas.vrt"), - Description = [[This is a digital elevation model (DEM) for the Eastern Melas Chasma region of Valles Marineris. It is one of the areas identified as a potential Exploration Zone (EZ) for human exploration of Mars. This DEM was generated by combining 9 stereographic pairs of CTX images. Each individual pair was taken of the same area but from different angles. The nine pairs were joined together to cover a broad area of the EZ. This data was acquired using the Context Camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. The Context Camera (CTX) provides black-and-white images with resolutions up to 6 meters/pixel. It provides broader context maps for the higher resolution but narrower fields of view of the HiRISE camera, as well as for other instruments aboard MRO, and is useful for producing mosaicked images of larger areas on Mars' surface.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MRO CTX, East Melas DEM]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=CTX_DEM_East_Melas%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MRO CTX, East Melas DEM layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_East_Melas_Hillshade/CTX_Shade_East_Melas.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_East_Melas_Hillshade/CTX_Shade_East_Melas.vrt deleted file mode 100644 index 8776f07ae6..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_East_Melas_Hillshade/CTX_Shade_East_Melas.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 - - 0 - Red - - CTX_Shade_East_Melas.wms - 1 - - - - 0 - - - - 0 - Green - - CTX_Shade_East_Melas.wms - 2 - - - - 0 - - - - 0 - Blue - - CTX_Shade_East_Melas.wms - 3 - - - - 0 - - - - Alpha - - CTX_Shade_East_Melas.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_East_Melas_Hillshade/MRO_CTX_East_Melas_Hillshade.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_East_Melas_Hillshade/MRO_CTX_East_Melas_Hillshade.asset deleted file mode 100644 index e326c3519a..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_East_Melas_Hillshade/MRO_CTX_East_Melas_Hillshade.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "CTX_Shade_East_Melas", - Name = [[MRO CTX, East Melas Hillshade]], - FilePath = asset.localResource("CTX_Shade_East_Melas.vrt"), - Description = [[This is a hillshade rendition of the digital elevation model (DEM) for the Eastern Melas Chasma region of Valles Marineris. It is one of the areas identified as a potential Exploration Zone (EZ) for human exploration of Mars. The hillshade layer is a shaded relief view of the DEM, making it particularly easy to visualize surface topography. The DEM was generated by combining 9 stereographic pairs of CTX images. Each individual pair was taken of the same area but from different angles. The nine pairs were joined together to cover a broad area of the EZ. This data was acquired using the Context Camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. The Context Camera (CTX) provides black-and-white images with resolutions up to 6 meters/pixel. It provides broader context maps for the higher resolution but narrower fields of view of the HiRISE camera, as well as for other instruments aboard MRO, and is useful for producing mosaicked images of larger areas on Mars' surface.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MRO CTX, East Melas Hillshade]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=CTX_Shade_East_Melas%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MRO CTX, East Melas Hillshade layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Eastern_Valles_Marineris_Mosaic/MRO_CTX_Eastern_Valles_Marineris_Mosaic.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Eastern_Valles_Marineris_Mosaic/MRO_CTX_Eastern_Valles_Marineris_Mosaic.asset deleted file mode 100644 index dd4cbee1e1..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Eastern_Valles_Marineris_Mosaic/MRO_CTX_Eastern_Valles_Marineris_Mosaic.asset +++ /dev/null @@ -1,30 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "NE_Marineris_Crater_CTX_BlockAdj_dd", - Name = [[MRO CTX, Eastern Valles Marineris Mosaic]], - FilePath = asset.localResource("NE_Marineris_Crater_CTX_BlockAdj_dd.vrt"), - Description = [[This data was acquired using the Context Camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. - -The Context Camera (CTX) provides black-and-white images with resolutions up to 6 meters/pixel. It provides broader context maps for the higher resolution but narrower fields of view of the HiRISE camera, as well as for other instruments aboard MRO, and is useful for producing mosaicked images of larger areas on Mars' surface.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MRO CTX, Eastern Valles Marineris Mosaic]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=NE_Marineris_Crater_CTX_BlockAdj_dd%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MRO CTX, Eastern Valles Marineris Mosaic layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Eastern_Valles_Marineris_Mosaic/NE_Marineris_Crater_CTX_BlockAdj_dd.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Eastern_Valles_Marineris_Mosaic/NE_Marineris_Crater_CTX_BlockAdj_dd.vrt deleted file mode 100644 index 11156212f2..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Eastern_Valles_Marineris_Mosaic/NE_Marineris_Crater_CTX_BlockAdj_dd.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - NE_Marineris_Crater_CTX_BlockAdj_dd.wms - 1 - - - - 0 - - - - 0 - Green - - NE_Marineris_Crater_CTX_BlockAdj_dd.wms - 2 - - - - 0 - - - - 0 - Blue - - NE_Marineris_Crater_CTX_BlockAdj_dd.wms - 3 - - - - 0 - - - - Alpha - - NE_Marineris_Crater_CTX_BlockAdj_dd.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Equatorial_Valles_Marineries_Mosaic/MRO_CTX_Equatorial_Valles_Marineries_Mosaic.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Equatorial_Valles_Marineries_Mosaic/MRO_CTX_Equatorial_Valles_Marineries_Mosaic.asset deleted file mode 100644 index ac61f3cb04..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Equatorial_Valles_Marineries_Mosaic/MRO_CTX_Equatorial_Valles_Marineries_Mosaic.asset +++ /dev/null @@ -1,30 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "SE_Marineris_CTX_BlockAdj_dd", - Name = [[MRO CTX, Equatorial Valles Marineries Mosaic]], - FilePath = asset.localResource("SE_Marineris_CTX_BlockAdj_dd.vrt"), - Description = [[This data was acquired using the Context Camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. - -The Context Camera (CTX) provides black-and-white images with resolutions up to 6 meters/pixel. It provides broader context maps for the higher resolution but narrower fields of view of the HiRISE camera, as well as for other instruments aboard MRO, and is useful for producing mosaicked images of larger areas on Mars' surface.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MRO CTX, Equatorial Valles Marineries Mosaic]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=SE_Marineris_CTX_BlockAdj_dd%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MRO CTX, Equatorial Valles Marineries Mosaic layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Equatorial_Valles_Marineries_Mosaic/SE_Marineris_CTX_BlockAdj_dd.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Equatorial_Valles_Marineries_Mosaic/SE_Marineris_CTX_BlockAdj_dd.vrt deleted file mode 100644 index 5ef61e042b..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Equatorial_Valles_Marineries_Mosaic/SE_Marineris_CTX_BlockAdj_dd.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - SE_Marineris_CTX_BlockAdj_dd.wms - 1 - - - - 0 - - - - 0 - Green - - SE_Marineris_CTX_BlockAdj_dd.wms - 2 - - - - 0 - - - - 0 - Blue - - SE_Marineris_CTX_BlockAdj_dd.wms - 3 - - - - 0 - - - - Alpha - - SE_Marineris_CTX_BlockAdj_dd.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Erebus_Montes_Mosaic/Erebus_Montes_CTX_BlockAdj_dd.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Erebus_Montes_Mosaic/Erebus_Montes_CTX_BlockAdj_dd.vrt deleted file mode 100644 index 1c0b442acf..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Erebus_Montes_Mosaic/Erebus_Montes_CTX_BlockAdj_dd.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - Erebus_Montes_CTX_BlockAdj_dd.wms - 1 - - - - 0 - - - - 0 - Green - - Erebus_Montes_CTX_BlockAdj_dd.wms - 2 - - - - 0 - - - - 0 - Blue - - Erebus_Montes_CTX_BlockAdj_dd.wms - 3 - - - - 0 - - - - Alpha - - Erebus_Montes_CTX_BlockAdj_dd.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Erebus_Montes_Mosaic/MRO_CTX_Erebus_Montes_Mosaic.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Erebus_Montes_Mosaic/MRO_CTX_Erebus_Montes_Mosaic.asset deleted file mode 100644 index fb1a4c3676..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Erebus_Montes_Mosaic/MRO_CTX_Erebus_Montes_Mosaic.asset +++ /dev/null @@ -1,30 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "Erebus_Montes_CTX_BlockAdj_dd", - Name = [[MRO CTX, Erebus Montes Mosaic]], - FilePath = asset.localResource("Erebus_Montes_CTX_BlockAdj_dd.vrt"), - Description = [[This data was acquired using the Context Camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. - -The Context Camera (CTX) provides black-and-white images with resolutions up to 6 meters/pixel. It provides broader context maps for the higher resolution but narrower fields of view of the HiRISE camera, as well as for other instruments aboard MRO, and is useful for producing mosaicked images of larger areas on Mars' surface.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MRO CTX, Erebus Montes Mosaic]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=Erebus_Montes_CTX_BlockAdj_dd%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MRO CTX, Erebus Montes Mosaic layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Gale_Crater_Mosaic/Gale_CTX_BlockAdj_dd.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Gale_Crater_Mosaic/Gale_CTX_BlockAdj_dd.vrt deleted file mode 100644 index e95aba40f2..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Gale_Crater_Mosaic/Gale_CTX_BlockAdj_dd.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - Gale_CTX_BlockAdj_dd.wms - 1 - - - - 0 - - - - 0 - Green - - Gale_CTX_BlockAdj_dd.wms - 2 - - - - 0 - - - - 0 - Blue - - Gale_CTX_BlockAdj_dd.wms - 3 - - - - 0 - - - - Alpha - - Gale_CTX_BlockAdj_dd.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Gale_Crater_Mosaic/MRO_CTX_Gale_Crater_Mosaic.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Gale_Crater_Mosaic/MRO_CTX_Gale_Crater_Mosaic.asset deleted file mode 100644 index fce76d79ae..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Gale_Crater_Mosaic/MRO_CTX_Gale_Crater_Mosaic.asset +++ /dev/null @@ -1,30 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "Gale_CTX_BlockAdj_dd", - Name = [[MRO CTX, Gale Crater Mosaic]], - FilePath = asset.localResource("Gale_CTX_BlockAdj_dd.vrt"), - Description = [[This data was acquired using the Context Camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. - -The Context Camera (CTX) provides black-and-white images with resolutions up to 6 meters/pixel. It provides broader context maps for the higher resolution but narrower fields of view of the HiRISE camera, as well as for other instruments aboard MRO, and is useful for producing mosaicked images of larger areas on Mars' surface.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MRO CTX, Gale Crater Mosaic]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=Gale_CTX_BlockAdj_dd%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MRO CTX, Gale Crater Mosaic layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Gusev_Crater_Mosaic/Gusev_CTX_BlockAdj_dd.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Gusev_Crater_Mosaic/Gusev_CTX_BlockAdj_dd.vrt deleted file mode 100644 index e38a7f0ec6..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Gusev_Crater_Mosaic/Gusev_CTX_BlockAdj_dd.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - Gusev_CTX_BlockAdj_dd.wms - 1 - - - - 0 - - - - 0 - Green - - Gusev_CTX_BlockAdj_dd.wms - 2 - - - - 0 - - - - 0 - Blue - - Gusev_CTX_BlockAdj_dd.wms - 3 - - - - 0 - - - - Alpha - - Gusev_CTX_BlockAdj_dd.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Gusev_Crater_Mosaic/MRO_CTX_Gusev_Crater_Mosaic.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Gusev_Crater_Mosaic/MRO_CTX_Gusev_Crater_Mosaic.asset deleted file mode 100644 index 78bfd951c1..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Gusev_Crater_Mosaic/MRO_CTX_Gusev_Crater_Mosaic.asset +++ /dev/null @@ -1,30 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "Gusev_CTX_BlockAdj_dd", - Name = [[MRO CTX, Gusev Crater Mosaic]], - FilePath = asset.localResource("Gusev_CTX_BlockAdj_dd.vrt"), - Description = [[This data was acquired using the Context Camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. - -The Context Camera (CTX) provides black-and-white images with resolutions up to 6 meters/pixel. It provides broader context maps for the higher resolution but narrower fields of view of the HiRISE camera, as well as for other instruments aboard MRO, and is useful for producing mosaicked images of larger areas on Mars' surface.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MRO CTX, Gusev Crater Mosaic]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=Gusev_CTX_BlockAdj_dd%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MRO CTX, Gusev Crater Mosaic layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Hadriacus_Mosaic/Hadriacus_CTX_BlockAdj_dd.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Hadriacus_Mosaic/Hadriacus_CTX_BlockAdj_dd.vrt deleted file mode 100644 index 3605328443..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Hadriacus_Mosaic/Hadriacus_CTX_BlockAdj_dd.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - Hadriacus_CTX_BlockAdj_dd.wms - 1 - - - - 0 - - - - 0 - Green - - Hadriacus_CTX_BlockAdj_dd.wms - 2 - - - - 0 - - - - 0 - Blue - - Hadriacus_CTX_BlockAdj_dd.wms - 3 - - - - 0 - - - - Alpha - - Hadriacus_CTX_BlockAdj_dd.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Hadriacus_Mosaic/MRO_CTX_Hadriacus_Mosaic.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Hadriacus_Mosaic/MRO_CTX_Hadriacus_Mosaic.asset deleted file mode 100644 index 2cbc5c238d..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Hadriacus_Mosaic/MRO_CTX_Hadriacus_Mosaic.asset +++ /dev/null @@ -1,30 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "Hadriacus_CTX_BlockAdj_dd", - Name = [[MRO CTX, Hadriacus Mosaic]], - FilePath = asset.localResource("Hadriacus_CTX_BlockAdj_dd.vrt"), - Description = [[This data was acquired using the Context Camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. - -The Context Camera (CTX) provides black-and-white images with resolutions up to 6 meters/pixel. It provides broader context maps for the higher resolution but narrower fields of view of the HiRISE camera, as well as for other instruments aboard MRO, and is useful for producing mosaicked images of larger areas on Mars' surface.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MRO CTX, Hadriacus Mosaic]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=Hadriacus_CTX_BlockAdj_dd%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MRO CTX, Hadriacus Mosaic layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Hale_Crater_Mosaic/Hale_Crater_CTX_BlockAdj_dd.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Hale_Crater_Mosaic/Hale_Crater_CTX_BlockAdj_dd.vrt deleted file mode 100644 index 3897b9d9b3..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Hale_Crater_Mosaic/Hale_Crater_CTX_BlockAdj_dd.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - Hale_Crater_CTX_BlockAdj_dd.wms - 1 - - - - 0 - - - - 0 - Green - - Hale_Crater_CTX_BlockAdj_dd.wms - 2 - - - - 0 - - - - 0 - Blue - - Hale_Crater_CTX_BlockAdj_dd.wms - 3 - - - - 0 - - - - Alpha - - Hale_Crater_CTX_BlockAdj_dd.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Hale_Crater_Mosaic/MRO_CTX_Hale_Crater_Mosaic.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Hale_Crater_Mosaic/MRO_CTX_Hale_Crater_Mosaic.asset deleted file mode 100644 index 25dff188ba..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Hale_Crater_Mosaic/MRO_CTX_Hale_Crater_Mosaic.asset +++ /dev/null @@ -1,30 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "Hale_Crater_CTX_BlockAdj_dd", - Name = [[MRO CTX, Hale Crater Mosaic]], - FilePath = asset.localResource("Hale_Crater_CTX_BlockAdj_dd.vrt"), - Description = [[This data was acquired using the Context Camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. - -The Context Camera (CTX) provides black-and-white images with resolutions up to 6 meters/pixel. It provides broader context maps for the higher resolution but narrower fields of view of the HiRISE camera, as well as for other instruments aboard MRO, and is useful for producing mosaicked images of larger areas on Mars' surface.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MRO CTX, Hale Crater Mosaic]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=Hale_Crater_CTX_BlockAdj_dd%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MRO CTX, Hale Crater Mosaic layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Hebrus_Valles_Mosaic/Hebrus_CTX_BlockAdj_dd.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Hebrus_Valles_Mosaic/Hebrus_CTX_BlockAdj_dd.vrt deleted file mode 100644 index 3444aeb02f..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Hebrus_Valles_Mosaic/Hebrus_CTX_BlockAdj_dd.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - Hebrus_CTX_BlockAdj_dd.wms - 1 - - - - 0 - - - - 0 - Green - - Hebrus_CTX_BlockAdj_dd.wms - 2 - - - - 0 - - - - 0 - Blue - - Hebrus_CTX_BlockAdj_dd.wms - 3 - - - - 0 - - - - Alpha - - Hebrus_CTX_BlockAdj_dd.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Hebrus_Valles_Mosaic/MRO_CTX_Hebrus_Valles_Mosaic.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Hebrus_Valles_Mosaic/MRO_CTX_Hebrus_Valles_Mosaic.asset deleted file mode 100644 index 1a1a0d1b53..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Hebrus_Valles_Mosaic/MRO_CTX_Hebrus_Valles_Mosaic.asset +++ /dev/null @@ -1,30 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "Hebrus_CTX_BlockAdj_dd", - Name = [[MRO CTX, Hebrus Valles Mosaic]], - FilePath = asset.localResource("Hebrus_CTX_BlockAdj_dd.vrt"), - Description = [[This data was acquired using the Context Camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. - -The Context Camera (CTX) provides black-and-white images with resolutions up to 6 meters/pixel. It provides broader context maps for the higher resolution but narrower fields of view of the HiRISE camera, as well as for other instruments aboard MRO, and is useful for producing mosaicked images of larger areas on Mars' surface.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MRO CTX, Hebrus Valles Mosaic]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=Hebrus_CTX_BlockAdj_dd%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MRO CTX, Hebrus Valles Mosaic layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Hellas_Eastern_Rim_Mosaic/Hellas_Hellas2_CTX_BlockAdj_dd.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Hellas_Eastern_Rim_Mosaic/Hellas_Hellas2_CTX_BlockAdj_dd.vrt deleted file mode 100644 index 37fc7cf829..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Hellas_Eastern_Rim_Mosaic/Hellas_Hellas2_CTX_BlockAdj_dd.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - Hellas_Hellas2_CTX_BlockAdj_dd.wms - 1 - - - - 0 - - - - 0 - Green - - Hellas_Hellas2_CTX_BlockAdj_dd.wms - 2 - - - - 0 - - - - 0 - Blue - - Hellas_Hellas2_CTX_BlockAdj_dd.wms - 3 - - - - 0 - - - - Alpha - - Hellas_Hellas2_CTX_BlockAdj_dd.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Hellas_Eastern_Rim_Mosaic/MRO_CTX_Hellas_Eastern_Rim_Mosaic.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Hellas_Eastern_Rim_Mosaic/MRO_CTX_Hellas_Eastern_Rim_Mosaic.asset deleted file mode 100644 index 911d795e63..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Hellas_Eastern_Rim_Mosaic/MRO_CTX_Hellas_Eastern_Rim_Mosaic.asset +++ /dev/null @@ -1,30 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "Hellas_Hellas2_CTX_BlockAdj_dd", - Name = [[MRO CTX, Hellas Eastern Rim Mosaic]], - FilePath = asset.localResource("Hellas_Hellas2_CTX_BlockAdj_dd.vrt"), - Description = [[This data was acquired using the Context Camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. - -The Context Camera (CTX) provides black-and-white images with resolutions up to 6 meters/pixel. It provides broader context maps for the higher resolution but narrower fields of view of the HiRISE camera, as well as for other instruments aboard MRO, and is useful for producing mosaicked images of larger areas on Mars' surface.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MRO CTX, Hellas Eastern Rim Mosaic]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=Hellas_Hellas2_CTX_BlockAdj_dd%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MRO CTX, Hellas Eastern Rim Mosaic layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Hellas_Mesopotamia_Mosaic/Hellas3_CTX_BlockAdj_dd.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Hellas_Mesopotamia_Mosaic/Hellas3_CTX_BlockAdj_dd.vrt deleted file mode 100644 index 7098ebfe7c..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Hellas_Mesopotamia_Mosaic/Hellas3_CTX_BlockAdj_dd.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - Hellas3_CTX_BlockAdj_dd.wms - 1 - - - - 0 - - - - 0 - Green - - Hellas3_CTX_BlockAdj_dd.wms - 2 - - - - 0 - - - - 0 - Blue - - Hellas3_CTX_BlockAdj_dd.wms - 3 - - - - 0 - - - - Alpha - - Hellas3_CTX_BlockAdj_dd.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Hellas_Mesopotamia_Mosaic/MRO_CTX_Hellas_Mesopotamia_Mosaic.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Hellas_Mesopotamia_Mosaic/MRO_CTX_Hellas_Mesopotamia_Mosaic.asset deleted file mode 100644 index c23c3e8cf4..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Hellas_Mesopotamia_Mosaic/MRO_CTX_Hellas_Mesopotamia_Mosaic.asset +++ /dev/null @@ -1,30 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "Hellas3_CTX_BlockAdj_dd", - Name = [[MRO CTX, Hellas Mesopotamia Mosaic]], - FilePath = asset.localResource("Hellas3_CTX_BlockAdj_dd.vrt"), - Description = [[This data was acquired using the Context Camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. - -The Context Camera (CTX) provides black-and-white images with resolutions up to 6 meters/pixel. It provides broader context maps for the higher resolution but narrower fields of view of the HiRISE camera, as well as for other instruments aboard MRO, and is useful for producing mosaicked images of larger areas on Mars' surface.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MRO CTX, Hellas Mesopotamia Mosaic]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=Hellas3_CTX_BlockAdj_dd%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MRO CTX, Hellas Mesopotamia Mosaic layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Huygens_Crater_Mosaic/Huygens_CTX_BlockAdj_dd.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Huygens_Crater_Mosaic/Huygens_CTX_BlockAdj_dd.vrt deleted file mode 100644 index 56c42f53f7..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Huygens_Crater_Mosaic/Huygens_CTX_BlockAdj_dd.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - Huygens_CTX_BlockAdj_dd.wms - 1 - - - - 0 - - - - 0 - Green - - Huygens_CTX_BlockAdj_dd.wms - 2 - - - - 0 - - - - 0 - Blue - - Huygens_CTX_BlockAdj_dd.wms - 3 - - - - 0 - - - - Alpha - - Huygens_CTX_BlockAdj_dd.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Huygens_Crater_Mosaic/MRO_CTX_Huygens_Crater_Mosaic.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Huygens_Crater_Mosaic/MRO_CTX_Huygens_Crater_Mosaic.asset deleted file mode 100644 index 59d21bfa88..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Huygens_Crater_Mosaic/MRO_CTX_Huygens_Crater_Mosaic.asset +++ /dev/null @@ -1,30 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "Huygens_CTX_BlockAdj_dd", - Name = [[MRO CTX, Huygens Crater Mosaic]], - FilePath = asset.localResource("Huygens_CTX_BlockAdj_dd.vrt"), - Description = [[This data was acquired using the Context Camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. - -The Context Camera (CTX) provides black-and-white images with resolutions up to 6 meters/pixel. It provides broader context maps for the higher resolution but narrower fields of view of the HiRISE camera, as well as for other instruments aboard MRO, and is useful for producing mosaicked images of larger areas on Mars' surface.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MRO CTX, Huygens Crater Mosaic]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=Huygens_CTX_BlockAdj_dd%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MRO CTX, Huygens Crater Mosaic layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Hypanis_Delta_Mosaic/Hypanis_Delta_CTX_BlockAdj_dd.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Hypanis_Delta_Mosaic/Hypanis_Delta_CTX_BlockAdj_dd.vrt deleted file mode 100644 index b3a693d2d1..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Hypanis_Delta_Mosaic/Hypanis_Delta_CTX_BlockAdj_dd.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - Hypanis_Delta_CTX_BlockAdj_dd.wms - 1 - - - - 0 - - - - 0 - Green - - Hypanis_Delta_CTX_BlockAdj_dd.wms - 2 - - - - 0 - - - - 0 - Blue - - Hypanis_Delta_CTX_BlockAdj_dd.wms - 3 - - - - 0 - - - - Alpha - - Hypanis_Delta_CTX_BlockAdj_dd.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Hypanis_Delta_Mosaic/MRO_CTX_Hypanis_Delta_Mosaic.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Hypanis_Delta_Mosaic/MRO_CTX_Hypanis_Delta_Mosaic.asset deleted file mode 100644 index afe3e0cf93..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Hypanis_Delta_Mosaic/MRO_CTX_Hypanis_Delta_Mosaic.asset +++ /dev/null @@ -1,30 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "Hypanis_Delta_CTX_BlockAdj_dd", - Name = [[MRO CTX, Hypanis Delta Mosaic]], - FilePath = asset.localResource("Hypanis_Delta_CTX_BlockAdj_dd.vrt"), - Description = [[This data was acquired using the Context Camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. - -The Context Camera (CTX) provides black-and-white images with resolutions up to 6 meters/pixel. It provides broader context maps for the higher resolution but narrower fields of view of the HiRISE camera, as well as for other instruments aboard MRO, and is useful for producing mosaicked images of larger areas on Mars' surface.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MRO CTX, Hypanis Delta Mosaic]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=Hypanis_Delta_CTX_BlockAdj_dd%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MRO CTX, Hypanis Delta Mosaic layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Ismenius_Cavus_Mosaic/Ismenius_Cavus_CTX_BlockAdj_dd.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Ismenius_Cavus_Mosaic/Ismenius_Cavus_CTX_BlockAdj_dd.vrt deleted file mode 100644 index 0908b34af2..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Ismenius_Cavus_Mosaic/Ismenius_Cavus_CTX_BlockAdj_dd.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - Ismenius_Cavus_CTX_BlockAdj_dd.wms - 1 - - - - 0 - - - - 0 - Green - - Ismenius_Cavus_CTX_BlockAdj_dd.wms - 2 - - - - 0 - - - - 0 - Blue - - Ismenius_Cavus_CTX_BlockAdj_dd.wms - 3 - - - - 0 - - - - Alpha - - Ismenius_Cavus_CTX_BlockAdj_dd.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Ismenius_Cavus_Mosaic/MRO_CTX_Ismenius_Cavus_Mosaic.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Ismenius_Cavus_Mosaic/MRO_CTX_Ismenius_Cavus_Mosaic.asset deleted file mode 100644 index acdab3d3e5..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Ismenius_Cavus_Mosaic/MRO_CTX_Ismenius_Cavus_Mosaic.asset +++ /dev/null @@ -1,30 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "Ismenius_Cavus_CTX_BlockAdj_dd", - Name = [[MRO CTX, Ismenius Cavus Mosaic]], - FilePath = asset.localResource("Ismenius_Cavus_CTX_BlockAdj_dd.vrt"), - Description = [[This data was acquired using the Context Camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. - -The Context Camera (CTX) provides black-and-white images with resolutions up to 6 meters/pixel. It provides broader context maps for the higher resolution but narrower fields of view of the HiRISE camera, as well as for other instruments aboard MRO, and is useful for producing mosaicked images of larger areas on Mars' surface.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MRO CTX, Ismenius Cavus Mosaic]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=Ismenius_Cavus_CTX_BlockAdj_dd%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MRO CTX, Ismenius Cavus Mosaic layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Jezero_Mosaic_Preliminary/Jezero_CTX_BlockAdj_dd.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Jezero_Mosaic_Preliminary/Jezero_CTX_BlockAdj_dd.vrt deleted file mode 100644 index d8ddd5907d..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Jezero_Mosaic_Preliminary/Jezero_CTX_BlockAdj_dd.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - Jezero_CTX_BlockAdj_dd.wms - 1 - - - - 0 - - - - 0 - Green - - Jezero_CTX_BlockAdj_dd.wms - 2 - - - - 0 - - - - 0 - Blue - - Jezero_CTX_BlockAdj_dd.wms - 3 - - - - 0 - - - - Alpha - - Jezero_CTX_BlockAdj_dd.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Jezero_Mosaic_Preliminary/MRO_CTX_Jezero_Mosaic_Preliminary.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Jezero_Mosaic_Preliminary/MRO_CTX_Jezero_Mosaic_Preliminary.asset deleted file mode 100644 index c18e75012a..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Jezero_Mosaic_Preliminary/MRO_CTX_Jezero_Mosaic_Preliminary.asset +++ /dev/null @@ -1,30 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "Jezero_CTX_BlockAdj_dd", - Name = [[MRO CTX, Jezero Mosaic, Preliminary]], - FilePath = asset.localResource("Jezero_CTX_BlockAdj_dd.vrt"), - Description = [[This data was acquired using the Context Camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. - -The Context Camera (CTX) provides black-and-white images with resolutions up to 6 meters/pixel. It provides broader context maps for the higher resolution but narrower fields of view of the HiRISE camera, as well as for other instruments aboard MRO, and is useful for producing mosaicked images of larger areas on Mars' surface.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MRO CTX, Jezero Mosaic, Preliminary]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=Jezero_CTX_BlockAdj_dd%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MRO CTX, Jezero Mosaic, Preliminary layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Kasei_Valles_Mosaic/Kasei_Valles_CTX_BlockAdj_dd.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Kasei_Valles_Mosaic/Kasei_Valles_CTX_BlockAdj_dd.vrt deleted file mode 100644 index 712e0e7ce2..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Kasei_Valles_Mosaic/Kasei_Valles_CTX_BlockAdj_dd.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - Kasei_Valles_CTX_BlockAdj_dd.wms - 1 - - - - 0 - - - - 0 - Green - - Kasei_Valles_CTX_BlockAdj_dd.wms - 2 - - - - 0 - - - - 0 - Blue - - Kasei_Valles_CTX_BlockAdj_dd.wms - 3 - - - - 0 - - - - Alpha - - Kasei_Valles_CTX_BlockAdj_dd.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Kasei_Valles_Mosaic/MRO_CTX_Kasei_Valles_Mosaic.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Kasei_Valles_Mosaic/MRO_CTX_Kasei_Valles_Mosaic.asset deleted file mode 100644 index 1aff57ec79..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Kasei_Valles_Mosaic/MRO_CTX_Kasei_Valles_Mosaic.asset +++ /dev/null @@ -1,30 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "Kasei_Valles_CTX_BlockAdj_dd", - Name = [[MRO CTX, Kasei Valles Mosaic]], - FilePath = asset.localResource("Kasei_Valles_CTX_BlockAdj_dd.vrt"), - Description = [[This data was acquired using the Context Camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. - -The Context Camera (CTX) provides black-and-white images with resolutions up to 6 meters/pixel. It provides broader context maps for the higher resolution but narrower fields of view of the HiRISE camera, as well as for other instruments aboard MRO, and is useful for producing mosaicked images of larger areas on Mars' surface.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MRO CTX, Kasei Valles Mosaic]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=Kasei_Valles_CTX_BlockAdj_dd%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MRO CTX, Kasei Valles Mosaic layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Mawrth_Vallis_Mosaic/MRO_CTX_Mawrth_Vallis_Mosaic.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Mawrth_Vallis_Mosaic/MRO_CTX_Mawrth_Vallis_Mosaic.asset deleted file mode 100644 index befc0bf19f..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Mawrth_Vallis_Mosaic/MRO_CTX_Mawrth_Vallis_Mosaic.asset +++ /dev/null @@ -1,30 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "Mawrth_Valles_CTX_BlockAdj_dd", - Name = [[MRO CTX, Mawrth Vallis Mosaic]], - FilePath = asset.localResource("Mawrth_Valles_CTX_BlockAdj_dd.vrt"), - Description = [[This data was acquired using the Context Camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. - -The Context Camera (CTX) provides black-and-white images with resolutions up to 6 meters/pixel. It provides broader context maps for the higher resolution but narrower fields of view of the HiRISE camera, as well as for other instruments aboard MRO, and is useful for producing mosaicked images of larger areas on Mars' surface.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MRO CTX, Mawrth Vallis Mosaic]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=Mawrth_Valles_CTX_BlockAdj_dd%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MRO CTX, Mawrth Vallis Mosaic layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Mawrth_Vallis_Mosaic/Mawrth_Valles_CTX_BlockAdj_dd.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Mawrth_Vallis_Mosaic/Mawrth_Valles_CTX_BlockAdj_dd.vrt deleted file mode 100644 index 1c3671c920..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Mawrth_Vallis_Mosaic/Mawrth_Valles_CTX_BlockAdj_dd.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - Mawrth_Valles_CTX_BlockAdj_dd.wms - 1 - - - - 0 - - - - 0 - Green - - Mawrth_Valles_CTX_BlockAdj_dd.wms - 2 - - - - 0 - - - - 0 - Blue - - Mawrth_Valles_CTX_BlockAdj_dd.wms - 3 - - - - 0 - - - - Alpha - - Mawrth_Valles_CTX_BlockAdj_dd.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_McLaughlin_Crater_Mosaic/MRO_CTX_McLaughlin_Crater_Mosaic.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_McLaughlin_Crater_Mosaic/MRO_CTX_McLaughlin_Crater_Mosaic.asset deleted file mode 100644 index 0356c325e8..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_McLaughlin_Crater_Mosaic/MRO_CTX_McLaughlin_Crater_Mosaic.asset +++ /dev/null @@ -1,30 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "McLaughlin_Crater_CTX_BlockAdj_dd", - Name = [[MRO CTX, McLaughlin Crater Mosaic]], - FilePath = asset.localResource("McLaughlin_Crater_CTX_BlockAdj_dd.vrt"), - Description = [[This data was acquired using the Context Camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. - -The Context Camera (CTX) provides black-and-white images with resolutions up to 6 meters/pixel. It provides broader context maps for the higher resolution but narrower fields of view of the HiRISE camera, as well as for other instruments aboard MRO, and is useful for producing mosaicked images of larger areas on Mars' surface.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MRO CTX, McLaughlin Crater Mosaic]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=McLaughlin_Crater_CTX_BlockAdj_dd%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MRO CTX, McLaughlin Crater Mosaic layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_McLaughlin_Crater_Mosaic/McLaughlin_Crater_CTX_BlockAdj_dd.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_McLaughlin_Crater_Mosaic/McLaughlin_Crater_CTX_BlockAdj_dd.vrt deleted file mode 100644 index de4f333b8e..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_McLaughlin_Crater_Mosaic/McLaughlin_Crater_CTX_BlockAdj_dd.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - McLaughlin_Crater_CTX_BlockAdj_dd.wms - 1 - - - - 0 - - - - 0 - Green - - McLaughlin_Crater_CTX_BlockAdj_dd.wms - 2 - - - - 0 - - - - 0 - Blue - - McLaughlin_Crater_CTX_BlockAdj_dd.wms - 3 - - - - 0 - - - - Alpha - - McLaughlin_Crater_CTX_BlockAdj_dd.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Meridiani_Planum_-_Sinus_Meridiani_Mosaic/MRO_CTX_Meridiani_Planum_-_Sinus_Meridiani_Mosaic.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Meridiani_Planum_-_Sinus_Meridiani_Mosaic/MRO_CTX_Meridiani_Planum_-_Sinus_Meridiani_Mosaic.asset deleted file mode 100644 index 25133f171a..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Meridiani_Planum_-_Sinus_Meridiani_Mosaic/MRO_CTX_Meridiani_Planum_-_Sinus_Meridiani_Mosaic.asset +++ /dev/null @@ -1,30 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "S_Meridiani_Sinus_Planium_CTX_BlockAdj_dd", - Name = [[MRO CTX, Meridiani Planum - Sinus Meridiani Mosaic]], - FilePath = asset.localResource("S_Meridiani_Sinus_Planium_CTX_BlockAdj_dd.vrt"), - Description = [[This data was acquired using the Context Camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. - -The Context Camera (CTX) provides black-and-white images with resolutions up to 6 meters/pixel. It provides broader context maps for the higher resolution but narrower fields of view of the HiRISE camera, as well as for other instruments aboard MRO, and is useful for producing mosaicked images of larger areas on Mars' surface.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MRO CTX, Meridiani Planum - Sinus Meridiani Mosaic]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=S_Meridiani_Sinus_Planium_CTX_BlockAdj_dd%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MRO CTX, Meridiani Planum - Sinus Meridiani Mosaic layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Meridiani_Planum_-_Sinus_Meridiani_Mosaic/S_Meridiani_Sinus_Planium_CTX_BlockAdj_dd.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Meridiani_Planum_-_Sinus_Meridiani_Mosaic/S_Meridiani_Sinus_Planium_CTX_BlockAdj_dd.vrt deleted file mode 100644 index 2860cc2c47..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Meridiani_Planum_-_Sinus_Meridiani_Mosaic/S_Meridiani_Sinus_Planium_CTX_BlockAdj_dd.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - S_Meridiani_Sinus_Planium_CTX_BlockAdj_dd.wms - 1 - - - - 0 - - - - 0 - Green - - S_Meridiani_Sinus_Planium_CTX_BlockAdj_dd.wms - 2 - - - - 0 - - - - 0 - Blue - - S_Meridiani_Sinus_Planium_CTX_BlockAdj_dd.wms - 3 - - - - 0 - - - - Alpha - - S_Meridiani_Sinus_Planium_CTX_BlockAdj_dd.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Mosaic_Global_Uncontrolled_(Caltech)/CTX_beta01_uncontrolled_5m_Caltech.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Mosaic_Global_Uncontrolled_(Caltech)/CTX_beta01_uncontrolled_5m_Caltech.vrt deleted file mode 100644 index 65509136d8..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Mosaic_Global_Uncontrolled_(Caltech)/CTX_beta01_uncontrolled_5m_Caltech.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 - - 0 - Red - - CTX_beta01_uncontrolled_5m_Caltech.wms - 1 - - - - 0 - - - - 0 - Green - - CTX_beta01_uncontrolled_5m_Caltech.wms - 2 - - - - 0 - - - - 0 - Blue - - CTX_beta01_uncontrolled_5m_Caltech.wms - 3 - - - - 0 - - - - Alpha - - CTX_beta01_uncontrolled_5m_Caltech.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Mosaic_Global_Uncontrolled_(Caltech)/MRO_CTX_Mosaic_Global_Uncontrolled_(Caltech).asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Mosaic_Global_Uncontrolled_(Caltech)/MRO_CTX_Mosaic_Global_Uncontrolled_(Caltech).asset deleted file mode 100644 index f7fa2ae9b4..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Mosaic_Global_Uncontrolled_(Caltech)/MRO_CTX_Mosaic_Global_Uncontrolled_(Caltech).asset +++ /dev/null @@ -1,33 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "CTX_beta01_uncontrolled_5m_Caltech", - Name = [[MRO CTX, Mosaic Global Uncontrolled (Caltech)]], - FilePath = asset.localResource("CTX_beta01_uncontrolled_5m_Caltech.vrt"), - Description = [[This is a preliminary uncontrolled Context Camera (CTX) mosaic, called beta01, that the Murray Lab at Caltech has created to (1) generate a list of orbits that will be included in the final mosaic, (2) decipher challenges involved with generating a product of this unprecedented scale, and (3) solicit feedback from the Mars science community for how best to generate the mosaic in a way that helps as diverse a group of scientists as possible. The CTX camera, as managed by Malin Space Science Systems (MSSS), has attained near global coverage of Mars at the scale of ~5 m/pixel. All data used in the construction of this CTX global mosaic have been publicly released and are freely available via the NASA Planetary Data System. The Murray Lab/Caltech grants free use of the beta01 version of the mosaic for all purposes. When used, data credit should be: NASA/JPL/MSSS/The Caltech Murray Lab/Esri. This tiled web service, as hosted by Esri, is made available using lossy Jpeg compression at an 8 bit data range. - -To access Esri's Tiled Web Service for this mosaic, go to https://usgs.maps.arcgis.com/home/item.html?id=b164957a19544f55a8d6a001c952a590. To download the data, go to http://murray-lab.caltech.edu/CTX/. - - -Credit: NASA/JPL/MSSS/The Caltech Murray Lab/Esri]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MRO CTX, Mosaic Global Uncontrolled (Caltech)]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=CTX_beta01_uncontrolled_5m_Caltech%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MRO CTX, Mosaic Global Uncontrolled (Caltech) layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Mosaic_InSight/InSightCTXMosaic_112917.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Mosaic_InSight/InSightCTXMosaic_112917.vrt deleted file mode 100644 index 23baffe606..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Mosaic_InSight/InSightCTXMosaic_112917.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - InSightCTXMosaic_112917.wms - 1 - - - - 0 - - - - 0 - Green - - InSightCTXMosaic_112917.wms - 2 - - - - 0 - - - - 0 - Blue - - InSightCTXMosaic_112917.wms - 3 - - - - 0 - - - - Alpha - - InSightCTXMosaic_112917.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Mosaic_InSight/MRO_CTX_Mosaic_InSight.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Mosaic_InSight/MRO_CTX_Mosaic_InSight.asset deleted file mode 100644 index 441d289c17..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Mosaic_InSight/MRO_CTX_Mosaic_InSight.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "InSightCTXMosaic_112917", - Name = [[MRO CTX, Mosaic InSight]], - FilePath = asset.localResource("InSightCTXMosaic_112917.vrt"), - Description = [[This is a 5m/px CTX orthophoto mosaic of the InSight Landing Site. After being transformed using a spline transformation, each image had the exterior 100m of pixels removed and was detrended by fitting a third order polynomial and subtracting it from each image. All of the detrended images were then mosaiced into a single image and color balanced using Distributed Gradient-Domain processing.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MRO CTX, Mosaic InSight]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=InSightCTXMosaic_112917%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MRO CTX, Mosaic InSight layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Mosaic_Olympus_Mons/MRO_CTX_Mosaic_Olympus_Mons.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Mosaic_Olympus_Mons/MRO_CTX_Mosaic_Olympus_Mons.asset deleted file mode 100644 index 391f083926..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Mosaic_Olympus_Mons/MRO_CTX_Mosaic_Olympus_Mons.asset +++ /dev/null @@ -1,32 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "olympus_monseq", - Name = [[MRO CTX, Mosaic Olympus Mons]], - FilePath = asset.localResource("olympus_mons.eq.vrt"), - Description = [[This is a beta section of a CTX global mosaic produced by Jay Dickson. It was created by map projecting CT -X images with ISIS3, and color balancing/stitching the images with Adobe Photoshop. A footprint layer shows the seams - of image boundaries. -reference: -Dickson et al. 2018 LPSC programs with abstracts https://www.hou.usra.edu/meetings/lpsc2018/pdf/2480.pdf]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MRO CTX, Mosaic Olympus Mons]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=olympus_mons.eq%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MRO CTX, Mosaic Olympus Mons layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Mosaic_Olympus_Mons/olympus_mons.eq.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Mosaic_Olympus_Mons/olympus_mons.eq.vrt deleted file mode 100644 index fd422df636..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Mosaic_Olympus_Mons/olympus_mons.eq.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - olympus_mons.eq.wms - 1 - - - - 0 - - - - 0 - Green - - olympus_mons.eq.wms - 2 - - - - 0 - - - - 0 - Blue - - olympus_mons.eq.wms - 3 - - - - 0 - - - - Alpha - - olympus_mons.eq.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Newton_Crater_Mosaic/MRO_CTX_Newton_Crater_Mosaic.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Newton_Crater_Mosaic/MRO_CTX_Newton_Crater_Mosaic.asset deleted file mode 100644 index c26f3a4477..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Newton_Crater_Mosaic/MRO_CTX_Newton_Crater_Mosaic.asset +++ /dev/null @@ -1,30 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "Newton_Crater_CTX_BlockAdj_dd", - Name = [[MRO CTX, Newton Crater Mosaic]], - FilePath = asset.localResource("Newton_Crater_CTX_BlockAdj_dd.vrt"), - Description = [[This data was acquired using the Context Camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. - -The Context Camera (CTX) provides black-and-white images with resolutions up to 6 meters/pixel. It provides broader context maps for the higher resolution but narrower fields of view of the HiRISE camera, as well as for other instruments aboard MRO, and is useful for producing mosaicked images of larger areas on Mars' surface.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MRO CTX, Newton Crater Mosaic]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=Newton_Crater_CTX_BlockAdj_dd%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MRO CTX, Newton Crater Mosaic layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Newton_Crater_Mosaic/Newton_Crater_CTX_BlockAdj_dd.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Newton_Crater_Mosaic/Newton_Crater_CTX_BlockAdj_dd.vrt deleted file mode 100644 index 0109b2c507..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Newton_Crater_Mosaic/Newton_Crater_CTX_BlockAdj_dd.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - Newton_Crater_CTX_BlockAdj_dd.wms - 1 - - - - 0 - - - - 0 - Green - - Newton_Crater_CTX_BlockAdj_dd.wms - 2 - - - - 0 - - - - 0 - Blue - - Newton_Crater_CTX_BlockAdj_dd.wms - 3 - - - - 0 - - - - Alpha - - Newton_Crater_CTX_BlockAdj_dd.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Noctis_Landing_Mosaic/MRO_CTX_Noctis_Landing_Mosaic.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Noctis_Landing_Mosaic/MRO_CTX_Noctis_Landing_Mosaic.asset deleted file mode 100644 index d11a56bce8..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Noctis_Landing_Mosaic/MRO_CTX_Noctis_Landing_Mosaic.asset +++ /dev/null @@ -1,30 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "Noactis_Landing_CTX_BlockAdj_dd", - Name = [[MRO CTX, Noctis Landing Mosaic]], - FilePath = asset.localResource("Noactis_Landing_CTX_BlockAdj_dd.vrt"), - Description = [[This data was acquired using the Context Camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. - -The Context Camera (CTX) provides black-and-white images with resolutions up to 6 meters/pixel. It provides broader context maps for the higher resolution but narrower fields of view of the HiRISE camera, as well as for other instruments aboard MRO, and is useful for producing mosaicked images of larger areas on Mars' surface.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MRO CTX, Noctis Landing Mosaic]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=Noactis_Landing_CTX_BlockAdj_dd%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MRO CTX, Noctis Landing Mosaic layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Noctis_Landing_Mosaic/Noactis_Landing_CTX_BlockAdj_dd.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Noctis_Landing_Mosaic/Noactis_Landing_CTX_BlockAdj_dd.vrt deleted file mode 100644 index 51bc16ebbc..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Noctis_Landing_Mosaic/Noactis_Landing_CTX_BlockAdj_dd.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - Noactis_Landing_CTX_BlockAdj_dd.wms - 1 - - - - 0 - - - - 0 - Green - - Noactis_Landing_CTX_BlockAdj_dd.wms - 2 - - - - 0 - - - - 0 - Blue - - Noactis_Landing_CTX_BlockAdj_dd.wms - 3 - - - - 0 - - - - Alpha - - Noactis_Landing_CTX_BlockAdj_dd.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Protonilus_Mensae_Mosaic/MRO_CTX_Protonilus_Mensae_Mosaic.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Protonilus_Mensae_Mosaic/MRO_CTX_Protonilus_Mensae_Mosaic.asset deleted file mode 100644 index f360b4e1cc..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Protonilus_Mensae_Mosaic/MRO_CTX_Protonilus_Mensae_Mosaic.asset +++ /dev/null @@ -1,30 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "Protonilus_CTX_BlockAdj_dd", - Name = [[MRO CTX, Protonilus Mensae Mosaic]], - FilePath = asset.localResource("Protonilus_CTX_BlockAdj_dd.vrt"), - Description = [[This data was acquired using the Context Camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. - -The Context Camera (CTX) provides black-and-white images with resolutions up to 6 meters/pixel. It provides broader context maps for the higher resolution but narrower fields of view of the HiRISE camera, as well as for other instruments aboard MRO, and is useful for producing mosaicked images of larger areas on Mars' surface.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MRO CTX, Protonilus Mensae Mosaic]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=Protonilus_CTX_BlockAdj_dd%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MRO CTX, Protonilus Mensae Mosaic layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Protonilus_Mensae_Mosaic/Protonilus_CTX_BlockAdj_dd.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Protonilus_Mensae_Mosaic/Protonilus_CTX_BlockAdj_dd.vrt deleted file mode 100644 index f6f8aa69ef..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Protonilus_Mensae_Mosaic/Protonilus_CTX_BlockAdj_dd.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - Protonilus_CTX_BlockAdj_dd.wms - 1 - - - - 0 - - - - 0 - Green - - Protonilus_CTX_BlockAdj_dd.wms - 2 - - - - 0 - - - - 0 - Blue - - Protonilus_CTX_BlockAdj_dd.wms - 3 - - - - 0 - - - - Alpha - - Protonilus_CTX_BlockAdj_dd.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Southern_Nectaris_Fossae_Mosaic/MRO_CTX_Southern_Nectaris_Fossae_Mosaic.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Southern_Nectaris_Fossae_Mosaic/MRO_CTX_Southern_Nectaris_Fossae_Mosaic.asset deleted file mode 100644 index 24614a788f..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Southern_Nectaris_Fossae_Mosaic/MRO_CTX_Southern_Nectaris_Fossae_Mosaic.asset +++ /dev/null @@ -1,30 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "S_Nectaris_Fossae_CTX_BlockAdj_dd", - Name = [[MRO CTX, Southern Nectaris Fossae Mosaic]], - FilePath = asset.localResource("S_Nectaris_Fossae_CTX_BlockAdj_dd.vrt"), - Description = [[This data was acquired using the Context Camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. - -The Context Camera (CTX) provides black-and-white images with resolutions up to 6 meters/pixel. It provides broader context maps for the higher resolution but narrower fields of view of the HiRISE camera, as well as for other instruments aboard MRO, and is useful for producing mosaicked images of larger areas on Mars' surface.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MRO CTX, Southern Nectaris Fossae Mosaic]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=S_Nectaris_Fossae_CTX_BlockAdj_dd%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MRO CTX, Southern Nectaris Fossae Mosaic layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Southern_Nectaris_Fossae_Mosaic/S_Nectaris_Fossae_CTX_BlockAdj_dd.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Southern_Nectaris_Fossae_Mosaic/S_Nectaris_Fossae_CTX_BlockAdj_dd.vrt deleted file mode 100644 index c28e7e26c4..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Southern_Nectaris_Fossae_Mosaic/S_Nectaris_Fossae_CTX_BlockAdj_dd.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - S_Nectaris_Fossae_CTX_BlockAdj_dd.wms - 1 - - - - 0 - - - - 0 - Green - - S_Nectaris_Fossae_CTX_BlockAdj_dd.wms - 2 - - - - 0 - - - - 0 - Blue - - S_Nectaris_Fossae_CTX_BlockAdj_dd.wms - 3 - - - - 0 - - - - Alpha - - S_Nectaris_Fossae_CTX_BlockAdj_dd.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Victoria_Crater_DEM/DEM_1m_VictoriaCrater.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Victoria_Crater_DEM/DEM_1m_VictoriaCrater.vrt deleted file mode 100644 index ef079a4567..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Victoria_Crater_DEM/DEM_1m_VictoriaCrater.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.1457672119140625e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.1457672119140625e-05 - - 0 - Red - - DEM_1m_VictoriaCrater.wms - 1 - - - - 0 - - - - 0 - Green - - DEM_1m_VictoriaCrater.wms - 2 - - - - 0 - - - - 0 - Blue - - DEM_1m_VictoriaCrater.wms - 3 - - - - 0 - - - - Alpha - - DEM_1m_VictoriaCrater.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Victoria_Crater_DEM/MRO_CTX_Victoria_Crater_DEM.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Victoria_Crater_DEM/MRO_CTX_Victoria_Crater_DEM.asset deleted file mode 100644 index 6f23654fb9..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Victoria_Crater_DEM/MRO_CTX_Victoria_Crater_DEM.asset +++ /dev/null @@ -1,30 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "DEM_1m_VictoriaCrater", - Name = [[MRO CTX, Victoria Crater DEM]], - FilePath = asset.localResource("DEM_1m_VictoriaCrater.vrt"), - Description = [[This data was acquired using the Context Camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. - -The Context Camera (CTX) provides black-and-white images with resolutions up to 6 meters/pixel. It provides broader context maps for the higher resolution but narrower fields of view of the HiRISE camera, as well as for other instruments aboard MRO, and is useful for producing mosaicked images of larger areas on Mars' surface.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MRO CTX, Victoria Crater DEM]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=DEM_1m_VictoriaCrater%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MRO CTX, Victoria Crater DEM layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Viking_1_Landing_Site_Mosaic/MRO_CTX_Viking_1_Landing_Site_Mosaic.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Viking_1_Landing_Site_Mosaic/MRO_CTX_Viking_1_Landing_Site_Mosaic.asset deleted file mode 100644 index 2696dee8c5..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Viking_1_Landing_Site_Mosaic/MRO_CTX_Viking_1_Landing_Site_Mosaic.asset +++ /dev/null @@ -1,30 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "Viking_CTX_BlockAdj_dd", - Name = [[MRO CTX, Viking 1 Landing Site Mosaic]], - FilePath = asset.localResource("Viking_CTX_BlockAdj_dd.vrt"), - Description = [[This data was acquired using the Context Camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. - -The Context Camera (CTX) provides black-and-white images with resolutions up to 6 meters/pixel. It provides broader context maps for the higher resolution but narrower fields of view of the HiRISE camera, as well as for other instruments aboard MRO, and is useful for producing mosaicked images of larger areas on Mars' surface.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MRO CTX, Viking 1 Landing Site Mosaic]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=Viking_CTX_BlockAdj_dd%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MRO CTX, Viking 1 Landing Site Mosaic layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Viking_1_Landing_Site_Mosaic/Viking_CTX_BlockAdj_dd.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Viking_1_Landing_Site_Mosaic/Viking_CTX_BlockAdj_dd.vrt deleted file mode 100644 index c1e4b775c8..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Viking_1_Landing_Site_Mosaic/Viking_CTX_BlockAdj_dd.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - Viking_CTX_BlockAdj_dd.wms - 1 - - - - 0 - - - - 0 - Green - - Viking_CTX_BlockAdj_dd.wms - 2 - - - - 0 - - - - 0 - Blue - - Viking_CTX_BlockAdj_dd.wms - 3 - - - - 0 - - - - Alpha - - Viking_CTX_BlockAdj_dd.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Viking_2_Landing_Site_Mosaic/MRO_CTX_Viking_2_Landing_Site_Mosaic.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Viking_2_Landing_Site_Mosaic/MRO_CTX_Viking_2_Landing_Site_Mosaic.asset deleted file mode 100644 index 98ee00d031..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Viking_2_Landing_Site_Mosaic/MRO_CTX_Viking_2_Landing_Site_Mosaic.asset +++ /dev/null @@ -1,30 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "b16_015887_2280_xn_48n225w", - Name = [[MRO CTX, Viking 2 Landing Site Mosaic]], - FilePath = asset.localResource("b16_015887_2280_xn_48n225w.vrt"), - Description = [[This data was acquired using the Context Camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. - -The Context Camera (CTX) provides black-and-white images with resolutions up to 6 meters/pixel. It provides broader context maps for the higher resolution but narrower fields of view of the HiRISE camera, as well as for other instruments aboard MRO, and is useful for producing mosaicked images of larger areas on Mars' surface.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MRO CTX, Viking 2 Landing Site Mosaic]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=b16_015887_2280_xn_48n225w%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MRO CTX, Viking 2 Landing Site Mosaic layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Viking_2_Landing_Site_Mosaic/b16_015887_2280_xn_48n225w.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Viking_2_Landing_Site_Mosaic/b16_015887_2280_xn_48n225w.vrt deleted file mode 100644 index a804b27fbe..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Viking_2_Landing_Site_Mosaic/b16_015887_2280_xn_48n225w.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - b16_015887_2280_xn_48n225w.wms - 1 - - - - 0 - - - - 0 - Green - - b16_015887_2280_xn_48n225w.wms - 2 - - - - 0 - - - - 0 - Blue - - b16_015887_2280_xn_48n225w.wms - 3 - - - - 0 - - - - Alpha - - b16_015887_2280_xn_48n225w.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_West_Candor_Chasma_Mosaic/MRO_CTX_West_Candor_Chasma_Mosaic.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_West_Candor_Chasma_Mosaic/MRO_CTX_West_Candor_Chasma_Mosaic.asset deleted file mode 100644 index 2ed2fcca8e..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_West_Candor_Chasma_Mosaic/MRO_CTX_West_Candor_Chasma_Mosaic.asset +++ /dev/null @@ -1,30 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "West_Candor_Chasma_longlat", - Name = [[MRO CTX, West Candor Chasma Mosaic]], - FilePath = asset.localResource("West_Candor_Chasma_longlat.vrt"), - Description = [[This data was acquired using the Context Camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. - -The Context Camera (CTX) provides black-and-white images with resolutions up to 6 meters/pixel. It provides broader context maps for the higher resolution but narrower fields of view of the HiRISE camera, as well as for other instruments aboard MRO, and is useful for producing mosaicked images of larger areas on Mars' surface.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MRO CTX, West Candor Chasma Mosaic]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=West_Candor_Chasma_longlat%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MRO CTX, West Candor Chasma Mosaic layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_West_Candor_Chasma_Mosaic/West_Candor_Chasma_longlat.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_West_Candor_Chasma_Mosaic/West_Candor_Chasma_longlat.vrt deleted file mode 100644 index 4126d40e41..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_West_Candor_Chasma_Mosaic/West_Candor_Chasma_longlat.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - West_Candor_Chasma_longlat.wms - 1 - - - - 0 - - - - 0 - Green - - West_Candor_Chasma_longlat.wms - 2 - - - - 0 - - - - 0 - Blue - - West_Candor_Chasma_longlat.wms - 3 - - - - 0 - - - - Alpha - - West_Candor_Chasma_longlat.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_West_Candor_DEM/MRO_CTX_West_Candor_DEM.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_West_Candor_DEM/MRO_CTX_West_Candor_DEM.asset deleted file mode 100644 index 2f99e75227..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_West_Candor_DEM/MRO_CTX_West_Candor_DEM.asset +++ /dev/null @@ -1,30 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "West_Candor_Chasma_DEM_longlat", - Name = [[MRO CTX, West Candor DEM]], - FilePath = asset.localResource("West_Candor_Chasma_DEM_longlat.vrt"), - Description = [[This data was acquired using the Context Camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. - -The Context Camera (CTX) provides black-and-white images with resolutions up to 6 meters/pixel. It provides broader context maps for the higher resolution but narrower fields of view of the HiRISE camera, as well as for other instruments aboard MRO, and is useful for producing mosaicked images of larger areas on Mars' surface.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MRO CTX, West Candor DEM]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=West_Candor_Chasma_DEM_longlat%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MRO CTX, West Candor DEM layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_West_Candor_DEM/West_Candor_Chasma_DEM_longlat.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_West_Candor_DEM/West_Candor_Chasma_DEM_longlat.vrt deleted file mode 100644 index c595c8f89d..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_West_Candor_DEM/West_Candor_Chasma_DEM_longlat.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - West_Candor_Chasma_DEM_longlat.wms - 1 - - - - 0 - - - - 0 - Green - - West_Candor_Chasma_DEM_longlat.wms - 2 - - - - 0 - - - - 0 - Blue - - West_Candor_Chasma_DEM_longlat.wms - 3 - - - - 0 - - - - Alpha - - West_Candor_Chasma_DEM_longlat.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Western_Noachis_Terra_Mosaic/MRO_CTX_Western_Noachis_Terra_Mosaic.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Western_Noachis_Terra_Mosaic/MRO_CTX_Western_Noachis_Terra_Mosaic.asset deleted file mode 100644 index 881a56dbe4..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Western_Noachis_Terra_Mosaic/MRO_CTX_Western_Noachis_Terra_Mosaic.asset +++ /dev/null @@ -1,30 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "Noachis_CTX_BlockAdj_dd", - Name = [[MRO CTX, Western Noachis Terra Mosaic]], - FilePath = asset.localResource("Noachis_CTX_BlockAdj_dd.vrt"), - Description = [[This data was acquired using the Context Camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. - -The Context Camera (CTX) provides black-and-white images with resolutions up to 6 meters/pixel. It provides broader context maps for the higher resolution but narrower fields of view of the HiRISE camera, as well as for other instruments aboard MRO, and is useful for producing mosaicked images of larger areas on Mars' surface.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MRO CTX, Western Noachis Terra Mosaic]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=Noachis_CTX_BlockAdj_dd%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MRO CTX, Western Noachis Terra Mosaic layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Western_Noachis_Terra_Mosaic/Noachis_CTX_BlockAdj_dd.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Western_Noachis_Terra_Mosaic/Noachis_CTX_BlockAdj_dd.vrt deleted file mode 100644 index 2fc87d95a0..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Western_Noachis_Terra_Mosaic/Noachis_CTX_BlockAdj_dd.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - Noachis_CTX_BlockAdj_dd.wms - 1 - - - - 0 - - - - 0 - Green - - Noachis_CTX_BlockAdj_dd.wms - 2 - - - - 0 - - - - 0 - Blue - - Noachis_CTX_BlockAdj_dd.wms - 3 - - - - 0 - - - - Alpha - - Noachis_CTX_BlockAdj_dd.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Zephyria_Planum_Mosaic/MRO_CTX_Zephyria_Planum_Mosaic.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Zephyria_Planum_Mosaic/MRO_CTX_Zephyria_Planum_Mosaic.asset deleted file mode 100644 index 99d9bbc1e4..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Zephyria_Planum_Mosaic/MRO_CTX_Zephyria_Planum_Mosaic.asset +++ /dev/null @@ -1,30 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "Zephyria_CTX_BlockAdj_dd", - Name = [[MRO CTX, Zephyria Planum Mosaic]], - FilePath = asset.localResource("Zephyria_CTX_BlockAdj_dd.vrt"), - Description = [[This data was acquired using the Context Camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. - -The Context Camera (CTX) provides black-and-white images with resolutions up to 6 meters/pixel. It provides broader context maps for the higher resolution but narrower fields of view of the HiRISE camera, as well as for other instruments aboard MRO, and is useful for producing mosaicked images of larger areas on Mars' surface.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MRO CTX, Zephyria Planum Mosaic]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=Zephyria_CTX_BlockAdj_dd%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MRO CTX, Zephyria Planum Mosaic layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Zephyria_Planum_Mosaic/Zephyria_CTX_BlockAdj_dd.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Zephyria_Planum_Mosaic/Zephyria_CTX_BlockAdj_dd.vrt deleted file mode 100644 index 6c0e00cc50..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_CTX_Zephyria_Planum_Mosaic/Zephyria_CTX_BlockAdj_dd.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - Zephyria_CTX_BlockAdj_dd.wms - 1 - - - - 0 - - - - 0 - Green - - Zephyria_CTX_BlockAdj_dd.wms - 2 - - - - 0 - - - - 0 - Blue - - Zephyria_CTX_BlockAdj_dd.wms - 3 - - - - 0 - - - - Alpha - - Zephyria_CTX_BlockAdj_dd.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE.asset new file mode 100644 index 0000000000..1a153032de --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE.asset @@ -0,0 +1,298 @@ +-- This file was automatically generated using a script found at +-- https://github.com/OpenSpace/scripts/treks-to-openspace. See the README.md file +-- in that repository for more information on how to run the script to update these +-- files. In particular in the case of errors, prefer to change that script rather +-- than the individual files + +local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier + +local treks_DTEEC_001918_1735_001984_1735_U01_longlat = { + Identifier = "DTEEC_001918_1735_001984_1735_U01_longlat", + Name = [[MRO HiRISE, 001918_1735_001984_1735 DEM]], + FilePath = asset.localResource("MRO_HiRISE/001918_1735_001984_1735_DEM.vrt"), + Description = [[This data was acquired using the High Resolution Imaging Science Experiment camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. + +The High Resolution Imaging Science Experiment (HiRISE) camera utilizes a 0.5-meter telescope to obtain very high resolution images of Martian landforms and terrains. From an altitude of 300 km, HiRISE has a resolution of 0.3 meters per pixel. In addition to being used for getting very detailed images of surface features, pairs of slightly offset HiRISE images are combined to produce precise digital elevation models of Martian topography.]] +} + +local treks_DTEED_042014_1760_042647_1760_A01 = { + Identifier = "DTEED_042014_1760_042647_1760_A01", + Name = [[MRO HiRISE, 042014_1760_042647_1760 DEM]], + FilePath = asset.localResource("MRO_HiRISE/042014_1760_042647_1760_DEM.vrt"), + Description = [[This data was acquired using the High Resolution Imaging Science Experiment camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. + +The High Resolution Imaging Science Experiment (HiRISE) camera utilizes a 0.5-meter telescope to obtain very high resolution images of Martian landforms and terrains. From an altitude of 300 km, HiRISE has a resolution of 0.3 meters per pixel. In addition to being used for getting very detailed images of surface features, pairs of slightly offset HiRISE images are combined to produce precise digital elevation models of Martian topography.]] +} + +local treks_DTEED_042753_1930_042252_1930_A01 = { + Identifier = "DTEED_042753_1930_042252_1930_A01", + Name = [[MRO HiRISE, 042753_1930_042252_1930 DEM]], + FilePath = asset.localResource("MRO_HiRISE/042753_1930_042252_1930_DEM.vrt"), + Description = [[This data was acquired using the High Resolution Imaging Science Experiment camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. + +The High Resolution Imaging Science Experiment (HiRISE) camera utilizes a 0.5-meter telescope to obtain very high resolution images of Martian landforms and terrains. From an altitude of 300 km, HiRISE has a resolution of 0.3 meters per pixel. In addition to being used for getting very detailed images of surface features, pairs of slightly offset HiRISE images are combined to produce precise digital elevation models of Martian topography.]] +} + +local treks_h1183_0000_da4 = { + Identifier = "h1183_0000_da4", + Name = [[MRO HiRISE, 1183_0000 DEM]], + FilePath = asset.localResource("MRO_HiRISE/1183_0000_DEM.vrt"), + Description = [[This data was acquired using the High Resolution Imaging Science Experiment camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. + +The High Resolution Imaging Science Experiment (HiRISE) camera utilizes a 0.5-meter telescope to obtain very high resolution images of Martian landforms and terrains. From an altitude of 300 km, HiRISE has a resolution of 0.3 meters per pixel. In addition to being used for getting very detailed images of surface features, pairs of slightly offset HiRISE images are combined to produce precise digital elevation models of Martian topography.]] +} + +local treks_HiRISE_ColumbiaHills = { + Identifier = "HiRISE_ColumbiaHills", + Name = [[MRO HiRISE, Columbia Hills Mosaic]], + FilePath = asset.localResource("MRO_HiRISE/Columbia_Hills_Mosaic.vrt"), + Description = [[This data was acquired using the High Resolution Imaging Science Experiment camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. + +The High Resolution Imaging Science Experiment (HiRISE) camera utilizes a 0.5-meter telescope to obtain very high resolution images of Martian landforms and terrains. From an altitude of 300 km, HiRISE has a resolution of 0.3 meters per pixel. In addition to being used for getting very detailed images of surface features, pairs of slightly offset HiRISE images are combined to produce precise digital elevation models of Martian topography.]] +} + +local treks_curiosity_hirise_mosaic = { + Identifier = "curiosity_hirise_mosaic", + Name = [[MRO HiRISE, Curiosity Roving Site Mosaic]], + FilePath = asset.localResource("MRO_HiRISE/Curiosity_Roving_Site_Mosaic.vrt"), + Description = [[This data was acquired using the High Resolution Imaging Science Experiment camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. + +The High Resolution Imaging Science Experiment (HiRISE) camera utilizes a 0.5-meter telescope to obtain very high resolution images of Martian landforms and terrains. From an altitude of 300 km, HiRISE has a resolution of 0.3 meters per pixel. In addition to being used for getting very detailed images of surface features, pairs of slightly offset HiRISE images are combined to produce precise digital elevation models of Martian topography.]] +} + +local treks_Gale_DEM_SMG_1m = { + Identifier = "Gale_DEM_SMG_1m", + Name = [[MRO HiRISE, Gale Crater DEM]], + FilePath = asset.localResource("MRO_HiRISE/Gale_Crater_DEM.vrt"), + Description = [[This data was acquired using the High Resolution Imaging Science Experiment camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. + +The High Resolution Imaging Science Experiment (HiRISE) camera utilizes a 0.5-meter telescope to obtain very high resolution images of Martian landforms and terrains. From an altitude of 300 km, HiRISE has a resolution of 0.3 meters per pixel. In addition to being used for getting very detailed images of surface features, pairs of slightly offset HiRISE images are combined to produce precise digital elevation models of Martian topography.]] +} + +local treks_ESP_042252_1930_RED_B_01_ORTHO = { + Identifier = "ESP_042252_1930_RED_B_01_ORTHO", + Name = [[MRO HiRISE, Marth Crater West Rim Mosaic]], + FilePath = asset.localResource("MRO_HiRISE/Marth_Crater_West_Rim_Mosaic.vrt"), + Description = [[This data was acquired using the High Resolution Imaging Science Experiment camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. + +The High Resolution Imaging Science Experiment (HiRISE) camera utilizes a 0.5-meter telescope to obtain very high resolution images of Martian landforms and terrains. From an altitude of 300 km, HiRISE has a resolution of 0.3 meters per pixel. In addition to being used for getting very detailed images of surface features, pairs of slightly offset HiRISE images are combined to produce precise digital elevation models of Martian topography.]] +} + +local treks_ESP_040776_2115_RED_A_01_ORTHO = { + Identifier = "ESP_040776_2115_RED_A_01_ORTHO", + Name = [[MRO HiRISE, Martian Ares 3 Landing Site Mosaic]], + FilePath = asset.localResource("MRO_HiRISE/Martian_Ares_3_Landing_Site_Mosaic.vrt"), + Description = [[This data was acquired using the High Resolution Imaging Science Experiment camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. + +The High Resolution Imaging Science Experiment (HiRISE) camera utilizes a 0.5-meter telescope to obtain very high resolution images of Martian landforms and terrains. From an altitude of 300 km, HiRISE has a resolution of 0.3 meters per pixel. In addition to being used for getting very detailed images of surface features, pairs of slightly offset HiRISE images are combined to produce precise digital elevation models of Martian topography.]] +} + +local treks_ESP_042647_1760_RED_B_01_ORTHO = { + Identifier = "ESP_042647_1760_RED_B_01_ORTHO", + Name = [[MRO HiRISE, Martian Ares 4 Landing Site Mosaic]], + FilePath = asset.localResource("MRO_HiRISE/Martian_Ares_4_Landing_Site_Mosaic.vrt"), + Description = [[This data was acquired using the High Resolution Imaging Science Experiment camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. + +The High Resolution Imaging Science Experiment (HiRISE) camera utilizes a 0.5-meter telescope to obtain very high resolution images of Martian landforms and terrains. From an altitude of 300 km, HiRISE has a resolution of 0.3 meters per pixel. In addition to being used for getting very detailed images of surface features, pairs of slightly offset HiRISE images are combined to produce precise digital elevation models of Martian topography.]] +} + +local treks_CLH_Visible_Mosaic_HiRISE_CTX_HRSC_GCS_MARS_07102018 = { + Identifier = "CLH_Visible_Mosaic_HiRISE_CTX_HRSC_GCS_MARS_07102018", + Name = [[MRO HiRISE, Mosaic Columbia Hills]], + FilePath = asset.localResource("MRO_HiRISE/Mosaic_Columbia_Hills.vrt"), + Description = [[Preliminary visible orthoimage mosaic for Columbia Hills candidate landing site for the Mars 2020 rover. +HRSC orthoimages and DEMs were downloaded from the Planetary Data System archives. HiRISE and CTX orthoimages and DEMs were created by the USGS Astrogeology and HiRISE teams, +and compiled and georeferenced at JPL/Caltech by the Advanced Laboratory for Landing Site Terrain Analysis and Reconnaissance (ALLSTAR) group including Nathan Williams, +Heather Lethcoe-Wilson, Lauren Berger, Marshall Trautman, and Matt Golombek for the M2020 Council of Terrains. These files are for discussion and planning purposes +only. +Processing Notes: +Georeferencing: +HRSC orthos are well-coregistered to the community-standard MOLA global topography products, and CTX orthos are well-coregistered to the HRSC orthos. +Tie points were recorded at small craters visible in both HiRISE and CTX images, and a first-order transformation was used to rectify the HiRISE. + +Projection and Coordinate System: +Former mosaic basemaps for M2020 used a Mars equirectangular projection with a standard parallel of 0 (also called Plate Carree), +but this caused a ~5% latitude vs longitude distortion at the remaining 3 candidate landing sites such that true circles would appear elliptical. +In this new version of basemaps, we use a Mars equirectangular projection with customized standard parallels for each site to reduce distortion to <1%. +Specifically, Columbia Hills uses a standard parallel of -14.5 degrees, while Jezero and NE Syrtis both have a standard parallel of +18 degrees. Projection (.prj) files are included with this delivery. +When analyzing images, please ensure that the correct projection system is being used. For example, there is a known issue with Matlab where reading images in as a geotiff may automatically assign an +incorrect projection without the specified standard parallel, which then produces distorted linear (in meters) x/y values.]] +} + +local treks_ESP_058005_1845_RED_spline_rect = { + Identifier = "ESP_058005_1845_RED_spline_rect", + Name = [[MRO HiRISE, Mosaic Insight Landing Site]], + FilePath = asset.localResource("MRO_HiRISE/Mosaic_Insight_Landing_Site.vrt"), + Description = [[This image (ESP_058005_1845) was acquired with the Mars HiRISE Camera aboard NASA’s Mars Reconnaissance Orbiter. It shows the Mars InSight lander (4.5024°, 135.62345°), heat shield (4.50834°, 135.63481°), and backshell with parachute (4.49415°, 135.62778°). The image was acquired on December 11, 2018 at 14:02 local Mars time. The image is centered at 4.495° lat and 135.623° lon. The spacecraft altitude was 271.5 km. Original image scale range is 27.9 cm/pixel (with 1 x 1 binning) so objects about 84 cm across are resolved. The emission angle was 13.7°, phase angle was 51.0°, and solar incidence angle was 39°, with the Sun about 51° above the horizon. Solar longitude was 304.3°, Northern Winter.]] +} + +local treks_NES_JEZ_MID_Visible_Mosaic_HiRISE_CTX_HRSC_GCS_MARS_07102018 = { + Identifier = "NES_JEZ_MID_Visible_Mosaic_HiRISE_CTX_HRSC_GCS_MARS_07102018", + Name = [[MRO HiRISE, Mosaic Jezero NE Syrtis Midway]], + FilePath = asset.localResource("MRO_HiRISE/Mosaic_Jezero_NE_Syrtis_Midway.vrt"), + Description = [[Preliminary visible orthoimage mosaic for Jezero Crater, NE Syrtis, and Midway candidate landing sites for the Mars 2020 rover. +HRSC orthoimages and DEMs were downloaded from the Planetary Data System archives. HiRISE and CTX orthoimages and DEMs were created by the USGS Astrogeology and HiRISE teams, +and compiled and georeferenced at JPL/Caltech by the Advanced Laboratory for Landing Site Terrain Analysis and Reconnaissance (ALLSTAR) group including Nathan Williams, +Heather Lethcoe-Wilson, Lauren Berger, Marshall Trautman, and Matt Golombek for the M2020 Council of Terrains. These files are for discussion and planning purposes +only. +Processing Notes: +Georeferencing: +HRSC orthos are well-coregistered to the community-standard MOLA global topography products, and CTX orthos are well-coregistered to the HRSC orthos. +Tie points were recorded at small craters visible in both HiRISE and CTX images, and a first-order transformation was used to rectify the HiRISE. + +Projection and Coordinate System: +Former mosaic basemaps for M2020 used a Mars equirectangular projection with a standard parallel of 0 (also called Plate Carree), +but this caused a ~5% latitude vs longitude distortion at the remaining 3 candidate landing sites such that true circles would appear elliptical. +In this new version of basemaps, we use a Mars equirectangular projection with customized standard parallels for each site to reduce distortion to <1%. +Specifically, Columbia Hills uses a standard parallel of -14.5 degrees, while Jezero and NE Syrtis both have a standard parallel of +18 degrees. Projection (.prj) files are included with this delivery. +When analyzing images, please ensure that the correct projection system is being used. For example, there is a known issue with Matlab where reading images in as a geotiff may automatically assign an +incorrect projection without the specified standard parallel, which then produces distorted linear (in meters) x/y values.]] +} + +local treks_HiRISE_Opportunity = { + Identifier = "HiRISE_Opportunity", + Name = [[MRO HiRISE, Mosaic Opportunity]], + FilePath = asset.localResource("MRO_HiRISE/Mosaic_Opportunity.vrt"), + Description = [[This data was acquired using the High Resolution Imaging Science Experiment camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. The High Resolution Imaging Science Experiment (HiRISE) camera utilizes a 0.5-meter telescope to obtain very high resolution images of Martian landforms and terrains. From an altitude of 300 km, HiRISE has a resolution of 0.3 meters per pixel. In addition to being used for getting very detailed images of surface features, pairs of slightly offset HiRISE images are combined to produce precise digital elevation models of Martian topography.]] +} + +local treks_opportunity_hirise_mosaic = { + Identifier = "opportunity_hirise_mosaic", + Name = [[MRO HiRISE, Opportunity Roving Site Mosaic]], + FilePath = asset.localResource("MRO_HiRISE/Opportunity_Roving_Site_Mosaic.vrt"), + Description = [[This data was acquired using the High Resolution Imaging Science Experiment camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. + +The High Resolution Imaging Science Experiment (HiRISE) camera utilizes a 0.5-meter telescope to obtain very high resolution images of Martian landforms and terrains. From an altitude of 300 km, HiRISE has a resolution of 0.3 meters per pixel. In addition to being used for getting very detailed images of surface features, pairs of slightly offset HiRISE images are combined to produce precise digital elevation models of Martian topography.]] +} + +local treks_phoenix_hirise_mosaic = { + Identifier = "phoenix_hirise_mosaic", + Name = [[MRO HiRISE, Phoenix Landing Site Mosaic]], + FilePath = asset.localResource("MRO_HiRISE/Phoenix_Landing_Site_Mosaic.vrt"), + Description = [[This data was acquired using the High Resolution Imaging Science Experiment camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. + +The High Resolution Imaging Science Experiment (HiRISE) camera utilizes a 0.5-meter telescope to obtain very high resolution images of Martian landforms and terrains. From an altitude of 300 km, HiRISE has a resolution of 0.3 meters per pixel. In addition to being used for getting very detailed images of surface features, pairs of slightly offset HiRISE images are combined to produce precise digital elevation models of Martian topography.]] +} + +local treks_sojourner_hirise_mosaic = { + Identifier = "sojourner_hirise_mosaic", + Name = [[MRO HiRISE, Sojourner Roving Site Mosaic]], + FilePath = asset.localResource("MRO_HiRISE/Sojourner_Roving_Site_Mosaic.vrt"), + Description = [[This data was acquired using the High Resolution Imaging Science Experiment camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. + +The High Resolution Imaging Science Experiment (HiRISE) camera utilizes a 0.5-meter telescope to obtain very high resolution images of Martian landforms and terrains. From an altitude of 300 km, HiRISE has a resolution of 0.3 meters per pixel. In addition to being used for getting very detailed images of surface features, pairs of slightly offset HiRISE images are combined to produce precise digital elevation models of Martian topography.]] +} + +local treks_PSP_001918_1735_RED_A_01_ORTHO_longlat = { + Identifier = "PSP_001918_1735_RED_A_01_ORTHO_longlat", + Name = [[MRO HiRISE, Southwest Candor Chasma Mosaic]], + FilePath = asset.localResource("MRO_HiRISE/Southwest_Candor_Chasma_Mosaic.vrt"), + Description = [[This data was acquired using the High Resolution Imaging Science Experiment camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. The High Resolution Imaging Science Experiment (HiRISE) camera utilizes a 0.5-meter telescope to obtain very high resolution images of Martian landforms and terrains. From an altitude of 300 km, HiRISE has a resolution of 0.3 meters per pixel. In addition to being used for getting very detailed images of surface features, pairs of slightly offset HiRISE images are combined to produce precise digital elevation models of Martian topography.]] +} + +local treks_spirit_hirise_mosaic = { + Identifier = "spirit_hirise_mosaic", + Name = [[MRO HiRISE, Spirit Roving Site Mosaic]], + FilePath = asset.localResource("MRO_HiRISE/Spirit_Roving_Site_Mosaic.vrt"), + Description = [[This data was acquired using the High Resolution Imaging Science Experiment camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. + +The High Resolution Imaging Science Experiment (HiRISE) camera utilizes a 0.5-meter telescope to obtain very high resolution images of Martian landforms and terrains. From an altitude of 300 km, HiRISE has a resolution of 0.3 meters per pixel. In addition to being used for getting very detailed images of surface features, pairs of slightly offset HiRISE images are combined to produce precise digital elevation models of Martian topography.]] +} + +local treks_PSP_001521_2025_RED = { + Identifier = "PSP_001521_2025_RED", + Name = [[MRO HiRISE, Viking 1 Landing Site Mosaic]], + FilePath = asset.localResource("MRO_HiRISE/Viking_1_Landing_Site_Mosaic.vrt"), + Description = [[This data was acquired using the High Resolution Imaging Science Experiment camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. + +The High Resolution Imaging Science Experiment (HiRISE) camera utilizes a 0.5-meter telescope to obtain very high resolution images of Martian landforms and terrains. From an altitude of 300 km, HiRISE has a resolution of 0.3 meters per pixel. In addition to being used for getting very detailed images of surface features, pairs of slightly offset HiRISE images are combined to produce precise digital elevation models of Martian topography.]] +} + +local treks_PSP_001501_2280_RED = { + Identifier = "PSP_001501_2280_RED", + Name = [[MRO HiRISE, Viking 2 Landing Site Mosaic]], + FilePath = asset.localResource("MRO_HiRISE/Viking_2_Landing_Site_Mosaic.vrt"), + Description = [[This data was acquired using the High Resolution Imaging Science Experiment camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. + +The High Resolution Imaging Science Experiment (HiRISE) camera utilizes a 0.5-meter telescope to obtain very high resolution images of Martian landforms and terrains. From an altitude of 300 km, HiRISE has a resolution of 0.3 meters per pixel. In addition to being used for getting very detailed images of surface features, pairs of slightly offset HiRISE images are combined to produce precise digital elevation models of Martian topography.]] +} + +asset.onInitialize(function() + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_DTEEC_001918_1735_001984_1735_U01_longlat) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_DTEED_042014_1760_042647_1760_A01) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_DTEED_042753_1930_042252_1930_A01) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_h1183_0000_da4) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_HiRISE_ColumbiaHills) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_curiosity_hirise_mosaic) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_Gale_DEM_SMG_1m) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_ESP_042252_1930_RED_B_01_ORTHO) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_ESP_040776_2115_RED_A_01_ORTHO) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_ESP_042647_1760_RED_B_01_ORTHO) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_CLH_Visible_Mosaic_HiRISE_CTX_HRSC_GCS_MARS_07102018) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_ESP_058005_1845_RED_spline_rect) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_NES_JEZ_MID_Visible_Mosaic_HiRISE_CTX_HRSC_GCS_MARS_07102018) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_HiRISE_Opportunity) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_opportunity_hirise_mosaic) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_phoenix_hirise_mosaic) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_sojourner_hirise_mosaic) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_PSP_001918_1735_RED_A_01_ORTHO_longlat) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_spirit_hirise_mosaic) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_PSP_001521_2025_RED) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_PSP_001501_2280_RED) +end) + +asset.onDeinitialize(function() + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_DTEEC_001918_1735_001984_1735_U01_longlat") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_DTEED_042014_1760_042647_1760_A01") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_DTEED_042753_1930_042252_1930_A01") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_h1183_0000_da4") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_HiRISE_ColumbiaHills") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_curiosity_hirise_mosaic") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_Gale_DEM_SMG_1m") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_ESP_042252_1930_RED_B_01_ORTHO") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_ESP_040776_2115_RED_A_01_ORTHO") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_ESP_042647_1760_RED_B_01_ORTHO") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_CLH_Visible_Mosaic_HiRISE_CTX_HRSC_GCS_MARS_07102018") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_ESP_058005_1845_RED_spline_rect") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_NES_JEZ_MID_Visible_Mosaic_HiRISE_CTX_HRSC_GCS_MARS_07102018") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_HiRISE_Opportunity") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_opportunity_hirise_mosaic") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_phoenix_hirise_mosaic") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_sojourner_hirise_mosaic") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_PSP_001918_1735_RED_A_01_ORTHO_longlat") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_spirit_hirise_mosaic") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_PSP_001521_2025_RED") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_PSP_001501_2280_RED") +end) + +asset.export("DTEEC_001918_1735_001984_1735_U01_longlat", treks_DTEEC_001918_1735_001984_1735_U01_longlat) +asset.export("DTEED_042014_1760_042647_1760_A01", treks_DTEED_042014_1760_042647_1760_A01) +asset.export("DTEED_042753_1930_042252_1930_A01", treks_DTEED_042753_1930_042252_1930_A01) +asset.export("h1183_0000_da4", treks_h1183_0000_da4) +asset.export("HiRISE_ColumbiaHills", treks_HiRISE_ColumbiaHills) +asset.export("curiosity_hirise_mosaic", treks_curiosity_hirise_mosaic) +asset.export("Gale_DEM_SMG_1m", treks_Gale_DEM_SMG_1m) +asset.export("ESP_042252_1930_RED_B_01_ORTHO", treks_ESP_042252_1930_RED_B_01_ORTHO) +asset.export("ESP_040776_2115_RED_A_01_ORTHO", treks_ESP_040776_2115_RED_A_01_ORTHO) +asset.export("ESP_042647_1760_RED_B_01_ORTHO", treks_ESP_042647_1760_RED_B_01_ORTHO) +asset.export("CLH_Visible_Mosaic_HiRISE_CTX_HRSC_GCS_MARS_07102018", treks_CLH_Visible_Mosaic_HiRISE_CTX_HRSC_GCS_MARS_07102018) +asset.export("ESP_058005_1845_RED_spline_rect", treks_ESP_058005_1845_RED_spline_rect) +asset.export("NES_JEZ_MID_Visible_Mosaic_HiRISE_CTX_HRSC_GCS_MARS_07102018", treks_NES_JEZ_MID_Visible_Mosaic_HiRISE_CTX_HRSC_GCS_MARS_07102018) +asset.export("HiRISE_Opportunity", treks_HiRISE_Opportunity) +asset.export("opportunity_hirise_mosaic", treks_opportunity_hirise_mosaic) +asset.export("phoenix_hirise_mosaic", treks_phoenix_hirise_mosaic) +asset.export("sojourner_hirise_mosaic", treks_sojourner_hirise_mosaic) +asset.export("PSP_001918_1735_RED_A_01_ORTHO_longlat", treks_PSP_001918_1735_RED_A_01_ORTHO_longlat) +asset.export("spirit_hirise_mosaic", treks_spirit_hirise_mosaic) +asset.export("PSP_001521_2025_RED", treks_PSP_001521_2025_RED) +asset.export("PSP_001501_2280_RED", treks_PSP_001501_2280_RED) + + +asset.meta = { + Name = [[NASA Treks Layers for Mars MRO_HiRISE], + Version = "1.0", + Author = "NASA/Treks", + URL = "https://trek.nasa.gov/mars", + License = "NASA/Treks", + Description = [[MRO_HiRISE layers from NASA/Treks for Mars]] +} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/001918_1735_001984_1735_DEM.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/001918_1735_001984_1735_DEM.vrt new file mode 100644 index 0000000000..189d0500de --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/001918_1735_001984_1735_DEM.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.1457672119140625e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.1457672119140625e-05 + + 0 + Red + + 001918_1735_001984_1735_DEM.wms + 1 + + + + 0 + + + + 0 + Green + + 001918_1735_001984_1735_DEM.wms + 2 + + + + 0 + + + + 0 + Blue + + 001918_1735_001984_1735_DEM.wms + 3 + + + + 0 + + + + Alpha + + 001918_1735_001984_1735_DEM.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_001918_1735_001984_1735_DEM/DTEEC_001918_1735_001984_1735_U01_longlat.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/001918_1735_001984_1735_DEM.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_001918_1735_001984_1735_DEM/DTEEC_001918_1735_001984_1735_U01_longlat.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/001918_1735_001984_1735_DEM.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/042014_1760_042647_1760_DEM.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/042014_1760_042647_1760_DEM.vrt new file mode 100644 index 0000000000..7984e0938a --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/042014_1760_042647_1760_DEM.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 + + 0 + Red + + 042014_1760_042647_1760_DEM.wms + 1 + + + + 0 + + + + 0 + Green + + 042014_1760_042647_1760_DEM.wms + 2 + + + + 0 + + + + 0 + Blue + + 042014_1760_042647_1760_DEM.wms + 3 + + + + 0 + + + + Alpha + + 042014_1760_042647_1760_DEM.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_042014_1760_042647_1760_DEM/DTEED_042014_1760_042647_1760_A01.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/042014_1760_042647_1760_DEM.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_042014_1760_042647_1760_DEM/DTEED_042014_1760_042647_1760_A01.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/042014_1760_042647_1760_DEM.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/042753_1930_042252_1930_DEM.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/042753_1930_042252_1930_DEM.vrt new file mode 100644 index 0000000000..5dcb226015 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/042753_1930_042252_1930_DEM.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 + + 0 + Red + + 042753_1930_042252_1930_DEM.wms + 1 + + + + 0 + + + + 0 + Green + + 042753_1930_042252_1930_DEM.wms + 2 + + + + 0 + + + + 0 + Blue + + 042753_1930_042252_1930_DEM.wms + 3 + + + + 0 + + + + Alpha + + 042753_1930_042252_1930_DEM.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_042753_1930_042252_1930_DEM/DTEED_042753_1930_042252_1930_A01.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/042753_1930_042252_1930_DEM.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_042753_1930_042252_1930_DEM/DTEED_042753_1930_042252_1930_A01.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/042753_1930_042252_1930_DEM.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/1183_0000_DEM.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/1183_0000_DEM.vrt new file mode 100644 index 0000000000..0f35e9eceb --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/1183_0000_DEM.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.3732910156250000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.3732910156250000e-03 + + 0 + Red + + 1183_0000_DEM.wms + 1 + + + + 0 + + + + 0 + Green + + 1183_0000_DEM.wms + 2 + + + + 0 + + + + 0 + Blue + + 1183_0000_DEM.wms + 3 + + + + 0 + + + + Alpha + + 1183_0000_DEM.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_1183_0000_DEM/h1183_0000_da4.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/1183_0000_DEM.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_1183_0000_DEM/h1183_0000_da4.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/1183_0000_DEM.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Columbia_Hills_Mosaic.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Columbia_Hills_Mosaic.vrt new file mode 100644 index 0000000000..5789cb51ab --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Columbia_Hills_Mosaic.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 5.3644180297851563e-06, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -5.3644180297851563e-06 + + 0 + Red + + Columbia_Hills_Mosaic.wms + 1 + + + + 0 + + + + 0 + Green + + Columbia_Hills_Mosaic.wms + 2 + + + + 0 + + + + 0 + Blue + + Columbia_Hills_Mosaic.wms + 3 + + + + 0 + + + + Alpha + + Columbia_Hills_Mosaic.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Columbia_Hills_Mosaic/HiRISE_ColumbiaHills.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Columbia_Hills_Mosaic.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Columbia_Hills_Mosaic/HiRISE_ColumbiaHills.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Columbia_Hills_Mosaic.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Curiosity_Roving_Site_Mosaic.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Curiosity_Roving_Site_Mosaic.vrt new file mode 100644 index 0000000000..8410df8532 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Curiosity_Roving_Site_Mosaic.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 5.3644180297851563e-06, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -5.3644180297851563e-06 + + 0 + Red + + Curiosity_Roving_Site_Mosaic.wms + 1 + + + + 0 + + + + 0 + Green + + Curiosity_Roving_Site_Mosaic.wms + 2 + + + + 0 + + + + 0 + Blue + + Curiosity_Roving_Site_Mosaic.wms + 3 + + + + 0 + + + + Alpha + + Curiosity_Roving_Site_Mosaic.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Curiosity_Roving_Site_Mosaic/curiosity_hirise_mosaic.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Curiosity_Roving_Site_Mosaic.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Curiosity_Roving_Site_Mosaic/curiosity_hirise_mosaic.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Curiosity_Roving_Site_Mosaic.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Gale_Crater_DEM.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Gale_Crater_DEM.vrt new file mode 100644 index 0000000000..cf41632d6a --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Gale_Crater_DEM.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.1457672119140625e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.1457672119140625e-05 + + 0 + Red + + Gale_Crater_DEM.wms + 1 + + + + 0 + + + + 0 + Green + + Gale_Crater_DEM.wms + 2 + + + + 0 + + + + 0 + Blue + + Gale_Crater_DEM.wms + 3 + + + + 0 + + + + Alpha + + Gale_Crater_DEM.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Gale_Crater_DEM/Gale_DEM_SMG_1m.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Gale_Crater_DEM.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Gale_Crater_DEM/Gale_DEM_SMG_1m.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Gale_Crater_DEM.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Marth_Crater_West_Rim_Mosaic.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Marth_Crater_West_Rim_Mosaic.vrt new file mode 100644 index 0000000000..9e6a76d284 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Marth_Crater_West_Rim_Mosaic.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.0728836059570313e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.0728836059570313e-05 + + 0 + Red + + Marth_Crater_West_Rim_Mosaic.wms + 1 + + + + 0 + + + + 0 + Green + + Marth_Crater_West_Rim_Mosaic.wms + 2 + + + + 0 + + + + 0 + Blue + + Marth_Crater_West_Rim_Mosaic.wms + 3 + + + + 0 + + + + Alpha + + Marth_Crater_West_Rim_Mosaic.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Marth_Crater_West_Rim_Mosaic/ESP_042252_1930_RED_B_01_ORTHO.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Marth_Crater_West_Rim_Mosaic.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Marth_Crater_West_Rim_Mosaic/ESP_042252_1930_RED_B_01_ORTHO.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Marth_Crater_West_Rim_Mosaic.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Martian_Ares_3_Landing_Site_Mosaic.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Martian_Ares_3_Landing_Site_Mosaic.vrt new file mode 100644 index 0000000000..d78cfed70f --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Martian_Ares_3_Landing_Site_Mosaic.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 5.3644180297851563e-06, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -5.3644180297851563e-06 + + 0 + Red + + Martian_Ares_3_Landing_Site_Mosaic.wms + 1 + + + + 0 + + + + 0 + Green + + Martian_Ares_3_Landing_Site_Mosaic.wms + 2 + + + + 0 + + + + 0 + Blue + + Martian_Ares_3_Landing_Site_Mosaic.wms + 3 + + + + 0 + + + + Alpha + + Martian_Ares_3_Landing_Site_Mosaic.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Martian_Ares_3_Landing_Site_Mosaic/ESP_040776_2115_RED_A_01_ORTHO.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Martian_Ares_3_Landing_Site_Mosaic.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Martian_Ares_3_Landing_Site_Mosaic/ESP_040776_2115_RED_A_01_ORTHO.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Martian_Ares_3_Landing_Site_Mosaic.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Martian_Ares_4_Landing_Site_Mosaic.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Martian_Ares_4_Landing_Site_Mosaic.vrt new file mode 100644 index 0000000000..698913f808 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Martian_Ares_4_Landing_Site_Mosaic.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.0728836059570313e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.0728836059570313e-05 + + 0 + Red + + Martian_Ares_4_Landing_Site_Mosaic.wms + 1 + + + + 0 + + + + 0 + Green + + Martian_Ares_4_Landing_Site_Mosaic.wms + 2 + + + + 0 + + + + 0 + Blue + + Martian_Ares_4_Landing_Site_Mosaic.wms + 3 + + + + 0 + + + + Alpha + + Martian_Ares_4_Landing_Site_Mosaic.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Martian_Ares_4_Landing_Site_Mosaic/ESP_042647_1760_RED_B_01_ORTHO.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Martian_Ares_4_Landing_Site_Mosaic.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Martian_Ares_4_Landing_Site_Mosaic/ESP_042647_1760_RED_B_01_ORTHO.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Martian_Ares_4_Landing_Site_Mosaic.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Mosaic_Columbia_Hills.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Mosaic_Columbia_Hills.vrt new file mode 100644 index 0000000000..2d5de72230 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Mosaic_Columbia_Hills.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.6822090148925781e-06, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.6822090148925781e-06 + + 0 + Red + + Mosaic_Columbia_Hills.wms + 1 + + + + 0 + + + + 0 + Green + + Mosaic_Columbia_Hills.wms + 2 + + + + 0 + + + + 0 + Blue + + Mosaic_Columbia_Hills.wms + 3 + + + + 0 + + + + Alpha + + Mosaic_Columbia_Hills.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Mosaic_Columbia_Hills/CLH_Visible_Mosaic_HiRISE_CTX_HRSC_GCS_MARS_07-10-2018.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Mosaic_Columbia_Hills.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Mosaic_Columbia_Hills/CLH_Visible_Mosaic_HiRISE_CTX_HRSC_GCS_MARS_07-10-2018.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Mosaic_Columbia_Hills.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Mosaic_Insight_Landing_Site.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Mosaic_Insight_Landing_Site.vrt new file mode 100644 index 0000000000..3d4d50017c --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Mosaic_Insight_Landing_Site.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.6822090148925781e-06, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.6822090148925781e-06 + + 0 + Red + + Mosaic_Insight_Landing_Site.wms + 1 + + + + 0 + + + + 0 + Green + + Mosaic_Insight_Landing_Site.wms + 2 + + + + 0 + + + + 0 + Blue + + Mosaic_Insight_Landing_Site.wms + 3 + + + + 0 + + + + Alpha + + Mosaic_Insight_Landing_Site.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Mosaic_Insight_Landing_Site/ESP_058005_1845_RED_spline_rect.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Mosaic_Insight_Landing_Site.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Mosaic_Insight_Landing_Site/ESP_058005_1845_RED_spline_rect.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Mosaic_Insight_Landing_Site.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Mosaic_Jezero_NE_Syrtis_Midway.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Mosaic_Jezero_NE_Syrtis_Midway.vrt new file mode 100644 index 0000000000..c6791cb7a6 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Mosaic_Jezero_NE_Syrtis_Midway.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.6822090148925781e-06, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.6822090148925781e-06 + + 0 + Red + + Mosaic_Jezero_NE_Syrtis_Midway.wms + 1 + + + + 0 + + + + 0 + Green + + Mosaic_Jezero_NE_Syrtis_Midway.wms + 2 + + + + 0 + + + + 0 + Blue + + Mosaic_Jezero_NE_Syrtis_Midway.wms + 3 + + + + 0 + + + + Alpha + + Mosaic_Jezero_NE_Syrtis_Midway.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Mosaic_Jezero_NE_Syrtis_Midway/NES_JEZ_MID_Visible_Mosaic_HiRISE_CTX_HRSC_GCS_MARS_07-10-2018.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Mosaic_Jezero_NE_Syrtis_Midway.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Mosaic_Jezero_NE_Syrtis_Midway/NES_JEZ_MID_Visible_Mosaic_HiRISE_CTX_HRSC_GCS_MARS_07-10-2018.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Mosaic_Jezero_NE_Syrtis_Midway.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Mosaic_Opportunity.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Mosaic_Opportunity.vrt new file mode 100644 index 0000000000..72123f7053 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Mosaic_Opportunity.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.6822090148925781e-06, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.6822090148925781e-06 + + 0 + Red + + Mosaic_Opportunity.wms + 1 + + + + 0 + + + + 0 + Green + + Mosaic_Opportunity.wms + 2 + + + + 0 + + + + 0 + Blue + + Mosaic_Opportunity.wms + 3 + + + + 0 + + + + Alpha + + Mosaic_Opportunity.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Mosaic_Opportunity/HiRISE_Opportunity.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Mosaic_Opportunity.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Mosaic_Opportunity/HiRISE_Opportunity.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Mosaic_Opportunity.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Opportunity_Roving_Site_Mosaic.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Opportunity_Roving_Site_Mosaic.vrt new file mode 100644 index 0000000000..6267a3cdb3 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Opportunity_Roving_Site_Mosaic.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.6822090148925781e-06, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.6822090148925781e-06 + + 0 + Red + + Opportunity_Roving_Site_Mosaic.wms + 1 + + + + 0 + + + + 0 + Green + + Opportunity_Roving_Site_Mosaic.wms + 2 + + + + 0 + + + + 0 + Blue + + Opportunity_Roving_Site_Mosaic.wms + 3 + + + + 0 + + + + Alpha + + Opportunity_Roving_Site_Mosaic.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Opportunity_Roving_Site_Mosaic/opportunity_hirise_mosaic.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Opportunity_Roving_Site_Mosaic.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Opportunity_Roving_Site_Mosaic/opportunity_hirise_mosaic.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Opportunity_Roving_Site_Mosaic.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Phoenix_Landing_Site_Mosaic.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Phoenix_Landing_Site_Mosaic.vrt new file mode 100644 index 0000000000..1f7a91c684 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Phoenix_Landing_Site_Mosaic.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 5.3644180297851563e-06, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -5.3644180297851563e-06 + + 0 + Red + + Phoenix_Landing_Site_Mosaic.wms + 1 + + + + 0 + + + + 0 + Green + + Phoenix_Landing_Site_Mosaic.wms + 2 + + + + 0 + + + + 0 + Blue + + Phoenix_Landing_Site_Mosaic.wms + 3 + + + + 0 + + + + Alpha + + Phoenix_Landing_Site_Mosaic.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Phoenix_Landing_Site_Mosaic/phoenix_hirise_mosaic.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Phoenix_Landing_Site_Mosaic.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Phoenix_Landing_Site_Mosaic/phoenix_hirise_mosaic.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Phoenix_Landing_Site_Mosaic.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Sojourner_Roving_Site_Mosaic.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Sojourner_Roving_Site_Mosaic.vrt new file mode 100644 index 0000000000..1a6ffb8e56 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Sojourner_Roving_Site_Mosaic.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 5.3644180297851563e-06, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -5.3644180297851563e-06 + + 0 + Red + + Sojourner_Roving_Site_Mosaic.wms + 1 + + + + 0 + + + + 0 + Green + + Sojourner_Roving_Site_Mosaic.wms + 2 + + + + 0 + + + + 0 + Blue + + Sojourner_Roving_Site_Mosaic.wms + 3 + + + + 0 + + + + Alpha + + Sojourner_Roving_Site_Mosaic.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Sojourner_Roving_Site_Mosaic/sojourner_hirise_mosaic.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Sojourner_Roving_Site_Mosaic.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Sojourner_Roving_Site_Mosaic/sojourner_hirise_mosaic.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Sojourner_Roving_Site_Mosaic.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Southwest_Candor_Chasma_Mosaic.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Southwest_Candor_Chasma_Mosaic.vrt new file mode 100644 index 0000000000..0d99ed830c --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Southwest_Candor_Chasma_Mosaic.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 5.3644180297851563e-06, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -5.3644180297851563e-06 + + 0 + Red + + Southwest_Candor_Chasma_Mosaic.wms + 1 + + + + 0 + + + + 0 + Green + + Southwest_Candor_Chasma_Mosaic.wms + 2 + + + + 0 + + + + 0 + Blue + + Southwest_Candor_Chasma_Mosaic.wms + 3 + + + + 0 + + + + Alpha + + Southwest_Candor_Chasma_Mosaic.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Southwest_Candor_Chasma_Mosaic/PSP_001918_1735_RED_A_01_ORTHO_longlat.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Southwest_Candor_Chasma_Mosaic.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Southwest_Candor_Chasma_Mosaic/PSP_001918_1735_RED_A_01_ORTHO_longlat.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Southwest_Candor_Chasma_Mosaic.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Spirit_Roving_Site_Mosaic.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Spirit_Roving_Site_Mosaic.vrt new file mode 100644 index 0000000000..206dc857d5 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Spirit_Roving_Site_Mosaic.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.6822090148925781e-06, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.6822090148925781e-06 + + 0 + Red + + Spirit_Roving_Site_Mosaic.wms + 1 + + + + 0 + + + + 0 + Green + + Spirit_Roving_Site_Mosaic.wms + 2 + + + + 0 + + + + 0 + Blue + + Spirit_Roving_Site_Mosaic.wms + 3 + + + + 0 + + + + Alpha + + Spirit_Roving_Site_Mosaic.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Spirit_Roving_Site_Mosaic/spirit_hirise_mosaic.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Spirit_Roving_Site_Mosaic.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Spirit_Roving_Site_Mosaic/spirit_hirise_mosaic.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Spirit_Roving_Site_Mosaic.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Viking_1_Landing_Site_Mosaic.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Viking_1_Landing_Site_Mosaic.vrt new file mode 100644 index 0000000000..542e85affb --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Viking_1_Landing_Site_Mosaic.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.6822090148925781e-06, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.6822090148925781e-06 + + 0 + Red + + Viking_1_Landing_Site_Mosaic.wms + 1 + + + + 0 + + + + 0 + Green + + Viking_1_Landing_Site_Mosaic.wms + 2 + + + + 0 + + + + 0 + Blue + + Viking_1_Landing_Site_Mosaic.wms + 3 + + + + 0 + + + + Alpha + + Viking_1_Landing_Site_Mosaic.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Viking_1_Landing_Site_Mosaic/PSP_001521_2025_RED.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Viking_1_Landing_Site_Mosaic.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Viking_1_Landing_Site_Mosaic/PSP_001521_2025_RED.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Viking_1_Landing_Site_Mosaic.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Viking_2_Landing_Site_Mosaic.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Viking_2_Landing_Site_Mosaic.vrt new file mode 100644 index 0000000000..e06718eaff --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Viking_2_Landing_Site_Mosaic.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 5.3644180297851563e-06, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -5.3644180297851563e-06 + + 0 + Red + + Viking_2_Landing_Site_Mosaic.wms + 1 + + + + 0 + + + + 0 + Green + + Viking_2_Landing_Site_Mosaic.wms + 2 + + + + 0 + + + + 0 + Blue + + Viking_2_Landing_Site_Mosaic.wms + 3 + + + + 0 + + + + Alpha + + Viking_2_Landing_Site_Mosaic.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Viking_2_Landing_Site_Mosaic/PSP_001501_2280_RED.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Viking_2_Landing_Site_Mosaic.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Viking_2_Landing_Site_Mosaic/PSP_001501_2280_RED.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE/Viking_2_Landing_Site_Mosaic.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_001918_1735_001984_1735_DEM/DTEEC_001918_1735_001984_1735_U01_longlat.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_001918_1735_001984_1735_DEM/DTEEC_001918_1735_001984_1735_U01_longlat.vrt deleted file mode 100644 index 4fb5aa22c6..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_001918_1735_001984_1735_DEM/DTEEC_001918_1735_001984_1735_U01_longlat.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.1457672119140625e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.1457672119140625e-05 - - 0 - Red - - DTEEC_001918_1735_001984_1735_U01_longlat.wms - 1 - - - - 0 - - - - 0 - Green - - DTEEC_001918_1735_001984_1735_U01_longlat.wms - 2 - - - - 0 - - - - 0 - Blue - - DTEEC_001918_1735_001984_1735_U01_longlat.wms - 3 - - - - 0 - - - - Alpha - - DTEEC_001918_1735_001984_1735_U01_longlat.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_001918_1735_001984_1735_DEM/MRO_HiRISE_001918_1735_001984_1735_DEM.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_001918_1735_001984_1735_DEM/MRO_HiRISE_001918_1735_001984_1735_DEM.asset deleted file mode 100644 index 0da20a34b2..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_001918_1735_001984_1735_DEM/MRO_HiRISE_001918_1735_001984_1735_DEM.asset +++ /dev/null @@ -1,30 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "DTEEC_001918_1735_001984_1735_U01_longlat", - Name = [[MRO HiRISE, 001918_1735_001984_1735 DEM]], - FilePath = asset.localResource("DTEEC_001918_1735_001984_1735_U01_longlat.vrt"), - Description = [[This data was acquired using the High Resolution Imaging Science Experiment camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. - -The High Resolution Imaging Science Experiment (HiRISE) camera utilizes a 0.5-meter telescope to obtain very high resolution images of Martian landforms and terrains. From an altitude of 300 km, HiRISE has a resolution of 0.3 meters per pixel. In addition to being used for getting very detailed images of surface features, pairs of slightly offset HiRISE images are combined to produce precise digital elevation models of Martian topography.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MRO HiRISE, 001918_1735_001984_1735 DEM]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=DTEEC_001918_1735_001984_1735_U01_longlat%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MRO HiRISE, 001918_1735_001984_1735 DEM layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_042014_1760_042647_1760_DEM/DTEED_042014_1760_042647_1760_A01.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_042014_1760_042647_1760_DEM/DTEED_042014_1760_042647_1760_A01.vrt deleted file mode 100644 index 0470d05235..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_042014_1760_042647_1760_DEM/DTEED_042014_1760_042647_1760_A01.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - DTEED_042014_1760_042647_1760_A01.wms - 1 - - - - 0 - - - - 0 - Green - - DTEED_042014_1760_042647_1760_A01.wms - 2 - - - - 0 - - - - 0 - Blue - - DTEED_042014_1760_042647_1760_A01.wms - 3 - - - - 0 - - - - Alpha - - DTEED_042014_1760_042647_1760_A01.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_042014_1760_042647_1760_DEM/MRO_HiRISE_042014_1760_042647_1760_DEM.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_042014_1760_042647_1760_DEM/MRO_HiRISE_042014_1760_042647_1760_DEM.asset deleted file mode 100644 index e25ca86124..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_042014_1760_042647_1760_DEM/MRO_HiRISE_042014_1760_042647_1760_DEM.asset +++ /dev/null @@ -1,30 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "DTEED_042014_1760_042647_1760_A01", - Name = [[MRO HiRISE, 042014_1760_042647_1760 DEM]], - FilePath = asset.localResource("DTEED_042014_1760_042647_1760_A01.vrt"), - Description = [[This data was acquired using the High Resolution Imaging Science Experiment camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. - -The High Resolution Imaging Science Experiment (HiRISE) camera utilizes a 0.5-meter telescope to obtain very high resolution images of Martian landforms and terrains. From an altitude of 300 km, HiRISE has a resolution of 0.3 meters per pixel. In addition to being used for getting very detailed images of surface features, pairs of slightly offset HiRISE images are combined to produce precise digital elevation models of Martian topography.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MRO HiRISE, 042014_1760_042647_1760 DEM]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=DTEED_042014_1760_042647_1760_A01%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MRO HiRISE, 042014_1760_042647_1760 DEM layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_042753_1930_042252_1930_DEM/DTEED_042753_1930_042252_1930_A01.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_042753_1930_042252_1930_DEM/DTEED_042753_1930_042252_1930_A01.vrt deleted file mode 100644 index 3edbf82fcd..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_042753_1930_042252_1930_DEM/DTEED_042753_1930_042252_1930_A01.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - DTEED_042753_1930_042252_1930_A01.wms - 1 - - - - 0 - - - - 0 - Green - - DTEED_042753_1930_042252_1930_A01.wms - 2 - - - - 0 - - - - 0 - Blue - - DTEED_042753_1930_042252_1930_A01.wms - 3 - - - - 0 - - - - Alpha - - DTEED_042753_1930_042252_1930_A01.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_042753_1930_042252_1930_DEM/MRO_HiRISE_042753_1930_042252_1930_DEM.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_042753_1930_042252_1930_DEM/MRO_HiRISE_042753_1930_042252_1930_DEM.asset deleted file mode 100644 index 70709dc862..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_042753_1930_042252_1930_DEM/MRO_HiRISE_042753_1930_042252_1930_DEM.asset +++ /dev/null @@ -1,30 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "DTEED_042753_1930_042252_1930_A01", - Name = [[MRO HiRISE, 042753_1930_042252_1930 DEM]], - FilePath = asset.localResource("DTEED_042753_1930_042252_1930_A01.vrt"), - Description = [[This data was acquired using the High Resolution Imaging Science Experiment camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. - -The High Resolution Imaging Science Experiment (HiRISE) camera utilizes a 0.5-meter telescope to obtain very high resolution images of Martian landforms and terrains. From an altitude of 300 km, HiRISE has a resolution of 0.3 meters per pixel. In addition to being used for getting very detailed images of surface features, pairs of slightly offset HiRISE images are combined to produce precise digital elevation models of Martian topography.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MRO HiRISE, 042753_1930_042252_1930 DEM]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=DTEED_042753_1930_042252_1930_A01%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MRO HiRISE, 042753_1930_042252_1930 DEM layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_1183_0000_DEM/MRO_HiRISE_1183_0000_DEM.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_1183_0000_DEM/MRO_HiRISE_1183_0000_DEM.asset deleted file mode 100644 index f65845e4e1..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_1183_0000_DEM/MRO_HiRISE_1183_0000_DEM.asset +++ /dev/null @@ -1,30 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "h1183_0000_da4", - Name = [[MRO HiRISE, 1183_0000 DEM]], - FilePath = asset.localResource("h1183_0000_da4.vrt"), - Description = [[This data was acquired using the High Resolution Imaging Science Experiment camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. - -The High Resolution Imaging Science Experiment (HiRISE) camera utilizes a 0.5-meter telescope to obtain very high resolution images of Martian landforms and terrains. From an altitude of 300 km, HiRISE has a resolution of 0.3 meters per pixel. In addition to being used for getting very detailed images of surface features, pairs of slightly offset HiRISE images are combined to produce precise digital elevation models of Martian topography.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MRO HiRISE, 1183_0000 DEM]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=h1183_0000_da4%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MRO HiRISE, 1183_0000 DEM layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_1183_0000_DEM/h1183_0000_da4.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_1183_0000_DEM/h1183_0000_da4.vrt deleted file mode 100644 index 7aa702c637..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_1183_0000_DEM/h1183_0000_da4.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.3732910156250000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.3732910156250000e-03 - - 0 - Red - - h1183_0000_da4.wms - 1 - - - - 0 - - - - 0 - Green - - h1183_0000_da4.wms - 2 - - - - 0 - - - - 0 - Blue - - h1183_0000_da4.wms - 3 - - - - 0 - - - - Alpha - - h1183_0000_da4.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Columbia_Hills_Mosaic/HiRISE_ColumbiaHills.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Columbia_Hills_Mosaic/HiRISE_ColumbiaHills.vrt deleted file mode 100644 index 793d6fc918..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Columbia_Hills_Mosaic/HiRISE_ColumbiaHills.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 5.3644180297851563e-06, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -5.3644180297851563e-06 - - 0 - Red - - HiRISE_ColumbiaHills.wms - 1 - - - - 0 - - - - 0 - Green - - HiRISE_ColumbiaHills.wms - 2 - - - - 0 - - - - 0 - Blue - - HiRISE_ColumbiaHills.wms - 3 - - - - 0 - - - - Alpha - - HiRISE_ColumbiaHills.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Columbia_Hills_Mosaic/MRO_HiRISE_Columbia_Hills_Mosaic.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Columbia_Hills_Mosaic/MRO_HiRISE_Columbia_Hills_Mosaic.asset deleted file mode 100644 index 96d13edd04..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Columbia_Hills_Mosaic/MRO_HiRISE_Columbia_Hills_Mosaic.asset +++ /dev/null @@ -1,30 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "HiRISE_ColumbiaHills", - Name = [[MRO HiRISE, Columbia Hills Mosaic]], - FilePath = asset.localResource("HiRISE_ColumbiaHills.vrt"), - Description = [[This data was acquired using the High Resolution Imaging Science Experiment camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. - -The High Resolution Imaging Science Experiment (HiRISE) camera utilizes a 0.5-meter telescope to obtain very high resolution images of Martian landforms and terrains. From an altitude of 300 km, HiRISE has a resolution of 0.3 meters per pixel. In addition to being used for getting very detailed images of surface features, pairs of slightly offset HiRISE images are combined to produce precise digital elevation models of Martian topography.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MRO HiRISE, Columbia Hills Mosaic]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=HiRISE_ColumbiaHills%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MRO HiRISE, Columbia Hills Mosaic layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Curiosity_Roving_Site_Mosaic/MRO_HiRISE_Curiosity_Roving_Site_Mosaic.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Curiosity_Roving_Site_Mosaic/MRO_HiRISE_Curiosity_Roving_Site_Mosaic.asset deleted file mode 100644 index 56b790cd87..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Curiosity_Roving_Site_Mosaic/MRO_HiRISE_Curiosity_Roving_Site_Mosaic.asset +++ /dev/null @@ -1,30 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "curiosity_hirise_mosaic", - Name = [[MRO HiRISE, Curiosity Roving Site Mosaic]], - FilePath = asset.localResource("curiosity_hirise_mosaic.vrt"), - Description = [[This data was acquired using the High Resolution Imaging Science Experiment camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. - -The High Resolution Imaging Science Experiment (HiRISE) camera utilizes a 0.5-meter telescope to obtain very high resolution images of Martian landforms and terrains. From an altitude of 300 km, HiRISE has a resolution of 0.3 meters per pixel. In addition to being used for getting very detailed images of surface features, pairs of slightly offset HiRISE images are combined to produce precise digital elevation models of Martian topography.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MRO HiRISE, Curiosity Roving Site Mosaic]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=curiosity_hirise_mosaic%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MRO HiRISE, Curiosity Roving Site Mosaic layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Curiosity_Roving_Site_Mosaic/curiosity_hirise_mosaic.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Curiosity_Roving_Site_Mosaic/curiosity_hirise_mosaic.vrt deleted file mode 100644 index 6e4336b1f7..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Curiosity_Roving_Site_Mosaic/curiosity_hirise_mosaic.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 5.3644180297851563e-06, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -5.3644180297851563e-06 - - 0 - Red - - curiosity_hirise_mosaic.wms - 1 - - - - 0 - - - - 0 - Green - - curiosity_hirise_mosaic.wms - 2 - - - - 0 - - - - 0 - Blue - - curiosity_hirise_mosaic.wms - 3 - - - - 0 - - - - Alpha - - curiosity_hirise_mosaic.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Gale_Crater_DEM/Gale_DEM_SMG_1m.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Gale_Crater_DEM/Gale_DEM_SMG_1m.vrt deleted file mode 100644 index a6c2b35a1e..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Gale_Crater_DEM/Gale_DEM_SMG_1m.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.1457672119140625e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.1457672119140625e-05 - - 0 - Red - - Gale_DEM_SMG_1m.wms - 1 - - - - 0 - - - - 0 - Green - - Gale_DEM_SMG_1m.wms - 2 - - - - 0 - - - - 0 - Blue - - Gale_DEM_SMG_1m.wms - 3 - - - - 0 - - - - Alpha - - Gale_DEM_SMG_1m.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Gale_Crater_DEM/MRO_HiRISE_Gale_Crater_DEM.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Gale_Crater_DEM/MRO_HiRISE_Gale_Crater_DEM.asset deleted file mode 100644 index 5b5530f278..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Gale_Crater_DEM/MRO_HiRISE_Gale_Crater_DEM.asset +++ /dev/null @@ -1,30 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "Gale_DEM_SMG_1m", - Name = [[MRO HiRISE, Gale Crater DEM]], - FilePath = asset.localResource("Gale_DEM_SMG_1m.vrt"), - Description = [[This data was acquired using the High Resolution Imaging Science Experiment camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. - -The High Resolution Imaging Science Experiment (HiRISE) camera utilizes a 0.5-meter telescope to obtain very high resolution images of Martian landforms and terrains. From an altitude of 300 km, HiRISE has a resolution of 0.3 meters per pixel. In addition to being used for getting very detailed images of surface features, pairs of slightly offset HiRISE images are combined to produce precise digital elevation models of Martian topography.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MRO HiRISE, Gale Crater DEM]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=Gale_DEM_SMG_1m%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MRO HiRISE, Gale Crater DEM layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Marth_Crater_West_Rim_Mosaic/ESP_042252_1930_RED_B_01_ORTHO.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Marth_Crater_West_Rim_Mosaic/ESP_042252_1930_RED_B_01_ORTHO.vrt deleted file mode 100644 index 433cd586fb..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Marth_Crater_West_Rim_Mosaic/ESP_042252_1930_RED_B_01_ORTHO.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.0728836059570313e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.0728836059570313e-05 - - 0 - Red - - ESP_042252_1930_RED_B_01_ORTHO.wms - 1 - - - - 0 - - - - 0 - Green - - ESP_042252_1930_RED_B_01_ORTHO.wms - 2 - - - - 0 - - - - 0 - Blue - - ESP_042252_1930_RED_B_01_ORTHO.wms - 3 - - - - 0 - - - - Alpha - - ESP_042252_1930_RED_B_01_ORTHO.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Marth_Crater_West_Rim_Mosaic/MRO_HiRISE_Marth_Crater_West_Rim_Mosaic.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Marth_Crater_West_Rim_Mosaic/MRO_HiRISE_Marth_Crater_West_Rim_Mosaic.asset deleted file mode 100644 index 237348973b..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Marth_Crater_West_Rim_Mosaic/MRO_HiRISE_Marth_Crater_West_Rim_Mosaic.asset +++ /dev/null @@ -1,30 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "ESP_042252_1930_RED_B_01_ORTHO", - Name = [[MRO HiRISE, Marth Crater West Rim Mosaic]], - FilePath = asset.localResource("ESP_042252_1930_RED_B_01_ORTHO.vrt"), - Description = [[This data was acquired using the High Resolution Imaging Science Experiment camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. - -The High Resolution Imaging Science Experiment (HiRISE) camera utilizes a 0.5-meter telescope to obtain very high resolution images of Martian landforms and terrains. From an altitude of 300 km, HiRISE has a resolution of 0.3 meters per pixel. In addition to being used for getting very detailed images of surface features, pairs of slightly offset HiRISE images are combined to produce precise digital elevation models of Martian topography.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MRO HiRISE, Marth Crater West Rim Mosaic]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=ESP_042252_1930_RED_B_01_ORTHO%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MRO HiRISE, Marth Crater West Rim Mosaic layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Martian_Ares_3_Landing_Site_Mosaic/ESP_040776_2115_RED_A_01_ORTHO.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Martian_Ares_3_Landing_Site_Mosaic/ESP_040776_2115_RED_A_01_ORTHO.vrt deleted file mode 100644 index 10c43caac0..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Martian_Ares_3_Landing_Site_Mosaic/ESP_040776_2115_RED_A_01_ORTHO.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 5.3644180297851563e-06, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -5.3644180297851563e-06 - - 0 - Red - - ESP_040776_2115_RED_A_01_ORTHO.wms - 1 - - - - 0 - - - - 0 - Green - - ESP_040776_2115_RED_A_01_ORTHO.wms - 2 - - - - 0 - - - - 0 - Blue - - ESP_040776_2115_RED_A_01_ORTHO.wms - 3 - - - - 0 - - - - Alpha - - ESP_040776_2115_RED_A_01_ORTHO.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Martian_Ares_3_Landing_Site_Mosaic/MRO_HiRISE_Martian_Ares_3_Landing_Site_Mosaic.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Martian_Ares_3_Landing_Site_Mosaic/MRO_HiRISE_Martian_Ares_3_Landing_Site_Mosaic.asset deleted file mode 100644 index f6bcb81f9f..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Martian_Ares_3_Landing_Site_Mosaic/MRO_HiRISE_Martian_Ares_3_Landing_Site_Mosaic.asset +++ /dev/null @@ -1,30 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "ESP_040776_2115_RED_A_01_ORTHO", - Name = [[MRO HiRISE, Martian Ares 3 Landing Site Mosaic]], - FilePath = asset.localResource("ESP_040776_2115_RED_A_01_ORTHO.vrt"), - Description = [[This data was acquired using the High Resolution Imaging Science Experiment camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. - -The High Resolution Imaging Science Experiment (HiRISE) camera utilizes a 0.5-meter telescope to obtain very high resolution images of Martian landforms and terrains. From an altitude of 300 km, HiRISE has a resolution of 0.3 meters per pixel. In addition to being used for getting very detailed images of surface features, pairs of slightly offset HiRISE images are combined to produce precise digital elevation models of Martian topography.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MRO HiRISE, Martian Ares 3 Landing Site Mosaic]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=ESP_040776_2115_RED_A_01_ORTHO%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MRO HiRISE, Martian Ares 3 Landing Site Mosaic layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Martian_Ares_4_Landing_Site_Mosaic/ESP_042647_1760_RED_B_01_ORTHO.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Martian_Ares_4_Landing_Site_Mosaic/ESP_042647_1760_RED_B_01_ORTHO.vrt deleted file mode 100644 index cc841d507f..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Martian_Ares_4_Landing_Site_Mosaic/ESP_042647_1760_RED_B_01_ORTHO.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.0728836059570313e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.0728836059570313e-05 - - 0 - Red - - ESP_042647_1760_RED_B_01_ORTHO.wms - 1 - - - - 0 - - - - 0 - Green - - ESP_042647_1760_RED_B_01_ORTHO.wms - 2 - - - - 0 - - - - 0 - Blue - - ESP_042647_1760_RED_B_01_ORTHO.wms - 3 - - - - 0 - - - - Alpha - - ESP_042647_1760_RED_B_01_ORTHO.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Martian_Ares_4_Landing_Site_Mosaic/MRO_HiRISE_Martian_Ares_4_Landing_Site_Mosaic.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Martian_Ares_4_Landing_Site_Mosaic/MRO_HiRISE_Martian_Ares_4_Landing_Site_Mosaic.asset deleted file mode 100644 index 3333b7ba94..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Martian_Ares_4_Landing_Site_Mosaic/MRO_HiRISE_Martian_Ares_4_Landing_Site_Mosaic.asset +++ /dev/null @@ -1,30 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "ESP_042647_1760_RED_B_01_ORTHO", - Name = [[MRO HiRISE, Martian Ares 4 Landing Site Mosaic]], - FilePath = asset.localResource("ESP_042647_1760_RED_B_01_ORTHO.vrt"), - Description = [[This data was acquired using the High Resolution Imaging Science Experiment camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. - -The High Resolution Imaging Science Experiment (HiRISE) camera utilizes a 0.5-meter telescope to obtain very high resolution images of Martian landforms and terrains. From an altitude of 300 km, HiRISE has a resolution of 0.3 meters per pixel. In addition to being used for getting very detailed images of surface features, pairs of slightly offset HiRISE images are combined to produce precise digital elevation models of Martian topography.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MRO HiRISE, Martian Ares 4 Landing Site Mosaic]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=ESP_042647_1760_RED_B_01_ORTHO%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MRO HiRISE, Martian Ares 4 Landing Site Mosaic layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Mosaic_Columbia_Hills/CLH_Visible_Mosaic_HiRISE_CTX_HRSC_GCS_MARS_07-10-2018.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Mosaic_Columbia_Hills/CLH_Visible_Mosaic_HiRISE_CTX_HRSC_GCS_MARS_07-10-2018.vrt deleted file mode 100644 index 27c9d76f11..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Mosaic_Columbia_Hills/CLH_Visible_Mosaic_HiRISE_CTX_HRSC_GCS_MARS_07-10-2018.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.6822090148925781e-06, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.6822090148925781e-06 - - 0 - Red - - CLH_Visible_Mosaic_HiRISE_CTX_HRSC_GCS_MARS_07-10-2018.wms - 1 - - - - 0 - - - - 0 - Green - - CLH_Visible_Mosaic_HiRISE_CTX_HRSC_GCS_MARS_07-10-2018.wms - 2 - - - - 0 - - - - 0 - Blue - - CLH_Visible_Mosaic_HiRISE_CTX_HRSC_GCS_MARS_07-10-2018.wms - 3 - - - - 0 - - - - Alpha - - CLH_Visible_Mosaic_HiRISE_CTX_HRSC_GCS_MARS_07-10-2018.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Mosaic_Columbia_Hills/MRO_HiRISE_Mosaic_Columbia_Hills.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Mosaic_Columbia_Hills/MRO_HiRISE_Mosaic_Columbia_Hills.asset deleted file mode 100644 index ec7f070a63..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Mosaic_Columbia_Hills/MRO_HiRISE_Mosaic_Columbia_Hills.asset +++ /dev/null @@ -1,44 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "CLH_Visible_Mosaic_HiRISE_CTX_HRSC_GCS_MARS_07-10-2018", - Name = [[MRO HiRISE, Mosaic Columbia Hills]], - FilePath = asset.localResource("CLH_Visible_Mosaic_HiRISE_CTX_HRSC_GCS_MARS_07-10-2018.vrt"), - Description = [[Preliminary visible orthoimage mosaic for Columbia Hills candidate landing site for the Mars 2020 rover. -HRSC orthoimages and DEMs were downloaded from the Planetary Data System archives. HiRISE and CTX orthoimages and DEMs were created by the USGS Astrogeology and HiRISE teams, -and compiled and georeferenced at JPL/Caltech by the Advanced Laboratory for Landing Site Terrain Analysis and Reconnaissance (ALLSTAR) group including Nathan Williams, -Heather Lethcoe-Wilson, Lauren Berger, Marshall Trautman, and Matt Golombek for the M2020 Council of Terrains. These files are for discussion and planning purposes -only. -Processing Notes: -Georeferencing: -HRSC orthos are well-coregistered to the community-standard MOLA global topography products, and CTX orthos are well-coregistered to the HRSC orthos. -Tie points were recorded at small craters visible in both HiRISE and CTX images, and a first-order transformation was used to rectify the HiRISE. - -Projection and Coordinate System: -Former mosaic basemaps for M2020 used a Mars equirectangular projection with a standard parallel of 0 (also called Plate Carree), -but this caused a ~5% latitude vs longitude distortion at the remaining 3 candidate landing sites such that true circles would appear elliptical. -In this new version of basemaps, we use a Mars equirectangular projection with customized standard parallels for each site to reduce distortion to <1%. -Specifically, Columbia Hills uses a standard parallel of -14.5 degrees, while Jezero and NE Syrtis both have a standard parallel of +18 degrees. Projection (.prj) files are included with this delivery. -When analyzing images, please ensure that the correct projection system is being used. For example, there is a known issue with Matlab where reading images in as a geotiff may automatically assign an -incorrect projection without the specified standard parallel, which then produces distorted linear (in meters) x/y values.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MRO HiRISE, Mosaic Columbia Hills]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=CLH_Visible_Mosaic_HiRISE_CTX_HRSC_GCS_MARS_07-10-2018%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MRO HiRISE, Mosaic Columbia Hills layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Mosaic_Insight_Landing_Site/ESP_058005_1845_RED_spline_rect.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Mosaic_Insight_Landing_Site/ESP_058005_1845_RED_spline_rect.vrt deleted file mode 100644 index 331ba5b703..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Mosaic_Insight_Landing_Site/ESP_058005_1845_RED_spline_rect.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.6822090148925781e-06, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.6822090148925781e-06 - - 0 - Red - - ESP_058005_1845_RED_spline_rect.wms - 1 - - - - 0 - - - - 0 - Green - - ESP_058005_1845_RED_spline_rect.wms - 2 - - - - 0 - - - - 0 - Blue - - ESP_058005_1845_RED_spline_rect.wms - 3 - - - - 0 - - - - Alpha - - ESP_058005_1845_RED_spline_rect.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Mosaic_Insight_Landing_Site/MRO_HiRISE_Mosaic_Insight_Landing_Site.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Mosaic_Insight_Landing_Site/MRO_HiRISE_Mosaic_Insight_Landing_Site.asset deleted file mode 100644 index 3e552be38d..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Mosaic_Insight_Landing_Site/MRO_HiRISE_Mosaic_Insight_Landing_Site.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "ESP_058005_1845_RED_spline_rect", - Name = [[MRO HiRISE, Mosaic Insight Landing Site]], - FilePath = asset.localResource("ESP_058005_1845_RED_spline_rect.vrt"), - Description = [[This image (ESP_058005_1845) was acquired with the Mars HiRISE Camera aboard NASA’s Mars Reconnaissance Orbiter. It shows the Mars InSight lander (4.5024°, 135.62345°), heat shield (4.50834°, 135.63481°), and backshell with parachute (4.49415°, 135.62778°). The image was acquired on December 11, 2018 at 14:02 local Mars time. The image is centered at 4.495° lat and 135.623° lon. The spacecraft altitude was 271.5 km. Original image scale range is 27.9 cm/pixel (with 1 x 1 binning) so objects about 84 cm across are resolved. The emission angle was 13.7°, phase angle was 51.0°, and solar incidence angle was 39°, with the Sun about 51° above the horizon. Solar longitude was 304.3°, Northern Winter.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MRO HiRISE, Mosaic Insight Landing Site]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=ESP_058005_1845_RED_spline_rect%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MRO HiRISE, Mosaic Insight Landing Site layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Mosaic_Jezero_NE_Syrtis_Midway/MRO_HiRISE_Mosaic_Jezero_NE_Syrtis_Midway.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Mosaic_Jezero_NE_Syrtis_Midway/MRO_HiRISE_Mosaic_Jezero_NE_Syrtis_Midway.asset deleted file mode 100644 index b6814f4537..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Mosaic_Jezero_NE_Syrtis_Midway/MRO_HiRISE_Mosaic_Jezero_NE_Syrtis_Midway.asset +++ /dev/null @@ -1,44 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "NES_JEZ_MID_Visible_Mosaic_HiRISE_CTX_HRSC_GCS_MARS_07-10-2018", - Name = [[MRO HiRISE, Mosaic Jezero NE Syrtis Midway]], - FilePath = asset.localResource("NES_JEZ_MID_Visible_Mosaic_HiRISE_CTX_HRSC_GCS_MARS_07-10-2018.vrt"), - Description = [[Preliminary visible orthoimage mosaic for Jezero Crater, NE Syrtis, and Midway candidate landing sites for the Mars 2020 rover. -HRSC orthoimages and DEMs were downloaded from the Planetary Data System archives. HiRISE and CTX orthoimages and DEMs were created by the USGS Astrogeology and HiRISE teams, -and compiled and georeferenced at JPL/Caltech by the Advanced Laboratory for Landing Site Terrain Analysis and Reconnaissance (ALLSTAR) group including Nathan Williams, -Heather Lethcoe-Wilson, Lauren Berger, Marshall Trautman, and Matt Golombek for the M2020 Council of Terrains. These files are for discussion and planning purposes -only. -Processing Notes: -Georeferencing: -HRSC orthos are well-coregistered to the community-standard MOLA global topography products, and CTX orthos are well-coregistered to the HRSC orthos. -Tie points were recorded at small craters visible in both HiRISE and CTX images, and a first-order transformation was used to rectify the HiRISE. - -Projection and Coordinate System: -Former mosaic basemaps for M2020 used a Mars equirectangular projection with a standard parallel of 0 (also called Plate Carree), -but this caused a ~5% latitude vs longitude distortion at the remaining 3 candidate landing sites such that true circles would appear elliptical. -In this new version of basemaps, we use a Mars equirectangular projection with customized standard parallels for each site to reduce distortion to <1%. -Specifically, Columbia Hills uses a standard parallel of -14.5 degrees, while Jezero and NE Syrtis both have a standard parallel of +18 degrees. Projection (.prj) files are included with this delivery. -When analyzing images, please ensure that the correct projection system is being used. For example, there is a known issue with Matlab where reading images in as a geotiff may automatically assign an -incorrect projection without the specified standard parallel, which then produces distorted linear (in meters) x/y values.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MRO HiRISE, Mosaic Jezero NE Syrtis Midway]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=NES_JEZ_MID_Visible_Mosaic_HiRISE_CTX_HRSC_GCS_MARS_07-10-2018%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MRO HiRISE, Mosaic Jezero NE Syrtis Midway layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Mosaic_Jezero_NE_Syrtis_Midway/NES_JEZ_MID_Visible_Mosaic_HiRISE_CTX_HRSC_GCS_MARS_07-10-2018.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Mosaic_Jezero_NE_Syrtis_Midway/NES_JEZ_MID_Visible_Mosaic_HiRISE_CTX_HRSC_GCS_MARS_07-10-2018.vrt deleted file mode 100644 index 1b3474d9a6..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Mosaic_Jezero_NE_Syrtis_Midway/NES_JEZ_MID_Visible_Mosaic_HiRISE_CTX_HRSC_GCS_MARS_07-10-2018.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.6822090148925781e-06, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.6822090148925781e-06 - - 0 - Red - - NES_JEZ_MID_Visible_Mosaic_HiRISE_CTX_HRSC_GCS_MARS_07-10-2018.wms - 1 - - - - 0 - - - - 0 - Green - - NES_JEZ_MID_Visible_Mosaic_HiRISE_CTX_HRSC_GCS_MARS_07-10-2018.wms - 2 - - - - 0 - - - - 0 - Blue - - NES_JEZ_MID_Visible_Mosaic_HiRISE_CTX_HRSC_GCS_MARS_07-10-2018.wms - 3 - - - - 0 - - - - Alpha - - NES_JEZ_MID_Visible_Mosaic_HiRISE_CTX_HRSC_GCS_MARS_07-10-2018.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Mosaic_Opportunity/HiRISE_Opportunity.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Mosaic_Opportunity/HiRISE_Opportunity.vrt deleted file mode 100644 index b5f2a28466..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Mosaic_Opportunity/HiRISE_Opportunity.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.6822090148925781e-06, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.6822090148925781e-06 - - 0 - Red - - HiRISE_Opportunity.wms - 1 - - - - 0 - - - - 0 - Green - - HiRISE_Opportunity.wms - 2 - - - - 0 - - - - 0 - Blue - - HiRISE_Opportunity.wms - 3 - - - - 0 - - - - Alpha - - HiRISE_Opportunity.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Mosaic_Opportunity/MRO_HiRISE_Mosaic_Opportunity.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Mosaic_Opportunity/MRO_HiRISE_Mosaic_Opportunity.asset deleted file mode 100644 index afc55141a5..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Mosaic_Opportunity/MRO_HiRISE_Mosaic_Opportunity.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "HiRISE_Opportunity", - Name = [[MRO HiRISE, Mosaic Opportunity]], - FilePath = asset.localResource("HiRISE_Opportunity.vrt"), - Description = [[This data was acquired using the High Resolution Imaging Science Experiment camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. The High Resolution Imaging Science Experiment (HiRISE) camera utilizes a 0.5-meter telescope to obtain very high resolution images of Martian landforms and terrains. From an altitude of 300 km, HiRISE has a resolution of 0.3 meters per pixel. In addition to being used for getting very detailed images of surface features, pairs of slightly offset HiRISE images are combined to produce precise digital elevation models of Martian topography.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MRO HiRISE, Mosaic Opportunity]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=HiRISE_Opportunity%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MRO HiRISE, Mosaic Opportunity layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Opportunity_Roving_Site_Mosaic/MRO_HiRISE_Opportunity_Roving_Site_Mosaic.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Opportunity_Roving_Site_Mosaic/MRO_HiRISE_Opportunity_Roving_Site_Mosaic.asset deleted file mode 100644 index 9771b9281e..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Opportunity_Roving_Site_Mosaic/MRO_HiRISE_Opportunity_Roving_Site_Mosaic.asset +++ /dev/null @@ -1,30 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "opportunity_hirise_mosaic", - Name = [[MRO HiRISE, Opportunity Roving Site Mosaic]], - FilePath = asset.localResource("opportunity_hirise_mosaic.vrt"), - Description = [[This data was acquired using the High Resolution Imaging Science Experiment camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. - -The High Resolution Imaging Science Experiment (HiRISE) camera utilizes a 0.5-meter telescope to obtain very high resolution images of Martian landforms and terrains. From an altitude of 300 km, HiRISE has a resolution of 0.3 meters per pixel. In addition to being used for getting very detailed images of surface features, pairs of slightly offset HiRISE images are combined to produce precise digital elevation models of Martian topography.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MRO HiRISE, Opportunity Roving Site Mosaic]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=opportunity_hirise_mosaic%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MRO HiRISE, Opportunity Roving Site Mosaic layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Opportunity_Roving_Site_Mosaic/opportunity_hirise_mosaic.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Opportunity_Roving_Site_Mosaic/opportunity_hirise_mosaic.vrt deleted file mode 100644 index 52cd52a1e1..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Opportunity_Roving_Site_Mosaic/opportunity_hirise_mosaic.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.6822090148925781e-06, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.6822090148925781e-06 - - 0 - Red - - opportunity_hirise_mosaic.wms - 1 - - - - 0 - - - - 0 - Green - - opportunity_hirise_mosaic.wms - 2 - - - - 0 - - - - 0 - Blue - - opportunity_hirise_mosaic.wms - 3 - - - - 0 - - - - Alpha - - opportunity_hirise_mosaic.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Phoenix_Landing_Site_Mosaic/MRO_HiRISE_Phoenix_Landing_Site_Mosaic.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Phoenix_Landing_Site_Mosaic/MRO_HiRISE_Phoenix_Landing_Site_Mosaic.asset deleted file mode 100644 index 808cf687fa..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Phoenix_Landing_Site_Mosaic/MRO_HiRISE_Phoenix_Landing_Site_Mosaic.asset +++ /dev/null @@ -1,30 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "phoenix_hirise_mosaic", - Name = [[MRO HiRISE, Phoenix Landing Site Mosaic]], - FilePath = asset.localResource("phoenix_hirise_mosaic.vrt"), - Description = [[This data was acquired using the High Resolution Imaging Science Experiment camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. - -The High Resolution Imaging Science Experiment (HiRISE) camera utilizes a 0.5-meter telescope to obtain very high resolution images of Martian landforms and terrains. From an altitude of 300 km, HiRISE has a resolution of 0.3 meters per pixel. In addition to being used for getting very detailed images of surface features, pairs of slightly offset HiRISE images are combined to produce precise digital elevation models of Martian topography.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MRO HiRISE, Phoenix Landing Site Mosaic]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=phoenix_hirise_mosaic%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MRO HiRISE, Phoenix Landing Site Mosaic layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Phoenix_Landing_Site_Mosaic/phoenix_hirise_mosaic.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Phoenix_Landing_Site_Mosaic/phoenix_hirise_mosaic.vrt deleted file mode 100644 index 30dc7cdbe9..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Phoenix_Landing_Site_Mosaic/phoenix_hirise_mosaic.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 5.3644180297851563e-06, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -5.3644180297851563e-06 - - 0 - Red - - phoenix_hirise_mosaic.wms - 1 - - - - 0 - - - - 0 - Green - - phoenix_hirise_mosaic.wms - 2 - - - - 0 - - - - 0 - Blue - - phoenix_hirise_mosaic.wms - 3 - - - - 0 - - - - Alpha - - phoenix_hirise_mosaic.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Sojourner_Roving_Site_Mosaic/MRO_HiRISE_Sojourner_Roving_Site_Mosaic.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Sojourner_Roving_Site_Mosaic/MRO_HiRISE_Sojourner_Roving_Site_Mosaic.asset deleted file mode 100644 index 399bd5e399..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Sojourner_Roving_Site_Mosaic/MRO_HiRISE_Sojourner_Roving_Site_Mosaic.asset +++ /dev/null @@ -1,30 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "sojourner_hirise_mosaic", - Name = [[MRO HiRISE, Sojourner Roving Site Mosaic]], - FilePath = asset.localResource("sojourner_hirise_mosaic.vrt"), - Description = [[This data was acquired using the High Resolution Imaging Science Experiment camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. - -The High Resolution Imaging Science Experiment (HiRISE) camera utilizes a 0.5-meter telescope to obtain very high resolution images of Martian landforms and terrains. From an altitude of 300 km, HiRISE has a resolution of 0.3 meters per pixel. In addition to being used for getting very detailed images of surface features, pairs of slightly offset HiRISE images are combined to produce precise digital elevation models of Martian topography.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MRO HiRISE, Sojourner Roving Site Mosaic]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=sojourner_hirise_mosaic%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MRO HiRISE, Sojourner Roving Site Mosaic layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Sojourner_Roving_Site_Mosaic/sojourner_hirise_mosaic.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Sojourner_Roving_Site_Mosaic/sojourner_hirise_mosaic.vrt deleted file mode 100644 index 96a678c398..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Sojourner_Roving_Site_Mosaic/sojourner_hirise_mosaic.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 5.3644180297851563e-06, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -5.3644180297851563e-06 - - 0 - Red - - sojourner_hirise_mosaic.wms - 1 - - - - 0 - - - - 0 - Green - - sojourner_hirise_mosaic.wms - 2 - - - - 0 - - - - 0 - Blue - - sojourner_hirise_mosaic.wms - 3 - - - - 0 - - - - Alpha - - sojourner_hirise_mosaic.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Southwest_Candor_Chasma_Mosaic/MRO_HiRISE_Southwest_Candor_Chasma_Mosaic.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Southwest_Candor_Chasma_Mosaic/MRO_HiRISE_Southwest_Candor_Chasma_Mosaic.asset deleted file mode 100644 index 45ecbd485a..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Southwest_Candor_Chasma_Mosaic/MRO_HiRISE_Southwest_Candor_Chasma_Mosaic.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "PSP_001918_1735_RED_A_01_ORTHO_longlat", - Name = [[MRO HiRISE, Southwest Candor Chasma Mosaic]], - FilePath = asset.localResource("PSP_001918_1735_RED_A_01_ORTHO_longlat.vrt"), - Description = [[This data was acquired using the High Resolution Imaging Science Experiment camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. The High Resolution Imaging Science Experiment (HiRISE) camera utilizes a 0.5-meter telescope to obtain very high resolution images of Martian landforms and terrains. From an altitude of 300 km, HiRISE has a resolution of 0.3 meters per pixel. In addition to being used for getting very detailed images of surface features, pairs of slightly offset HiRISE images are combined to produce precise digital elevation models of Martian topography.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MRO HiRISE, Southwest Candor Chasma Mosaic]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=PSP_001918_1735_RED_A_01_ORTHO_longlat%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MRO HiRISE, Southwest Candor Chasma Mosaic layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Southwest_Candor_Chasma_Mosaic/PSP_001918_1735_RED_A_01_ORTHO_longlat.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Southwest_Candor_Chasma_Mosaic/PSP_001918_1735_RED_A_01_ORTHO_longlat.vrt deleted file mode 100644 index fde6e6d2b3..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Southwest_Candor_Chasma_Mosaic/PSP_001918_1735_RED_A_01_ORTHO_longlat.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 5.3644180297851563e-06, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -5.3644180297851563e-06 - - 0 - Red - - PSP_001918_1735_RED_A_01_ORTHO_longlat.wms - 1 - - - - 0 - - - - 0 - Green - - PSP_001918_1735_RED_A_01_ORTHO_longlat.wms - 2 - - - - 0 - - - - 0 - Blue - - PSP_001918_1735_RED_A_01_ORTHO_longlat.wms - 3 - - - - 0 - - - - Alpha - - PSP_001918_1735_RED_A_01_ORTHO_longlat.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Spirit_Roving_Site_Mosaic/MRO_HiRISE_Spirit_Roving_Site_Mosaic.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Spirit_Roving_Site_Mosaic/MRO_HiRISE_Spirit_Roving_Site_Mosaic.asset deleted file mode 100644 index 4793a1f633..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Spirit_Roving_Site_Mosaic/MRO_HiRISE_Spirit_Roving_Site_Mosaic.asset +++ /dev/null @@ -1,30 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "spirit_hirise_mosaic", - Name = [[MRO HiRISE, Spirit Roving Site Mosaic]], - FilePath = asset.localResource("spirit_hirise_mosaic.vrt"), - Description = [[This data was acquired using the High Resolution Imaging Science Experiment camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. - -The High Resolution Imaging Science Experiment (HiRISE) camera utilizes a 0.5-meter telescope to obtain very high resolution images of Martian landforms and terrains. From an altitude of 300 km, HiRISE has a resolution of 0.3 meters per pixel. In addition to being used for getting very detailed images of surface features, pairs of slightly offset HiRISE images are combined to produce precise digital elevation models of Martian topography.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MRO HiRISE, Spirit Roving Site Mosaic]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=spirit_hirise_mosaic%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MRO HiRISE, Spirit Roving Site Mosaic layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Spirit_Roving_Site_Mosaic/spirit_hirise_mosaic.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Spirit_Roving_Site_Mosaic/spirit_hirise_mosaic.vrt deleted file mode 100644 index 7996e8858a..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Spirit_Roving_Site_Mosaic/spirit_hirise_mosaic.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.6822090148925781e-06, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.6822090148925781e-06 - - 0 - Red - - spirit_hirise_mosaic.wms - 1 - - - - 0 - - - - 0 - Green - - spirit_hirise_mosaic.wms - 2 - - - - 0 - - - - 0 - Blue - - spirit_hirise_mosaic.wms - 3 - - - - 0 - - - - Alpha - - spirit_hirise_mosaic.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Viking_1_Landing_Site_Mosaic/MRO_HiRISE_Viking_1_Landing_Site_Mosaic.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Viking_1_Landing_Site_Mosaic/MRO_HiRISE_Viking_1_Landing_Site_Mosaic.asset deleted file mode 100644 index 8a83022b71..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Viking_1_Landing_Site_Mosaic/MRO_HiRISE_Viking_1_Landing_Site_Mosaic.asset +++ /dev/null @@ -1,30 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "PSP_001521_2025_RED", - Name = [[MRO HiRISE, Viking 1 Landing Site Mosaic]], - FilePath = asset.localResource("PSP_001521_2025_RED.vrt"), - Description = [[This data was acquired using the High Resolution Imaging Science Experiment camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. - -The High Resolution Imaging Science Experiment (HiRISE) camera utilizes a 0.5-meter telescope to obtain very high resolution images of Martian landforms and terrains. From an altitude of 300 km, HiRISE has a resolution of 0.3 meters per pixel. In addition to being used for getting very detailed images of surface features, pairs of slightly offset HiRISE images are combined to produce precise digital elevation models of Martian topography.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MRO HiRISE, Viking 1 Landing Site Mosaic]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=PSP_001521_2025_RED%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MRO HiRISE, Viking 1 Landing Site Mosaic layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Viking_1_Landing_Site_Mosaic/PSP_001521_2025_RED.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Viking_1_Landing_Site_Mosaic/PSP_001521_2025_RED.vrt deleted file mode 100644 index d8d2bdba08..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Viking_1_Landing_Site_Mosaic/PSP_001521_2025_RED.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.6822090148925781e-06, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.6822090148925781e-06 - - 0 - Red - - PSP_001521_2025_RED.wms - 1 - - - - 0 - - - - 0 - Green - - PSP_001521_2025_RED.wms - 2 - - - - 0 - - - - 0 - Blue - - PSP_001521_2025_RED.wms - 3 - - - - 0 - - - - Alpha - - PSP_001521_2025_RED.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Viking_2_Landing_Site_Mosaic/MRO_HiRISE_Viking_2_Landing_Site_Mosaic.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Viking_2_Landing_Site_Mosaic/MRO_HiRISE_Viking_2_Landing_Site_Mosaic.asset deleted file mode 100644 index 83a42755ae..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Viking_2_Landing_Site_Mosaic/MRO_HiRISE_Viking_2_Landing_Site_Mosaic.asset +++ /dev/null @@ -1,30 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "PSP_001501_2280_RED", - Name = [[MRO HiRISE, Viking 2 Landing Site Mosaic]], - FilePath = asset.localResource("PSP_001501_2280_RED.vrt"), - Description = [[This data was acquired using the High Resolution Imaging Science Experiment camera aboard NASA's Mars Reconnaissance Orbiter spacecraft (MRO). MRO was launched on August 12, 2005 and arrived at Mars on March 10, 2006. It maintains a nearly circular orbit, completing an orbital revolution about every 112 minutes at an altitude of approximately 250 to 316 km or 155 to 196 miles. MRO carries a sophisticated suite of instruments used to analyze and map the landforms, stratigraphy, minerals, and ice of Mars. - -The High Resolution Imaging Science Experiment (HiRISE) camera utilizes a 0.5-meter telescope to obtain very high resolution images of Martian landforms and terrains. From an altitude of 300 km, HiRISE has a resolution of 0.3 meters per pixel. In addition to being used for getting very detailed images of surface features, pairs of slightly offset HiRISE images are combined to produce precise digital elevation models of Martian topography.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MRO HiRISE, Viking 2 Landing Site Mosaic]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=PSP_001501_2280_RED%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MRO HiRISE, Viking 2 Landing Site Mosaic layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Viking_2_Landing_Site_Mosaic/PSP_001501_2280_RED.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Viking_2_Landing_Site_Mosaic/PSP_001501_2280_RED.vrt deleted file mode 100644 index 9b0c1f863e..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MRO_HiRISE_Viking_2_Landing_Site_Mosaic/PSP_001501_2280_RED.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 5.3644180297851563e-06, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -5.3644180297851563e-06 - - 0 - Red - - PSP_001501_2280_RED.wms - 1 - - - - 0 - - - - 0 - Green - - PSP_001501_2280_RED.wms - 2 - - - - 0 - - - - 0 - Blue - - PSP_001501_2280_RED.wms - 3 - - - - 0 - - - - Alpha - - PSP_001501_2280_RED.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MSL.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MSL.asset new file mode 100644 index 0000000000..4423e5fe35 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MSL.asset @@ -0,0 +1,34 @@ +-- This file was automatically generated using a script found at +-- https://github.com/OpenSpace/scripts/treks-to-openspace. See the README.md file +-- in that repository for more information on how to run the script to update these +-- files. In particular in the case of errors, prefer to change that script rather +-- than the individual files + +local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier + +local treks_mars_pahrump_patch_8k_256m = { + Identifier = "mars_pahrump_patch_8k_256m", + Name = [[MSL, Pahrump Hills]], + FilePath = asset.localResource("MSL/Pahrump_Hills.vrt"), + Description = [[This layer is a greyscale mosaic assembled using data from the High Resolution Stereo Camera aboard the European Space Agency's Mars Express orbiter. HRSC is being used to obtain color and stereo images that will map 100% of Mars' surface at resolution better than 30 m/pixel, and 50% of the surface at better than 15 m/pixel. Each of the nine CCD lines of HRSC, a linescan imager (pushbroom camera), contains 5184 pixels. The channels consist of red, green, blue, near-infrared, three stereo channels (backward, nadir, and forward) and two photometric channels. The digital elevation model used for this layer is a combination of data derived from the HRSC and the Mars Orbiter Laser Altimeter.]] +} + +asset.onInitialize(function() + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_mars_pahrump_patch_8k_256m) +end) + +asset.onDeinitialize(function() + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_mars_pahrump_patch_8k_256m") +end) + +asset.export("mars_pahrump_patch_8k_256m", treks_mars_pahrump_patch_8k_256m) + + +asset.meta = { + Name = [[NASA Treks Layers for Mars MSL], + Version = "1.0", + Author = "NASA/Treks", + URL = "https://trek.nasa.gov/mars", + License = "NASA/Treks", + Description = [[MSL layers from NASA/Treks for Mars]] +} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MSL/Pahrump_Hills.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MSL/Pahrump_Hills.vrt new file mode 100644 index 0000000000..3ed792229d --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MSL/Pahrump_Hills.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.3411045074462891e-06, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.3411045074462891e-06 + + 0 + Red + + Pahrump_Hills.wms + 1 + + + + 0 + + + + 0 + Green + + Pahrump_Hills.wms + 2 + + + + 0 + + + + 0 + Blue + + Pahrump_Hills.wms + 3 + + + + 0 + + + + Alpha + + Pahrump_Hills.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MSL_Pahrump_Hills/mars_pahrump_patch_8k_256m.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MSL/Pahrump_Hills.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MSL_Pahrump_Hills/mars_pahrump_patch_8k_256m.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MSL/Pahrump_Hills.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MSL_Pahrump_Hills/MSL_Pahrump_Hills.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MSL_Pahrump_Hills/MSL_Pahrump_Hills.asset deleted file mode 100644 index 42d07cedbb..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MSL_Pahrump_Hills/MSL_Pahrump_Hills.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "mars_pahrump_patch_8k_256m", - Name = [[MSL, Pahrump Hills]], - FilePath = asset.localResource("mars_pahrump_patch_8k_256m.vrt"), - Description = [[This layer is a greyscale mosaic assembled using data from the High Resolution Stereo Camera aboard the European Space Agency's Mars Express orbiter. HRSC is being used to obtain color and stereo images that will map 100% of Mars' surface at resolution better than 30 m/pixel, and 50% of the surface at better than 15 m/pixel. Each of the nine CCD lines of HRSC, a linescan imager (pushbroom camera), contains 5184 pixels. The channels consist of red, green, blue, near-infrared, three stereo channels (backward, nadir, and forward) and two photometric channels. The digital elevation model used for this layer is a combination of data derived from the HRSC and the Mars Orbiter Laser Altimeter.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MSL, Pahrump Hills]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=mars_pahrump_patch_8k_256m%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MSL, Pahrump Hills layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MSL_Pahrump_Hills/mars_pahrump_patch_8k_256m.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MSL_Pahrump_Hills/mars_pahrump_patch_8k_256m.vrt deleted file mode 100644 index f57d1bdef2..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/MSL_Pahrump_Hills/mars_pahrump_patch_8k_256m.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.3411045074462891e-06, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.3411045074462891e-06 - - 0 - Red - - mars_pahrump_patch_8k_256m.wms - 1 - - - - 0 - - - - 0 - Green - - mars_pahrump_patch_8k_256m.wms - 2 - - - - 0 - - - - 0 - Blue - - mars_pahrump_patch_8k_256m.wms - 3 - - - - 0 - - - - Alpha - - mars_pahrump_patch_8k_256m.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC.asset new file mode 100644 index 0000000000..18609103be --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC.asset @@ -0,0 +1,94 @@ +-- This file was automatically generated using a script found at +-- https://github.com/OpenSpace/scripts/treks-to-openspace. See the README.md file +-- in that repository for more information on how to run the script to update these +-- files. In particular in the case of errors, prefer to change that script rather +-- than the individual files + +local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier + +local treks_HRSC_Martian_east = { + Identifier = "HRSC_Martian_east", + Name = [[Mars Express HRSC, Martian Path Eastern Section Color Mosaic]], + FilePath = asset.localResource("Mars_Express_HRSC/Martian_Path_Eastern_Section_Color_Mosaic.vrt"), + Description = [[This layer is a greyscale mosaic assembled using data from the High Resolution Stereo Camera aboard the European Space Agency's Mars Express orbiter. HRSC is being used to obtain color and stereo images that will map 100% of Mars' surface at resolution better than 30 m/pixel, and 50% of the surface at better than 15 m/pixel. Each of the nine CCD lines of HRSC, a linescan imager (pushbroom camera), contains 5184 pixels. The channels consist of red, green, blue, near-infrared, three stereo channels (backward, nadir, and forward) and two photometric channels. The digital elevation model used for this layer is a combination of data derived from the HRSC and the Mars Orbiter Laser Altimeter.]] +} + +local treks_MC11E_HRMOSCO_COL = { + Identifier = "MC11E_HRMOSCO_COL", + Name = [[Mars Express HRSC, Martian Path MC11 Quad Color Mosaic]], + FilePath = asset.localResource("Mars_Express_HRSC/Martian_Path_MC11_Quad_Color_Mosaic.vrt"), + Description = [[This layer is a combined color mosaic and 50 meter digital terrain model assembled using data from the High Resolution Stereo Camera (HRSC) aboard the European Space Agency's Mars Express orbiter. It covers the MC-11 quadrangle on Mars. For the purposes of mapping, the United States Geological Survey (USGS) has divided the surface of Mars into 30 quadrangles, labeled MC-1 through MC-30 (MC for Mars Chart). Each of the quadrangles also has a proper name derived from a prominent surface feature within the quadrangle. Much of the story of the Martian takes place within MC-11, also known as Oxia Palus. Fortunately, MC-11 happens to be the first complete quadrangle the European Space Agency produced as an HRSC 50m digital terrain model and image mosaic. HRSC is being used to obtain color and stereo images that will map 100% of Mars' surface at resolution better than 30 m/pixel, and 50% of the surface at better than 15 m/pixel. Each of the nine CCD lines of HRSC, a linescan imager (pushbroom camera), contains 5184 pixels. The channels consist of red, green, blue, near-infrared, three stereo channels (backward, nadir, and forward) and two photometric channels. This mosaic was produced by the Global Topography and Mosaic Generation Task Group of the HRSC-Team by joining nearly 100 contiguous HRSC stereo strips. HRSC data provided by ESA/DLR/FU Berlin and the Mars Express HRSC-Team.]] +} + +local treks_MC11E_HRMOSND_ND5 = { + Identifier = "MC11E_HRMOSND_ND5", + Name = [[Mars Express HRSC, Martian Path MC11 Quad Mosaic]], + FilePath = asset.localResource("Mars_Express_HRSC/Martian_Path_MC11_Quad_Mosaic.vrt"), + Description = [[This layer is a combined greyscale mosaic and 50 meter digital terrain model assembled using data from the High Resolution Stereo Camera (HRSC) aboard the European Space Agency's Mars Express orbiter. It covers the MC-11 quadrangle on Mars. For the purposes of mapping, the United States Geological Survey (USGS) has divided the surface of Mars into 30 quadrangles, labeled MC-1 through MC-30 (MC for Mars Chart). Each of the quadrangles also has a proper name derived from a prominent surface feature within the quadrangle. Much of the story of the Martian takes place within MC-11, also known as Oxia Palus. Fortunately, MC-11 happens to be the first complete quadrangle the European Space Agency produced as an HRSC 50m digital terrain model and image mosaic. HRSC is being used to obtain color and stereo images that will map 100% of Mars' surface at resolution better than 30 m/pixel, and 50% of the surface at better than 15 m/pixel. Each of the nine CCD lines of HRSC, a linescan imager (pushbroom camera), contains 5184 pixels. The channels consist of red, green, blue, near-infrared, three stereo channels (backward, nadir, and forward) and two photometric channels. While this mosaic lacks the color information shown in the color mosaic, it does show finer detail. This mosaic was produced by the Global Topography and Mosaic Generation Task Group of the HRSC-Team by joining nearly 100 contiguous HRSC stereo strips. HRSC data provided by ESA/DLR/FU Berlin and the Mars Express HRSC-Team.]] +} + +local treks_hrsc_mawrth_vallis_color = { + Identifier = "hrsc_mawrth_vallis_color", + Name = [[Mars Express HRSC, Mawrth Vallis Color Mosaic]], + FilePath = asset.localResource("Mars_Express_HRSC/Mawrth_Vallis_Color_Mosaic.vrt"), + Description = [[This layer is a greyscale mosaic assembled using data from the High Resolution Stereo Camera aboard the European Space Agency's Mars Express orbiter. HRSC is being used to obtain color and stereo images that will map 100% of Mars' surface at resolution better than 30 m/pixel, and 50% of the surface at better than 15 m/pixel. Each of the nine CCD lines of HRSC, a linescan imager (pushbroom camera), contains 5184 pixels. The channels consist of red, green, blue, near-infrared, three stereo channels (backward, nadir, and forward) and two photometric channels. The digital elevation model used for this layer is a combination of data derived from the HRSC and the Mars Orbiter Laser Altimeter.]] +} + +local treks_hrsc_mawrth_vallis = { + Identifier = "hrsc_mawrth_vallis", + Name = [[Mars Express HRSC, Mawrth Vallis Mosaic]], + FilePath = asset.localResource("Mars_Express_HRSC/Mawrth_Vallis_Mosaic.vrt"), + Description = [[This layer is a greyscale mosaic assembled using data from the High Resolution Stereo Camera aboard the European Space Agency's Mars Express orbiter. HRSC is being used to obtain color and stereo images that will map 100% of Mars' surface at resolution better than 30 m/pixel, and 50% of the surface at better than 15 m/pixel. Each of the nine CCD lines of HRSC, a linescan imager (pushbroom camera), contains 5184 pixels. The channels consist of red, green, blue, near-infrared, three stereo channels (backward, nadir, and forward) and two photometric channels. The digital elevation model used for this layer is a combination of data derived from the HRSC and the Mars Orbiter Laser Altimeter.]] +} + +local treks_h2942_0000_nd3 = { + Identifier = "h2942_0000_nd3", + Name = [[Mars Express HRSC, Viking 1 Landing Site Mosaic]], + FilePath = asset.localResource("Mars_Express_HRSC/Viking_1_Landing_Site_Mosaic.vrt"), + Description = [[This layer is a greyscale mosaic assembled using data from the High Resolution Stereo Camera aboard the European Space Agency's Mars Express orbiter. HRSC is being used to obtain color and stereo images that will map 100% of Mars' surface at resolution better than 30 m/pixel, and 50% of the surface at better than 15 m/pixel. Each of the nine CCD lines of HRSC, a linescan imager (pushbroom camera), contains 5184 pixels. The channels consist of red, green, blue, near-infrared, three stereo channels (backward, nadir, and forward) and two photometric channels. The digital elevation model used for this layer is a combination of data derived from the HRSC and the Mars Orbiter Laser Altimeter.]] +} + +local treks_h1394_0000_nd3 = { + Identifier = "h1394_0000_nd3", + Name = [[Mars Express HRSC, Viking 2 Landing Site Mosaic]], + FilePath = asset.localResource("Mars_Express_HRSC/Viking_2_Landing_Site_Mosaic.vrt"), + Description = [[This layer is a greyscale mosaic assembled using data from the High Resolution Stereo Camera aboard the European Space Agency's Mars Express orbiter. HRSC is being used to obtain color and stereo images that will map 100% of Mars' surface at resolution better than 30 m/pixel, and 50% of the surface at better than 15 m/pixel. Each of the nine CCD lines of HRSC, a linescan imager (pushbroom camera), contains 5184 pixels. The channels consist of red, green, blue, near-infrared, three stereo channels (backward, nadir, and forward) and two photometric channels. The digital elevation model used for this layer is a combination of data derived from the HRSC and the Mars Orbiter Laser Altimeter.]] +} + +asset.onInitialize(function() + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_HRSC_Martian_east) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_MC11E_HRMOSCO_COL) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_MC11E_HRMOSND_ND5) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_hrsc_mawrth_vallis_color) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_hrsc_mawrth_vallis) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_h2942_0000_nd3) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_h1394_0000_nd3) +end) + +asset.onDeinitialize(function() + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_HRSC_Martian_east") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_MC11E_HRMOSCO_COL") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_MC11E_HRMOSND_ND5") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_hrsc_mawrth_vallis_color") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_hrsc_mawrth_vallis") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_h2942_0000_nd3") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_h1394_0000_nd3") +end) + +asset.export("HRSC_Martian_east", treks_HRSC_Martian_east) +asset.export("MC11E_HRMOSCO_COL", treks_MC11E_HRMOSCO_COL) +asset.export("MC11E_HRMOSND_ND5", treks_MC11E_HRMOSND_ND5) +asset.export("hrsc_mawrth_vallis_color", treks_hrsc_mawrth_vallis_color) +asset.export("hrsc_mawrth_vallis", treks_hrsc_mawrth_vallis) +asset.export("h2942_0000_nd3", treks_h2942_0000_nd3) +asset.export("h1394_0000_nd3", treks_h1394_0000_nd3) + + +asset.meta = { + Name = [[NASA Treks Layers for Mars Mars_Express_HRSC], + Version = "1.0", + Author = "NASA/Treks", + URL = "https://trek.nasa.gov/mars", + License = "NASA/Treks", + Description = [[Mars_Express_HRSC layers from NASA/Treks for Mars]] +} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC/Martian_Path_Eastern_Section_Color_Mosaic.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC/Martian_Path_Eastern_Section_Color_Mosaic.vrt new file mode 100644 index 0000000000..664ddeccb7 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC/Martian_Path_Eastern_Section_Color_Mosaic.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 + + 0 + Red + + Martian_Path_Eastern_Section_Color_Mosaic.wms + 1 + + + + 0 + + + + 0 + Green + + Martian_Path_Eastern_Section_Color_Mosaic.wms + 2 + + + + 0 + + + + 0 + Blue + + Martian_Path_Eastern_Section_Color_Mosaic.wms + 3 + + + + 0 + + + + Alpha + + Martian_Path_Eastern_Section_Color_Mosaic.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC_Martian_Path_Eastern_Section_Color_Mosaic/HRSC_Martian_east.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC/Martian_Path_Eastern_Section_Color_Mosaic.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC_Martian_Path_Eastern_Section_Color_Mosaic/HRSC_Martian_east.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC/Martian_Path_Eastern_Section_Color_Mosaic.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC/Martian_Path_MC11_Quad_Color_Mosaic.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC/Martian_Path_MC11_Quad_Color_Mosaic.vrt new file mode 100644 index 0000000000..a9586437aa --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC/Martian_Path_MC11_Quad_Color_Mosaic.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 6.8664550781250000e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -6.8664550781250000e-04 + + 0 + Red + + Martian_Path_MC11_Quad_Color_Mosaic.wms + 1 + + + + 0 + + + + 0 + Green + + Martian_Path_MC11_Quad_Color_Mosaic.wms + 2 + + + + 0 + + + + 0 + Blue + + Martian_Path_MC11_Quad_Color_Mosaic.wms + 3 + + + + 0 + + + + Alpha + + Martian_Path_MC11_Quad_Color_Mosaic.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC_Martian_Path_MC11_Quad_Color_Mosaic/MC11E_HRMOSCO_COL.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC/Martian_Path_MC11_Quad_Color_Mosaic.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC_Martian_Path_MC11_Quad_Color_Mosaic/MC11E_HRMOSCO_COL.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC/Martian_Path_MC11_Quad_Color_Mosaic.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC/Martian_Path_MC11_Quad_Mosaic.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC/Martian_Path_MC11_Quad_Mosaic.vrt new file mode 100644 index 0000000000..404ba0f067 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC/Martian_Path_MC11_Quad_Mosaic.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 + + 0 + Red + + Martian_Path_MC11_Quad_Mosaic.wms + 1 + + + + 0 + + + + 0 + Green + + Martian_Path_MC11_Quad_Mosaic.wms + 2 + + + + 0 + + + + 0 + Blue + + Martian_Path_MC11_Quad_Mosaic.wms + 3 + + + + 0 + + + + Alpha + + Martian_Path_MC11_Quad_Mosaic.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC_Martian_Path_MC11_Quad_Mosaic/MC11E_HRMOSND_ND5.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC/Martian_Path_MC11_Quad_Mosaic.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC_Martian_Path_MC11_Quad_Mosaic/MC11E_HRMOSND_ND5.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC/Martian_Path_MC11_Quad_Mosaic.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC/Mawrth_Vallis_Color_Mosaic.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC/Mawrth_Vallis_Color_Mosaic.vrt new file mode 100644 index 0000000000..d01b480c2c --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC/Mawrth_Vallis_Color_Mosaic.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 3.4332275390625000e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -3.4332275390625000e-04 + + 0 + Red + + Mawrth_Vallis_Color_Mosaic.wms + 1 + + + + 0 + + + + 0 + Green + + Mawrth_Vallis_Color_Mosaic.wms + 2 + + + + 0 + + + + 0 + Blue + + Mawrth_Vallis_Color_Mosaic.wms + 3 + + + + 0 + + + + Alpha + + Mawrth_Vallis_Color_Mosaic.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC_Mawrth_Vallis_Color_Mosaic/hrsc_mawrth_vallis_color.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC/Mawrth_Vallis_Color_Mosaic.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC_Mawrth_Vallis_Color_Mosaic/hrsc_mawrth_vallis_color.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC/Mawrth_Vallis_Color_Mosaic.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC/Mawrth_Vallis_Mosaic.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC/Mawrth_Vallis_Mosaic.vrt new file mode 100644 index 0000000000..fb602c7753 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC/Mawrth_Vallis_Mosaic.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 3.4332275390625000e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -3.4332275390625000e-04 + + 0 + Red + + Mawrth_Vallis_Mosaic.wms + 1 + + + + 0 + + + + 0 + Green + + Mawrth_Vallis_Mosaic.wms + 2 + + + + 0 + + + + 0 + Blue + + Mawrth_Vallis_Mosaic.wms + 3 + + + + 0 + + + + Alpha + + Mawrth_Vallis_Mosaic.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC_Mawrth_Vallis_Mosaic/hrsc_mawrth_vallis.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC/Mawrth_Vallis_Mosaic.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC_Mawrth_Vallis_Mosaic/hrsc_mawrth_vallis.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC/Mawrth_Vallis_Mosaic.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC/Viking_1_Landing_Site_Mosaic.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC/Viking_1_Landing_Site_Mosaic.vrt new file mode 100644 index 0000000000..247fcb16dc --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC/Viking_1_Landing_Site_Mosaic.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 3.4332275390625000e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -3.4332275390625000e-04 + + 0 + Red + + Viking_1_Landing_Site_Mosaic.wms + 1 + + + + 0 + + + + 0 + Green + + Viking_1_Landing_Site_Mosaic.wms + 2 + + + + 0 + + + + 0 + Blue + + Viking_1_Landing_Site_Mosaic.wms + 3 + + + + 0 + + + + Alpha + + Viking_1_Landing_Site_Mosaic.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC_Viking_1_Landing_Site_Mosaic/h2942_0000_nd3.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC/Viking_1_Landing_Site_Mosaic.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC_Viking_1_Landing_Site_Mosaic/h2942_0000_nd3.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC/Viking_1_Landing_Site_Mosaic.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC/Viking_2_Landing_Site_Mosaic.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC/Viking_2_Landing_Site_Mosaic.vrt new file mode 100644 index 0000000000..9297feb593 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC/Viking_2_Landing_Site_Mosaic.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Viking_2_Landing_Site_Mosaic.wms + 1 + + + + 0 + + + + 0 + Green + + Viking_2_Landing_Site_Mosaic.wms + 2 + + + + 0 + + + + 0 + Blue + + Viking_2_Landing_Site_Mosaic.wms + 3 + + + + 0 + + + + Alpha + + Viking_2_Landing_Site_Mosaic.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC_Viking_2_Landing_Site_Mosaic/h1394_0000_nd3.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC/Viking_2_Landing_Site_Mosaic.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC_Viking_2_Landing_Site_Mosaic/h1394_0000_nd3.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC/Viking_2_Landing_Site_Mosaic.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC_Martian_Path_Eastern_Section_Color_Mosaic/HRSC_Martian_east.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC_Martian_Path_Eastern_Section_Color_Mosaic/HRSC_Martian_east.vrt deleted file mode 100644 index 6d9f4931a9..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC_Martian_Path_Eastern_Section_Color_Mosaic/HRSC_Martian_east.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 - - 0 - Red - - HRSC_Martian_east.wms - 1 - - - - 0 - - - - 0 - Green - - HRSC_Martian_east.wms - 2 - - - - 0 - - - - 0 - Blue - - HRSC_Martian_east.wms - 3 - - - - 0 - - - - Alpha - - HRSC_Martian_east.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC_Martian_Path_Eastern_Section_Color_Mosaic/Mars_Express_HRSC_Martian_Path_Eastern_Section_Color_Mosaic.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC_Martian_Path_Eastern_Section_Color_Mosaic/Mars_Express_HRSC_Martian_Path_Eastern_Section_Color_Mosaic.asset deleted file mode 100644 index 5be08e257c..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC_Martian_Path_Eastern_Section_Color_Mosaic/Mars_Express_HRSC_Martian_Path_Eastern_Section_Color_Mosaic.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "HRSC_Martian_east", - Name = [[Mars Express HRSC, Martian Path Eastern Section Color Mosaic]], - FilePath = asset.localResource("HRSC_Martian_east.vrt"), - Description = [[This layer is a greyscale mosaic assembled using data from the High Resolution Stereo Camera aboard the European Space Agency's Mars Express orbiter. HRSC is being used to obtain color and stereo images that will map 100% of Mars' surface at resolution better than 30 m/pixel, and 50% of the surface at better than 15 m/pixel. Each of the nine CCD lines of HRSC, a linescan imager (pushbroom camera), contains 5184 pixels. The channels consist of red, green, blue, near-infrared, three stereo channels (backward, nadir, and forward) and two photometric channels. The digital elevation model used for this layer is a combination of data derived from the HRSC and the Mars Orbiter Laser Altimeter.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Mars Express HRSC, Martian Path Eastern Section Color Mosaic]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=HRSC_Martian_east%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Mars Express HRSC, Martian Path Eastern Section Color Mosaic layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC_Martian_Path_MC11_Quad_Color_Mosaic/MC11E_HRMOSCO_COL.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC_Martian_Path_MC11_Quad_Color_Mosaic/MC11E_HRMOSCO_COL.vrt deleted file mode 100644 index 34087f3d28..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC_Martian_Path_MC11_Quad_Color_Mosaic/MC11E_HRMOSCO_COL.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 6.8664550781250000e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -6.8664550781250000e-04 - - 0 - Red - - MC11E_HRMOSCO_COL.wms - 1 - - - - 0 - - - - 0 - Green - - MC11E_HRMOSCO_COL.wms - 2 - - - - 0 - - - - 0 - Blue - - MC11E_HRMOSCO_COL.wms - 3 - - - - 0 - - - - Alpha - - MC11E_HRMOSCO_COL.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC_Martian_Path_MC11_Quad_Color_Mosaic/Mars_Express_HRSC_Martian_Path_MC11_Quad_Color_Mosaic.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC_Martian_Path_MC11_Quad_Color_Mosaic/Mars_Express_HRSC_Martian_Path_MC11_Quad_Color_Mosaic.asset deleted file mode 100644 index 7490928200..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC_Martian_Path_MC11_Quad_Color_Mosaic/Mars_Express_HRSC_Martian_Path_MC11_Quad_Color_Mosaic.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "MC11E_HRMOSCO_COL", - Name = [[Mars Express HRSC, Martian Path MC11 Quad Color Mosaic]], - FilePath = asset.localResource("MC11E_HRMOSCO_COL.vrt"), - Description = [[This layer is a combined color mosaic and 50 meter digital terrain model assembled using data from the High Resolution Stereo Camera (HRSC) aboard the European Space Agency's Mars Express orbiter. It covers the MC-11 quadrangle on Mars. For the purposes of mapping, the United States Geological Survey (USGS) has divided the surface of Mars into 30 quadrangles, labeled MC-1 through MC-30 (MC for Mars Chart). Each of the quadrangles also has a proper name derived from a prominent surface feature within the quadrangle. Much of the story of the Martian takes place within MC-11, also known as Oxia Palus. Fortunately, MC-11 happens to be the first complete quadrangle the European Space Agency produced as an HRSC 50m digital terrain model and image mosaic. HRSC is being used to obtain color and stereo images that will map 100% of Mars' surface at resolution better than 30 m/pixel, and 50% of the surface at better than 15 m/pixel. Each of the nine CCD lines of HRSC, a linescan imager (pushbroom camera), contains 5184 pixels. The channels consist of red, green, blue, near-infrared, three stereo channels (backward, nadir, and forward) and two photometric channels. This mosaic was produced by the Global Topography and Mosaic Generation Task Group of the HRSC-Team by joining nearly 100 contiguous HRSC stereo strips. HRSC data provided by ESA/DLR/FU Berlin and the Mars Express HRSC-Team.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Mars Express HRSC, Martian Path MC11 Quad Color Mosaic]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=MC11E_HRMOSCO_COL%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Mars Express HRSC, Martian Path MC11 Quad Color Mosaic layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC_Martian_Path_MC11_Quad_Mosaic/MC11E_HRMOSND_ND5.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC_Martian_Path_MC11_Quad_Mosaic/MC11E_HRMOSND_ND5.vrt deleted file mode 100644 index 3f85d82908..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC_Martian_Path_MC11_Quad_Mosaic/MC11E_HRMOSND_ND5.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 - - 0 - Red - - MC11E_HRMOSND_ND5.wms - 1 - - - - 0 - - - - 0 - Green - - MC11E_HRMOSND_ND5.wms - 2 - - - - 0 - - - - 0 - Blue - - MC11E_HRMOSND_ND5.wms - 3 - - - - 0 - - - - Alpha - - MC11E_HRMOSND_ND5.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC_Martian_Path_MC11_Quad_Mosaic/Mars_Express_HRSC_Martian_Path_MC11_Quad_Mosaic.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC_Martian_Path_MC11_Quad_Mosaic/Mars_Express_HRSC_Martian_Path_MC11_Quad_Mosaic.asset deleted file mode 100644 index 0e836f095b..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC_Martian_Path_MC11_Quad_Mosaic/Mars_Express_HRSC_Martian_Path_MC11_Quad_Mosaic.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "MC11E_HRMOSND_ND5", - Name = [[Mars Express HRSC, Martian Path MC11 Quad Mosaic]], - FilePath = asset.localResource("MC11E_HRMOSND_ND5.vrt"), - Description = [[This layer is a combined greyscale mosaic and 50 meter digital terrain model assembled using data from the High Resolution Stereo Camera (HRSC) aboard the European Space Agency's Mars Express orbiter. It covers the MC-11 quadrangle on Mars. For the purposes of mapping, the United States Geological Survey (USGS) has divided the surface of Mars into 30 quadrangles, labeled MC-1 through MC-30 (MC for Mars Chart). Each of the quadrangles also has a proper name derived from a prominent surface feature within the quadrangle. Much of the story of the Martian takes place within MC-11, also known as Oxia Palus. Fortunately, MC-11 happens to be the first complete quadrangle the European Space Agency produced as an HRSC 50m digital terrain model and image mosaic. HRSC is being used to obtain color and stereo images that will map 100% of Mars' surface at resolution better than 30 m/pixel, and 50% of the surface at better than 15 m/pixel. Each of the nine CCD lines of HRSC, a linescan imager (pushbroom camera), contains 5184 pixels. The channels consist of red, green, blue, near-infrared, three stereo channels (backward, nadir, and forward) and two photometric channels. While this mosaic lacks the color information shown in the color mosaic, it does show finer detail. This mosaic was produced by the Global Topography and Mosaic Generation Task Group of the HRSC-Team by joining nearly 100 contiguous HRSC stereo strips. HRSC data provided by ESA/DLR/FU Berlin and the Mars Express HRSC-Team.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Mars Express HRSC, Martian Path MC11 Quad Mosaic]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=MC11E_HRMOSND_ND5%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Mars Express HRSC, Martian Path MC11 Quad Mosaic layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC_Mawrth_Vallis_Color_Mosaic/Mars_Express_HRSC_Mawrth_Vallis_Color_Mosaic.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC_Mawrth_Vallis_Color_Mosaic/Mars_Express_HRSC_Mawrth_Vallis_Color_Mosaic.asset deleted file mode 100644 index 7e22edd75d..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC_Mawrth_Vallis_Color_Mosaic/Mars_Express_HRSC_Mawrth_Vallis_Color_Mosaic.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "hrsc_mawrth_vallis_color", - Name = [[Mars Express HRSC, Mawrth Vallis Color Mosaic]], - FilePath = asset.localResource("hrsc_mawrth_vallis_color.vrt"), - Description = [[This layer is a greyscale mosaic assembled using data from the High Resolution Stereo Camera aboard the European Space Agency's Mars Express orbiter. HRSC is being used to obtain color and stereo images that will map 100% of Mars' surface at resolution better than 30 m/pixel, and 50% of the surface at better than 15 m/pixel. Each of the nine CCD lines of HRSC, a linescan imager (pushbroom camera), contains 5184 pixels. The channels consist of red, green, blue, near-infrared, three stereo channels (backward, nadir, and forward) and two photometric channels. The digital elevation model used for this layer is a combination of data derived from the HRSC and the Mars Orbiter Laser Altimeter.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Mars Express HRSC, Mawrth Vallis Color Mosaic]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=hrsc_mawrth_vallis_color%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Mars Express HRSC, Mawrth Vallis Color Mosaic layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC_Mawrth_Vallis_Color_Mosaic/hrsc_mawrth_vallis_color.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC_Mawrth_Vallis_Color_Mosaic/hrsc_mawrth_vallis_color.vrt deleted file mode 100644 index c9dcc49dde..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC_Mawrth_Vallis_Color_Mosaic/hrsc_mawrth_vallis_color.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 3.4332275390625000e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -3.4332275390625000e-04 - - 0 - Red - - hrsc_mawrth_vallis_color.wms - 1 - - - - 0 - - - - 0 - Green - - hrsc_mawrth_vallis_color.wms - 2 - - - - 0 - - - - 0 - Blue - - hrsc_mawrth_vallis_color.wms - 3 - - - - 0 - - - - Alpha - - hrsc_mawrth_vallis_color.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC_Mawrth_Vallis_Mosaic/Mars_Express_HRSC_Mawrth_Vallis_Mosaic.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC_Mawrth_Vallis_Mosaic/Mars_Express_HRSC_Mawrth_Vallis_Mosaic.asset deleted file mode 100644 index b6344ae56b..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC_Mawrth_Vallis_Mosaic/Mars_Express_HRSC_Mawrth_Vallis_Mosaic.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "hrsc_mawrth_vallis", - Name = [[Mars Express HRSC, Mawrth Vallis Mosaic]], - FilePath = asset.localResource("hrsc_mawrth_vallis.vrt"), - Description = [[This layer is a greyscale mosaic assembled using data from the High Resolution Stereo Camera aboard the European Space Agency's Mars Express orbiter. HRSC is being used to obtain color and stereo images that will map 100% of Mars' surface at resolution better than 30 m/pixel, and 50% of the surface at better than 15 m/pixel. Each of the nine CCD lines of HRSC, a linescan imager (pushbroom camera), contains 5184 pixels. The channels consist of red, green, blue, near-infrared, three stereo channels (backward, nadir, and forward) and two photometric channels. The digital elevation model used for this layer is a combination of data derived from the HRSC and the Mars Orbiter Laser Altimeter.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Mars Express HRSC, Mawrth Vallis Mosaic]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=hrsc_mawrth_vallis%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Mars Express HRSC, Mawrth Vallis Mosaic layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC_Mawrth_Vallis_Mosaic/hrsc_mawrth_vallis.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC_Mawrth_Vallis_Mosaic/hrsc_mawrth_vallis.vrt deleted file mode 100644 index fb947fcb2d..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC_Mawrth_Vallis_Mosaic/hrsc_mawrth_vallis.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 3.4332275390625000e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -3.4332275390625000e-04 - - 0 - Red - - hrsc_mawrth_vallis.wms - 1 - - - - 0 - - - - 0 - Green - - hrsc_mawrth_vallis.wms - 2 - - - - 0 - - - - 0 - Blue - - hrsc_mawrth_vallis.wms - 3 - - - - 0 - - - - Alpha - - hrsc_mawrth_vallis.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC_Viking_1_Landing_Site_Mosaic/Mars_Express_HRSC_Viking_1_Landing_Site_Mosaic.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC_Viking_1_Landing_Site_Mosaic/Mars_Express_HRSC_Viking_1_Landing_Site_Mosaic.asset deleted file mode 100644 index 0888baaa8b..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC_Viking_1_Landing_Site_Mosaic/Mars_Express_HRSC_Viking_1_Landing_Site_Mosaic.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "h2942_0000_nd3", - Name = [[Mars Express HRSC, Viking 1 Landing Site Mosaic]], - FilePath = asset.localResource("h2942_0000_nd3.vrt"), - Description = [[This layer is a greyscale mosaic assembled using data from the High Resolution Stereo Camera aboard the European Space Agency's Mars Express orbiter. HRSC is being used to obtain color and stereo images that will map 100% of Mars' surface at resolution better than 30 m/pixel, and 50% of the surface at better than 15 m/pixel. Each of the nine CCD lines of HRSC, a linescan imager (pushbroom camera), contains 5184 pixels. The channels consist of red, green, blue, near-infrared, three stereo channels (backward, nadir, and forward) and two photometric channels. The digital elevation model used for this layer is a combination of data derived from the HRSC and the Mars Orbiter Laser Altimeter.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Mars Express HRSC, Viking 1 Landing Site Mosaic]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=h2942_0000_nd3%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Mars Express HRSC, Viking 1 Landing Site Mosaic layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC_Viking_1_Landing_Site_Mosaic/h2942_0000_nd3.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC_Viking_1_Landing_Site_Mosaic/h2942_0000_nd3.vrt deleted file mode 100644 index c943fb1a70..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC_Viking_1_Landing_Site_Mosaic/h2942_0000_nd3.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 3.4332275390625000e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -3.4332275390625000e-04 - - 0 - Red - - h2942_0000_nd3.wms - 1 - - - - 0 - - - - 0 - Green - - h2942_0000_nd3.wms - 2 - - - - 0 - - - - 0 - Blue - - h2942_0000_nd3.wms - 3 - - - - 0 - - - - Alpha - - h2942_0000_nd3.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC_Viking_2_Landing_Site_Mosaic/Mars_Express_HRSC_Viking_2_Landing_Site_Mosaic.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC_Viking_2_Landing_Site_Mosaic/Mars_Express_HRSC_Viking_2_Landing_Site_Mosaic.asset deleted file mode 100644 index dfb25e0c18..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC_Viking_2_Landing_Site_Mosaic/Mars_Express_HRSC_Viking_2_Landing_Site_Mosaic.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "h1394_0000_nd3", - Name = [[Mars Express HRSC, Viking 2 Landing Site Mosaic]], - FilePath = asset.localResource("h1394_0000_nd3.vrt"), - Description = [[This layer is a greyscale mosaic assembled using data from the High Resolution Stereo Camera aboard the European Space Agency's Mars Express orbiter. HRSC is being used to obtain color and stereo images that will map 100% of Mars' surface at resolution better than 30 m/pixel, and 50% of the surface at better than 15 m/pixel. Each of the nine CCD lines of HRSC, a linescan imager (pushbroom camera), contains 5184 pixels. The channels consist of red, green, blue, near-infrared, three stereo channels (backward, nadir, and forward) and two photometric channels. The digital elevation model used for this layer is a combination of data derived from the HRSC and the Mars Orbiter Laser Altimeter.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Mars Express HRSC, Viking 2 Landing Site Mosaic]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=h1394_0000_nd3%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Mars Express HRSC, Viking 2 Landing Site Mosaic layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC_Viking_2_Landing_Site_Mosaic/h1394_0000_nd3.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC_Viking_2_Landing_Site_Mosaic/h1394_0000_nd3.vrt deleted file mode 100644 index bd7e39aafa..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Express_HRSC_Viking_2_Landing_Site_Mosaic/h1394_0000_nd3.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - h1394_0000_nd3.wms - 1 - - - - 0 - - - - 0 - Green - - h1394_0000_nd3.wms - 2 - - - - 0 - - - - 0 - Blue - - h1394_0000_nd3.wms - 3 - - - - 0 - - - - Alpha - - h1394_0000_nd3.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX.asset new file mode 100644 index 0000000000..56fdc9e4c1 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX.asset @@ -0,0 +1,1015 @@ +-- This file was automatically generated using a script found at +-- https://github.com/OpenSpace/scripts/treks-to-openspace. See the README.md file +-- in that repository for more information on how to run the script to update these +-- files. In particular in the case of errors, prefer to change that script rather +-- than the individual files + +local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier + +local treks_CTX_ClrSlope_8bit_12S182E_24mp_P22_009609_1674_B02_010453_1675 = { + Identifier = "CTX_ClrSlope_8bit_12S182E_24mp_P22_009609_1674_B02_010453_1675", + Name = [[Mars Reconnaissance Orbiter CTX, Color Slope Apollinaris 12S182E]], + FilePath = asset.localResource("Mars_Reconnaissance_Orbiter_CTX/Color_Slope_Apollinaris_12S182E.vrt"), + Description = [[This is a colorized version of the original 2x2 pixel slope in degrees (also called a 1 baseline slope). This was produced as part of an effort to characterize topography within candidate Human Exploration Zones for Mars. The DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). THe DEM has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. + +References: +Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. + +Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261. + +Slopes were derived using the Python script called gdal_baseline_slope.py: https://github.com/USGS-Astrogeology/GDAL_scripts/blob/master/gdal_baseline_slope ]] +} + +local treks_CTX_ClrSlope_8bit_13S182E_24mp_G15_024127_1673_G16_024483_1673 = { + Identifier = "CTX_ClrSlope_8bit_13S182E_24mp_G15_024127_1673_G16_024483_1673", + Name = [[Mars Reconnaissance Orbiter CTX, Color Slope Apollinaris 13S182E]], + FilePath = asset.localResource("Mars_Reconnaissance_Orbiter_CTX/Color_Slope_Apollinaris_13S182E.vrt"), + Description = [[This is a colorized version of the original 2x2 pixel slope in degrees (also called a 1 baseline slope). This was produced as part of an effort to characterize topography within candidate Human Exploration Zones for Mars. The DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). THe DEM has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. + +References: +Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. + +Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261. + +Slopes were derived using the Python script called gdal_baseline_slope.py: https://github.com/USGS-Astrogeology/GDAL_scripts/blob/master/gdal_baseline_slope ]] +} + +local treks_CTX_ClrSlope_8bit_14S184E_24mp_B01_009886_1658_P21_009385_1658 = { + Identifier = "CTX_ClrSlope_8bit_14S184E_24mp_B01_009886_1658_P21_009385_1658", + Name = [[Mars Reconnaissance Orbiter CTX, Color Slope Apollinaris 14S184E]], + FilePath = asset.localResource("Mars_Reconnaissance_Orbiter_CTX/Color_Slope_Apollinaris_14S184E.vrt"), + Description = [[This is a colorized version of the original 2x2 pixel slope in degrees (also called a 1 baseline slope). This was produced as part of an effort to characterize topography within candidate Human Exploration Zones for Mars. The DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). THe DEM has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. + +References: +Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. + +Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261. + +Slopes were derived using the Python script called gdal_baseline_slope.py: https://github.com/USGS-Astrogeology/GDAL_scripts/blob/master/gdal_baseline_slope ]] +} + +local treks_CTX_ClrSlope_8bit_10S291E_24mp_P22_009684_1699_B02_010396_1699 = { + Identifier = "CTX_ClrSlope_8bit_10S291E_24mp_P22_009684_1699_B02_010396_1699", + Name = [[Mars Reconnaissance Orbiter CTX, Color Slope Coprates 10S291E]], + FilePath = asset.localResource("Mars_Reconnaissance_Orbiter_CTX/Color_Slope_Coprates_10S291E.vrt"), + Description = [[This is a colorized version of the original 2x2 pixel slope in degrees (also called a 1 baseline slope). This was produced as part of an effort to characterize topography within candidate Human Exploration Zones for Mars. The DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). THe DEM has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. + +References: +Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. + +Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261. + +Slopes were derived using the Python script called gdal_baseline_slope.py: https://github.com/USGS-Astrogeology/GDAL_scripts/blob/master/gdal_baseline_slope ]] +} + +local treks_CTX_ClrSlope_8bit_11S293E_24mp_B09_013231_1696_B11_013732_1690 = { + Identifier = "CTX_ClrSlope_8bit_11S293E_24mp_B09_013231_1696_B11_013732_1690", + Name = [[Mars Reconnaissance Orbiter CTX, Color Slope Coprates 11S293E]], + FilePath = asset.localResource("Mars_Reconnaissance_Orbiter_CTX/Color_Slope_Coprates_11S293E.vrt"), + Description = [[This is a colorized version of the original 2x2 pixel slope in degrees (also called a 1 baseline slope). This was produced as part of an effort to characterize topography within candidate Human Exploration Zones for Mars. The DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). THe DEM has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. + +References: +Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. + +Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261. + +Slopes were derived using the Python script called gdal_baseline_slope.py: https://github.com/USGS-Astrogeology/GDAL_scripts/blob/master/gdal_baseline_slope ]] +} + +local treks_CTX_ClrSlope_8bit_13S293E_24mp_G07_020879_1669_G09_021657_1665 = { + Identifier = "CTX_ClrSlope_8bit_13S293E_24mp_G07_020879_1669_G09_021657_1665", + Name = [[Mars Reconnaissance Orbiter CTX, Color Slope Coprates 13S293E]], + FilePath = asset.localResource("Mars_Reconnaissance_Orbiter_CTX/Color_Slope_Coprates_13S293E.vrt"), + Description = [[This is a colorized version of the original 2x2 pixel slope in degrees (also called a 1 baseline slope). This was produced as part of an effort to characterize topography within candidate Human Exploration Zones for Mars. The DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). THe DEM has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. + +References: +Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. + +Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261. + +Slopes were derived using the Python script called gdal_baseline_slope.py: https://github.com/USGS-Astrogeology/GDAL_scripts/blob/master/gdal_baseline_slope ]] +} + +local treks_CTX_ClrSlope_8bit_37N024E_24mp_G05_020203_2178_G22_026994_2170 = { + Identifier = "CTX_ClrSlope_8bit_37N024E_24mp_G05_020203_2178_G22_026994_2170", + Name = [[Mars Reconnaissance Orbiter CTX, Color Slope Deuteronius 37N024E]], + FilePath = asset.localResource("Mars_Reconnaissance_Orbiter_CTX/Color_Slope_Deuteronius_37N024E.vrt"), + Description = [[This is a colorized version of the original 2x2 pixel slope in degrees (also called a 1 baseline slope). This was produced as part of an effort to characterize topography within candidate Human Exploration Zones for Mars. The DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). THe DEM has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. + +References: +Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. + +Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261. + +Slopes were derived using the Python script called gdal_baseline_slope.py: https://github.com/USGS-Astrogeology/GDAL_scripts/blob/master/gdal_baseline_slope ]] +} + +local treks_CTX_ClrSlope_8bit_38N024E_24mp_B17_016168_2181_G16_024594_2181 = { + Identifier = "CTX_ClrSlope_8bit_38N024E_24mp_B17_016168_2181_G16_024594_2181", + Name = [[Mars Reconnaissance Orbiter CTX, Color Slope Deuteronius 38N024E]], + FilePath = asset.localResource("Mars_Reconnaissance_Orbiter_CTX/Color_Slope_Deuteronius_38N024E.vrt"), + Description = [[This is a colorized version of the original 2x2 pixel slope in degrees (also called a 1 baseline slope). This was produced as part of an effort to characterize topography within candidate Human Exploration Zones for Mars. The DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). THe DEM has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. + +References: +Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. + +Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261. + +Slopes were derived using the Python script called gdal_baseline_slope.py: https://github.com/USGS-Astrogeology/GDAL_scripts/blob/master/gdal_baseline_slope ]] +} + +local treks_CTX_ClrSlope_8bit_39N024E_24mp_D15_032875_2196_D15_033165_2196 = { + Identifier = "CTX_ClrSlope_8bit_39N024E_24mp_D15_032875_2196_D15_033165_2196", + Name = [[Mars Reconnaissance Orbiter CTX, Color Slope Deuteronius 39N024E]], + FilePath = asset.localResource("Mars_Reconnaissance_Orbiter_CTX/Color_Slope_Deuteronius_39N024E.vrt"), + Description = [[This is a colorized version of the original 2x2 pixel slope in degrees (also called a 1 baseline slope). This was produced as part of an effort to characterize topography within candidate Human Exploration Zones for Mars. The DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). THe DEM has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. + +References: +Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. + +Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261. + +Slopes were derived using the Python script called gdal_baseline_slope.py: https://github.com/USGS-Astrogeology/GDAL_scripts/blob/master/gdal_baseline_slope ]] +} + +local treks_CTX_ClrSlope_8bit_40N022E_24mp_B18_016656_2206_B18_016801_2206 = { + Identifier = "CTX_ClrSlope_8bit_40N022E_24mp_B18_016656_2206_B18_016801_2206", + Name = [[Mars Reconnaissance Orbiter CTX, Color Slope Deuteronius 40N024E]], + FilePath = asset.localResource("Mars_Reconnaissance_Orbiter_CTX/Color_Slope_Deuteronius_40N024E.vrt"), + Description = [[This is a colorized version of the original 2x2 pixel slope in degrees (also called a 1 baseline slope). This was produced as part of an effort to characterize topography within candidate Human Exploration Zones for Mars. The DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). THe DEM has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. + +References: +Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. + +Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261. + +Slopes were derived using the Python script called gdal_baseline_slope.py: https://github.com/USGS-Astrogeology/GDAL_scripts/blob/master/gdal_baseline_slope ]] +} + +local treks_CTX_ClrSlope_8bit_11S289E_24mp_F23_044971_1685_F21_043995_1685 = { + Identifier = "CTX_ClrSlope_8bit_11S289E_24mp_F23_044971_1685_F21_043995_1685", + Name = [[Mars Reconnaissance Orbiter CTX, Color Slope East Melas 11S289E]], + FilePath = asset.localResource("Mars_Reconnaissance_Orbiter_CTX/Color_Slope_East_Melas_11S289E.vrt"), + Description = [[This is a colorized version of the original 2x2 pixel slope in degrees (also called a 1 baseline slope). This was produced as part of an effort to characterize topography within candidate Human Exploration Zones for Mars. The DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). THe DEM has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. + +References: +Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. + +Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261. + +Slopes were derived using the Python script called gdal_baseline_slope.py: https://github.com/USGS-Astrogeology/GDAL_scripts/blob/master/gdal_baseline_slope ]] +} + +local treks_CTX_ClrSlope_8bit_11S291E_24mp_B19_017187_1685_B19_016976_1685 = { + Identifier = "CTX_ClrSlope_8bit_11S291E_24mp_B19_017187_1685_B19_016976_1685", + Name = [[Mars Reconnaissance Orbiter CTX, Color Slope East Melas 11S291E]], + FilePath = asset.localResource("Mars_Reconnaissance_Orbiter_CTX/Color_Slope_East_Melas_11S291E.vrt"), + Description = [[This is a colorized version of the original 2x2 pixel slope in degrees (also called a 1 baseline slope). This was produced as part of an effort to characterize topography within candidate Human Exploration Zones for Mars. The DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). THe DEM has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. + +References: +Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. + +Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261. + +Slopes were derived using the Python script called gdal_baseline_slope.py: https://github.com/USGS-Astrogeology/GDAL_scripts/blob/master/gdal_baseline_slope ]] +} + +local treks_CTX_ClrSlope_8bit_12S289E_24mp_D01_027446_1678_D01_027723_1677 = { + Identifier = "CTX_ClrSlope_8bit_12S289E_24mp_D01_027446_1678_D01_027723_1677", + Name = [[Mars Reconnaissance Orbiter CTX, Color Slope East Melas 12S289E_D01]], + FilePath = asset.localResource("Mars_Reconnaissance_Orbiter_CTX/Color_Slope_East_Melas_12S289E_D01.vrt"), + Description = [[This is a colorized version of the original 2x2 pixel slope in degrees (also called a 1 baseline slope). This was produced as part of an effort to characterize topography within candidate Human Exploration Zones for Mars. The DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). THe DEM has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. + +References: +Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. + +Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261. + +Slopes were derived using the Python script called gdal_baseline_slope.py: https://github.com/USGS-Astrogeology/GDAL_scripts/blob/master/gdal_baseline_slope ]] +} + +local treks_CTX_ClrSlope_8bit_12S289E_24mp_F18_042927_1681_J02_045749_1694 = { + Identifier = "CTX_ClrSlope_8bit_12S289E_24mp_F18_042927_1681_J02_045749_1694", + Name = [[Mars Reconnaissance Orbiter CTX, Color Slope East Melas 12S289E_F18]], + FilePath = asset.localResource("Mars_Reconnaissance_Orbiter_CTX/Color_Slope_East_Melas_12S289E_F18.vrt"), + Description = [[This is a colorized version of the original 2x2 pixel slope in degrees (also called a 1 baseline slope). This was produced as part of an effort to characterize topography within candidate Human Exploration Zones for Mars. The DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). THe DEM has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. + +References: +Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. + +Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261. + +Slopes were derived using the Python script called gdal_baseline_slope.py: https://github.com/USGS-Astrogeology/GDAL_scripts/blob/master/gdal_baseline_slope ]] +} + +local treks_CTX_ClrSlope_8bit_12S290E_24mp_D18_034250_1676_D21_035450_1674 = { + Identifier = "CTX_ClrSlope_8bit_12S290E_24mp_D18_034250_1676_D21_035450_1674", + Name = [[Mars Reconnaissance Orbiter CTX, Color Slope East Melas 12S290E]], + FilePath = asset.localResource("Mars_Reconnaissance_Orbiter_CTX/Color_Slope_East_Melas_12S290E.vrt"), + Description = [[This is a colorized version of the original 2x2 pixel slope in degrees (also called a 1 baseline slope). This was produced as part of an effort to characterize topography within candidate Human Exploration Zones for Mars. The DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). THe DEM has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. + +References: +Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. + +Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261. + +Slopes were derived using the Python script called gdal_baseline_slope.py: https://github.com/USGS-Astrogeology/GDAL_scripts/blob/master/gdal_baseline_slope ]] +} + +local treks_CTX_ClrSlope_8bit_12S291E_24mp_F14_041292_1682_F16_041938_1682 = { + Identifier = "CTX_ClrSlope_8bit_12S291E_24mp_F14_041292_1682_F16_041938_1682", + Name = [[Mars Reconnaissance Orbiter CTX, Color Slope East Melas 12S291E_F14]], + FilePath = asset.localResource("Mars_Reconnaissance_Orbiter_CTX/Color_Slope_East_Melas_12S291E_F14.vrt"), + Description = [[This is a colorized version of the original 2x2 pixel slope in degrees (also called a 1 baseline slope). This was produced as part of an effort to characterize topography within candidate Human Exploration Zones for Mars. The DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). THe DEM has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. + +References: +Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. + +Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261. + +Slopes were derived using the Python script called gdal_baseline_slope.py: https://github.com/USGS-Astrogeology/GDAL_scripts/blob/master/gdal_baseline_slope ]] +} + +local treks_CTX_ClrSlope_8bit_12S291E_24mp_F21_043850_1684_F21_043916_1685 = { + Identifier = "CTX_ClrSlope_8bit_12S291E_24mp_F21_043850_1684_F21_043916_1685", + Name = [[Mars Reconnaissance Orbiter CTX, Color Slope East Melas 12S291E_F21]], + FilePath = asset.localResource("Mars_Reconnaissance_Orbiter_CTX/Color_Slope_East_Melas_12S291E_F21.vrt"), + Description = [[This is a colorized version of the original 2x2 pixel slope in degrees (also called a 1 baseline slope). This was produced as part of an effort to characterize topography within candidate Human Exploration Zones for Mars. The DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). THe DEM has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. + +References: +Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. + +Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261. + +Slopes were derived using the Python script called gdal_baseline_slope.py: https://github.com/USGS-Astrogeology/GDAL_scripts/blob/master/gdal_baseline_slope ]] +} + +local treks_CTX_ClrSlope_8bit_12S291E_24mp_J01_045116_1677_J03_046039_1676 = { + Identifier = "CTX_ClrSlope_8bit_12S291E_24mp_J01_045116_1677_J03_046039_1676", + Name = [[Mars Reconnaissance Orbiter CTX, Color Slope East Melas 12S291E_J01]], + FilePath = asset.localResource("Mars_Reconnaissance_Orbiter_CTX/Color_Slope_East_Melas_12S291E_J01.vrt"), + Description = [[This is a colorized version of the original 2x2 pixel slope in degrees (also called a 1 baseline slope). This was produced as part of an effort to characterize topography within candidate Human Exploration Zones for Mars. The DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). THe DEM has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. + +References: +Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. + +Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261. + +Slopes were derived using the Python script called gdal_baseline_slope.py: https://github.com/USGS-Astrogeology/GDAL_scripts/blob/master/gdal_baseline_slope ]] +} + +local treks_CTX_ClrSlope_8bit_13S289E_24mp_D10_031125_1673_D12_031903_1669 = { + Identifier = "CTX_ClrSlope_8bit_13S289E_24mp_D10_031125_1673_D12_031903_1669", + Name = [[Mars Reconnaissance Orbiter CTX, Color Slope East Melas 13S289E]], + FilePath = asset.localResource("Mars_Reconnaissance_Orbiter_CTX/Color_Slope_East_Melas_13S289E.vrt"), + Description = [[This is a colorized version of the original 2x2 pixel slope in degrees (also called a 1 baseline slope). This was produced as part of an effort to characterize topography within candidate Human Exploration Zones for Mars. The DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). THe DEM has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. + +References: +Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. + +Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261. + +Slopes were derived using the Python script called gdal_baseline_slope.py: https://github.com/USGS-Astrogeology/GDAL_scripts/blob/master/gdal_baseline_slope ]] +} + +local treks_CTX_ClrSlope_8bit_16S291E_24mp_D22_035951_1644_F01_036307_1644 = { + Identifier = "CTX_ClrSlope_8bit_16S291E_24mp_D22_035951_1644_F01_036307_1644", + Name = [[Mars Reconnaissance Orbiter CTX, Color Slope East Melas 16S291E_D22]], + FilePath = asset.localResource("Mars_Reconnaissance_Orbiter_CTX/Color_Slope_East_Melas_16S291E_D22.vrt"), + Description = [[This is a colorized version of the original 2x2 pixel slope in degrees (also called a 1 baseline slope). This was produced as part of an effort to characterize topography within candidate Human Exploration Zones for Mars. The DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). THe DEM has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. + +References: +Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. + +Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261. + +Slopes were derived using the Python script called gdal_baseline_slope.py: https://github.com/USGS-Astrogeology/GDAL_scripts/blob/master/gdal_baseline_slope ]] +} + +local treks_CTX_Shade_12S182E_24mp_P22_009609_1674_B02_010453_1675 = { + Identifier = "CTX_Shade_12S182E_24mp_P22_009609_1674_B02_010453_1675", + Name = [[Mars Reconnaissance Orbiter CTX, HillShade Apollinaris 12S182E]], + FilePath = asset.localResource("Mars_Reconnaissance_Orbiter_CTX/HillShade_Apollinaris_12S182E.vrt"), + Description = [[This is a grayscale shaded relief (hillshade) for the original digital elevation model (DEM/DTM) as produced as part of an effort to characterize topography within candidate Human Exploration Zones for Mars. The DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). THe DEM has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. + +References: +Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. + +Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261.]] +} + +local treks_CTX_Shade_13S182E_24mp_G15_024127_1673_G16_024483_1673 = { + Identifier = "CTX_Shade_13S182E_24mp_G15_024127_1673_G16_024483_1673", + Name = [[Mars Reconnaissance Orbiter CTX, HillShade Apollinaris 13S182E]], + FilePath = asset.localResource("Mars_Reconnaissance_Orbiter_CTX/HillShade_Apollinaris_13S182E.vrt"), + Description = [[This is a grayscale shaded relief (hillshade) for the original digital elevation model (DEM/DTM) as produced as part of an effort to characterize topography within candidate Human Exploration Zones for Mars. The DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). THe DEM has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. + +References: +Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. + +Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261.]] +} + +local treks_CTX_Shade_14S184E_24mp_B01_009886_1658_P21_009385_1658 = { + Identifier = "CTX_Shade_14S184E_24mp_B01_009886_1658_P21_009385_1658", + Name = [[Mars Reconnaissance Orbiter CTX, HillShade Apollinaris 14S184E]], + FilePath = asset.localResource("Mars_Reconnaissance_Orbiter_CTX/HillShade_Apollinaris_14S184E.vrt"), + Description = [[This is a grayscale shaded relief (hillshade) for the original digital elevation model (DEM/DTM) as produced as part of an effort to characterize topography within candidate Human Exploration Zones for Mars. The DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). THe DEM has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. + +References: +Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. + +Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261.]] +} + +local treks_CTX_Shade_10S291E_24mp_P22_009684_1699_B02_010396_1699 = { + Identifier = "CTX_Shade_10S291E_24mp_P22_009684_1699_B02_010396_1699", + Name = [[Mars Reconnaissance Orbiter CTX, HillShade Coprates 10S291E]], + FilePath = asset.localResource("Mars_Reconnaissance_Orbiter_CTX/HillShade_Coprates_10S291E.vrt"), + Description = [[This is a grayscale shaded relief (hillshade) for the original digital elevation model (DEM/DTM) as produced as part of an effort to characterize topography within candidate Human Exploration Zones for Mars. The DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). THe DEM has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. + +References: +Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. + +Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261.]] +} + +local treks_CTX_Shade_11S293E_24mp_B09_013231_1696_B11_013732_1690 = { + Identifier = "CTX_Shade_11S293E_24mp_B09_013231_1696_B11_013732_1690", + Name = [[Mars Reconnaissance Orbiter CTX, HillShade Coprates 11S293E]], + FilePath = asset.localResource("Mars_Reconnaissance_Orbiter_CTX/HillShade_Coprates_11S293E.vrt"), + Description = [[This is a grayscale shaded relief (hillshade) for the original digital elevation model (DEM/DTM) as produced as part of an effort to characterize topography within candidate Human Exploration Zones for Mars. The DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). THe DEM has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. + +References: +Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. + +Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261.]] +} + +local treks_CTX_Shade_13S293E_24mp_G07_020879_1669_G09_021657_1665 = { + Identifier = "CTX_Shade_13S293E_24mp_G07_020879_1669_G09_021657_1665", + Name = [[Mars Reconnaissance Orbiter CTX, HillShade Coprates 13S293E]], + FilePath = asset.localResource("Mars_Reconnaissance_Orbiter_CTX/HillShade_Coprates_13S293E.vrt"), + Description = [[This is a grayscale shaded relief (hillshade) for the original digital elevation model (DEM/DTM) as produced as part of an effort to characterize topography within candidate Human Exploration Zones for Mars. The DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). THe DEM has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. + +References: +Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. + +Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261.]] +} + +local treks_CTX_Shade_37N024E_24mp_G05_020203_2178_G22_026994_2170 = { + Identifier = "CTX_Shade_37N024E_24mp_G05_020203_2178_G22_026994_2170", + Name = [[Mars Reconnaissance Orbiter CTX, HillShade Deuteronius 37N024E]], + FilePath = asset.localResource("Mars_Reconnaissance_Orbiter_CTX/HillShade_Deuteronius_37N024E.vrt"), + Description = [[This is a grayscale shaded relief (hillshade) for the original digital elevation model (DEM/DTM) as produced as part of an effort to characterize topography within candidate Human Exploration Zones for Mars. The DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). THe DEM has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. + +References: +Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. + +Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261.]] +} + +local treks_CTX_Shade_38N024E_24mp_B17_016168_2181_G16_024594_2181 = { + Identifier = "CTX_Shade_38N024E_24mp_B17_016168_2181_G16_024594_2181", + Name = [[Mars Reconnaissance Orbiter CTX, HillShade Deuteronius 38N024E]], + FilePath = asset.localResource("Mars_Reconnaissance_Orbiter_CTX/HillShade_Deuteronius_38N024E.vrt"), + Description = [[This is a grayscale shaded relief (hillshade) for the original digital elevation model (DEM/DTM) as produced as part of an effort to characterize topography within candidate Human Exploration Zones for Mars. The DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). THe DEM has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. + +References: +Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. + +Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261.]] +} + +local treks_CTX_Shade_39N024E_24mp_D15_032875_2196_D15_033165_2196 = { + Identifier = "CTX_Shade_39N024E_24mp_D15_032875_2196_D15_033165_2196", + Name = [[Mars Reconnaissance Orbiter CTX, HillShade Deuteronius 39N024E]], + FilePath = asset.localResource("Mars_Reconnaissance_Orbiter_CTX/HillShade_Deuteronius_39N024E.vrt"), + Description = [[This is a grayscale shaded relief (hillshade) for the original digital elevation model (DEM/DTM) as produced as part of an effort to characterize topography within candidate Human Exploration Zones for Mars. The DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). THe DEM has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. + +References: +Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. + +Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261.]] +} + +local treks_CTX_Shade_40N022E_24mp_B18_016656_2206_B18_016801_2206 = { + Identifier = "CTX_Shade_40N022E_24mp_B18_016656_2206_B18_016801_2206", + Name = [[Mars Reconnaissance Orbiter CTX, HillShade Deuteronius 40N024E]], + FilePath = asset.localResource("Mars_Reconnaissance_Orbiter_CTX/HillShade_Deuteronius_40N024E.vrt"), + Description = [[This is a grayscale shaded relief (hillshade) for the original digital elevation model (DEM/DTM) as produced as part of an effort to characterize topography within candidate Human Exploration Zones for Mars. The DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). THe DEM has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. + +References: +Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. + +Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261.]] +} + +local treks_CTX_Shade_11S289E_24mp_F23_044971_1685_F21_043995_1685 = { + Identifier = "CTX_Shade_11S289E_24mp_F23_044971_1685_F21_043995_1685", + Name = [[Mars Reconnaissance Orbiter CTX, HillShade East Melas 11S289E]], + FilePath = asset.localResource("Mars_Reconnaissance_Orbiter_CTX/HillShade_East_Melas_11S289E.vrt"), + Description = [[This is a grayscale shaded relief (hillshade) for the original digital elevation model (DEM/DTM) as produced as part of an effort to characterize topography within candidate Human Exploration Zones for Mars. The DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). THe DEM has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. + +References: +Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. + +Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261.]] +} + +local treks_CTX_Shade_11S291E_24mp_B19_017187_1685_B19_016976_1685 = { + Identifier = "CTX_Shade_11S291E_24mp_B19_017187_1685_B19_016976_1685", + Name = [[Mars Reconnaissance Orbiter CTX, HillShade East Melas 11S291E]], + FilePath = asset.localResource("Mars_Reconnaissance_Orbiter_CTX/HillShade_East_Melas_11S291E.vrt"), + Description = [[This is a grayscale shaded relief (hillshade) for the original digital elevation model (DEM/DTM) as produced as part of an effort to characterize topography within candidate Human Exploration Zones for Mars. The DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). THe DEM has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. + +References: +Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. + +Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261.]] +} + +local treks_CTX_Shade_12S289E_24mp_D01_027446_1678_D01_027723_1677 = { + Identifier = "CTX_Shade_12S289E_24mp_D01_027446_1678_D01_027723_1677", + Name = [[Mars Reconnaissance Orbiter CTX, HillShade East Melas 12S289E_D01]], + FilePath = asset.localResource("Mars_Reconnaissance_Orbiter_CTX/HillShade_East_Melas_12S289E_D01.vrt"), + Description = [[This is a grayscale shaded relief (hillshade) for the original digital elevation model (DEM/DTM) as produced as part of an effort to characterize topography within candidate Human Exploration Zones for Mars. The DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). THe DEM has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. + +References: +Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. + +Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261.]] +} + +local treks_CTX_Shade_12S289E_24mp_F18_042927_1681_J02_045749_1694 = { + Identifier = "CTX_Shade_12S289E_24mp_F18_042927_1681_J02_045749_1694", + Name = [[Mars Reconnaissance Orbiter CTX, HillShade East Melas 12S289E_F18]], + FilePath = asset.localResource("Mars_Reconnaissance_Orbiter_CTX/HillShade_East_Melas_12S289E_F18.vrt"), + Description = [[This is a grayscale shaded relief (hillshade) for the original digital elevation model (DEM/DTM) as produced as part of an effort to characterize topography within candidate Human Exploration Zones for Mars. The DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). THe DEM has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. + +References: +Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. + +Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261.]] +} + +local treks_CTX_Shade_12S290E_24mp_D18_034250_1676_D21_035450_1674 = { + Identifier = "CTX_Shade_12S290E_24mp_D18_034250_1676_D21_035450_1674", + Name = [[Mars Reconnaissance Orbiter CTX, HillShade East Melas 12S290E]], + FilePath = asset.localResource("Mars_Reconnaissance_Orbiter_CTX/HillShade_East_Melas_12S290E.vrt"), + Description = [[This is a grayscale shaded relief (hillshade) for the original digital elevation model (DEM/DTM) as produced as part of an effort to characterize topography within candidate Human Exploration Zones for Mars. The DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). THe DEM has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. + +References: +Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. + +Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261.]] +} + +local treks_CTX_Shade_12S291E_24mp_F14_041292_1682_F16_041938_1682 = { + Identifier = "CTX_Shade_12S291E_24mp_F14_041292_1682_F16_041938_1682", + Name = [[Mars Reconnaissance Orbiter CTX, HillShade East Melas 12S291E_F14]], + FilePath = asset.localResource("Mars_Reconnaissance_Orbiter_CTX/HillShade_East_Melas_12S291E_F14.vrt"), + Description = [[This is a grayscale shaded relief (hillshade) for the original digital elevation model (DEM/DTM) as produced as part of an effort to characterize topography within candidate Human Exploration Zones for Mars. The DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). THe DEM has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. + +References: +Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. + +Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261.]] +} + +local treks_CTX_Shade_12S291E_24mp_F21_043850_1684_F21_043916_1685 = { + Identifier = "CTX_Shade_12S291E_24mp_F21_043850_1684_F21_043916_1685", + Name = [[Mars Reconnaissance Orbiter CTX, HillShade East Melas 12S291E_F21]], + FilePath = asset.localResource("Mars_Reconnaissance_Orbiter_CTX/HillShade_East_Melas_12S291E_F21.vrt"), + Description = [[This is a grayscale shaded relief (hillshade) for the original digital elevation model (DEM/DTM) as produced as part of an effort to characterize topography within candidate Human Exploration Zones for Mars. The DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). THe DEM has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. + +References: +Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. + +Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261.]] +} + +local treks_CTX_Shade_12S291E_24mp_J01_045116_1677_J03_046039_1676 = { + Identifier = "CTX_Shade_12S291E_24mp_J01_045116_1677_J03_046039_1676", + Name = [[Mars Reconnaissance Orbiter CTX, HillShade East Melas 12S291E_J01]], + FilePath = asset.localResource("Mars_Reconnaissance_Orbiter_CTX/HillShade_East_Melas_12S291E_J01.vrt"), + Description = [[This is a grayscale shaded relief (hillshade) for the original digital elevation model (DEM/DTM) as produced as part of an effort to characterize topography within candidate Human Exploration Zones for Mars. The DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). THe DEM has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. + +References: +Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. + +Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261.]] +} + +local treks_CTX_Shade_13S289E_24mp_D10_031125_1673_D12_031903_1669 = { + Identifier = "CTX_Shade_13S289E_24mp_D10_031125_1673_D12_031903_1669", + Name = [[Mars Reconnaissance Orbiter CTX, HillShade East Melas 13S289E_D10]], + FilePath = asset.localResource("Mars_Reconnaissance_Orbiter_CTX/HillShade_East_Melas_13S289E_D10.vrt"), + Description = [[This is a grayscale shaded relief (hillshade) for the original digital elevation model (DEM/DTM) as produced as part of an effort to characterize topography within candidate Human Exploration Zones for Mars. The DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). THe DEM has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. + +References: +Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. + +Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261.]] +} + +local treks_CTX_Shade_16S291E_24mp_D22_035951_1644_F01_036307_1644 = { + Identifier = "CTX_Shade_16S291E_24mp_D22_035951_1644_F01_036307_1644", + Name = [[Mars Reconnaissance Orbiter CTX, HillShade East Melas 16S291E_D22]], + FilePath = asset.localResource("Mars_Reconnaissance_Orbiter_CTX/HillShade_East_Melas_16S291E_D22.vrt"), + Description = [[This is a grayscale shaded relief (hillshade) for the original digital elevation model (DEM/DTM) as produced as part of an effort to characterize topography within candidate Human Exploration Zones for Mars. The DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). THe DEM has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. + +References: +Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. + +Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261.]] +} + +local treks_Deuteronilus_CTX_Shade_v0_20171112 = { + Identifier = "Deuteronilus_CTX_Shade_v0_20171112", + Name = [[Mars Reconnaissance Orbiter CTX, Hilllshade Deuteronilus]], + FilePath = asset.localResource("Mars_Reconnaissance_Orbiter_CTX/Hilllshade_Deuteronilus.vrt"), + Description = [[This is a grayscale shaded relief (hillshade) for the original digital elevation model (DEM/DTM) as produced as part of an effort to characterize topography within candidate Human Exploration Zones for Mars. The DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). THe DEM has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. + +References: +Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. + +Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261.]] +} + +local treks_CTX_Ortho_12S182E_24mp_P22_009609_1674 = { + Identifier = "CTX_Ortho_12S182E_24mp_P22_009609_1674", + Name = [[Mars Reconnaissance Orbiter CTX, Mosaic Apollinaris 12S182E]], + FilePath = asset.localResource("Mars_Reconnaissance_Orbiter_CTX/Mosaic_Apollinaris_12S182E.vrt"), + Description = [[This is a CTX orthorectified image, geometrically corrected using its own source digital elevation model (DEM/DTM), as produced as part of an effort to characterize candidate Human Exploration Zones for Mars. The original DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). The DEM, and thus orthoimage, has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. + +References: +Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. + +Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261.]] +} + +local treks_CTX_Ortho_13S182E_24mp_G15_024127_1673 = { + Identifier = "CTX_Ortho_13S182E_24mp_G15_024127_1673", + Name = [[Mars Reconnaissance Orbiter CTX, Mosaic Apollinaris 13S182E]], + FilePath = asset.localResource("Mars_Reconnaissance_Orbiter_CTX/Mosaic_Apollinaris_13S182E.vrt"), + Description = [[This is a CTX orthorectified image, geometrically corrected using its own source digital elevation model (DEM/DTM), as produced as part of an effort to characterize candidate Human Exploration Zones for Mars. The original DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). The DEM, and thus orthoimage, has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. + +References: +Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. + +Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261.]] +} + +local treks_CTX_Ortho_14S184E_24mp_B01_009886_1658 = { + Identifier = "CTX_Ortho_14S184E_24mp_B01_009886_1658", + Name = [[Mars Reconnaissance Orbiter CTX, Mosaic Apollinaris 14S184E]], + FilePath = asset.localResource("Mars_Reconnaissance_Orbiter_CTX/Mosaic_Apollinaris_14S184E.vrt"), + Description = [[This is a CTX orthorectified image, geometrically corrected using its own source digital elevation model (DEM/DTM), as produced as part of an effort to characterize candidate Human Exploration Zones for Mars. The original DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). The DEM, and thus orthoimage, has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. + +References: +Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. + +Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261.]] +} + +local treks_CTX_Ortho_10S291E_24mp_P22_009684_1699 = { + Identifier = "CTX_Ortho_10S291E_24mp_P22_009684_1699", + Name = [[Mars Reconnaissance Orbiter CTX, Mosaic Coprates 10S291E]], + FilePath = asset.localResource("Mars_Reconnaissance_Orbiter_CTX/Mosaic_Coprates_10S291E.vrt"), + Description = [[This is a CTX orthorectified image, geometrically corrected using its own source digital elevation model (DEM/DTM), as produced as part of an effort to characterize candidate Human Exploration Zones for Mars. The original DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). The DEM, and thus orthoimage, has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. + +References: +Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. + +Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261.]] +} + +local treks_CTX_Ortho_11S293E_24mp_B09_013231_1696 = { + Identifier = "CTX_Ortho_11S293E_24mp_B09_013231_1696", + Name = [[Mars Reconnaissance Orbiter CTX, Mosaic Coprates 11S293E]], + FilePath = asset.localResource("Mars_Reconnaissance_Orbiter_CTX/Mosaic_Coprates_11S293E.vrt"), + Description = [[This is a CTX orthorectified image, geometrically corrected using its own source digital elevation model (DEM/DTM), as produced as part of an effort to characterize candidate Human Exploration Zones for Mars. The original DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). The DEM, and thus orthoimage, has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. + +References: +Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. + +Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261.]] +} + +local treks_CTX_Ortho_13S293E_24mp_G07_020879_1669 = { + Identifier = "CTX_Ortho_13S293E_24mp_G07_020879_1669", + Name = [[Mars Reconnaissance Orbiter CTX, Mosaic Coprates 13S293E]], + FilePath = asset.localResource("Mars_Reconnaissance_Orbiter_CTX/Mosaic_Coprates_13S293E.vrt"), + Description = [[This is a CTX orthorectified image, geometrically corrected using its own source digital elevation model (DEM/DTM), as produced as part of an effort to characterize candidate Human Exploration Zones for Mars. The original DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). The DEM, and thus orthoimage, has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. + +References: +Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. + +Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261.]] +} + +local treks_CTX_Ortho_38N024E_6mp_B17_016168_2181 = { + Identifier = "CTX_Ortho_38N024E_6mp_B17_016168_2181", + Name = [[Mars Reconnaissance Orbiter CTX, Mosaic Deuteronius 38N024E]], + FilePath = asset.localResource("Mars_Reconnaissance_Orbiter_CTX/Mosaic_Deuteronius_38N024E.vrt"), + Description = [[This is a CTX orthorectified image, geometrically corrected using its own source digital elevation model (DEM/DTM), as produced as part of an effort to characterize candidate Human Exploration Zones for Mars. The original DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). The DEM, and thus orthoimage, has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. + +References: +Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. + +Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261.]] +} + +local treks_CTX_Ortho_39N024E_6mp_D15_032875_2196 = { + Identifier = "CTX_Ortho_39N024E_6mp_D15_032875_2196", + Name = [[Mars Reconnaissance Orbiter CTX, Mosaic Deuteronius 39N024E]], + FilePath = asset.localResource("Mars_Reconnaissance_Orbiter_CTX/Mosaic_Deuteronius_39N024E.vrt"), + Description = [[This is a CTX orthorectified image, geometrically corrected using its own source digital elevation model (DEM/DTM), as produced as part of an effort to characterize candidate Human Exploration Zones for Mars. The original DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). The DEM, and thus orthoimage, has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. + +References: +Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. + +Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261.]] +} + +local treks_CTX_Ortho_40N022E_6mp_B18_016656_2206 = { + Identifier = "CTX_Ortho_40N022E_6mp_B18_016656_2206", + Name = [[Mars Reconnaissance Orbiter CTX, Mosaic Deuteronius 40N024E]], + FilePath = asset.localResource("Mars_Reconnaissance_Orbiter_CTX/Mosaic_Deuteronius_40N024E.vrt"), + Description = [[This is a CTX orthorectified image, geometrically corrected using its own source digital elevation model (DEM/DTM), as produced as part of an effort to characterize candidate Human Exploration Zones for Mars. The original DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). The DEM, and thus orthoimage, has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. + +References: +Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. + +Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261.]] +} + +local treks_CTX_Ortho_11S289E_6mp_F23_044971_1685 = { + Identifier = "CTX_Ortho_11S289E_6mp_F23_044971_1685", + Name = [[Mars Reconnaissance Orbiter CTX, Mosaic East Melas 11S289E]], + FilePath = asset.localResource("Mars_Reconnaissance_Orbiter_CTX/Mosaic_East_Melas_11S289E.vrt"), + Description = [[This is a CTX orthorectified image, geometrically corrected using its own source digital elevation model (DEM/DTM), as produced as part of an effort to characterize candidate Human Exploration Zones for Mars. The original DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). The DEM, and thus orthoimage, has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. + +References: +Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. + +Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261.]] +} + +local treks_CTX_Ortho_11S291E_6mp_B19_017187_1685 = { + Identifier = "CTX_Ortho_11S291E_6mp_B19_017187_1685", + Name = [[Mars Reconnaissance Orbiter CTX, Mosaic East Melas 11S291E]], + FilePath = asset.localResource("Mars_Reconnaissance_Orbiter_CTX/Mosaic_East_Melas_11S291E.vrt"), + Description = [[This is a CTX orthorectified image, geometrically corrected using its own source digital elevation model (DEM/DTM), as produced as part of an effort to characterize candidate Human Exploration Zones for Mars. The original DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). The DEM, and thus orthoimage, has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. + +References: +Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. + +Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261.]] +} + +local treks_CTX_Ortho_12S289E_6mp_D01_027446_1678 = { + Identifier = "CTX_Ortho_12S289E_6mp_D01_027446_1678", + Name = [[Mars Reconnaissance Orbiter CTX, Mosaic East Melas 12S289E_D01]], + FilePath = asset.localResource("Mars_Reconnaissance_Orbiter_CTX/Mosaic_East_Melas_12S289E_D01.vrt"), + Description = [[This is a CTX orthorectified image, geometrically corrected using its own source digital elevation model (DEM/DTM), as produced as part of an effort to characterize candidate Human Exploration Zones for Mars. The original DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). The DEM, and thus orthoimage, has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. + +References: +Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. + +Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261.]] +} + +local treks_CTX_Ortho_12S289E_6mp_F18_042927_1681 = { + Identifier = "CTX_Ortho_12S289E_6mp_F18_042927_1681", + Name = [[Mars Reconnaissance Orbiter CTX, Mosaic East Melas 12S289E_F18]], + FilePath = asset.localResource("Mars_Reconnaissance_Orbiter_CTX/Mosaic_East_Melas_12S289E_F18.vrt"), + Description = [[This is a CTX orthorectified image, geometrically corrected using its own source digital elevation model (DEM/DTM), as produced as part of an effort to characterize candidate Human Exploration Zones for Mars. The original DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). The DEM, and thus orthoimage, has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. + +References: +Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. + +Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261.]] +} + +local treks_CTX_Ortho_12S290E_6mp_D18_034250_1676 = { + Identifier = "CTX_Ortho_12S290E_6mp_D18_034250_1676", + Name = [[Mars Reconnaissance Orbiter CTX, Mosaic East Melas 12S290E]], + FilePath = asset.localResource("Mars_Reconnaissance_Orbiter_CTX/Mosaic_East_Melas_12S290E.vrt"), + Description = [[This is a CTX orthorectified image, geometrically corrected using its own source digital elevation model (DEM/DTM), as produced as part of an effort to characterize candidate Human Exploration Zones for Mars. The original DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). The DEM, and thus orthoimage, has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. + +References: +Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. + +Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261.]] +} + +local treks_F14_041292_1682_map_ba_align_6_fill500DRG = { + Identifier = "F14_041292_1682_map_ba_align_6_fill500DRG", + Name = [[Mars Reconnaissance Orbiter CTX, Mosaic East Melas 12S291E_F14]], + FilePath = asset.localResource("Mars_Reconnaissance_Orbiter_CTX/Mosaic_East_Melas_12S291E_F14.vrt"), + Description = [[This is a CTX orthorectified image, geometrically corrected using its own source digital elevation model (DEM/DTM), as produced as part of an effort to characterize candidate Human Exploration Zones for Mars. The original DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). The DEM, and thus orthoimage, has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. + +References: +Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. + +Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261.]] +} + +local treks_CTX_Ortho_12S291E_6mp_F21_043850_1684 = { + Identifier = "CTX_Ortho_12S291E_6mp_F21_043850_1684", + Name = [[Mars Reconnaissance Orbiter CTX, Mosaic East Melas 12S291E_F21]], + FilePath = asset.localResource("Mars_Reconnaissance_Orbiter_CTX/Mosaic_East_Melas_12S291E_F21.vrt"), + Description = [[This is a CTX orthorectified image, geometrically corrected using its own source digital elevation model (DEM/DTM), as produced as part of an effort to characterize candidate Human Exploration Zones for Mars. The original DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). The DEM, and thus orthoimage, has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. + +References: +Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. + +Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261.]] +} + +local treks_CTX_Ortho_12S291E_6mp_J01_045116_1677 = { + Identifier = "CTX_Ortho_12S291E_6mp_J01_045116_1677", + Name = [[Mars Reconnaissance Orbiter CTX, Mosaic East Melas 12S291E_J01]], + FilePath = asset.localResource("Mars_Reconnaissance_Orbiter_CTX/Mosaic_East_Melas_12S291E_J01.vrt"), + Description = [[This is a CTX orthorectified image, geometrically corrected using its own source digital elevation model (DEM/DTM), as produced as part of an effort to characterize candidate Human Exploration Zones for Mars. The original DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). The DEM, and thus orthoimage, has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. + +References: +Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. + +Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261.]] +} + +local treks_CTX_Ortho_13S289E_6mp_D10_031125_1673 = { + Identifier = "CTX_Ortho_13S289E_6mp_D10_031125_1673", + Name = [[Mars Reconnaissance Orbiter CTX, Mosaic East Melas 13S289E_D10]], + FilePath = asset.localResource("Mars_Reconnaissance_Orbiter_CTX/Mosaic_East_Melas_13S289E_D10.vrt"), + Description = [[This is a CTX orthorectified image, geometrically corrected using its own source digital elevation model (DEM/DTM), as produced as part of an effort to characterize candidate Human Exploration Zones for Mars. The original DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). The DEM, and thus orthoimage, has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. + +References: +Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. + +Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261.]] +} + +local treks_CTX_Ortho_16S291E_6mp_D22_035951_1644 = { + Identifier = "CTX_Ortho_16S291E_6mp_D22_035951_1644", + Name = [[Mars Reconnaissance Orbiter CTX, Mosaic East Melas 16S291E]], + FilePath = asset.localResource("Mars_Reconnaissance_Orbiter_CTX/Mosaic_East_Melas_16S291E.vrt"), + Description = [[This is a CTX orthorectified image, geometrically corrected using its own source digital elevation model (DEM/DTM), as produced as part of an effort to characterize candidate Human Exploration Zones for Mars. The original DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). The DEM, and thus orthoimage, has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. + +References: +Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. + +Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261.]] +} + +local treks_CTX_Slope_12S182E_24mp_P22_009609_1674_B02_010453_1675 = { + Identifier = "CTX_Slope_12S182E_24mp_P22_009609_1674_B02_010453_1675", + Name = [[Mars Reconnaissance Orbiter CTX, Slope Apollinaris 12S182E]], + FilePath = asset.localResource("Mars_Reconnaissance_Orbiter_CTX/Slope_Apollinaris_12S182E.vrt"), + Description = [[This is a colorized version of the original 2x2 pixel slope in degrees (also called a 1 baseline slope). This was produced as part of an effort to characterize topography within candidate Human Exploration Zones for Mars. The DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). THe DEM has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. + +References: +Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. + +Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261. + +Slopes were derived using the Python script called gdal_baseline_slope.py: https://github.com/USGS-Astrogeology/GDAL_scripts/blob/master/gdal_baseline_slope ]] +} + +local treks_CTX_Slope_13S182E_24mp_G15_024127_1673_G16_024483_1673 = { + Identifier = "CTX_Slope_13S182E_24mp_G15_024127_1673_G16_024483_1673", + Name = [[Mars Reconnaissance Orbiter CTX, Slope Apollinaris 13S182E]], + FilePath = asset.localResource("Mars_Reconnaissance_Orbiter_CTX/Slope_Apollinaris_13S182E.vrt"), + Description = [[This is a colorized version of the original 2x2 pixel slope in degrees (also called a 1 baseline slope). This was produced as part of an effort to characterize topography within candidate Human Exploration Zones for Mars. The DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). THe DEM has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. + +References: +Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. + +Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261. + +Slopes were derived using the Python script called gdal_baseline_slope.py: https://github.com/USGS-Astrogeology/GDAL_scripts/blob/master/gdal_baseline_slope ]] +} + +local treks_CTX_Slope_14S184E_24mp_B01_009886_1658_P21_009385_1658 = { + Identifier = "CTX_Slope_14S184E_24mp_B01_009886_1658_P21_009385_1658", + Name = [[Mars Reconnaissance Orbiter CTX, Slope Apollinaris 14S184E]], + FilePath = asset.localResource("Mars_Reconnaissance_Orbiter_CTX/Slope_Apollinaris_14S184E.vrt"), + Description = [[This is a colorized version of the original 2x2 pixel slope in degrees (also called a 1 baseline slope). This was produced as part of an effort to characterize topography within candidate Human Exploration Zones for Mars. The DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). THe DEM has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. + +References: +Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. + +Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261. + +Slopes were derived using the Python script called gdal_baseline_slope.py: https://github.com/USGS-Astrogeology/GDAL_scripts/blob/master/gdal_baseline_slope ]] +} + +asset.onInitialize(function() + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_CTX_ClrSlope_8bit_12S182E_24mp_P22_009609_1674_B02_010453_1675) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_CTX_ClrSlope_8bit_13S182E_24mp_G15_024127_1673_G16_024483_1673) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_CTX_ClrSlope_8bit_14S184E_24mp_B01_009886_1658_P21_009385_1658) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_CTX_ClrSlope_8bit_10S291E_24mp_P22_009684_1699_B02_010396_1699) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_CTX_ClrSlope_8bit_11S293E_24mp_B09_013231_1696_B11_013732_1690) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_CTX_ClrSlope_8bit_13S293E_24mp_G07_020879_1669_G09_021657_1665) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_CTX_ClrSlope_8bit_37N024E_24mp_G05_020203_2178_G22_026994_2170) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_CTX_ClrSlope_8bit_38N024E_24mp_B17_016168_2181_G16_024594_2181) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_CTX_ClrSlope_8bit_39N024E_24mp_D15_032875_2196_D15_033165_2196) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_CTX_ClrSlope_8bit_40N022E_24mp_B18_016656_2206_B18_016801_2206) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_CTX_ClrSlope_8bit_11S289E_24mp_F23_044971_1685_F21_043995_1685) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_CTX_ClrSlope_8bit_11S291E_24mp_B19_017187_1685_B19_016976_1685) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_CTX_ClrSlope_8bit_12S289E_24mp_D01_027446_1678_D01_027723_1677) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_CTX_ClrSlope_8bit_12S289E_24mp_F18_042927_1681_J02_045749_1694) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_CTX_ClrSlope_8bit_12S290E_24mp_D18_034250_1676_D21_035450_1674) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_CTX_ClrSlope_8bit_12S291E_24mp_F14_041292_1682_F16_041938_1682) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_CTX_ClrSlope_8bit_12S291E_24mp_F21_043850_1684_F21_043916_1685) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_CTX_ClrSlope_8bit_12S291E_24mp_J01_045116_1677_J03_046039_1676) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_CTX_ClrSlope_8bit_13S289E_24mp_D10_031125_1673_D12_031903_1669) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_CTX_ClrSlope_8bit_16S291E_24mp_D22_035951_1644_F01_036307_1644) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_CTX_Shade_12S182E_24mp_P22_009609_1674_B02_010453_1675) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_CTX_Shade_13S182E_24mp_G15_024127_1673_G16_024483_1673) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_CTX_Shade_14S184E_24mp_B01_009886_1658_P21_009385_1658) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_CTX_Shade_10S291E_24mp_P22_009684_1699_B02_010396_1699) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_CTX_Shade_11S293E_24mp_B09_013231_1696_B11_013732_1690) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_CTX_Shade_13S293E_24mp_G07_020879_1669_G09_021657_1665) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_CTX_Shade_37N024E_24mp_G05_020203_2178_G22_026994_2170) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_CTX_Shade_38N024E_24mp_B17_016168_2181_G16_024594_2181) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_CTX_Shade_39N024E_24mp_D15_032875_2196_D15_033165_2196) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_CTX_Shade_40N022E_24mp_B18_016656_2206_B18_016801_2206) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_CTX_Shade_11S289E_24mp_F23_044971_1685_F21_043995_1685) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_CTX_Shade_11S291E_24mp_B19_017187_1685_B19_016976_1685) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_CTX_Shade_12S289E_24mp_D01_027446_1678_D01_027723_1677) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_CTX_Shade_12S289E_24mp_F18_042927_1681_J02_045749_1694) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_CTX_Shade_12S290E_24mp_D18_034250_1676_D21_035450_1674) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_CTX_Shade_12S291E_24mp_F14_041292_1682_F16_041938_1682) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_CTX_Shade_12S291E_24mp_F21_043850_1684_F21_043916_1685) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_CTX_Shade_12S291E_24mp_J01_045116_1677_J03_046039_1676) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_CTX_Shade_13S289E_24mp_D10_031125_1673_D12_031903_1669) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_CTX_Shade_16S291E_24mp_D22_035951_1644_F01_036307_1644) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_Deuteronilus_CTX_Shade_v0_20171112) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_CTX_Ortho_12S182E_24mp_P22_009609_1674) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_CTX_Ortho_13S182E_24mp_G15_024127_1673) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_CTX_Ortho_14S184E_24mp_B01_009886_1658) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_CTX_Ortho_10S291E_24mp_P22_009684_1699) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_CTX_Ortho_11S293E_24mp_B09_013231_1696) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_CTX_Ortho_13S293E_24mp_G07_020879_1669) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_CTX_Ortho_38N024E_6mp_B17_016168_2181) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_CTX_Ortho_39N024E_6mp_D15_032875_2196) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_CTX_Ortho_40N022E_6mp_B18_016656_2206) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_CTX_Ortho_11S289E_6mp_F23_044971_1685) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_CTX_Ortho_11S291E_6mp_B19_017187_1685) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_CTX_Ortho_12S289E_6mp_D01_027446_1678) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_CTX_Ortho_12S289E_6mp_F18_042927_1681) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_CTX_Ortho_12S290E_6mp_D18_034250_1676) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_F14_041292_1682_map_ba_align_6_fill500DRG) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_CTX_Ortho_12S291E_6mp_F21_043850_1684) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_CTX_Ortho_12S291E_6mp_J01_045116_1677) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_CTX_Ortho_13S289E_6mp_D10_031125_1673) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_CTX_Ortho_16S291E_6mp_D22_035951_1644) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_CTX_Slope_12S182E_24mp_P22_009609_1674_B02_010453_1675) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_CTX_Slope_13S182E_24mp_G15_024127_1673_G16_024483_1673) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_CTX_Slope_14S184E_24mp_B01_009886_1658_P21_009385_1658) +end) + +asset.onDeinitialize(function() + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_CTX_ClrSlope_8bit_12S182E_24mp_P22_009609_1674_B02_010453_1675") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_CTX_ClrSlope_8bit_13S182E_24mp_G15_024127_1673_G16_024483_1673") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_CTX_ClrSlope_8bit_14S184E_24mp_B01_009886_1658_P21_009385_1658") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_CTX_ClrSlope_8bit_10S291E_24mp_P22_009684_1699_B02_010396_1699") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_CTX_ClrSlope_8bit_11S293E_24mp_B09_013231_1696_B11_013732_1690") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_CTX_ClrSlope_8bit_13S293E_24mp_G07_020879_1669_G09_021657_1665") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_CTX_ClrSlope_8bit_37N024E_24mp_G05_020203_2178_G22_026994_2170") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_CTX_ClrSlope_8bit_38N024E_24mp_B17_016168_2181_G16_024594_2181") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_CTX_ClrSlope_8bit_39N024E_24mp_D15_032875_2196_D15_033165_2196") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_CTX_ClrSlope_8bit_40N022E_24mp_B18_016656_2206_B18_016801_2206") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_CTX_ClrSlope_8bit_11S289E_24mp_F23_044971_1685_F21_043995_1685") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_CTX_ClrSlope_8bit_11S291E_24mp_B19_017187_1685_B19_016976_1685") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_CTX_ClrSlope_8bit_12S289E_24mp_D01_027446_1678_D01_027723_1677") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_CTX_ClrSlope_8bit_12S289E_24mp_F18_042927_1681_J02_045749_1694") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_CTX_ClrSlope_8bit_12S290E_24mp_D18_034250_1676_D21_035450_1674") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_CTX_ClrSlope_8bit_12S291E_24mp_F14_041292_1682_F16_041938_1682") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_CTX_ClrSlope_8bit_12S291E_24mp_F21_043850_1684_F21_043916_1685") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_CTX_ClrSlope_8bit_12S291E_24mp_J01_045116_1677_J03_046039_1676") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_CTX_ClrSlope_8bit_13S289E_24mp_D10_031125_1673_D12_031903_1669") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_CTX_ClrSlope_8bit_16S291E_24mp_D22_035951_1644_F01_036307_1644") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_CTX_Shade_12S182E_24mp_P22_009609_1674_B02_010453_1675") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_CTX_Shade_13S182E_24mp_G15_024127_1673_G16_024483_1673") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_CTX_Shade_14S184E_24mp_B01_009886_1658_P21_009385_1658") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_CTX_Shade_10S291E_24mp_P22_009684_1699_B02_010396_1699") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_CTX_Shade_11S293E_24mp_B09_013231_1696_B11_013732_1690") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_CTX_Shade_13S293E_24mp_G07_020879_1669_G09_021657_1665") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_CTX_Shade_37N024E_24mp_G05_020203_2178_G22_026994_2170") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_CTX_Shade_38N024E_24mp_B17_016168_2181_G16_024594_2181") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_CTX_Shade_39N024E_24mp_D15_032875_2196_D15_033165_2196") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_CTX_Shade_40N022E_24mp_B18_016656_2206_B18_016801_2206") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_CTX_Shade_11S289E_24mp_F23_044971_1685_F21_043995_1685") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_CTX_Shade_11S291E_24mp_B19_017187_1685_B19_016976_1685") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_CTX_Shade_12S289E_24mp_D01_027446_1678_D01_027723_1677") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_CTX_Shade_12S289E_24mp_F18_042927_1681_J02_045749_1694") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_CTX_Shade_12S290E_24mp_D18_034250_1676_D21_035450_1674") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_CTX_Shade_12S291E_24mp_F14_041292_1682_F16_041938_1682") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_CTX_Shade_12S291E_24mp_F21_043850_1684_F21_043916_1685") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_CTX_Shade_12S291E_24mp_J01_045116_1677_J03_046039_1676") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_CTX_Shade_13S289E_24mp_D10_031125_1673_D12_031903_1669") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_CTX_Shade_16S291E_24mp_D22_035951_1644_F01_036307_1644") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_Deuteronilus_CTX_Shade_v0_20171112") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_CTX_Ortho_12S182E_24mp_P22_009609_1674") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_CTX_Ortho_13S182E_24mp_G15_024127_1673") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_CTX_Ortho_14S184E_24mp_B01_009886_1658") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_CTX_Ortho_10S291E_24mp_P22_009684_1699") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_CTX_Ortho_11S293E_24mp_B09_013231_1696") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_CTX_Ortho_13S293E_24mp_G07_020879_1669") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_CTX_Ortho_38N024E_6mp_B17_016168_2181") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_CTX_Ortho_39N024E_6mp_D15_032875_2196") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_CTX_Ortho_40N022E_6mp_B18_016656_2206") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_CTX_Ortho_11S289E_6mp_F23_044971_1685") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_CTX_Ortho_11S291E_6mp_B19_017187_1685") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_CTX_Ortho_12S289E_6mp_D01_027446_1678") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_CTX_Ortho_12S289E_6mp_F18_042927_1681") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_CTX_Ortho_12S290E_6mp_D18_034250_1676") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_F14_041292_1682_map_ba_align_6_fill500DRG") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_CTX_Ortho_12S291E_6mp_F21_043850_1684") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_CTX_Ortho_12S291E_6mp_J01_045116_1677") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_CTX_Ortho_13S289E_6mp_D10_031125_1673") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_CTX_Ortho_16S291E_6mp_D22_035951_1644") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_CTX_Slope_12S182E_24mp_P22_009609_1674_B02_010453_1675") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_CTX_Slope_13S182E_24mp_G15_024127_1673_G16_024483_1673") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_CTX_Slope_14S184E_24mp_B01_009886_1658_P21_009385_1658") +end) + +asset.export("CTX_ClrSlope_8bit_12S182E_24mp_P22_009609_1674_B02_010453_1675", treks_CTX_ClrSlope_8bit_12S182E_24mp_P22_009609_1674_B02_010453_1675) +asset.export("CTX_ClrSlope_8bit_13S182E_24mp_G15_024127_1673_G16_024483_1673", treks_CTX_ClrSlope_8bit_13S182E_24mp_G15_024127_1673_G16_024483_1673) +asset.export("CTX_ClrSlope_8bit_14S184E_24mp_B01_009886_1658_P21_009385_1658", treks_CTX_ClrSlope_8bit_14S184E_24mp_B01_009886_1658_P21_009385_1658) +asset.export("CTX_ClrSlope_8bit_10S291E_24mp_P22_009684_1699_B02_010396_1699", treks_CTX_ClrSlope_8bit_10S291E_24mp_P22_009684_1699_B02_010396_1699) +asset.export("CTX_ClrSlope_8bit_11S293E_24mp_B09_013231_1696_B11_013732_1690", treks_CTX_ClrSlope_8bit_11S293E_24mp_B09_013231_1696_B11_013732_1690) +asset.export("CTX_ClrSlope_8bit_13S293E_24mp_G07_020879_1669_G09_021657_1665", treks_CTX_ClrSlope_8bit_13S293E_24mp_G07_020879_1669_G09_021657_1665) +asset.export("CTX_ClrSlope_8bit_37N024E_24mp_G05_020203_2178_G22_026994_2170", treks_CTX_ClrSlope_8bit_37N024E_24mp_G05_020203_2178_G22_026994_2170) +asset.export("CTX_ClrSlope_8bit_38N024E_24mp_B17_016168_2181_G16_024594_2181", treks_CTX_ClrSlope_8bit_38N024E_24mp_B17_016168_2181_G16_024594_2181) +asset.export("CTX_ClrSlope_8bit_39N024E_24mp_D15_032875_2196_D15_033165_2196", treks_CTX_ClrSlope_8bit_39N024E_24mp_D15_032875_2196_D15_033165_2196) +asset.export("CTX_ClrSlope_8bit_40N022E_24mp_B18_016656_2206_B18_016801_2206", treks_CTX_ClrSlope_8bit_40N022E_24mp_B18_016656_2206_B18_016801_2206) +asset.export("CTX_ClrSlope_8bit_11S289E_24mp_F23_044971_1685_F21_043995_1685", treks_CTX_ClrSlope_8bit_11S289E_24mp_F23_044971_1685_F21_043995_1685) +asset.export("CTX_ClrSlope_8bit_11S291E_24mp_B19_017187_1685_B19_016976_1685", treks_CTX_ClrSlope_8bit_11S291E_24mp_B19_017187_1685_B19_016976_1685) +asset.export("CTX_ClrSlope_8bit_12S289E_24mp_D01_027446_1678_D01_027723_1677", treks_CTX_ClrSlope_8bit_12S289E_24mp_D01_027446_1678_D01_027723_1677) +asset.export("CTX_ClrSlope_8bit_12S289E_24mp_F18_042927_1681_J02_045749_1694", treks_CTX_ClrSlope_8bit_12S289E_24mp_F18_042927_1681_J02_045749_1694) +asset.export("CTX_ClrSlope_8bit_12S290E_24mp_D18_034250_1676_D21_035450_1674", treks_CTX_ClrSlope_8bit_12S290E_24mp_D18_034250_1676_D21_035450_1674) +asset.export("CTX_ClrSlope_8bit_12S291E_24mp_F14_041292_1682_F16_041938_1682", treks_CTX_ClrSlope_8bit_12S291E_24mp_F14_041292_1682_F16_041938_1682) +asset.export("CTX_ClrSlope_8bit_12S291E_24mp_F21_043850_1684_F21_043916_1685", treks_CTX_ClrSlope_8bit_12S291E_24mp_F21_043850_1684_F21_043916_1685) +asset.export("CTX_ClrSlope_8bit_12S291E_24mp_J01_045116_1677_J03_046039_1676", treks_CTX_ClrSlope_8bit_12S291E_24mp_J01_045116_1677_J03_046039_1676) +asset.export("CTX_ClrSlope_8bit_13S289E_24mp_D10_031125_1673_D12_031903_1669", treks_CTX_ClrSlope_8bit_13S289E_24mp_D10_031125_1673_D12_031903_1669) +asset.export("CTX_ClrSlope_8bit_16S291E_24mp_D22_035951_1644_F01_036307_1644", treks_CTX_ClrSlope_8bit_16S291E_24mp_D22_035951_1644_F01_036307_1644) +asset.export("CTX_Shade_12S182E_24mp_P22_009609_1674_B02_010453_1675", treks_CTX_Shade_12S182E_24mp_P22_009609_1674_B02_010453_1675) +asset.export("CTX_Shade_13S182E_24mp_G15_024127_1673_G16_024483_1673", treks_CTX_Shade_13S182E_24mp_G15_024127_1673_G16_024483_1673) +asset.export("CTX_Shade_14S184E_24mp_B01_009886_1658_P21_009385_1658", treks_CTX_Shade_14S184E_24mp_B01_009886_1658_P21_009385_1658) +asset.export("CTX_Shade_10S291E_24mp_P22_009684_1699_B02_010396_1699", treks_CTX_Shade_10S291E_24mp_P22_009684_1699_B02_010396_1699) +asset.export("CTX_Shade_11S293E_24mp_B09_013231_1696_B11_013732_1690", treks_CTX_Shade_11S293E_24mp_B09_013231_1696_B11_013732_1690) +asset.export("CTX_Shade_13S293E_24mp_G07_020879_1669_G09_021657_1665", treks_CTX_Shade_13S293E_24mp_G07_020879_1669_G09_021657_1665) +asset.export("CTX_Shade_37N024E_24mp_G05_020203_2178_G22_026994_2170", treks_CTX_Shade_37N024E_24mp_G05_020203_2178_G22_026994_2170) +asset.export("CTX_Shade_38N024E_24mp_B17_016168_2181_G16_024594_2181", treks_CTX_Shade_38N024E_24mp_B17_016168_2181_G16_024594_2181) +asset.export("CTX_Shade_39N024E_24mp_D15_032875_2196_D15_033165_2196", treks_CTX_Shade_39N024E_24mp_D15_032875_2196_D15_033165_2196) +asset.export("CTX_Shade_40N022E_24mp_B18_016656_2206_B18_016801_2206", treks_CTX_Shade_40N022E_24mp_B18_016656_2206_B18_016801_2206) +asset.export("CTX_Shade_11S289E_24mp_F23_044971_1685_F21_043995_1685", treks_CTX_Shade_11S289E_24mp_F23_044971_1685_F21_043995_1685) +asset.export("CTX_Shade_11S291E_24mp_B19_017187_1685_B19_016976_1685", treks_CTX_Shade_11S291E_24mp_B19_017187_1685_B19_016976_1685) +asset.export("CTX_Shade_12S289E_24mp_D01_027446_1678_D01_027723_1677", treks_CTX_Shade_12S289E_24mp_D01_027446_1678_D01_027723_1677) +asset.export("CTX_Shade_12S289E_24mp_F18_042927_1681_J02_045749_1694", treks_CTX_Shade_12S289E_24mp_F18_042927_1681_J02_045749_1694) +asset.export("CTX_Shade_12S290E_24mp_D18_034250_1676_D21_035450_1674", treks_CTX_Shade_12S290E_24mp_D18_034250_1676_D21_035450_1674) +asset.export("CTX_Shade_12S291E_24mp_F14_041292_1682_F16_041938_1682", treks_CTX_Shade_12S291E_24mp_F14_041292_1682_F16_041938_1682) +asset.export("CTX_Shade_12S291E_24mp_F21_043850_1684_F21_043916_1685", treks_CTX_Shade_12S291E_24mp_F21_043850_1684_F21_043916_1685) +asset.export("CTX_Shade_12S291E_24mp_J01_045116_1677_J03_046039_1676", treks_CTX_Shade_12S291E_24mp_J01_045116_1677_J03_046039_1676) +asset.export("CTX_Shade_13S289E_24mp_D10_031125_1673_D12_031903_1669", treks_CTX_Shade_13S289E_24mp_D10_031125_1673_D12_031903_1669) +asset.export("CTX_Shade_16S291E_24mp_D22_035951_1644_F01_036307_1644", treks_CTX_Shade_16S291E_24mp_D22_035951_1644_F01_036307_1644) +asset.export("Deuteronilus_CTX_Shade_v0_20171112", treks_Deuteronilus_CTX_Shade_v0_20171112) +asset.export("CTX_Ortho_12S182E_24mp_P22_009609_1674", treks_CTX_Ortho_12S182E_24mp_P22_009609_1674) +asset.export("CTX_Ortho_13S182E_24mp_G15_024127_1673", treks_CTX_Ortho_13S182E_24mp_G15_024127_1673) +asset.export("CTX_Ortho_14S184E_24mp_B01_009886_1658", treks_CTX_Ortho_14S184E_24mp_B01_009886_1658) +asset.export("CTX_Ortho_10S291E_24mp_P22_009684_1699", treks_CTX_Ortho_10S291E_24mp_P22_009684_1699) +asset.export("CTX_Ortho_11S293E_24mp_B09_013231_1696", treks_CTX_Ortho_11S293E_24mp_B09_013231_1696) +asset.export("CTX_Ortho_13S293E_24mp_G07_020879_1669", treks_CTX_Ortho_13S293E_24mp_G07_020879_1669) +asset.export("CTX_Ortho_38N024E_6mp_B17_016168_2181", treks_CTX_Ortho_38N024E_6mp_B17_016168_2181) +asset.export("CTX_Ortho_39N024E_6mp_D15_032875_2196", treks_CTX_Ortho_39N024E_6mp_D15_032875_2196) +asset.export("CTX_Ortho_40N022E_6mp_B18_016656_2206", treks_CTX_Ortho_40N022E_6mp_B18_016656_2206) +asset.export("CTX_Ortho_11S289E_6mp_F23_044971_1685", treks_CTX_Ortho_11S289E_6mp_F23_044971_1685) +asset.export("CTX_Ortho_11S291E_6mp_B19_017187_1685", treks_CTX_Ortho_11S291E_6mp_B19_017187_1685) +asset.export("CTX_Ortho_12S289E_6mp_D01_027446_1678", treks_CTX_Ortho_12S289E_6mp_D01_027446_1678) +asset.export("CTX_Ortho_12S289E_6mp_F18_042927_1681", treks_CTX_Ortho_12S289E_6mp_F18_042927_1681) +asset.export("CTX_Ortho_12S290E_6mp_D18_034250_1676", treks_CTX_Ortho_12S290E_6mp_D18_034250_1676) +asset.export("F14_041292_1682_map_ba_align_6_fill500DRG", treks_F14_041292_1682_map_ba_align_6_fill500DRG) +asset.export("CTX_Ortho_12S291E_6mp_F21_043850_1684", treks_CTX_Ortho_12S291E_6mp_F21_043850_1684) +asset.export("CTX_Ortho_12S291E_6mp_J01_045116_1677", treks_CTX_Ortho_12S291E_6mp_J01_045116_1677) +asset.export("CTX_Ortho_13S289E_6mp_D10_031125_1673", treks_CTX_Ortho_13S289E_6mp_D10_031125_1673) +asset.export("CTX_Ortho_16S291E_6mp_D22_035951_1644", treks_CTX_Ortho_16S291E_6mp_D22_035951_1644) +asset.export("CTX_Slope_12S182E_24mp_P22_009609_1674_B02_010453_1675", treks_CTX_Slope_12S182E_24mp_P22_009609_1674_B02_010453_1675) +asset.export("CTX_Slope_13S182E_24mp_G15_024127_1673_G16_024483_1673", treks_CTX_Slope_13S182E_24mp_G15_024127_1673_G16_024483_1673) +asset.export("CTX_Slope_14S184E_24mp_B01_009886_1658_P21_009385_1658", treks_CTX_Slope_14S184E_24mp_B01_009886_1658_P21_009385_1658) + + +asset.meta = { + Name = [[NASA Treks Layers for Mars Mars_Reconnaissance_Orbiter_CTX], + Version = "1.0", + Author = "NASA/Treks", + URL = "https://trek.nasa.gov/mars", + License = "NASA/Treks", + Description = [[Mars_Reconnaissance_Orbiter_CTX layers from NASA/Treks for Mars]] +} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_Apollinaris_12S182E.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_Apollinaris_12S182E.vrt new file mode 100644 index 0000000000..5b5786ab9e --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_Apollinaris_12S182E.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 + + 0 + Red + + Color_Slope_Apollinaris_12S182E.wms + 1 + + + + 0 + + + + 0 + Green + + Color_Slope_Apollinaris_12S182E.wms + 2 + + + + 0 + + + + 0 + Blue + + Color_Slope_Apollinaris_12S182E.wms + 3 + + + + 0 + + + + Alpha + + Color_Slope_Apollinaris_12S182E.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Apollinaris_12S182E/CTX_ClrSlope_8bit_12S182E_24mp_P22_009609_1674_B02_010453_1675.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_Apollinaris_12S182E.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Apollinaris_12S182E/CTX_ClrSlope_8bit_12S182E_24mp_P22_009609_1674_B02_010453_1675.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_Apollinaris_12S182E.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_Apollinaris_13S182E.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_Apollinaris_13S182E.vrt new file mode 100644 index 0000000000..1b96010ce1 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_Apollinaris_13S182E.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 + + 0 + Red + + Color_Slope_Apollinaris_13S182E.wms + 1 + + + + 0 + + + + 0 + Green + + Color_Slope_Apollinaris_13S182E.wms + 2 + + + + 0 + + + + 0 + Blue + + Color_Slope_Apollinaris_13S182E.wms + 3 + + + + 0 + + + + Alpha + + Color_Slope_Apollinaris_13S182E.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Apollinaris_13S182E/CTX_ClrSlope_8bit_13S182E_24mp_G15_024127_1673_G16_024483_1673.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_Apollinaris_13S182E.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Apollinaris_13S182E/CTX_ClrSlope_8bit_13S182E_24mp_G15_024127_1673_G16_024483_1673.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_Apollinaris_13S182E.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_Apollinaris_14S184E.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_Apollinaris_14S184E.vrt new file mode 100644 index 0000000000..15b8609f97 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_Apollinaris_14S184E.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 + + 0 + Red + + Color_Slope_Apollinaris_14S184E.wms + 1 + + + + 0 + + + + 0 + Green + + Color_Slope_Apollinaris_14S184E.wms + 2 + + + + 0 + + + + 0 + Blue + + Color_Slope_Apollinaris_14S184E.wms + 3 + + + + 0 + + + + Alpha + + Color_Slope_Apollinaris_14S184E.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Apollinaris_14S184E/CTX_ClrSlope_8bit_14S184E_24mp_B01_009886_1658_P21_009385_1658.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_Apollinaris_14S184E.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Apollinaris_14S184E/CTX_ClrSlope_8bit_14S184E_24mp_B01_009886_1658_P21_009385_1658.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_Apollinaris_14S184E.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_Coprates_10S291E.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_Coprates_10S291E.vrt new file mode 100644 index 0000000000..e9977ab0ec --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_Coprates_10S291E.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 + + 0 + Red + + Color_Slope_Coprates_10S291E.wms + 1 + + + + 0 + + + + 0 + Green + + Color_Slope_Coprates_10S291E.wms + 2 + + + + 0 + + + + 0 + Blue + + Color_Slope_Coprates_10S291E.wms + 3 + + + + 0 + + + + Alpha + + Color_Slope_Coprates_10S291E.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Coprates_10S291E/CTX_ClrSlope_8bit_10S291E_24mp_P22_009684_1699_B02_010396_1699.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_Coprates_10S291E.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Coprates_10S291E/CTX_ClrSlope_8bit_10S291E_24mp_P22_009684_1699_B02_010396_1699.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_Coprates_10S291E.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_Coprates_11S293E.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_Coprates_11S293E.vrt new file mode 100644 index 0000000000..bb51094267 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_Coprates_11S293E.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 + + 0 + Red + + Color_Slope_Coprates_11S293E.wms + 1 + + + + 0 + + + + 0 + Green + + Color_Slope_Coprates_11S293E.wms + 2 + + + + 0 + + + + 0 + Blue + + Color_Slope_Coprates_11S293E.wms + 3 + + + + 0 + + + + Alpha + + Color_Slope_Coprates_11S293E.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Coprates_11S293E/CTX_ClrSlope_8bit_11S293E_24mp_B09_013231_1696_B11_013732_1690.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_Coprates_11S293E.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Coprates_11S293E/CTX_ClrSlope_8bit_11S293E_24mp_B09_013231_1696_B11_013732_1690.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_Coprates_11S293E.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_Coprates_13S293E.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_Coprates_13S293E.vrt new file mode 100644 index 0000000000..801772d148 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_Coprates_13S293E.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 + + 0 + Red + + Color_Slope_Coprates_13S293E.wms + 1 + + + + 0 + + + + 0 + Green + + Color_Slope_Coprates_13S293E.wms + 2 + + + + 0 + + + + 0 + Blue + + Color_Slope_Coprates_13S293E.wms + 3 + + + + 0 + + + + Alpha + + Color_Slope_Coprates_13S293E.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Coprates_13S293E/CTX_ClrSlope_8bit_13S293E_24mp_G07_020879_1669_G09_021657_1665.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_Coprates_13S293E.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Coprates_13S293E/CTX_ClrSlope_8bit_13S293E_24mp_G07_020879_1669_G09_021657_1665.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_Coprates_13S293E.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_Deuteronius_37N024E.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_Deuteronius_37N024E.vrt new file mode 100644 index 0000000000..b16bb94884 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_Deuteronius_37N024E.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 + + 0 + Red + + Color_Slope_Deuteronius_37N024E.wms + 1 + + + + 0 + + + + 0 + Green + + Color_Slope_Deuteronius_37N024E.wms + 2 + + + + 0 + + + + 0 + Blue + + Color_Slope_Deuteronius_37N024E.wms + 3 + + + + 0 + + + + Alpha + + Color_Slope_Deuteronius_37N024E.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Deuteronius_37N024E/CTX_ClrSlope_8bit_37N024E_24mp_G05_020203_2178_G22_026994_2170.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_Deuteronius_37N024E.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Deuteronius_37N024E/CTX_ClrSlope_8bit_37N024E_24mp_G05_020203_2178_G22_026994_2170.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_Deuteronius_37N024E.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_Deuteronius_38N024E.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_Deuteronius_38N024E.vrt new file mode 100644 index 0000000000..1c037c9a55 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_Deuteronius_38N024E.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 + + 0 + Red + + Color_Slope_Deuteronius_38N024E.wms + 1 + + + + 0 + + + + 0 + Green + + Color_Slope_Deuteronius_38N024E.wms + 2 + + + + 0 + + + + 0 + Blue + + Color_Slope_Deuteronius_38N024E.wms + 3 + + + + 0 + + + + Alpha + + Color_Slope_Deuteronius_38N024E.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Deuteronius_38N024E/CTX_ClrSlope_8bit_38N024E_24mp_B17_016168_2181_G16_024594_2181.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_Deuteronius_38N024E.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Deuteronius_38N024E/CTX_ClrSlope_8bit_38N024E_24mp_B17_016168_2181_G16_024594_2181.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_Deuteronius_38N024E.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_Deuteronius_39N024E.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_Deuteronius_39N024E.vrt new file mode 100644 index 0000000000..a5f253200f --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_Deuteronius_39N024E.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 + + 0 + Red + + Color_Slope_Deuteronius_39N024E.wms + 1 + + + + 0 + + + + 0 + Green + + Color_Slope_Deuteronius_39N024E.wms + 2 + + + + 0 + + + + 0 + Blue + + Color_Slope_Deuteronius_39N024E.wms + 3 + + + + 0 + + + + Alpha + + Color_Slope_Deuteronius_39N024E.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Deuteronius_39N024E/CTX_ClrSlope_8bit_39N024E_24mp_D15_032875_2196_D15_033165_2196.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_Deuteronius_39N024E.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Deuteronius_39N024E/CTX_ClrSlope_8bit_39N024E_24mp_D15_032875_2196_D15_033165_2196.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_Deuteronius_39N024E.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_Deuteronius_40N024E.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_Deuteronius_40N024E.vrt new file mode 100644 index 0000000000..19ab49ca37 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_Deuteronius_40N024E.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 + + 0 + Red + + Color_Slope_Deuteronius_40N024E.wms + 1 + + + + 0 + + + + 0 + Green + + Color_Slope_Deuteronius_40N024E.wms + 2 + + + + 0 + + + + 0 + Blue + + Color_Slope_Deuteronius_40N024E.wms + 3 + + + + 0 + + + + Alpha + + Color_Slope_Deuteronius_40N024E.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Deuteronius_40N024E/CTX_ClrSlope_8bit_40N022E_24mp_B18_016656_2206_B18_016801_2206.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_Deuteronius_40N024E.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Deuteronius_40N024E/CTX_ClrSlope_8bit_40N022E_24mp_B18_016656_2206_B18_016801_2206.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_Deuteronius_40N024E.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_East_Melas_11S289E.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_East_Melas_11S289E.vrt new file mode 100644 index 0000000000..1fd6c0b3b6 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_East_Melas_11S289E.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 + + 0 + Red + + Color_Slope_East_Melas_11S289E.wms + 1 + + + + 0 + + + + 0 + Green + + Color_Slope_East_Melas_11S289E.wms + 2 + + + + 0 + + + + 0 + Blue + + Color_Slope_East_Melas_11S289E.wms + 3 + + + + 0 + + + + Alpha + + Color_Slope_East_Melas_11S289E.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_11S289E/CTX_ClrSlope_8bit_11S289E_24mp_F23_044971_1685_F21_043995_1685.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_East_Melas_11S289E.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_11S289E/CTX_ClrSlope_8bit_11S289E_24mp_F23_044971_1685_F21_043995_1685.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_East_Melas_11S289E.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_East_Melas_11S291E.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_East_Melas_11S291E.vrt new file mode 100644 index 0000000000..9f7bff0fbe --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_East_Melas_11S291E.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 + + 0 + Red + + Color_Slope_East_Melas_11S291E.wms + 1 + + + + 0 + + + + 0 + Green + + Color_Slope_East_Melas_11S291E.wms + 2 + + + + 0 + + + + 0 + Blue + + Color_Slope_East_Melas_11S291E.wms + 3 + + + + 0 + + + + Alpha + + Color_Slope_East_Melas_11S291E.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_11S291E/CTX_ClrSlope_8bit_11S291E_24mp_B19_017187_1685_B19_016976_1685.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_East_Melas_11S291E.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_11S291E/CTX_ClrSlope_8bit_11S291E_24mp_B19_017187_1685_B19_016976_1685.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_East_Melas_11S291E.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_East_Melas_12S289E_D01.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_East_Melas_12S289E_D01.vrt new file mode 100644 index 0000000000..a1678068d9 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_East_Melas_12S289E_D01.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 + + 0 + Red + + Color_Slope_East_Melas_12S289E_D01.wms + 1 + + + + 0 + + + + 0 + Green + + Color_Slope_East_Melas_12S289E_D01.wms + 2 + + + + 0 + + + + 0 + Blue + + Color_Slope_East_Melas_12S289E_D01.wms + 3 + + + + 0 + + + + Alpha + + Color_Slope_East_Melas_12S289E_D01.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S289E_D01/CTX_ClrSlope_8bit_12S289E_24mp_D01_027446_1678_D01_027723_1677.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_East_Melas_12S289E_D01.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S289E_D01/CTX_ClrSlope_8bit_12S289E_24mp_D01_027446_1678_D01_027723_1677.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_East_Melas_12S289E_D01.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_East_Melas_12S289E_F18.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_East_Melas_12S289E_F18.vrt new file mode 100644 index 0000000000..bc7aa47d2b --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_East_Melas_12S289E_F18.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 + + 0 + Red + + Color_Slope_East_Melas_12S289E_F18.wms + 1 + + + + 0 + + + + 0 + Green + + Color_Slope_East_Melas_12S289E_F18.wms + 2 + + + + 0 + + + + 0 + Blue + + Color_Slope_East_Melas_12S289E_F18.wms + 3 + + + + 0 + + + + Alpha + + Color_Slope_East_Melas_12S289E_F18.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S289E_F18/CTX_ClrSlope_8bit_12S289E_24mp_F18_042927_1681_J02_045749_1694.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_East_Melas_12S289E_F18.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S289E_F18/CTX_ClrSlope_8bit_12S289E_24mp_F18_042927_1681_J02_045749_1694.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_East_Melas_12S289E_F18.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_East_Melas_12S290E.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_East_Melas_12S290E.vrt new file mode 100644 index 0000000000..30cae5f405 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_East_Melas_12S290E.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 + + 0 + Red + + Color_Slope_East_Melas_12S290E.wms + 1 + + + + 0 + + + + 0 + Green + + Color_Slope_East_Melas_12S290E.wms + 2 + + + + 0 + + + + 0 + Blue + + Color_Slope_East_Melas_12S290E.wms + 3 + + + + 0 + + + + Alpha + + Color_Slope_East_Melas_12S290E.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S290E/CTX_ClrSlope_8bit_12S290E_24mp_D18_034250_1676_D21_035450_1674.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_East_Melas_12S290E.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S290E/CTX_ClrSlope_8bit_12S290E_24mp_D18_034250_1676_D21_035450_1674.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_East_Melas_12S290E.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_East_Melas_12S291E_F14.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_East_Melas_12S291E_F14.vrt new file mode 100644 index 0000000000..50af74c87f --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_East_Melas_12S291E_F14.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 + + 0 + Red + + Color_Slope_East_Melas_12S291E_F14.wms + 1 + + + + 0 + + + + 0 + Green + + Color_Slope_East_Melas_12S291E_F14.wms + 2 + + + + 0 + + + + 0 + Blue + + Color_Slope_East_Melas_12S291E_F14.wms + 3 + + + + 0 + + + + Alpha + + Color_Slope_East_Melas_12S291E_F14.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S291E_F14/CTX_ClrSlope_8bit_12S291E_24mp_F14_041292_1682_F16_041938_1682.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_East_Melas_12S291E_F14.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S291E_F14/CTX_ClrSlope_8bit_12S291E_24mp_F14_041292_1682_F16_041938_1682.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_East_Melas_12S291E_F14.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_East_Melas_12S291E_F21.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_East_Melas_12S291E_F21.vrt new file mode 100644 index 0000000000..c9d3ecf5fa --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_East_Melas_12S291E_F21.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 + + 0 + Red + + Color_Slope_East_Melas_12S291E_F21.wms + 1 + + + + 0 + + + + 0 + Green + + Color_Slope_East_Melas_12S291E_F21.wms + 2 + + + + 0 + + + + 0 + Blue + + Color_Slope_East_Melas_12S291E_F21.wms + 3 + + + + 0 + + + + Alpha + + Color_Slope_East_Melas_12S291E_F21.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S291E_F21/CTX_ClrSlope_8bit_12S291E_24mp_F21_043850_1684_F21_043916_1685.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_East_Melas_12S291E_F21.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S291E_F21/CTX_ClrSlope_8bit_12S291E_24mp_F21_043850_1684_F21_043916_1685.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_East_Melas_12S291E_F21.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_East_Melas_12S291E_J01.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_East_Melas_12S291E_J01.vrt new file mode 100644 index 0000000000..b150327031 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_East_Melas_12S291E_J01.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 + + 0 + Red + + Color_Slope_East_Melas_12S291E_J01.wms + 1 + + + + 0 + + + + 0 + Green + + Color_Slope_East_Melas_12S291E_J01.wms + 2 + + + + 0 + + + + 0 + Blue + + Color_Slope_East_Melas_12S291E_J01.wms + 3 + + + + 0 + + + + Alpha + + Color_Slope_East_Melas_12S291E_J01.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S291E_J01/CTX_ClrSlope_8bit_12S291E_24mp_J01_045116_1677_J03_046039_1676.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_East_Melas_12S291E_J01.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S291E_J01/CTX_ClrSlope_8bit_12S291E_24mp_J01_045116_1677_J03_046039_1676.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_East_Melas_12S291E_J01.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_East_Melas_13S289E.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_East_Melas_13S289E.vrt new file mode 100644 index 0000000000..642d547eda --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_East_Melas_13S289E.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 + + 0 + Red + + Color_Slope_East_Melas_13S289E.wms + 1 + + + + 0 + + + + 0 + Green + + Color_Slope_East_Melas_13S289E.wms + 2 + + + + 0 + + + + 0 + Blue + + Color_Slope_East_Melas_13S289E.wms + 3 + + + + 0 + + + + Alpha + + Color_Slope_East_Melas_13S289E.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_13S289E/CTX_ClrSlope_8bit_13S289E_24mp_D10_031125_1673_D12_031903_1669.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_East_Melas_13S289E.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_13S289E/CTX_ClrSlope_8bit_13S289E_24mp_D10_031125_1673_D12_031903_1669.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_East_Melas_13S289E.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_East_Melas_16S291E_D22.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_East_Melas_16S291E_D22.vrt new file mode 100644 index 0000000000..e8bba1b64e --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_East_Melas_16S291E_D22.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 + + 0 + Red + + Color_Slope_East_Melas_16S291E_D22.wms + 1 + + + + 0 + + + + 0 + Green + + Color_Slope_East_Melas_16S291E_D22.wms + 2 + + + + 0 + + + + 0 + Blue + + Color_Slope_East_Melas_16S291E_D22.wms + 3 + + + + 0 + + + + Alpha + + Color_Slope_East_Melas_16S291E_D22.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_16S291E_D22/CTX_ClrSlope_8bit_16S291E_24mp_D22_035951_1644_F01_036307_1644.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_East_Melas_16S291E_D22.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_16S291E_D22/CTX_ClrSlope_8bit_16S291E_24mp_D22_035951_1644_F01_036307_1644.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Color_Slope_East_Melas_16S291E_D22.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_Apollinaris_12S182E.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_Apollinaris_12S182E.vrt new file mode 100644 index 0000000000..aa257285b6 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_Apollinaris_12S182E.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 + + 0 + Red + + HillShade_Apollinaris_12S182E.wms + 1 + + + + 0 + + + + 0 + Green + + HillShade_Apollinaris_12S182E.wms + 2 + + + + 0 + + + + 0 + Blue + + HillShade_Apollinaris_12S182E.wms + 3 + + + + 0 + + + + Alpha + + HillShade_Apollinaris_12S182E.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_Apollinaris_12S182E/CTX_Shade_12S182E_24mp_P22_009609_1674_B02_010453_1675.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_Apollinaris_12S182E.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_Apollinaris_12S182E/CTX_Shade_12S182E_24mp_P22_009609_1674_B02_010453_1675.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_Apollinaris_12S182E.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_Apollinaris_13S182E.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_Apollinaris_13S182E.vrt new file mode 100644 index 0000000000..99f650d084 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_Apollinaris_13S182E.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 + + 0 + Red + + HillShade_Apollinaris_13S182E.wms + 1 + + + + 0 + + + + 0 + Green + + HillShade_Apollinaris_13S182E.wms + 2 + + + + 0 + + + + 0 + Blue + + HillShade_Apollinaris_13S182E.wms + 3 + + + + 0 + + + + Alpha + + HillShade_Apollinaris_13S182E.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_Apollinaris_13S182E/CTX_Shade_13S182E_24mp_G15_024127_1673_G16_024483_1673.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_Apollinaris_13S182E.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_Apollinaris_13S182E/CTX_Shade_13S182E_24mp_G15_024127_1673_G16_024483_1673.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_Apollinaris_13S182E.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_Apollinaris_14S184E.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_Apollinaris_14S184E.vrt new file mode 100644 index 0000000000..8b1079d22e --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_Apollinaris_14S184E.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 + + 0 + Red + + HillShade_Apollinaris_14S184E.wms + 1 + + + + 0 + + + + 0 + Green + + HillShade_Apollinaris_14S184E.wms + 2 + + + + 0 + + + + 0 + Blue + + HillShade_Apollinaris_14S184E.wms + 3 + + + + 0 + + + + Alpha + + HillShade_Apollinaris_14S184E.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_Apollinaris_14S184E/CTX_Shade_14S184E_24mp_B01_009886_1658_P21_009385_1658.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_Apollinaris_14S184E.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_Apollinaris_14S184E/CTX_Shade_14S184E_24mp_B01_009886_1658_P21_009385_1658.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_Apollinaris_14S184E.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_Coprates_10S291E.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_Coprates_10S291E.vrt new file mode 100644 index 0000000000..da990e4ad3 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_Coprates_10S291E.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 + + 0 + Red + + HillShade_Coprates_10S291E.wms + 1 + + + + 0 + + + + 0 + Green + + HillShade_Coprates_10S291E.wms + 2 + + + + 0 + + + + 0 + Blue + + HillShade_Coprates_10S291E.wms + 3 + + + + 0 + + + + Alpha + + HillShade_Coprates_10S291E.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_Coprates_10S291E/CTX_Shade_10S291E_24mp_P22_009684_1699_B02_010396_1699.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_Coprates_10S291E.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_Coprates_10S291E/CTX_Shade_10S291E_24mp_P22_009684_1699_B02_010396_1699.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_Coprates_10S291E.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_Coprates_11S293E.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_Coprates_11S293E.vrt new file mode 100644 index 0000000000..394f8ffc22 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_Coprates_11S293E.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 + + 0 + Red + + HillShade_Coprates_11S293E.wms + 1 + + + + 0 + + + + 0 + Green + + HillShade_Coprates_11S293E.wms + 2 + + + + 0 + + + + 0 + Blue + + HillShade_Coprates_11S293E.wms + 3 + + + + 0 + + + + Alpha + + HillShade_Coprates_11S293E.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_Coprates_11S293E/CTX_Shade_11S293E_24mp_B09_013231_1696_B11_013732_1690.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_Coprates_11S293E.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_Coprates_11S293E/CTX_Shade_11S293E_24mp_B09_013231_1696_B11_013732_1690.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_Coprates_11S293E.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_Coprates_13S293E.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_Coprates_13S293E.vrt new file mode 100644 index 0000000000..988b8bc297 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_Coprates_13S293E.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 + + 0 + Red + + HillShade_Coprates_13S293E.wms + 1 + + + + 0 + + + + 0 + Green + + HillShade_Coprates_13S293E.wms + 2 + + + + 0 + + + + 0 + Blue + + HillShade_Coprates_13S293E.wms + 3 + + + + 0 + + + + Alpha + + HillShade_Coprates_13S293E.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_Coprates_13S293E/CTX_Shade_13S293E_24mp_G07_020879_1669_G09_021657_1665.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_Coprates_13S293E.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_Coprates_13S293E/CTX_Shade_13S293E_24mp_G07_020879_1669_G09_021657_1665.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_Coprates_13S293E.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_Deuteronius_37N024E.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_Deuteronius_37N024E.vrt new file mode 100644 index 0000000000..e629fc1df1 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_Deuteronius_37N024E.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 + + 0 + Red + + HillShade_Deuteronius_37N024E.wms + 1 + + + + 0 + + + + 0 + Green + + HillShade_Deuteronius_37N024E.wms + 2 + + + + 0 + + + + 0 + Blue + + HillShade_Deuteronius_37N024E.wms + 3 + + + + 0 + + + + Alpha + + HillShade_Deuteronius_37N024E.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_Deuteronius_37N024E/CTX_Shade_37N024E_24mp_G05_020203_2178_G22_026994_2170.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_Deuteronius_37N024E.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_Deuteronius_37N024E/CTX_Shade_37N024E_24mp_G05_020203_2178_G22_026994_2170.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_Deuteronius_37N024E.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_Deuteronius_38N024E.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_Deuteronius_38N024E.vrt new file mode 100644 index 0000000000..d62bcaa935 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_Deuteronius_38N024E.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 + + 0 + Red + + HillShade_Deuteronius_38N024E.wms + 1 + + + + 0 + + + + 0 + Green + + HillShade_Deuteronius_38N024E.wms + 2 + + + + 0 + + + + 0 + Blue + + HillShade_Deuteronius_38N024E.wms + 3 + + + + 0 + + + + Alpha + + HillShade_Deuteronius_38N024E.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_Deuteronius_38N024E/CTX_Shade_38N024E_24mp_B17_016168_2181_G16_024594_2181.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_Deuteronius_38N024E.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_Deuteronius_38N024E/CTX_Shade_38N024E_24mp_B17_016168_2181_G16_024594_2181.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_Deuteronius_38N024E.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_Deuteronius_39N024E.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_Deuteronius_39N024E.vrt new file mode 100644 index 0000000000..fd1e0374cc --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_Deuteronius_39N024E.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 + + 0 + Red + + HillShade_Deuteronius_39N024E.wms + 1 + + + + 0 + + + + 0 + Green + + HillShade_Deuteronius_39N024E.wms + 2 + + + + 0 + + + + 0 + Blue + + HillShade_Deuteronius_39N024E.wms + 3 + + + + 0 + + + + Alpha + + HillShade_Deuteronius_39N024E.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_Deuteronius_39N024E/CTX_Shade_39N024E_24mp_D15_032875_2196_D15_033165_2196.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_Deuteronius_39N024E.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_Deuteronius_39N024E/CTX_Shade_39N024E_24mp_D15_032875_2196_D15_033165_2196.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_Deuteronius_39N024E.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_Deuteronius_40N024E.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_Deuteronius_40N024E.vrt new file mode 100644 index 0000000000..920ce5053b --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_Deuteronius_40N024E.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 + + 0 + Red + + HillShade_Deuteronius_40N024E.wms + 1 + + + + 0 + + + + 0 + Green + + HillShade_Deuteronius_40N024E.wms + 2 + + + + 0 + + + + 0 + Blue + + HillShade_Deuteronius_40N024E.wms + 3 + + + + 0 + + + + Alpha + + HillShade_Deuteronius_40N024E.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_Deuteronius_40N024E/CTX_Shade_40N022E_24mp_B18_016656_2206_B18_016801_2206.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_Deuteronius_40N024E.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_Deuteronius_40N024E/CTX_Shade_40N022E_24mp_B18_016656_2206_B18_016801_2206.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_Deuteronius_40N024E.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_East_Melas_11S289E.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_East_Melas_11S289E.vrt new file mode 100644 index 0000000000..c52d462039 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_East_Melas_11S289E.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 + + 0 + Red + + HillShade_East_Melas_11S289E.wms + 1 + + + + 0 + + + + 0 + Green + + HillShade_East_Melas_11S289E.wms + 2 + + + + 0 + + + + 0 + Blue + + HillShade_East_Melas_11S289E.wms + 3 + + + + 0 + + + + Alpha + + HillShade_East_Melas_11S289E.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_11S289E/CTX_Shade_11S289E_24mp_F23_044971_1685_F21_043995_1685.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_East_Melas_11S289E.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_11S289E/CTX_Shade_11S289E_24mp_F23_044971_1685_F21_043995_1685.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_East_Melas_11S289E.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_East_Melas_11S291E.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_East_Melas_11S291E.vrt new file mode 100644 index 0000000000..d44251661a --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_East_Melas_11S291E.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 + + 0 + Red + + HillShade_East_Melas_11S291E.wms + 1 + + + + 0 + + + + 0 + Green + + HillShade_East_Melas_11S291E.wms + 2 + + + + 0 + + + + 0 + Blue + + HillShade_East_Melas_11S291E.wms + 3 + + + + 0 + + + + Alpha + + HillShade_East_Melas_11S291E.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_11S291E/CTX_Shade_11S291E_24mp_B19_017187_1685_B19_016976_1685.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_East_Melas_11S291E.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_11S291E/CTX_Shade_11S291E_24mp_B19_017187_1685_B19_016976_1685.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_East_Melas_11S291E.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_East_Melas_12S289E_D01.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_East_Melas_12S289E_D01.vrt new file mode 100644 index 0000000000..6eb35f60d7 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_East_Melas_12S289E_D01.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 + + 0 + Red + + HillShade_East_Melas_12S289E_D01.wms + 1 + + + + 0 + + + + 0 + Green + + HillShade_East_Melas_12S289E_D01.wms + 2 + + + + 0 + + + + 0 + Blue + + HillShade_East_Melas_12S289E_D01.wms + 3 + + + + 0 + + + + Alpha + + HillShade_East_Melas_12S289E_D01.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S289E_D01/CTX_Shade_12S289E_24mp_D01_027446_1678_D01_027723_1677.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_East_Melas_12S289E_D01.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S289E_D01/CTX_Shade_12S289E_24mp_D01_027446_1678_D01_027723_1677.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_East_Melas_12S289E_D01.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_East_Melas_12S289E_F18.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_East_Melas_12S289E_F18.vrt new file mode 100644 index 0000000000..182048d1a4 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_East_Melas_12S289E_F18.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 + + 0 + Red + + HillShade_East_Melas_12S289E_F18.wms + 1 + + + + 0 + + + + 0 + Green + + HillShade_East_Melas_12S289E_F18.wms + 2 + + + + 0 + + + + 0 + Blue + + HillShade_East_Melas_12S289E_F18.wms + 3 + + + + 0 + + + + Alpha + + HillShade_East_Melas_12S289E_F18.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S289E_F18/CTX_Shade_12S289E_24mp_F18_042927_1681_J02_045749_1694.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_East_Melas_12S289E_F18.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S289E_F18/CTX_Shade_12S289E_24mp_F18_042927_1681_J02_045749_1694.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_East_Melas_12S289E_F18.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_East_Melas_12S290E.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_East_Melas_12S290E.vrt new file mode 100644 index 0000000000..fb6695d808 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_East_Melas_12S290E.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 + + 0 + Red + + HillShade_East_Melas_12S290E.wms + 1 + + + + 0 + + + + 0 + Green + + HillShade_East_Melas_12S290E.wms + 2 + + + + 0 + + + + 0 + Blue + + HillShade_East_Melas_12S290E.wms + 3 + + + + 0 + + + + Alpha + + HillShade_East_Melas_12S290E.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S290E/CTX_Shade_12S290E_24mp_D18_034250_1676_D21_035450_1674.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_East_Melas_12S290E.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S290E/CTX_Shade_12S290E_24mp_D18_034250_1676_D21_035450_1674.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_East_Melas_12S290E.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_East_Melas_12S291E_F14.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_East_Melas_12S291E_F14.vrt new file mode 100644 index 0000000000..7b4abd689b --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_East_Melas_12S291E_F14.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 + + 0 + Red + + HillShade_East_Melas_12S291E_F14.wms + 1 + + + + 0 + + + + 0 + Green + + HillShade_East_Melas_12S291E_F14.wms + 2 + + + + 0 + + + + 0 + Blue + + HillShade_East_Melas_12S291E_F14.wms + 3 + + + + 0 + + + + Alpha + + HillShade_East_Melas_12S291E_F14.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S291E_F14/CTX_Shade_12S291E_24mp_F14_041292_1682_F16_041938_1682.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_East_Melas_12S291E_F14.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S291E_F14/CTX_Shade_12S291E_24mp_F14_041292_1682_F16_041938_1682.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_East_Melas_12S291E_F14.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_East_Melas_12S291E_F21.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_East_Melas_12S291E_F21.vrt new file mode 100644 index 0000000000..ea945a3da3 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_East_Melas_12S291E_F21.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 + + 0 + Red + + HillShade_East_Melas_12S291E_F21.wms + 1 + + + + 0 + + + + 0 + Green + + HillShade_East_Melas_12S291E_F21.wms + 2 + + + + 0 + + + + 0 + Blue + + HillShade_East_Melas_12S291E_F21.wms + 3 + + + + 0 + + + + Alpha + + HillShade_East_Melas_12S291E_F21.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S291E_F21/CTX_Shade_12S291E_24mp_F21_043850_1684_F21_043916_1685.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_East_Melas_12S291E_F21.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S291E_F21/CTX_Shade_12S291E_24mp_F21_043850_1684_F21_043916_1685.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_East_Melas_12S291E_F21.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_East_Melas_12S291E_J01.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_East_Melas_12S291E_J01.vrt new file mode 100644 index 0000000000..e8362e1542 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_East_Melas_12S291E_J01.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 + + 0 + Red + + HillShade_East_Melas_12S291E_J01.wms + 1 + + + + 0 + + + + 0 + Green + + HillShade_East_Melas_12S291E_J01.wms + 2 + + + + 0 + + + + 0 + Blue + + HillShade_East_Melas_12S291E_J01.wms + 3 + + + + 0 + + + + Alpha + + HillShade_East_Melas_12S291E_J01.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S291E_J01/CTX_Shade_12S291E_24mp_J01_045116_1677_J03_046039_1676.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_East_Melas_12S291E_J01.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S291E_J01/CTX_Shade_12S291E_24mp_J01_045116_1677_J03_046039_1676.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_East_Melas_12S291E_J01.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_East_Melas_13S289E_D10.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_East_Melas_13S289E_D10.vrt new file mode 100644 index 0000000000..4cb066a259 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_East_Melas_13S289E_D10.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 + + 0 + Red + + HillShade_East_Melas_13S289E_D10.wms + 1 + + + + 0 + + + + 0 + Green + + HillShade_East_Melas_13S289E_D10.wms + 2 + + + + 0 + + + + 0 + Blue + + HillShade_East_Melas_13S289E_D10.wms + 3 + + + + 0 + + + + Alpha + + HillShade_East_Melas_13S289E_D10.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_13S289E_D10/CTX_Shade_13S289E_24mp_D10_031125_1673_D12_031903_1669.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_East_Melas_13S289E_D10.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_13S289E_D10/CTX_Shade_13S289E_24mp_D10_031125_1673_D12_031903_1669.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_East_Melas_13S289E_D10.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_East_Melas_16S291E_D22.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_East_Melas_16S291E_D22.vrt new file mode 100644 index 0000000000..6435c27489 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_East_Melas_16S291E_D22.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 + + 0 + Red + + HillShade_East_Melas_16S291E_D22.wms + 1 + + + + 0 + + + + 0 + Green + + HillShade_East_Melas_16S291E_D22.wms + 2 + + + + 0 + + + + 0 + Blue + + HillShade_East_Melas_16S291E_D22.wms + 3 + + + + 0 + + + + Alpha + + HillShade_East_Melas_16S291E_D22.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_16S291E_D22/CTX_Shade_16S291E_24mp_D22_035951_1644_F01_036307_1644.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_East_Melas_16S291E_D22.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_16S291E_D22/CTX_Shade_16S291E_24mp_D22_035951_1644_F01_036307_1644.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/HillShade_East_Melas_16S291E_D22.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Hilllshade_Deuteronilus.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Hilllshade_Deuteronilus.vrt new file mode 100644 index 0000000000..49242fa862 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Hilllshade_Deuteronilus.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 + + 0 + Red + + Hilllshade_Deuteronilus.wms + 1 + + + + 0 + + + + 0 + Green + + Hilllshade_Deuteronilus.wms + 2 + + + + 0 + + + + 0 + Blue + + Hilllshade_Deuteronilus.wms + 3 + + + + 0 + + + + Alpha + + Hilllshade_Deuteronilus.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Hilllshade_Deuteronilus/Deuteronilus_CTX_Shade_v0_20171112.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Hilllshade_Deuteronilus.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Hilllshade_Deuteronilus/Deuteronilus_CTX_Shade_v0_20171112.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Hilllshade_Deuteronilus.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_Apollinaris_12S182E.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_Apollinaris_12S182E.vrt new file mode 100644 index 0000000000..717381a911 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_Apollinaris_12S182E.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 + + 0 + Red + + Mosaic_Apollinaris_12S182E.wms + 1 + + + + 0 + + + + 0 + Green + + Mosaic_Apollinaris_12S182E.wms + 2 + + + + 0 + + + + 0 + Blue + + Mosaic_Apollinaris_12S182E.wms + 3 + + + + 0 + + + + Alpha + + Mosaic_Apollinaris_12S182E.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Apollinaris_12S182E/CTX_Ortho_12S182E_24mp_P22_009609_1674.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_Apollinaris_12S182E.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Apollinaris_12S182E/CTX_Ortho_12S182E_24mp_P22_009609_1674.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_Apollinaris_12S182E.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_Apollinaris_13S182E.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_Apollinaris_13S182E.vrt new file mode 100644 index 0000000000..bcc92da192 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_Apollinaris_13S182E.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 + + 0 + Red + + Mosaic_Apollinaris_13S182E.wms + 1 + + + + 0 + + + + 0 + Green + + Mosaic_Apollinaris_13S182E.wms + 2 + + + + 0 + + + + 0 + Blue + + Mosaic_Apollinaris_13S182E.wms + 3 + + + + 0 + + + + Alpha + + Mosaic_Apollinaris_13S182E.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Apollinaris_13S182E/CTX_Ortho_13S182E_24mp_G15_024127_1673.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_Apollinaris_13S182E.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Apollinaris_13S182E/CTX_Ortho_13S182E_24mp_G15_024127_1673.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_Apollinaris_13S182E.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_Apollinaris_14S184E.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_Apollinaris_14S184E.vrt new file mode 100644 index 0000000000..4f968b629e --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_Apollinaris_14S184E.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 + + 0 + Red + + Mosaic_Apollinaris_14S184E.wms + 1 + + + + 0 + + + + 0 + Green + + Mosaic_Apollinaris_14S184E.wms + 2 + + + + 0 + + + + 0 + Blue + + Mosaic_Apollinaris_14S184E.wms + 3 + + + + 0 + + + + Alpha + + Mosaic_Apollinaris_14S184E.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Apollinaris_14S184E/CTX_Ortho_14S184E_24mp_B01_009886_1658.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_Apollinaris_14S184E.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Apollinaris_14S184E/CTX_Ortho_14S184E_24mp_B01_009886_1658.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_Apollinaris_14S184E.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_Coprates_10S291E.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_Coprates_10S291E.vrt new file mode 100644 index 0000000000..fef2b21978 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_Coprates_10S291E.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 + + 0 + Red + + Mosaic_Coprates_10S291E.wms + 1 + + + + 0 + + + + 0 + Green + + Mosaic_Coprates_10S291E.wms + 2 + + + + 0 + + + + 0 + Blue + + Mosaic_Coprates_10S291E.wms + 3 + + + + 0 + + + + Alpha + + Mosaic_Coprates_10S291E.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Coprates_10S291E/CTX_Ortho_10S291E_24mp_P22_009684_1699.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_Coprates_10S291E.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Coprates_10S291E/CTX_Ortho_10S291E_24mp_P22_009684_1699.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_Coprates_10S291E.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_Coprates_11S293E.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_Coprates_11S293E.vrt new file mode 100644 index 0000000000..b593c14375 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_Coprates_11S293E.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 + + 0 + Red + + Mosaic_Coprates_11S293E.wms + 1 + + + + 0 + + + + 0 + Green + + Mosaic_Coprates_11S293E.wms + 2 + + + + 0 + + + + 0 + Blue + + Mosaic_Coprates_11S293E.wms + 3 + + + + 0 + + + + Alpha + + Mosaic_Coprates_11S293E.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Coprates_11S293E/CTX_Ortho_11S293E_24mp_B09_013231_1696.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_Coprates_11S293E.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Coprates_11S293E/CTX_Ortho_11S293E_24mp_B09_013231_1696.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_Coprates_11S293E.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_Coprates_13S293E.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_Coprates_13S293E.vrt new file mode 100644 index 0000000000..20d7d83145 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_Coprates_13S293E.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 + + 0 + Red + + Mosaic_Coprates_13S293E.wms + 1 + + + + 0 + + + + 0 + Green + + Mosaic_Coprates_13S293E.wms + 2 + + + + 0 + + + + 0 + Blue + + Mosaic_Coprates_13S293E.wms + 3 + + + + 0 + + + + Alpha + + Mosaic_Coprates_13S293E.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Coprates_13S293E/CTX_Ortho_13S293E_24mp_G07_020879_1669.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_Coprates_13S293E.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Coprates_13S293E/CTX_Ortho_13S293E_24mp_G07_020879_1669.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_Coprates_13S293E.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_Deuteronius_38N024E.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_Deuteronius_38N024E.vrt new file mode 100644 index 0000000000..f8a5776864 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_Deuteronius_38N024E.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 + + 0 + Red + + Mosaic_Deuteronius_38N024E.wms + 1 + + + + 0 + + + + 0 + Green + + Mosaic_Deuteronius_38N024E.wms + 2 + + + + 0 + + + + 0 + Blue + + Mosaic_Deuteronius_38N024E.wms + 3 + + + + 0 + + + + Alpha + + Mosaic_Deuteronius_38N024E.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Deuteronius_38N024E/CTX_Ortho_38N024E_6mp_B17_016168_2181.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_Deuteronius_38N024E.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Deuteronius_38N024E/CTX_Ortho_38N024E_6mp_B17_016168_2181.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_Deuteronius_38N024E.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_Deuteronius_39N024E.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_Deuteronius_39N024E.vrt new file mode 100644 index 0000000000..31a489a800 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_Deuteronius_39N024E.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 + + 0 + Red + + Mosaic_Deuteronius_39N024E.wms + 1 + + + + 0 + + + + 0 + Green + + Mosaic_Deuteronius_39N024E.wms + 2 + + + + 0 + + + + 0 + Blue + + Mosaic_Deuteronius_39N024E.wms + 3 + + + + 0 + + + + Alpha + + Mosaic_Deuteronius_39N024E.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Deuteronius_39N024E/CTX_Ortho_39N024E_6mp_D15_032875_2196.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_Deuteronius_39N024E.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Deuteronius_39N024E/CTX_Ortho_39N024E_6mp_D15_032875_2196.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_Deuteronius_39N024E.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_Deuteronius_40N024E.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_Deuteronius_40N024E.vrt new file mode 100644 index 0000000000..98e0fb4cb2 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_Deuteronius_40N024E.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 + + 0 + Red + + Mosaic_Deuteronius_40N024E.wms + 1 + + + + 0 + + + + 0 + Green + + Mosaic_Deuteronius_40N024E.wms + 2 + + + + 0 + + + + 0 + Blue + + Mosaic_Deuteronius_40N024E.wms + 3 + + + + 0 + + + + Alpha + + Mosaic_Deuteronius_40N024E.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Deuteronius_40N024E/CTX_Ortho_40N022E_6mp_B18_016656_2206.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_Deuteronius_40N024E.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Deuteronius_40N024E/CTX_Ortho_40N022E_6mp_B18_016656_2206.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_Deuteronius_40N024E.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_East_Melas_11S289E.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_East_Melas_11S289E.vrt new file mode 100644 index 0000000000..854257b6bd --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_East_Melas_11S289E.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 + + 0 + Red + + Mosaic_East_Melas_11S289E.wms + 1 + + + + 0 + + + + 0 + Green + + Mosaic_East_Melas_11S289E.wms + 2 + + + + 0 + + + + 0 + Blue + + Mosaic_East_Melas_11S289E.wms + 3 + + + + 0 + + + + Alpha + + Mosaic_East_Melas_11S289E.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_11S289E/CTX_Ortho_11S289E_6mp_F23_044971_1685.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_East_Melas_11S289E.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_11S289E/CTX_Ortho_11S289E_6mp_F23_044971_1685.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_East_Melas_11S289E.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_East_Melas_11S291E.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_East_Melas_11S291E.vrt new file mode 100644 index 0000000000..95dcfb2624 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_East_Melas_11S291E.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 5.4931640625000000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -5.4931640625000000e-03 + + 0 + Red + + Mosaic_East_Melas_11S291E.wms + 1 + + + + 0 + + + + 0 + Green + + Mosaic_East_Melas_11S291E.wms + 2 + + + + 0 + + + + 0 + Blue + + Mosaic_East_Melas_11S291E.wms + 3 + + + + 0 + + + + Alpha + + Mosaic_East_Melas_11S291E.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_11S291E/CTX_Ortho_11S291E_6mp_B19_017187_1685.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_East_Melas_11S291E.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_11S291E/CTX_Ortho_11S291E_6mp_B19_017187_1685.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_East_Melas_11S291E.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_East_Melas_12S289E_D01.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_East_Melas_12S289E_D01.vrt new file mode 100644 index 0000000000..fa85af8207 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_East_Melas_12S289E_D01.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Mosaic_East_Melas_12S289E_D01.wms + 1 + + + + 0 + + + + 0 + Green + + Mosaic_East_Melas_12S289E_D01.wms + 2 + + + + 0 + + + + 0 + Blue + + Mosaic_East_Melas_12S289E_D01.wms + 3 + + + + 0 + + + + Alpha + + Mosaic_East_Melas_12S289E_D01.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S289E_D01/CTX_Ortho_12S289E_6mp_D01_027446_1678.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_East_Melas_12S289E_D01.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S289E_D01/CTX_Ortho_12S289E_6mp_D01_027446_1678.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_East_Melas_12S289E_D01.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_East_Melas_12S289E_F18.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_East_Melas_12S289E_F18.vrt new file mode 100644 index 0000000000..0a9ff80172 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_East_Melas_12S289E_F18.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 + + 0 + Red + + Mosaic_East_Melas_12S289E_F18.wms + 1 + + + + 0 + + + + 0 + Green + + Mosaic_East_Melas_12S289E_F18.wms + 2 + + + + 0 + + + + 0 + Blue + + Mosaic_East_Melas_12S289E_F18.wms + 3 + + + + 0 + + + + Alpha + + Mosaic_East_Melas_12S289E_F18.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S289E_F18/CTX_Ortho_12S289E_6mp_F18_042927_1681.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_East_Melas_12S289E_F18.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S289E_F18/CTX_Ortho_12S289E_6mp_F18_042927_1681.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_East_Melas_12S289E_F18.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_East_Melas_12S290E.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_East_Melas_12S290E.vrt new file mode 100644 index 0000000000..a7fe499bbd --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_East_Melas_12S290E.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Mosaic_East_Melas_12S290E.wms + 1 + + + + 0 + + + + 0 + Green + + Mosaic_East_Melas_12S290E.wms + 2 + + + + 0 + + + + 0 + Blue + + Mosaic_East_Melas_12S290E.wms + 3 + + + + 0 + + + + Alpha + + Mosaic_East_Melas_12S290E.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S290E/CTX_Ortho_12S290E_6mp_D18_034250_1676.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_East_Melas_12S290E.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S290E/CTX_Ortho_12S290E_6mp_D18_034250_1676.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_East_Melas_12S290E.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_East_Melas_12S291E_F14.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_East_Melas_12S291E_F14.vrt new file mode 100644 index 0000000000..54c76cfa5c --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_East_Melas_12S291E_F14.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 + + 0 + Red + + Mosaic_East_Melas_12S291E_F14.wms + 1 + + + + 0 + + + + 0 + Green + + Mosaic_East_Melas_12S291E_F14.wms + 2 + + + + 0 + + + + 0 + Blue + + Mosaic_East_Melas_12S291E_F14.wms + 3 + + + + 0 + + + + Alpha + + Mosaic_East_Melas_12S291E_F14.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S291E_F14/F14_041292_1682_map_ba_align_6_fill500-DRG.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_East_Melas_12S291E_F14.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S291E_F14/F14_041292_1682_map_ba_align_6_fill500-DRG.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_East_Melas_12S291E_F14.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_East_Melas_12S291E_F21.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_East_Melas_12S291E_F21.vrt new file mode 100644 index 0000000000..bd59584ad9 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_East_Melas_12S291E_F21.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 + + 0 + Red + + Mosaic_East_Melas_12S291E_F21.wms + 1 + + + + 0 + + + + 0 + Green + + Mosaic_East_Melas_12S291E_F21.wms + 2 + + + + 0 + + + + 0 + Blue + + Mosaic_East_Melas_12S291E_F21.wms + 3 + + + + 0 + + + + Alpha + + Mosaic_East_Melas_12S291E_F21.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S291E_F21/CTX_Ortho_12S291E_6mp_F21_043850_1684.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_East_Melas_12S291E_F21.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S291E_F21/CTX_Ortho_12S291E_6mp_F21_043850_1684.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_East_Melas_12S291E_F21.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_East_Melas_12S291E_J01.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_East_Melas_12S291E_J01.vrt new file mode 100644 index 0000000000..df33208b27 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_East_Melas_12S291E_J01.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 + + 0 + Red + + Mosaic_East_Melas_12S291E_J01.wms + 1 + + + + 0 + + + + 0 + Green + + Mosaic_East_Melas_12S291E_J01.wms + 2 + + + + 0 + + + + 0 + Blue + + Mosaic_East_Melas_12S291E_J01.wms + 3 + + + + 0 + + + + Alpha + + Mosaic_East_Melas_12S291E_J01.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S291E_J01/CTX_Ortho_12S291E_6mp_J01_045116_1677.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_East_Melas_12S291E_J01.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S291E_J01/CTX_Ortho_12S291E_6mp_J01_045116_1677.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_East_Melas_12S291E_J01.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_East_Melas_13S289E_D10.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_East_Melas_13S289E_D10.vrt new file mode 100644 index 0000000000..1124f54a4b --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_East_Melas_13S289E_D10.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 + + 0 + Red + + Mosaic_East_Melas_13S289E_D10.wms + 1 + + + + 0 + + + + 0 + Green + + Mosaic_East_Melas_13S289E_D10.wms + 2 + + + + 0 + + + + 0 + Blue + + Mosaic_East_Melas_13S289E_D10.wms + 3 + + + + 0 + + + + Alpha + + Mosaic_East_Melas_13S289E_D10.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_13S289E_D10/CTX_Ortho_13S289E_6mp_D10_031125_1673.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_East_Melas_13S289E_D10.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_13S289E_D10/CTX_Ortho_13S289E_6mp_D10_031125_1673.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_East_Melas_13S289E_D10.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_East_Melas_16S291E.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_East_Melas_16S291E.vrt new file mode 100644 index 0000000000..edf105fb6b --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_East_Melas_16S291E.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 + + 0 + Red + + Mosaic_East_Melas_16S291E.wms + 1 + + + + 0 + + + + 0 + Green + + Mosaic_East_Melas_16S291E.wms + 2 + + + + 0 + + + + 0 + Blue + + Mosaic_East_Melas_16S291E.wms + 3 + + + + 0 + + + + Alpha + + Mosaic_East_Melas_16S291E.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_16S291E/CTX_Ortho_16S291E_6mp_D22_035951_1644.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_East_Melas_16S291E.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_16S291E/CTX_Ortho_16S291E_6mp_D22_035951_1644.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Mosaic_East_Melas_16S291E.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Slope_Apollinaris_12S182E.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Slope_Apollinaris_12S182E.vrt new file mode 100644 index 0000000000..959782dba6 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Slope_Apollinaris_12S182E.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 + + 0 + Red + + Slope_Apollinaris_12S182E.wms + 1 + + + + 0 + + + + 0 + Green + + Slope_Apollinaris_12S182E.wms + 2 + + + + 0 + + + + 0 + Blue + + Slope_Apollinaris_12S182E.wms + 3 + + + + 0 + + + + Alpha + + Slope_Apollinaris_12S182E.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Slope_Apollinaris_12S182E/CTX_Slope_12S182E_24mp_P22_009609_1674_B02_010453_1675.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Slope_Apollinaris_12S182E.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Slope_Apollinaris_12S182E/CTX_Slope_12S182E_24mp_P22_009609_1674_B02_010453_1675.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Slope_Apollinaris_12S182E.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Slope_Apollinaris_13S182E.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Slope_Apollinaris_13S182E.vrt new file mode 100644 index 0000000000..03fd0c1776 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Slope_Apollinaris_13S182E.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 + + 0 + Red + + Slope_Apollinaris_13S182E.wms + 1 + + + + 0 + + + + 0 + Green + + Slope_Apollinaris_13S182E.wms + 2 + + + + 0 + + + + 0 + Blue + + Slope_Apollinaris_13S182E.wms + 3 + + + + 0 + + + + Alpha + + Slope_Apollinaris_13S182E.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Slope_Apollinaris_13S182E/CTX_Slope_13S182E_24mp_G15_024127_1673_G16_024483_1673.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Slope_Apollinaris_13S182E.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Slope_Apollinaris_13S182E/CTX_Slope_13S182E_24mp_G15_024127_1673_G16_024483_1673.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Slope_Apollinaris_13S182E.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Slope_Apollinaris_14S184E.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Slope_Apollinaris_14S184E.vrt new file mode 100644 index 0000000000..afd9235bee --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Slope_Apollinaris_14S184E.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 + + 0 + Red + + Slope_Apollinaris_14S184E.wms + 1 + + + + 0 + + + + 0 + Green + + Slope_Apollinaris_14S184E.wms + 2 + + + + 0 + + + + 0 + Blue + + Slope_Apollinaris_14S184E.wms + 3 + + + + 0 + + + + Alpha + + Slope_Apollinaris_14S184E.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Slope_Apollinaris_14S184E/CTX_Slope_14S184E_24mp_B01_009886_1658_P21_009385_1658.wms b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Slope_Apollinaris_14S184E.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Slope_Apollinaris_14S184E/CTX_Slope_14S184E_24mp_B01_009886_1658_P21_009385_1658.wms rename to data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX/Slope_Apollinaris_14S184E.wms diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Apollinaris_12S182E/CTX_ClrSlope_8bit_12S182E_24mp_P22_009609_1674_B02_010453_1675.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Apollinaris_12S182E/CTX_ClrSlope_8bit_12S182E_24mp_P22_009609_1674_B02_010453_1675.vrt deleted file mode 100644 index 6302ebefa9..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Apollinaris_12S182E/CTX_ClrSlope_8bit_12S182E_24mp_P22_009609_1674_B02_010453_1675.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 - - 0 - Red - - CTX_ClrSlope_8bit_12S182E_24mp_P22_009609_1674_B02_010453_1675.wms - 1 - - - - 0 - - - - 0 - Green - - CTX_ClrSlope_8bit_12S182E_24mp_P22_009609_1674_B02_010453_1675.wms - 2 - - - - 0 - - - - 0 - Blue - - CTX_ClrSlope_8bit_12S182E_24mp_P22_009609_1674_B02_010453_1675.wms - 3 - - - - 0 - - - - Alpha - - CTX_ClrSlope_8bit_12S182E_24mp_P22_009609_1674_B02_010453_1675.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Apollinaris_12S182E/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Apollinaris_12S182E.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Apollinaris_12S182E/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Apollinaris_12S182E.asset deleted file mode 100644 index 9c62a676aa..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Apollinaris_12S182E/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Apollinaris_12S182E.asset +++ /dev/null @@ -1,35 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "CTX_ClrSlope_8bit_12S182E_24mp_P22_009609_1674_B02_010453_1675", - Name = [[Mars Reconnaissance Orbiter CTX, Color Slope Apollinaris 12S182E]], - FilePath = asset.localResource("CTX_ClrSlope_8bit_12S182E_24mp_P22_009609_1674_B02_010453_1675.vrt"), - Description = [[This is a colorized version of the original 2x2 pixel slope in degrees (also called a 1 baseline slope). This was produced as part of an effort to characterize topography within candidate Human Exploration Zones for Mars. The DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). THe DEM has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. - -References: -Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. - -Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261. - -Slopes were derived using the Python script called gdal_baseline_slope.py: https://github.com/USGS-Astrogeology/GDAL_scripts/blob/master/gdal_baseline_slope ]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Mars Reconnaissance Orbiter CTX, Color Slope Apollinaris 12S182E]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=CTX_ClrSlope_8bit_12S182E_24mp_P22_009609_1674_B02_010453_1675%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Mars Reconnaissance Orbiter CTX, Color Slope Apollinaris 12S182E layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Apollinaris_13S182E/CTX_ClrSlope_8bit_13S182E_24mp_G15_024127_1673_G16_024483_1673.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Apollinaris_13S182E/CTX_ClrSlope_8bit_13S182E_24mp_G15_024127_1673_G16_024483_1673.vrt deleted file mode 100644 index b04998fb86..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Apollinaris_13S182E/CTX_ClrSlope_8bit_13S182E_24mp_G15_024127_1673_G16_024483_1673.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 - - 0 - Red - - CTX_ClrSlope_8bit_13S182E_24mp_G15_024127_1673_G16_024483_1673.wms - 1 - - - - 0 - - - - 0 - Green - - CTX_ClrSlope_8bit_13S182E_24mp_G15_024127_1673_G16_024483_1673.wms - 2 - - - - 0 - - - - 0 - Blue - - CTX_ClrSlope_8bit_13S182E_24mp_G15_024127_1673_G16_024483_1673.wms - 3 - - - - 0 - - - - Alpha - - CTX_ClrSlope_8bit_13S182E_24mp_G15_024127_1673_G16_024483_1673.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Apollinaris_13S182E/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Apollinaris_13S182E.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Apollinaris_13S182E/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Apollinaris_13S182E.asset deleted file mode 100644 index 356f579bf8..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Apollinaris_13S182E/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Apollinaris_13S182E.asset +++ /dev/null @@ -1,35 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "CTX_ClrSlope_8bit_13S182E_24mp_G15_024127_1673_G16_024483_1673", - Name = [[Mars Reconnaissance Orbiter CTX, Color Slope Apollinaris 13S182E]], - FilePath = asset.localResource("CTX_ClrSlope_8bit_13S182E_24mp_G15_024127_1673_G16_024483_1673.vrt"), - Description = [[This is a colorized version of the original 2x2 pixel slope in degrees (also called a 1 baseline slope). This was produced as part of an effort to characterize topography within candidate Human Exploration Zones for Mars. The DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). THe DEM has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. - -References: -Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. - -Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261. - -Slopes were derived using the Python script called gdal_baseline_slope.py: https://github.com/USGS-Astrogeology/GDAL_scripts/blob/master/gdal_baseline_slope ]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Mars Reconnaissance Orbiter CTX, Color Slope Apollinaris 13S182E]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=CTX_ClrSlope_8bit_13S182E_24mp_G15_024127_1673_G16_024483_1673%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Mars Reconnaissance Orbiter CTX, Color Slope Apollinaris 13S182E layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Apollinaris_14S184E/CTX_ClrSlope_8bit_14S184E_24mp_B01_009886_1658_P21_009385_1658.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Apollinaris_14S184E/CTX_ClrSlope_8bit_14S184E_24mp_B01_009886_1658_P21_009385_1658.vrt deleted file mode 100644 index 4cad29f529..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Apollinaris_14S184E/CTX_ClrSlope_8bit_14S184E_24mp_B01_009886_1658_P21_009385_1658.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 - - 0 - Red - - CTX_ClrSlope_8bit_14S184E_24mp_B01_009886_1658_P21_009385_1658.wms - 1 - - - - 0 - - - - 0 - Green - - CTX_ClrSlope_8bit_14S184E_24mp_B01_009886_1658_P21_009385_1658.wms - 2 - - - - 0 - - - - 0 - Blue - - CTX_ClrSlope_8bit_14S184E_24mp_B01_009886_1658_P21_009385_1658.wms - 3 - - - - 0 - - - - Alpha - - CTX_ClrSlope_8bit_14S184E_24mp_B01_009886_1658_P21_009385_1658.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Apollinaris_14S184E/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Apollinaris_14S184E.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Apollinaris_14S184E/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Apollinaris_14S184E.asset deleted file mode 100644 index 60fd87dacc..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Apollinaris_14S184E/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Apollinaris_14S184E.asset +++ /dev/null @@ -1,35 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "CTX_ClrSlope_8bit_14S184E_24mp_B01_009886_1658_P21_009385_1658", - Name = [[Mars Reconnaissance Orbiter CTX, Color Slope Apollinaris 14S184E]], - FilePath = asset.localResource("CTX_ClrSlope_8bit_14S184E_24mp_B01_009886_1658_P21_009385_1658.vrt"), - Description = [[This is a colorized version of the original 2x2 pixel slope in degrees (also called a 1 baseline slope). This was produced as part of an effort to characterize topography within candidate Human Exploration Zones for Mars. The DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). THe DEM has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. - -References: -Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. - -Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261. - -Slopes were derived using the Python script called gdal_baseline_slope.py: https://github.com/USGS-Astrogeology/GDAL_scripts/blob/master/gdal_baseline_slope ]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Mars Reconnaissance Orbiter CTX, Color Slope Apollinaris 14S184E]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=CTX_ClrSlope_8bit_14S184E_24mp_B01_009886_1658_P21_009385_1658%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Mars Reconnaissance Orbiter CTX, Color Slope Apollinaris 14S184E layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Coprates_10S291E/CTX_ClrSlope_8bit_10S291E_24mp_P22_009684_1699_B02_010396_1699.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Coprates_10S291E/CTX_ClrSlope_8bit_10S291E_24mp_P22_009684_1699_B02_010396_1699.vrt deleted file mode 100644 index c465cdc78f..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Coprates_10S291E/CTX_ClrSlope_8bit_10S291E_24mp_P22_009684_1699_B02_010396_1699.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 - - 0 - Red - - CTX_ClrSlope_8bit_10S291E_24mp_P22_009684_1699_B02_010396_1699.wms - 1 - - - - 0 - - - - 0 - Green - - CTX_ClrSlope_8bit_10S291E_24mp_P22_009684_1699_B02_010396_1699.wms - 2 - - - - 0 - - - - 0 - Blue - - CTX_ClrSlope_8bit_10S291E_24mp_P22_009684_1699_B02_010396_1699.wms - 3 - - - - 0 - - - - Alpha - - CTX_ClrSlope_8bit_10S291E_24mp_P22_009684_1699_B02_010396_1699.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Coprates_10S291E/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Coprates_10S291E.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Coprates_10S291E/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Coprates_10S291E.asset deleted file mode 100644 index 5e12a29b0d..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Coprates_10S291E/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Coprates_10S291E.asset +++ /dev/null @@ -1,35 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "CTX_ClrSlope_8bit_10S291E_24mp_P22_009684_1699_B02_010396_1699", - Name = [[Mars Reconnaissance Orbiter CTX, Color Slope Coprates 10S291E]], - FilePath = asset.localResource("CTX_ClrSlope_8bit_10S291E_24mp_P22_009684_1699_B02_010396_1699.vrt"), - Description = [[This is a colorized version of the original 2x2 pixel slope in degrees (also called a 1 baseline slope). This was produced as part of an effort to characterize topography within candidate Human Exploration Zones for Mars. The DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). THe DEM has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. - -References: -Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. - -Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261. - -Slopes were derived using the Python script called gdal_baseline_slope.py: https://github.com/USGS-Astrogeology/GDAL_scripts/blob/master/gdal_baseline_slope ]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Mars Reconnaissance Orbiter CTX, Color Slope Coprates 10S291E]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=CTX_ClrSlope_8bit_10S291E_24mp_P22_009684_1699_B02_010396_1699%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Mars Reconnaissance Orbiter CTX, Color Slope Coprates 10S291E layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Coprates_11S293E/CTX_ClrSlope_8bit_11S293E_24mp_B09_013231_1696_B11_013732_1690.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Coprates_11S293E/CTX_ClrSlope_8bit_11S293E_24mp_B09_013231_1696_B11_013732_1690.vrt deleted file mode 100644 index 56313aee54..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Coprates_11S293E/CTX_ClrSlope_8bit_11S293E_24mp_B09_013231_1696_B11_013732_1690.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 - - 0 - Red - - CTX_ClrSlope_8bit_11S293E_24mp_B09_013231_1696_B11_013732_1690.wms - 1 - - - - 0 - - - - 0 - Green - - CTX_ClrSlope_8bit_11S293E_24mp_B09_013231_1696_B11_013732_1690.wms - 2 - - - - 0 - - - - 0 - Blue - - CTX_ClrSlope_8bit_11S293E_24mp_B09_013231_1696_B11_013732_1690.wms - 3 - - - - 0 - - - - Alpha - - CTX_ClrSlope_8bit_11S293E_24mp_B09_013231_1696_B11_013732_1690.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Coprates_11S293E/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Coprates_11S293E.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Coprates_11S293E/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Coprates_11S293E.asset deleted file mode 100644 index 5aee5cdbe6..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Coprates_11S293E/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Coprates_11S293E.asset +++ /dev/null @@ -1,35 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "CTX_ClrSlope_8bit_11S293E_24mp_B09_013231_1696_B11_013732_1690", - Name = [[Mars Reconnaissance Orbiter CTX, Color Slope Coprates 11S293E]], - FilePath = asset.localResource("CTX_ClrSlope_8bit_11S293E_24mp_B09_013231_1696_B11_013732_1690.vrt"), - Description = [[This is a colorized version of the original 2x2 pixel slope in degrees (also called a 1 baseline slope). This was produced as part of an effort to characterize topography within candidate Human Exploration Zones for Mars. The DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). THe DEM has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. - -References: -Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. - -Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261. - -Slopes were derived using the Python script called gdal_baseline_slope.py: https://github.com/USGS-Astrogeology/GDAL_scripts/blob/master/gdal_baseline_slope ]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Mars Reconnaissance Orbiter CTX, Color Slope Coprates 11S293E]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=CTX_ClrSlope_8bit_11S293E_24mp_B09_013231_1696_B11_013732_1690%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Mars Reconnaissance Orbiter CTX, Color Slope Coprates 11S293E layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Coprates_13S293E/CTX_ClrSlope_8bit_13S293E_24mp_G07_020879_1669_G09_021657_1665.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Coprates_13S293E/CTX_ClrSlope_8bit_13S293E_24mp_G07_020879_1669_G09_021657_1665.vrt deleted file mode 100644 index 75681aae07..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Coprates_13S293E/CTX_ClrSlope_8bit_13S293E_24mp_G07_020879_1669_G09_021657_1665.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 - - 0 - Red - - CTX_ClrSlope_8bit_13S293E_24mp_G07_020879_1669_G09_021657_1665.wms - 1 - - - - 0 - - - - 0 - Green - - CTX_ClrSlope_8bit_13S293E_24mp_G07_020879_1669_G09_021657_1665.wms - 2 - - - - 0 - - - - 0 - Blue - - CTX_ClrSlope_8bit_13S293E_24mp_G07_020879_1669_G09_021657_1665.wms - 3 - - - - 0 - - - - Alpha - - CTX_ClrSlope_8bit_13S293E_24mp_G07_020879_1669_G09_021657_1665.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Coprates_13S293E/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Coprates_13S293E.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Coprates_13S293E/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Coprates_13S293E.asset deleted file mode 100644 index 1246d05bbc..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Coprates_13S293E/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Coprates_13S293E.asset +++ /dev/null @@ -1,35 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "CTX_ClrSlope_8bit_13S293E_24mp_G07_020879_1669_G09_021657_1665", - Name = [[Mars Reconnaissance Orbiter CTX, Color Slope Coprates 13S293E]], - FilePath = asset.localResource("CTX_ClrSlope_8bit_13S293E_24mp_G07_020879_1669_G09_021657_1665.vrt"), - Description = [[This is a colorized version of the original 2x2 pixel slope in degrees (also called a 1 baseline slope). This was produced as part of an effort to characterize topography within candidate Human Exploration Zones for Mars. The DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). THe DEM has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. - -References: -Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. - -Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261. - -Slopes were derived using the Python script called gdal_baseline_slope.py: https://github.com/USGS-Astrogeology/GDAL_scripts/blob/master/gdal_baseline_slope ]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Mars Reconnaissance Orbiter CTX, Color Slope Coprates 13S293E]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=CTX_ClrSlope_8bit_13S293E_24mp_G07_020879_1669_G09_021657_1665%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Mars Reconnaissance Orbiter CTX, Color Slope Coprates 13S293E layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Deuteronius_37N024E/CTX_ClrSlope_8bit_37N024E_24mp_G05_020203_2178_G22_026994_2170.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Deuteronius_37N024E/CTX_ClrSlope_8bit_37N024E_24mp_G05_020203_2178_G22_026994_2170.vrt deleted file mode 100644 index d4e73c8b2d..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Deuteronius_37N024E/CTX_ClrSlope_8bit_37N024E_24mp_G05_020203_2178_G22_026994_2170.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 - - 0 - Red - - CTX_ClrSlope_8bit_37N024E_24mp_G05_020203_2178_G22_026994_2170.wms - 1 - - - - 0 - - - - 0 - Green - - CTX_ClrSlope_8bit_37N024E_24mp_G05_020203_2178_G22_026994_2170.wms - 2 - - - - 0 - - - - 0 - Blue - - CTX_ClrSlope_8bit_37N024E_24mp_G05_020203_2178_G22_026994_2170.wms - 3 - - - - 0 - - - - Alpha - - CTX_ClrSlope_8bit_37N024E_24mp_G05_020203_2178_G22_026994_2170.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Deuteronius_37N024E/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Deuteronius_37N024E.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Deuteronius_37N024E/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Deuteronius_37N024E.asset deleted file mode 100644 index 84644181ce..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Deuteronius_37N024E/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Deuteronius_37N024E.asset +++ /dev/null @@ -1,35 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "CTX_ClrSlope_8bit_37N024E_24mp_G05_020203_2178_G22_026994_2170", - Name = [[Mars Reconnaissance Orbiter CTX, Color Slope Deuteronius 37N024E]], - FilePath = asset.localResource("CTX_ClrSlope_8bit_37N024E_24mp_G05_020203_2178_G22_026994_2170.vrt"), - Description = [[This is a colorized version of the original 2x2 pixel slope in degrees (also called a 1 baseline slope). This was produced as part of an effort to characterize topography within candidate Human Exploration Zones for Mars. The DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). THe DEM has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. - -References: -Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. - -Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261. - -Slopes were derived using the Python script called gdal_baseline_slope.py: https://github.com/USGS-Astrogeology/GDAL_scripts/blob/master/gdal_baseline_slope ]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Mars Reconnaissance Orbiter CTX, Color Slope Deuteronius 37N024E]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=CTX_ClrSlope_8bit_37N024E_24mp_G05_020203_2178_G22_026994_2170%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Mars Reconnaissance Orbiter CTX, Color Slope Deuteronius 37N024E layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Deuteronius_38N024E/CTX_ClrSlope_8bit_38N024E_24mp_B17_016168_2181_G16_024594_2181.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Deuteronius_38N024E/CTX_ClrSlope_8bit_38N024E_24mp_B17_016168_2181_G16_024594_2181.vrt deleted file mode 100644 index d8ab87e69b..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Deuteronius_38N024E/CTX_ClrSlope_8bit_38N024E_24mp_B17_016168_2181_G16_024594_2181.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 - - 0 - Red - - CTX_ClrSlope_8bit_38N024E_24mp_B17_016168_2181_G16_024594_2181.wms - 1 - - - - 0 - - - - 0 - Green - - CTX_ClrSlope_8bit_38N024E_24mp_B17_016168_2181_G16_024594_2181.wms - 2 - - - - 0 - - - - 0 - Blue - - CTX_ClrSlope_8bit_38N024E_24mp_B17_016168_2181_G16_024594_2181.wms - 3 - - - - 0 - - - - Alpha - - CTX_ClrSlope_8bit_38N024E_24mp_B17_016168_2181_G16_024594_2181.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Deuteronius_38N024E/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Deuteronius_38N024E.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Deuteronius_38N024E/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Deuteronius_38N024E.asset deleted file mode 100644 index 0d0d5f3f7a..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Deuteronius_38N024E/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Deuteronius_38N024E.asset +++ /dev/null @@ -1,35 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "CTX_ClrSlope_8bit_38N024E_24mp_B17_016168_2181_G16_024594_2181", - Name = [[Mars Reconnaissance Orbiter CTX, Color Slope Deuteronius 38N024E]], - FilePath = asset.localResource("CTX_ClrSlope_8bit_38N024E_24mp_B17_016168_2181_G16_024594_2181.vrt"), - Description = [[This is a colorized version of the original 2x2 pixel slope in degrees (also called a 1 baseline slope). This was produced as part of an effort to characterize topography within candidate Human Exploration Zones for Mars. The DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). THe DEM has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. - -References: -Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. - -Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261. - -Slopes were derived using the Python script called gdal_baseline_slope.py: https://github.com/USGS-Astrogeology/GDAL_scripts/blob/master/gdal_baseline_slope ]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Mars Reconnaissance Orbiter CTX, Color Slope Deuteronius 38N024E]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=CTX_ClrSlope_8bit_38N024E_24mp_B17_016168_2181_G16_024594_2181%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Mars Reconnaissance Orbiter CTX, Color Slope Deuteronius 38N024E layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Deuteronius_39N024E/CTX_ClrSlope_8bit_39N024E_24mp_D15_032875_2196_D15_033165_2196.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Deuteronius_39N024E/CTX_ClrSlope_8bit_39N024E_24mp_D15_032875_2196_D15_033165_2196.vrt deleted file mode 100644 index de0d095a26..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Deuteronius_39N024E/CTX_ClrSlope_8bit_39N024E_24mp_D15_032875_2196_D15_033165_2196.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 - - 0 - Red - - CTX_ClrSlope_8bit_39N024E_24mp_D15_032875_2196_D15_033165_2196.wms - 1 - - - - 0 - - - - 0 - Green - - CTX_ClrSlope_8bit_39N024E_24mp_D15_032875_2196_D15_033165_2196.wms - 2 - - - - 0 - - - - 0 - Blue - - CTX_ClrSlope_8bit_39N024E_24mp_D15_032875_2196_D15_033165_2196.wms - 3 - - - - 0 - - - - Alpha - - CTX_ClrSlope_8bit_39N024E_24mp_D15_032875_2196_D15_033165_2196.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Deuteronius_39N024E/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Deuteronius_39N024E.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Deuteronius_39N024E/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Deuteronius_39N024E.asset deleted file mode 100644 index cbb3c1845e..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Deuteronius_39N024E/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Deuteronius_39N024E.asset +++ /dev/null @@ -1,35 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "CTX_ClrSlope_8bit_39N024E_24mp_D15_032875_2196_D15_033165_2196", - Name = [[Mars Reconnaissance Orbiter CTX, Color Slope Deuteronius 39N024E]], - FilePath = asset.localResource("CTX_ClrSlope_8bit_39N024E_24mp_D15_032875_2196_D15_033165_2196.vrt"), - Description = [[This is a colorized version of the original 2x2 pixel slope in degrees (also called a 1 baseline slope). This was produced as part of an effort to characterize topography within candidate Human Exploration Zones for Mars. The DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). THe DEM has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. - -References: -Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. - -Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261. - -Slopes were derived using the Python script called gdal_baseline_slope.py: https://github.com/USGS-Astrogeology/GDAL_scripts/blob/master/gdal_baseline_slope ]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Mars Reconnaissance Orbiter CTX, Color Slope Deuteronius 39N024E]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=CTX_ClrSlope_8bit_39N024E_24mp_D15_032875_2196_D15_033165_2196%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Mars Reconnaissance Orbiter CTX, Color Slope Deuteronius 39N024E layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Deuteronius_40N024E/CTX_ClrSlope_8bit_40N022E_24mp_B18_016656_2206_B18_016801_2206.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Deuteronius_40N024E/CTX_ClrSlope_8bit_40N022E_24mp_B18_016656_2206_B18_016801_2206.vrt deleted file mode 100644 index 857a52e3e1..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Deuteronius_40N024E/CTX_ClrSlope_8bit_40N022E_24mp_B18_016656_2206_B18_016801_2206.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 - - 0 - Red - - CTX_ClrSlope_8bit_40N022E_24mp_B18_016656_2206_B18_016801_2206.wms - 1 - - - - 0 - - - - 0 - Green - - CTX_ClrSlope_8bit_40N022E_24mp_B18_016656_2206_B18_016801_2206.wms - 2 - - - - 0 - - - - 0 - Blue - - CTX_ClrSlope_8bit_40N022E_24mp_B18_016656_2206_B18_016801_2206.wms - 3 - - - - 0 - - - - Alpha - - CTX_ClrSlope_8bit_40N022E_24mp_B18_016656_2206_B18_016801_2206.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Deuteronius_40N024E/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Deuteronius_40N024E.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Deuteronius_40N024E/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Deuteronius_40N024E.asset deleted file mode 100644 index 882867044e..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Deuteronius_40N024E/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Deuteronius_40N024E.asset +++ /dev/null @@ -1,35 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "CTX_ClrSlope_8bit_40N022E_24mp_B18_016656_2206_B18_016801_2206", - Name = [[Mars Reconnaissance Orbiter CTX, Color Slope Deuteronius 40N024E]], - FilePath = asset.localResource("CTX_ClrSlope_8bit_40N022E_24mp_B18_016656_2206_B18_016801_2206.vrt"), - Description = [[This is a colorized version of the original 2x2 pixel slope in degrees (also called a 1 baseline slope). This was produced as part of an effort to characterize topography within candidate Human Exploration Zones for Mars. The DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). THe DEM has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. - -References: -Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. - -Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261. - -Slopes were derived using the Python script called gdal_baseline_slope.py: https://github.com/USGS-Astrogeology/GDAL_scripts/blob/master/gdal_baseline_slope ]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Mars Reconnaissance Orbiter CTX, Color Slope Deuteronius 40N024E]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=CTX_ClrSlope_8bit_40N022E_24mp_B18_016656_2206_B18_016801_2206%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Mars Reconnaissance Orbiter CTX, Color Slope Deuteronius 40N024E layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_11S289E/CTX_ClrSlope_8bit_11S289E_24mp_F23_044971_1685_F21_043995_1685.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_11S289E/CTX_ClrSlope_8bit_11S289E_24mp_F23_044971_1685_F21_043995_1685.vrt deleted file mode 100644 index d42ae6be6d..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_11S289E/CTX_ClrSlope_8bit_11S289E_24mp_F23_044971_1685_F21_043995_1685.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 - - 0 - Red - - CTX_ClrSlope_8bit_11S289E_24mp_F23_044971_1685_F21_043995_1685.wms - 1 - - - - 0 - - - - 0 - Green - - CTX_ClrSlope_8bit_11S289E_24mp_F23_044971_1685_F21_043995_1685.wms - 2 - - - - 0 - - - - 0 - Blue - - CTX_ClrSlope_8bit_11S289E_24mp_F23_044971_1685_F21_043995_1685.wms - 3 - - - - 0 - - - - Alpha - - CTX_ClrSlope_8bit_11S289E_24mp_F23_044971_1685_F21_043995_1685.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_11S289E/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_11S289E.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_11S289E/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_11S289E.asset deleted file mode 100644 index 2af50af1ed..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_11S289E/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_11S289E.asset +++ /dev/null @@ -1,35 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "CTX_ClrSlope_8bit_11S289E_24mp_F23_044971_1685_F21_043995_1685", - Name = [[Mars Reconnaissance Orbiter CTX, Color Slope East Melas 11S289E]], - FilePath = asset.localResource("CTX_ClrSlope_8bit_11S289E_24mp_F23_044971_1685_F21_043995_1685.vrt"), - Description = [[This is a colorized version of the original 2x2 pixel slope in degrees (also called a 1 baseline slope). This was produced as part of an effort to characterize topography within candidate Human Exploration Zones for Mars. The DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). THe DEM has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. - -References: -Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. - -Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261. - -Slopes were derived using the Python script called gdal_baseline_slope.py: https://github.com/USGS-Astrogeology/GDAL_scripts/blob/master/gdal_baseline_slope ]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Mars Reconnaissance Orbiter CTX, Color Slope East Melas 11S289E]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=CTX_ClrSlope_8bit_11S289E_24mp_F23_044971_1685_F21_043995_1685%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Mars Reconnaissance Orbiter CTX, Color Slope East Melas 11S289E layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_11S291E/CTX_ClrSlope_8bit_11S291E_24mp_B19_017187_1685_B19_016976_1685.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_11S291E/CTX_ClrSlope_8bit_11S291E_24mp_B19_017187_1685_B19_016976_1685.vrt deleted file mode 100644 index aefb9ac465..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_11S291E/CTX_ClrSlope_8bit_11S291E_24mp_B19_017187_1685_B19_016976_1685.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 - - 0 - Red - - CTX_ClrSlope_8bit_11S291E_24mp_B19_017187_1685_B19_016976_1685.wms - 1 - - - - 0 - - - - 0 - Green - - CTX_ClrSlope_8bit_11S291E_24mp_B19_017187_1685_B19_016976_1685.wms - 2 - - - - 0 - - - - 0 - Blue - - CTX_ClrSlope_8bit_11S291E_24mp_B19_017187_1685_B19_016976_1685.wms - 3 - - - - 0 - - - - Alpha - - CTX_ClrSlope_8bit_11S291E_24mp_B19_017187_1685_B19_016976_1685.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_11S291E/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_11S291E.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_11S291E/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_11S291E.asset deleted file mode 100644 index f00c2915f5..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_11S291E/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_11S291E.asset +++ /dev/null @@ -1,35 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "CTX_ClrSlope_8bit_11S291E_24mp_B19_017187_1685_B19_016976_1685", - Name = [[Mars Reconnaissance Orbiter CTX, Color Slope East Melas 11S291E]], - FilePath = asset.localResource("CTX_ClrSlope_8bit_11S291E_24mp_B19_017187_1685_B19_016976_1685.vrt"), - Description = [[This is a colorized version of the original 2x2 pixel slope in degrees (also called a 1 baseline slope). This was produced as part of an effort to characterize topography within candidate Human Exploration Zones for Mars. The DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). THe DEM has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. - -References: -Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. - -Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261. - -Slopes were derived using the Python script called gdal_baseline_slope.py: https://github.com/USGS-Astrogeology/GDAL_scripts/blob/master/gdal_baseline_slope ]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Mars Reconnaissance Orbiter CTX, Color Slope East Melas 11S291E]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=CTX_ClrSlope_8bit_11S291E_24mp_B19_017187_1685_B19_016976_1685%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Mars Reconnaissance Orbiter CTX, Color Slope East Melas 11S291E layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S289E_D01/CTX_ClrSlope_8bit_12S289E_24mp_D01_027446_1678_D01_027723_1677.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S289E_D01/CTX_ClrSlope_8bit_12S289E_24mp_D01_027446_1678_D01_027723_1677.vrt deleted file mode 100644 index de70002f44..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S289E_D01/CTX_ClrSlope_8bit_12S289E_24mp_D01_027446_1678_D01_027723_1677.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 - - 0 - Red - - CTX_ClrSlope_8bit_12S289E_24mp_D01_027446_1678_D01_027723_1677.wms - 1 - - - - 0 - - - - 0 - Green - - CTX_ClrSlope_8bit_12S289E_24mp_D01_027446_1678_D01_027723_1677.wms - 2 - - - - 0 - - - - 0 - Blue - - CTX_ClrSlope_8bit_12S289E_24mp_D01_027446_1678_D01_027723_1677.wms - 3 - - - - 0 - - - - Alpha - - CTX_ClrSlope_8bit_12S289E_24mp_D01_027446_1678_D01_027723_1677.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S289E_D01/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S289E_D01.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S289E_D01/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S289E_D01.asset deleted file mode 100644 index 90f2dcce42..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S289E_D01/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S289E_D01.asset +++ /dev/null @@ -1,35 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "CTX_ClrSlope_8bit_12S289E_24mp_D01_027446_1678_D01_027723_1677", - Name = [[Mars Reconnaissance Orbiter CTX, Color Slope East Melas 12S289E_D01]], - FilePath = asset.localResource("CTX_ClrSlope_8bit_12S289E_24mp_D01_027446_1678_D01_027723_1677.vrt"), - Description = [[This is a colorized version of the original 2x2 pixel slope in degrees (also called a 1 baseline slope). This was produced as part of an effort to characterize topography within candidate Human Exploration Zones for Mars. The DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). THe DEM has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. - -References: -Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. - -Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261. - -Slopes were derived using the Python script called gdal_baseline_slope.py: https://github.com/USGS-Astrogeology/GDAL_scripts/blob/master/gdal_baseline_slope ]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Mars Reconnaissance Orbiter CTX, Color Slope East Melas 12S289E_D01]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=CTX_ClrSlope_8bit_12S289E_24mp_D01_027446_1678_D01_027723_1677%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Mars Reconnaissance Orbiter CTX, Color Slope East Melas 12S289E_D01 layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S289E_F18/CTX_ClrSlope_8bit_12S289E_24mp_F18_042927_1681_J02_045749_1694.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S289E_F18/CTX_ClrSlope_8bit_12S289E_24mp_F18_042927_1681_J02_045749_1694.vrt deleted file mode 100644 index 77094c3104..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S289E_F18/CTX_ClrSlope_8bit_12S289E_24mp_F18_042927_1681_J02_045749_1694.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 - - 0 - Red - - CTX_ClrSlope_8bit_12S289E_24mp_F18_042927_1681_J02_045749_1694.wms - 1 - - - - 0 - - - - 0 - Green - - CTX_ClrSlope_8bit_12S289E_24mp_F18_042927_1681_J02_045749_1694.wms - 2 - - - - 0 - - - - 0 - Blue - - CTX_ClrSlope_8bit_12S289E_24mp_F18_042927_1681_J02_045749_1694.wms - 3 - - - - 0 - - - - Alpha - - CTX_ClrSlope_8bit_12S289E_24mp_F18_042927_1681_J02_045749_1694.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S289E_F18/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S289E_F18.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S289E_F18/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S289E_F18.asset deleted file mode 100644 index 746a51cbd8..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S289E_F18/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S289E_F18.asset +++ /dev/null @@ -1,35 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "CTX_ClrSlope_8bit_12S289E_24mp_F18_042927_1681_J02_045749_1694", - Name = [[Mars Reconnaissance Orbiter CTX, Color Slope East Melas 12S289E_F18]], - FilePath = asset.localResource("CTX_ClrSlope_8bit_12S289E_24mp_F18_042927_1681_J02_045749_1694.vrt"), - Description = [[This is a colorized version of the original 2x2 pixel slope in degrees (also called a 1 baseline slope). This was produced as part of an effort to characterize topography within candidate Human Exploration Zones for Mars. The DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). THe DEM has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. - -References: -Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. - -Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261. - -Slopes were derived using the Python script called gdal_baseline_slope.py: https://github.com/USGS-Astrogeology/GDAL_scripts/blob/master/gdal_baseline_slope ]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Mars Reconnaissance Orbiter CTX, Color Slope East Melas 12S289E_F18]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=CTX_ClrSlope_8bit_12S289E_24mp_F18_042927_1681_J02_045749_1694%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Mars Reconnaissance Orbiter CTX, Color Slope East Melas 12S289E_F18 layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S290E/CTX_ClrSlope_8bit_12S290E_24mp_D18_034250_1676_D21_035450_1674.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S290E/CTX_ClrSlope_8bit_12S290E_24mp_D18_034250_1676_D21_035450_1674.vrt deleted file mode 100644 index 5735199569..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S290E/CTX_ClrSlope_8bit_12S290E_24mp_D18_034250_1676_D21_035450_1674.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 - - 0 - Red - - CTX_ClrSlope_8bit_12S290E_24mp_D18_034250_1676_D21_035450_1674.wms - 1 - - - - 0 - - - - 0 - Green - - CTX_ClrSlope_8bit_12S290E_24mp_D18_034250_1676_D21_035450_1674.wms - 2 - - - - 0 - - - - 0 - Blue - - CTX_ClrSlope_8bit_12S290E_24mp_D18_034250_1676_D21_035450_1674.wms - 3 - - - - 0 - - - - Alpha - - CTX_ClrSlope_8bit_12S290E_24mp_D18_034250_1676_D21_035450_1674.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S290E/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S290E.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S290E/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S290E.asset deleted file mode 100644 index 426a889378..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S290E/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S290E.asset +++ /dev/null @@ -1,35 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "CTX_ClrSlope_8bit_12S290E_24mp_D18_034250_1676_D21_035450_1674", - Name = [[Mars Reconnaissance Orbiter CTX, Color Slope East Melas 12S290E]], - FilePath = asset.localResource("CTX_ClrSlope_8bit_12S290E_24mp_D18_034250_1676_D21_035450_1674.vrt"), - Description = [[This is a colorized version of the original 2x2 pixel slope in degrees (also called a 1 baseline slope). This was produced as part of an effort to characterize topography within candidate Human Exploration Zones for Mars. The DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). THe DEM has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. - -References: -Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. - -Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261. - -Slopes were derived using the Python script called gdal_baseline_slope.py: https://github.com/USGS-Astrogeology/GDAL_scripts/blob/master/gdal_baseline_slope ]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Mars Reconnaissance Orbiter CTX, Color Slope East Melas 12S290E]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=CTX_ClrSlope_8bit_12S290E_24mp_D18_034250_1676_D21_035450_1674%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Mars Reconnaissance Orbiter CTX, Color Slope East Melas 12S290E layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S291E_F14/CTX_ClrSlope_8bit_12S291E_24mp_F14_041292_1682_F16_041938_1682.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S291E_F14/CTX_ClrSlope_8bit_12S291E_24mp_F14_041292_1682_F16_041938_1682.vrt deleted file mode 100644 index f598f5a0a0..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S291E_F14/CTX_ClrSlope_8bit_12S291E_24mp_F14_041292_1682_F16_041938_1682.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 - - 0 - Red - - CTX_ClrSlope_8bit_12S291E_24mp_F14_041292_1682_F16_041938_1682.wms - 1 - - - - 0 - - - - 0 - Green - - CTX_ClrSlope_8bit_12S291E_24mp_F14_041292_1682_F16_041938_1682.wms - 2 - - - - 0 - - - - 0 - Blue - - CTX_ClrSlope_8bit_12S291E_24mp_F14_041292_1682_F16_041938_1682.wms - 3 - - - - 0 - - - - Alpha - - CTX_ClrSlope_8bit_12S291E_24mp_F14_041292_1682_F16_041938_1682.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S291E_F14/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S291E_F14.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S291E_F14/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S291E_F14.asset deleted file mode 100644 index fea5a1731a..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S291E_F14/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S291E_F14.asset +++ /dev/null @@ -1,35 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "CTX_ClrSlope_8bit_12S291E_24mp_F14_041292_1682_F16_041938_1682", - Name = [[Mars Reconnaissance Orbiter CTX, Color Slope East Melas 12S291E_F14]], - FilePath = asset.localResource("CTX_ClrSlope_8bit_12S291E_24mp_F14_041292_1682_F16_041938_1682.vrt"), - Description = [[This is a colorized version of the original 2x2 pixel slope in degrees (also called a 1 baseline slope). This was produced as part of an effort to characterize topography within candidate Human Exploration Zones for Mars. The DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). THe DEM has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. - -References: -Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. - -Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261. - -Slopes were derived using the Python script called gdal_baseline_slope.py: https://github.com/USGS-Astrogeology/GDAL_scripts/blob/master/gdal_baseline_slope ]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Mars Reconnaissance Orbiter CTX, Color Slope East Melas 12S291E_F14]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=CTX_ClrSlope_8bit_12S291E_24mp_F14_041292_1682_F16_041938_1682%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Mars Reconnaissance Orbiter CTX, Color Slope East Melas 12S291E_F14 layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S291E_F21/CTX_ClrSlope_8bit_12S291E_24mp_F21_043850_1684_F21_043916_1685.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S291E_F21/CTX_ClrSlope_8bit_12S291E_24mp_F21_043850_1684_F21_043916_1685.vrt deleted file mode 100644 index 45f9b4b9b3..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S291E_F21/CTX_ClrSlope_8bit_12S291E_24mp_F21_043850_1684_F21_043916_1685.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 - - 0 - Red - - CTX_ClrSlope_8bit_12S291E_24mp_F21_043850_1684_F21_043916_1685.wms - 1 - - - - 0 - - - - 0 - Green - - CTX_ClrSlope_8bit_12S291E_24mp_F21_043850_1684_F21_043916_1685.wms - 2 - - - - 0 - - - - 0 - Blue - - CTX_ClrSlope_8bit_12S291E_24mp_F21_043850_1684_F21_043916_1685.wms - 3 - - - - 0 - - - - Alpha - - CTX_ClrSlope_8bit_12S291E_24mp_F21_043850_1684_F21_043916_1685.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S291E_F21/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S291E_F21.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S291E_F21/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S291E_F21.asset deleted file mode 100644 index 8ecf221d21..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S291E_F21/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S291E_F21.asset +++ /dev/null @@ -1,35 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "CTX_ClrSlope_8bit_12S291E_24mp_F21_043850_1684_F21_043916_1685", - Name = [[Mars Reconnaissance Orbiter CTX, Color Slope East Melas 12S291E_F21]], - FilePath = asset.localResource("CTX_ClrSlope_8bit_12S291E_24mp_F21_043850_1684_F21_043916_1685.vrt"), - Description = [[This is a colorized version of the original 2x2 pixel slope in degrees (also called a 1 baseline slope). This was produced as part of an effort to characterize topography within candidate Human Exploration Zones for Mars. The DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). THe DEM has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. - -References: -Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. - -Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261. - -Slopes were derived using the Python script called gdal_baseline_slope.py: https://github.com/USGS-Astrogeology/GDAL_scripts/blob/master/gdal_baseline_slope ]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Mars Reconnaissance Orbiter CTX, Color Slope East Melas 12S291E_F21]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=CTX_ClrSlope_8bit_12S291E_24mp_F21_043850_1684_F21_043916_1685%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Mars Reconnaissance Orbiter CTX, Color Slope East Melas 12S291E_F21 layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S291E_J01/CTX_ClrSlope_8bit_12S291E_24mp_J01_045116_1677_J03_046039_1676.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S291E_J01/CTX_ClrSlope_8bit_12S291E_24mp_J01_045116_1677_J03_046039_1676.vrt deleted file mode 100644 index 2452f7d764..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S291E_J01/CTX_ClrSlope_8bit_12S291E_24mp_J01_045116_1677_J03_046039_1676.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 - - 0 - Red - - CTX_ClrSlope_8bit_12S291E_24mp_J01_045116_1677_J03_046039_1676.wms - 1 - - - - 0 - - - - 0 - Green - - CTX_ClrSlope_8bit_12S291E_24mp_J01_045116_1677_J03_046039_1676.wms - 2 - - - - 0 - - - - 0 - Blue - - CTX_ClrSlope_8bit_12S291E_24mp_J01_045116_1677_J03_046039_1676.wms - 3 - - - - 0 - - - - Alpha - - CTX_ClrSlope_8bit_12S291E_24mp_J01_045116_1677_J03_046039_1676.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S291E_J01/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S291E_J01.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S291E_J01/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S291E_J01.asset deleted file mode 100644 index c7cdb97b69..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S291E_J01/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S291E_J01.asset +++ /dev/null @@ -1,35 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "CTX_ClrSlope_8bit_12S291E_24mp_J01_045116_1677_J03_046039_1676", - Name = [[Mars Reconnaissance Orbiter CTX, Color Slope East Melas 12S291E_J01]], - FilePath = asset.localResource("CTX_ClrSlope_8bit_12S291E_24mp_J01_045116_1677_J03_046039_1676.vrt"), - Description = [[This is a colorized version of the original 2x2 pixel slope in degrees (also called a 1 baseline slope). This was produced as part of an effort to characterize topography within candidate Human Exploration Zones for Mars. The DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). THe DEM has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. - -References: -Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. - -Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261. - -Slopes were derived using the Python script called gdal_baseline_slope.py: https://github.com/USGS-Astrogeology/GDAL_scripts/blob/master/gdal_baseline_slope ]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Mars Reconnaissance Orbiter CTX, Color Slope East Melas 12S291E_J01]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=CTX_ClrSlope_8bit_12S291E_24mp_J01_045116_1677_J03_046039_1676%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Mars Reconnaissance Orbiter CTX, Color Slope East Melas 12S291E_J01 layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_13S289E/CTX_ClrSlope_8bit_13S289E_24mp_D10_031125_1673_D12_031903_1669.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_13S289E/CTX_ClrSlope_8bit_13S289E_24mp_D10_031125_1673_D12_031903_1669.vrt deleted file mode 100644 index 1cbc9dd584..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_13S289E/CTX_ClrSlope_8bit_13S289E_24mp_D10_031125_1673_D12_031903_1669.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 - - 0 - Red - - CTX_ClrSlope_8bit_13S289E_24mp_D10_031125_1673_D12_031903_1669.wms - 1 - - - - 0 - - - - 0 - Green - - CTX_ClrSlope_8bit_13S289E_24mp_D10_031125_1673_D12_031903_1669.wms - 2 - - - - 0 - - - - 0 - Blue - - CTX_ClrSlope_8bit_13S289E_24mp_D10_031125_1673_D12_031903_1669.wms - 3 - - - - 0 - - - - Alpha - - CTX_ClrSlope_8bit_13S289E_24mp_D10_031125_1673_D12_031903_1669.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_13S289E/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_13S289E.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_13S289E/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_13S289E.asset deleted file mode 100644 index 6e712c9b9f..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_13S289E/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_13S289E.asset +++ /dev/null @@ -1,35 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "CTX_ClrSlope_8bit_13S289E_24mp_D10_031125_1673_D12_031903_1669", - Name = [[Mars Reconnaissance Orbiter CTX, Color Slope East Melas 13S289E]], - FilePath = asset.localResource("CTX_ClrSlope_8bit_13S289E_24mp_D10_031125_1673_D12_031903_1669.vrt"), - Description = [[This is a colorized version of the original 2x2 pixel slope in degrees (also called a 1 baseline slope). This was produced as part of an effort to characterize topography within candidate Human Exploration Zones for Mars. The DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). THe DEM has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. - -References: -Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. - -Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261. - -Slopes were derived using the Python script called gdal_baseline_slope.py: https://github.com/USGS-Astrogeology/GDAL_scripts/blob/master/gdal_baseline_slope ]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Mars Reconnaissance Orbiter CTX, Color Slope East Melas 13S289E]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=CTX_ClrSlope_8bit_13S289E_24mp_D10_031125_1673_D12_031903_1669%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Mars Reconnaissance Orbiter CTX, Color Slope East Melas 13S289E layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_16S291E_D22/CTX_ClrSlope_8bit_16S291E_24mp_D22_035951_1644_F01_036307_1644.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_16S291E_D22/CTX_ClrSlope_8bit_16S291E_24mp_D22_035951_1644_F01_036307_1644.vrt deleted file mode 100644 index 13dbc58b6f..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_16S291E_D22/CTX_ClrSlope_8bit_16S291E_24mp_D22_035951_1644_F01_036307_1644.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 - - 0 - Red - - CTX_ClrSlope_8bit_16S291E_24mp_D22_035951_1644_F01_036307_1644.wms - 1 - - - - 0 - - - - 0 - Green - - CTX_ClrSlope_8bit_16S291E_24mp_D22_035951_1644_F01_036307_1644.wms - 2 - - - - 0 - - - - 0 - Blue - - CTX_ClrSlope_8bit_16S291E_24mp_D22_035951_1644_F01_036307_1644.wms - 3 - - - - 0 - - - - Alpha - - CTX_ClrSlope_8bit_16S291E_24mp_D22_035951_1644_F01_036307_1644.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_16S291E_D22/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_16S291E_D22.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_16S291E_D22/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_16S291E_D22.asset deleted file mode 100644 index 7e27fd4e21..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_16S291E_D22/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_16S291E_D22.asset +++ /dev/null @@ -1,35 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "CTX_ClrSlope_8bit_16S291E_24mp_D22_035951_1644_F01_036307_1644", - Name = [[Mars Reconnaissance Orbiter CTX, Color Slope East Melas 16S291E_D22]], - FilePath = asset.localResource("CTX_ClrSlope_8bit_16S291E_24mp_D22_035951_1644_F01_036307_1644.vrt"), - Description = [[This is a colorized version of the original 2x2 pixel slope in degrees (also called a 1 baseline slope). This was produced as part of an effort to characterize topography within candidate Human Exploration Zones for Mars. The DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). THe DEM has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. - -References: -Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. - -Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261. - -Slopes were derived using the Python script called gdal_baseline_slope.py: https://github.com/USGS-Astrogeology/GDAL_scripts/blob/master/gdal_baseline_slope ]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Mars Reconnaissance Orbiter CTX, Color Slope East Melas 16S291E_D22]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=CTX_ClrSlope_8bit_16S291E_24mp_D22_035951_1644_F01_036307_1644%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Mars Reconnaissance Orbiter CTX, Color Slope East Melas 16S291E_D22 layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_Apollinaris_12S182E/CTX_Shade_12S182E_24mp_P22_009609_1674_B02_010453_1675.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_Apollinaris_12S182E/CTX_Shade_12S182E_24mp_P22_009609_1674_B02_010453_1675.vrt deleted file mode 100644 index 77b1a0ff48..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_Apollinaris_12S182E/CTX_Shade_12S182E_24mp_P22_009609_1674_B02_010453_1675.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 - - 0 - Red - - CTX_Shade_12S182E_24mp_P22_009609_1674_B02_010453_1675.wms - 1 - - - - 0 - - - - 0 - Green - - CTX_Shade_12S182E_24mp_P22_009609_1674_B02_010453_1675.wms - 2 - - - - 0 - - - - 0 - Blue - - CTX_Shade_12S182E_24mp_P22_009609_1674_B02_010453_1675.wms - 3 - - - - 0 - - - - Alpha - - CTX_Shade_12S182E_24mp_P22_009609_1674_B02_010453_1675.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_Apollinaris_12S182E/Mars_Reconnaissance_Orbiter_CTX_HillShade_Apollinaris_12S182E.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_Apollinaris_12S182E/Mars_Reconnaissance_Orbiter_CTX_HillShade_Apollinaris_12S182E.asset deleted file mode 100644 index 1d89572907..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_Apollinaris_12S182E/Mars_Reconnaissance_Orbiter_CTX_HillShade_Apollinaris_12S182E.asset +++ /dev/null @@ -1,33 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "CTX_Shade_12S182E_24mp_P22_009609_1674_B02_010453_1675", - Name = [[Mars Reconnaissance Orbiter CTX, HillShade Apollinaris 12S182E]], - FilePath = asset.localResource("CTX_Shade_12S182E_24mp_P22_009609_1674_B02_010453_1675.vrt"), - Description = [[This is a grayscale shaded relief (hillshade) for the original digital elevation model (DEM/DTM) as produced as part of an effort to characterize topography within candidate Human Exploration Zones for Mars. The DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). THe DEM has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. - -References: -Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. - -Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Mars Reconnaissance Orbiter CTX, HillShade Apollinaris 12S182E]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=CTX_Shade_12S182E_24mp_P22_009609_1674_B02_010453_1675%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Mars Reconnaissance Orbiter CTX, HillShade Apollinaris 12S182E layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_Apollinaris_13S182E/CTX_Shade_13S182E_24mp_G15_024127_1673_G16_024483_1673.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_Apollinaris_13S182E/CTX_Shade_13S182E_24mp_G15_024127_1673_G16_024483_1673.vrt deleted file mode 100644 index b6732c8dbf..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_Apollinaris_13S182E/CTX_Shade_13S182E_24mp_G15_024127_1673_G16_024483_1673.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 - - 0 - Red - - CTX_Shade_13S182E_24mp_G15_024127_1673_G16_024483_1673.wms - 1 - - - - 0 - - - - 0 - Green - - CTX_Shade_13S182E_24mp_G15_024127_1673_G16_024483_1673.wms - 2 - - - - 0 - - - - 0 - Blue - - CTX_Shade_13S182E_24mp_G15_024127_1673_G16_024483_1673.wms - 3 - - - - 0 - - - - Alpha - - CTX_Shade_13S182E_24mp_G15_024127_1673_G16_024483_1673.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_Apollinaris_13S182E/Mars_Reconnaissance_Orbiter_CTX_HillShade_Apollinaris_13S182E.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_Apollinaris_13S182E/Mars_Reconnaissance_Orbiter_CTX_HillShade_Apollinaris_13S182E.asset deleted file mode 100644 index c753a698ca..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_Apollinaris_13S182E/Mars_Reconnaissance_Orbiter_CTX_HillShade_Apollinaris_13S182E.asset +++ /dev/null @@ -1,33 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "CTX_Shade_13S182E_24mp_G15_024127_1673_G16_024483_1673", - Name = [[Mars Reconnaissance Orbiter CTX, HillShade Apollinaris 13S182E]], - FilePath = asset.localResource("CTX_Shade_13S182E_24mp_G15_024127_1673_G16_024483_1673.vrt"), - Description = [[This is a grayscale shaded relief (hillshade) for the original digital elevation model (DEM/DTM) as produced as part of an effort to characterize topography within candidate Human Exploration Zones for Mars. The DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). THe DEM has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. - -References: -Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. - -Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Mars Reconnaissance Orbiter CTX, HillShade Apollinaris 13S182E]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=CTX_Shade_13S182E_24mp_G15_024127_1673_G16_024483_1673%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Mars Reconnaissance Orbiter CTX, HillShade Apollinaris 13S182E layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_Apollinaris_14S184E/CTX_Shade_14S184E_24mp_B01_009886_1658_P21_009385_1658.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_Apollinaris_14S184E/CTX_Shade_14S184E_24mp_B01_009886_1658_P21_009385_1658.vrt deleted file mode 100644 index 7301486e1e..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_Apollinaris_14S184E/CTX_Shade_14S184E_24mp_B01_009886_1658_P21_009385_1658.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 - - 0 - Red - - CTX_Shade_14S184E_24mp_B01_009886_1658_P21_009385_1658.wms - 1 - - - - 0 - - - - 0 - Green - - CTX_Shade_14S184E_24mp_B01_009886_1658_P21_009385_1658.wms - 2 - - - - 0 - - - - 0 - Blue - - CTX_Shade_14S184E_24mp_B01_009886_1658_P21_009385_1658.wms - 3 - - - - 0 - - - - Alpha - - CTX_Shade_14S184E_24mp_B01_009886_1658_P21_009385_1658.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_Apollinaris_14S184E/Mars_Reconnaissance_Orbiter_CTX_HillShade_Apollinaris_14S184E.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_Apollinaris_14S184E/Mars_Reconnaissance_Orbiter_CTX_HillShade_Apollinaris_14S184E.asset deleted file mode 100644 index a927ffd638..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_Apollinaris_14S184E/Mars_Reconnaissance_Orbiter_CTX_HillShade_Apollinaris_14S184E.asset +++ /dev/null @@ -1,33 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "CTX_Shade_14S184E_24mp_B01_009886_1658_P21_009385_1658", - Name = [[Mars Reconnaissance Orbiter CTX, HillShade Apollinaris 14S184E]], - FilePath = asset.localResource("CTX_Shade_14S184E_24mp_B01_009886_1658_P21_009385_1658.vrt"), - Description = [[This is a grayscale shaded relief (hillshade) for the original digital elevation model (DEM/DTM) as produced as part of an effort to characterize topography within candidate Human Exploration Zones for Mars. The DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). THe DEM has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. - -References: -Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. - -Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Mars Reconnaissance Orbiter CTX, HillShade Apollinaris 14S184E]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=CTX_Shade_14S184E_24mp_B01_009886_1658_P21_009385_1658%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Mars Reconnaissance Orbiter CTX, HillShade Apollinaris 14S184E layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_Coprates_10S291E/CTX_Shade_10S291E_24mp_P22_009684_1699_B02_010396_1699.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_Coprates_10S291E/CTX_Shade_10S291E_24mp_P22_009684_1699_B02_010396_1699.vrt deleted file mode 100644 index b99ec09610..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_Coprates_10S291E/CTX_Shade_10S291E_24mp_P22_009684_1699_B02_010396_1699.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 - - 0 - Red - - CTX_Shade_10S291E_24mp_P22_009684_1699_B02_010396_1699.wms - 1 - - - - 0 - - - - 0 - Green - - CTX_Shade_10S291E_24mp_P22_009684_1699_B02_010396_1699.wms - 2 - - - - 0 - - - - 0 - Blue - - CTX_Shade_10S291E_24mp_P22_009684_1699_B02_010396_1699.wms - 3 - - - - 0 - - - - Alpha - - CTX_Shade_10S291E_24mp_P22_009684_1699_B02_010396_1699.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_Coprates_10S291E/Mars_Reconnaissance_Orbiter_CTX_HillShade_Coprates_10S291E.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_Coprates_10S291E/Mars_Reconnaissance_Orbiter_CTX_HillShade_Coprates_10S291E.asset deleted file mode 100644 index adbd856ce0..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_Coprates_10S291E/Mars_Reconnaissance_Orbiter_CTX_HillShade_Coprates_10S291E.asset +++ /dev/null @@ -1,33 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "CTX_Shade_10S291E_24mp_P22_009684_1699_B02_010396_1699", - Name = [[Mars Reconnaissance Orbiter CTX, HillShade Coprates 10S291E]], - FilePath = asset.localResource("CTX_Shade_10S291E_24mp_P22_009684_1699_B02_010396_1699.vrt"), - Description = [[This is a grayscale shaded relief (hillshade) for the original digital elevation model (DEM/DTM) as produced as part of an effort to characterize topography within candidate Human Exploration Zones for Mars. The DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). THe DEM has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. - -References: -Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. - -Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Mars Reconnaissance Orbiter CTX, HillShade Coprates 10S291E]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=CTX_Shade_10S291E_24mp_P22_009684_1699_B02_010396_1699%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Mars Reconnaissance Orbiter CTX, HillShade Coprates 10S291E layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_Coprates_11S293E/CTX_Shade_11S293E_24mp_B09_013231_1696_B11_013732_1690.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_Coprates_11S293E/CTX_Shade_11S293E_24mp_B09_013231_1696_B11_013732_1690.vrt deleted file mode 100644 index ab0e47d325..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_Coprates_11S293E/CTX_Shade_11S293E_24mp_B09_013231_1696_B11_013732_1690.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 - - 0 - Red - - CTX_Shade_11S293E_24mp_B09_013231_1696_B11_013732_1690.wms - 1 - - - - 0 - - - - 0 - Green - - CTX_Shade_11S293E_24mp_B09_013231_1696_B11_013732_1690.wms - 2 - - - - 0 - - - - 0 - Blue - - CTX_Shade_11S293E_24mp_B09_013231_1696_B11_013732_1690.wms - 3 - - - - 0 - - - - Alpha - - CTX_Shade_11S293E_24mp_B09_013231_1696_B11_013732_1690.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_Coprates_11S293E/Mars_Reconnaissance_Orbiter_CTX_HillShade_Coprates_11S293E.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_Coprates_11S293E/Mars_Reconnaissance_Orbiter_CTX_HillShade_Coprates_11S293E.asset deleted file mode 100644 index ed8a8538b5..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_Coprates_11S293E/Mars_Reconnaissance_Orbiter_CTX_HillShade_Coprates_11S293E.asset +++ /dev/null @@ -1,33 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "CTX_Shade_11S293E_24mp_B09_013231_1696_B11_013732_1690", - Name = [[Mars Reconnaissance Orbiter CTX, HillShade Coprates 11S293E]], - FilePath = asset.localResource("CTX_Shade_11S293E_24mp_B09_013231_1696_B11_013732_1690.vrt"), - Description = [[This is a grayscale shaded relief (hillshade) for the original digital elevation model (DEM/DTM) as produced as part of an effort to characterize topography within candidate Human Exploration Zones for Mars. The DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). THe DEM has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. - -References: -Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. - -Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Mars Reconnaissance Orbiter CTX, HillShade Coprates 11S293E]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=CTX_Shade_11S293E_24mp_B09_013231_1696_B11_013732_1690%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Mars Reconnaissance Orbiter CTX, HillShade Coprates 11S293E layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_Coprates_13S293E/CTX_Shade_13S293E_24mp_G07_020879_1669_G09_021657_1665.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_Coprates_13S293E/CTX_Shade_13S293E_24mp_G07_020879_1669_G09_021657_1665.vrt deleted file mode 100644 index 2f23819cd8..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_Coprates_13S293E/CTX_Shade_13S293E_24mp_G07_020879_1669_G09_021657_1665.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 - - 0 - Red - - CTX_Shade_13S293E_24mp_G07_020879_1669_G09_021657_1665.wms - 1 - - - - 0 - - - - 0 - Green - - CTX_Shade_13S293E_24mp_G07_020879_1669_G09_021657_1665.wms - 2 - - - - 0 - - - - 0 - Blue - - CTX_Shade_13S293E_24mp_G07_020879_1669_G09_021657_1665.wms - 3 - - - - 0 - - - - Alpha - - CTX_Shade_13S293E_24mp_G07_020879_1669_G09_021657_1665.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_Coprates_13S293E/Mars_Reconnaissance_Orbiter_CTX_HillShade_Coprates_13S293E.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_Coprates_13S293E/Mars_Reconnaissance_Orbiter_CTX_HillShade_Coprates_13S293E.asset deleted file mode 100644 index 3b371f19e1..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_Coprates_13S293E/Mars_Reconnaissance_Orbiter_CTX_HillShade_Coprates_13S293E.asset +++ /dev/null @@ -1,33 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "CTX_Shade_13S293E_24mp_G07_020879_1669_G09_021657_1665", - Name = [[Mars Reconnaissance Orbiter CTX, HillShade Coprates 13S293E]], - FilePath = asset.localResource("CTX_Shade_13S293E_24mp_G07_020879_1669_G09_021657_1665.vrt"), - Description = [[This is a grayscale shaded relief (hillshade) for the original digital elevation model (DEM/DTM) as produced as part of an effort to characterize topography within candidate Human Exploration Zones for Mars. The DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). THe DEM has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. - -References: -Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. - -Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Mars Reconnaissance Orbiter CTX, HillShade Coprates 13S293E]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=CTX_Shade_13S293E_24mp_G07_020879_1669_G09_021657_1665%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Mars Reconnaissance Orbiter CTX, HillShade Coprates 13S293E layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_Deuteronius_37N024E/CTX_Shade_37N024E_24mp_G05_020203_2178_G22_026994_2170.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_Deuteronius_37N024E/CTX_Shade_37N024E_24mp_G05_020203_2178_G22_026994_2170.vrt deleted file mode 100644 index 912151699a..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_Deuteronius_37N024E/CTX_Shade_37N024E_24mp_G05_020203_2178_G22_026994_2170.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 - - 0 - Red - - CTX_Shade_37N024E_24mp_G05_020203_2178_G22_026994_2170.wms - 1 - - - - 0 - - - - 0 - Green - - CTX_Shade_37N024E_24mp_G05_020203_2178_G22_026994_2170.wms - 2 - - - - 0 - - - - 0 - Blue - - CTX_Shade_37N024E_24mp_G05_020203_2178_G22_026994_2170.wms - 3 - - - - 0 - - - - Alpha - - CTX_Shade_37N024E_24mp_G05_020203_2178_G22_026994_2170.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_Deuteronius_37N024E/Mars_Reconnaissance_Orbiter_CTX_HillShade_Deuteronius_37N024E.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_Deuteronius_37N024E/Mars_Reconnaissance_Orbiter_CTX_HillShade_Deuteronius_37N024E.asset deleted file mode 100644 index adaa890528..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_Deuteronius_37N024E/Mars_Reconnaissance_Orbiter_CTX_HillShade_Deuteronius_37N024E.asset +++ /dev/null @@ -1,33 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "CTX_Shade_37N024E_24mp_G05_020203_2178_G22_026994_2170", - Name = [[Mars Reconnaissance Orbiter CTX, HillShade Deuteronius 37N024E]], - FilePath = asset.localResource("CTX_Shade_37N024E_24mp_G05_020203_2178_G22_026994_2170.vrt"), - Description = [[This is a grayscale shaded relief (hillshade) for the original digital elevation model (DEM/DTM) as produced as part of an effort to characterize topography within candidate Human Exploration Zones for Mars. The DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). THe DEM has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. - -References: -Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. - -Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Mars Reconnaissance Orbiter CTX, HillShade Deuteronius 37N024E]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=CTX_Shade_37N024E_24mp_G05_020203_2178_G22_026994_2170%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Mars Reconnaissance Orbiter CTX, HillShade Deuteronius 37N024E layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_Deuteronius_38N024E/CTX_Shade_38N024E_24mp_B17_016168_2181_G16_024594_2181.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_Deuteronius_38N024E/CTX_Shade_38N024E_24mp_B17_016168_2181_G16_024594_2181.vrt deleted file mode 100644 index 73f264c449..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_Deuteronius_38N024E/CTX_Shade_38N024E_24mp_B17_016168_2181_G16_024594_2181.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 - - 0 - Red - - CTX_Shade_38N024E_24mp_B17_016168_2181_G16_024594_2181.wms - 1 - - - - 0 - - - - 0 - Green - - CTX_Shade_38N024E_24mp_B17_016168_2181_G16_024594_2181.wms - 2 - - - - 0 - - - - 0 - Blue - - CTX_Shade_38N024E_24mp_B17_016168_2181_G16_024594_2181.wms - 3 - - - - 0 - - - - Alpha - - CTX_Shade_38N024E_24mp_B17_016168_2181_G16_024594_2181.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_Deuteronius_38N024E/Mars_Reconnaissance_Orbiter_CTX_HillShade_Deuteronius_38N024E.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_Deuteronius_38N024E/Mars_Reconnaissance_Orbiter_CTX_HillShade_Deuteronius_38N024E.asset deleted file mode 100644 index 54a0b85815..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_Deuteronius_38N024E/Mars_Reconnaissance_Orbiter_CTX_HillShade_Deuteronius_38N024E.asset +++ /dev/null @@ -1,33 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "CTX_Shade_38N024E_24mp_B17_016168_2181_G16_024594_2181", - Name = [[Mars Reconnaissance Orbiter CTX, HillShade Deuteronius 38N024E]], - FilePath = asset.localResource("CTX_Shade_38N024E_24mp_B17_016168_2181_G16_024594_2181.vrt"), - Description = [[This is a grayscale shaded relief (hillshade) for the original digital elevation model (DEM/DTM) as produced as part of an effort to characterize topography within candidate Human Exploration Zones for Mars. The DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). THe DEM has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. - -References: -Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. - -Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Mars Reconnaissance Orbiter CTX, HillShade Deuteronius 38N024E]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=CTX_Shade_38N024E_24mp_B17_016168_2181_G16_024594_2181%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Mars Reconnaissance Orbiter CTX, HillShade Deuteronius 38N024E layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_Deuteronius_39N024E/CTX_Shade_39N024E_24mp_D15_032875_2196_D15_033165_2196.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_Deuteronius_39N024E/CTX_Shade_39N024E_24mp_D15_032875_2196_D15_033165_2196.vrt deleted file mode 100644 index b9b2366795..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_Deuteronius_39N024E/CTX_Shade_39N024E_24mp_D15_032875_2196_D15_033165_2196.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 - - 0 - Red - - CTX_Shade_39N024E_24mp_D15_032875_2196_D15_033165_2196.wms - 1 - - - - 0 - - - - 0 - Green - - CTX_Shade_39N024E_24mp_D15_032875_2196_D15_033165_2196.wms - 2 - - - - 0 - - - - 0 - Blue - - CTX_Shade_39N024E_24mp_D15_032875_2196_D15_033165_2196.wms - 3 - - - - 0 - - - - Alpha - - CTX_Shade_39N024E_24mp_D15_032875_2196_D15_033165_2196.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_Deuteronius_39N024E/Mars_Reconnaissance_Orbiter_CTX_HillShade_Deuteronius_39N024E.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_Deuteronius_39N024E/Mars_Reconnaissance_Orbiter_CTX_HillShade_Deuteronius_39N024E.asset deleted file mode 100644 index 92a34ccae4..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_Deuteronius_39N024E/Mars_Reconnaissance_Orbiter_CTX_HillShade_Deuteronius_39N024E.asset +++ /dev/null @@ -1,33 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "CTX_Shade_39N024E_24mp_D15_032875_2196_D15_033165_2196", - Name = [[Mars Reconnaissance Orbiter CTX, HillShade Deuteronius 39N024E]], - FilePath = asset.localResource("CTX_Shade_39N024E_24mp_D15_032875_2196_D15_033165_2196.vrt"), - Description = [[This is a grayscale shaded relief (hillshade) for the original digital elevation model (DEM/DTM) as produced as part of an effort to characterize topography within candidate Human Exploration Zones for Mars. The DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). THe DEM has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. - -References: -Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. - -Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Mars Reconnaissance Orbiter CTX, HillShade Deuteronius 39N024E]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=CTX_Shade_39N024E_24mp_D15_032875_2196_D15_033165_2196%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Mars Reconnaissance Orbiter CTX, HillShade Deuteronius 39N024E layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_Deuteronius_40N024E/CTX_Shade_40N022E_24mp_B18_016656_2206_B18_016801_2206.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_Deuteronius_40N024E/CTX_Shade_40N022E_24mp_B18_016656_2206_B18_016801_2206.vrt deleted file mode 100644 index 5792374f28..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_Deuteronius_40N024E/CTX_Shade_40N022E_24mp_B18_016656_2206_B18_016801_2206.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 - - 0 - Red - - CTX_Shade_40N022E_24mp_B18_016656_2206_B18_016801_2206.wms - 1 - - - - 0 - - - - 0 - Green - - CTX_Shade_40N022E_24mp_B18_016656_2206_B18_016801_2206.wms - 2 - - - - 0 - - - - 0 - Blue - - CTX_Shade_40N022E_24mp_B18_016656_2206_B18_016801_2206.wms - 3 - - - - 0 - - - - Alpha - - CTX_Shade_40N022E_24mp_B18_016656_2206_B18_016801_2206.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_Deuteronius_40N024E/Mars_Reconnaissance_Orbiter_CTX_HillShade_Deuteronius_40N024E.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_Deuteronius_40N024E/Mars_Reconnaissance_Orbiter_CTX_HillShade_Deuteronius_40N024E.asset deleted file mode 100644 index 30eb9afe42..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_Deuteronius_40N024E/Mars_Reconnaissance_Orbiter_CTX_HillShade_Deuteronius_40N024E.asset +++ /dev/null @@ -1,33 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "CTX_Shade_40N022E_24mp_B18_016656_2206_B18_016801_2206", - Name = [[Mars Reconnaissance Orbiter CTX, HillShade Deuteronius 40N024E]], - FilePath = asset.localResource("CTX_Shade_40N022E_24mp_B18_016656_2206_B18_016801_2206.vrt"), - Description = [[This is a grayscale shaded relief (hillshade) for the original digital elevation model (DEM/DTM) as produced as part of an effort to characterize topography within candidate Human Exploration Zones for Mars. The DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). THe DEM has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. - -References: -Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. - -Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Mars Reconnaissance Orbiter CTX, HillShade Deuteronius 40N024E]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=CTX_Shade_40N022E_24mp_B18_016656_2206_B18_016801_2206%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Mars Reconnaissance Orbiter CTX, HillShade Deuteronius 40N024E layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_11S289E/CTX_Shade_11S289E_24mp_F23_044971_1685_F21_043995_1685.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_11S289E/CTX_Shade_11S289E_24mp_F23_044971_1685_F21_043995_1685.vrt deleted file mode 100644 index b415b6c16e..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_11S289E/CTX_Shade_11S289E_24mp_F23_044971_1685_F21_043995_1685.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 - - 0 - Red - - CTX_Shade_11S289E_24mp_F23_044971_1685_F21_043995_1685.wms - 1 - - - - 0 - - - - 0 - Green - - CTX_Shade_11S289E_24mp_F23_044971_1685_F21_043995_1685.wms - 2 - - - - 0 - - - - 0 - Blue - - CTX_Shade_11S289E_24mp_F23_044971_1685_F21_043995_1685.wms - 3 - - - - 0 - - - - Alpha - - CTX_Shade_11S289E_24mp_F23_044971_1685_F21_043995_1685.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_11S289E/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_11S289E.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_11S289E/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_11S289E.asset deleted file mode 100644 index e1249c8c09..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_11S289E/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_11S289E.asset +++ /dev/null @@ -1,33 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "CTX_Shade_11S289E_24mp_F23_044971_1685_F21_043995_1685", - Name = [[Mars Reconnaissance Orbiter CTX, HillShade East Melas 11S289E]], - FilePath = asset.localResource("CTX_Shade_11S289E_24mp_F23_044971_1685_F21_043995_1685.vrt"), - Description = [[This is a grayscale shaded relief (hillshade) for the original digital elevation model (DEM/DTM) as produced as part of an effort to characterize topography within candidate Human Exploration Zones for Mars. The DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). THe DEM has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. - -References: -Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. - -Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Mars Reconnaissance Orbiter CTX, HillShade East Melas 11S289E]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=CTX_Shade_11S289E_24mp_F23_044971_1685_F21_043995_1685%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Mars Reconnaissance Orbiter CTX, HillShade East Melas 11S289E layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_11S291E/CTX_Shade_11S291E_24mp_B19_017187_1685_B19_016976_1685.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_11S291E/CTX_Shade_11S291E_24mp_B19_017187_1685_B19_016976_1685.vrt deleted file mode 100644 index 81e8f01e51..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_11S291E/CTX_Shade_11S291E_24mp_B19_017187_1685_B19_016976_1685.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 - - 0 - Red - - CTX_Shade_11S291E_24mp_B19_017187_1685_B19_016976_1685.wms - 1 - - - - 0 - - - - 0 - Green - - CTX_Shade_11S291E_24mp_B19_017187_1685_B19_016976_1685.wms - 2 - - - - 0 - - - - 0 - Blue - - CTX_Shade_11S291E_24mp_B19_017187_1685_B19_016976_1685.wms - 3 - - - - 0 - - - - Alpha - - CTX_Shade_11S291E_24mp_B19_017187_1685_B19_016976_1685.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_11S291E/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_11S291E.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_11S291E/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_11S291E.asset deleted file mode 100644 index c10e917e7e..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_11S291E/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_11S291E.asset +++ /dev/null @@ -1,33 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "CTX_Shade_11S291E_24mp_B19_017187_1685_B19_016976_1685", - Name = [[Mars Reconnaissance Orbiter CTX, HillShade East Melas 11S291E]], - FilePath = asset.localResource("CTX_Shade_11S291E_24mp_B19_017187_1685_B19_016976_1685.vrt"), - Description = [[This is a grayscale shaded relief (hillshade) for the original digital elevation model (DEM/DTM) as produced as part of an effort to characterize topography within candidate Human Exploration Zones for Mars. The DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). THe DEM has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. - -References: -Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. - -Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Mars Reconnaissance Orbiter CTX, HillShade East Melas 11S291E]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=CTX_Shade_11S291E_24mp_B19_017187_1685_B19_016976_1685%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Mars Reconnaissance Orbiter CTX, HillShade East Melas 11S291E layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S289E_D01/CTX_Shade_12S289E_24mp_D01_027446_1678_D01_027723_1677.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S289E_D01/CTX_Shade_12S289E_24mp_D01_027446_1678_D01_027723_1677.vrt deleted file mode 100644 index 0eca557228..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S289E_D01/CTX_Shade_12S289E_24mp_D01_027446_1678_D01_027723_1677.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 - - 0 - Red - - CTX_Shade_12S289E_24mp_D01_027446_1678_D01_027723_1677.wms - 1 - - - - 0 - - - - 0 - Green - - CTX_Shade_12S289E_24mp_D01_027446_1678_D01_027723_1677.wms - 2 - - - - 0 - - - - 0 - Blue - - CTX_Shade_12S289E_24mp_D01_027446_1678_D01_027723_1677.wms - 3 - - - - 0 - - - - Alpha - - CTX_Shade_12S289E_24mp_D01_027446_1678_D01_027723_1677.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S289E_D01/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S289E_D01.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S289E_D01/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S289E_D01.asset deleted file mode 100644 index 1700c612ae..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S289E_D01/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S289E_D01.asset +++ /dev/null @@ -1,33 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "CTX_Shade_12S289E_24mp_D01_027446_1678_D01_027723_1677", - Name = [[Mars Reconnaissance Orbiter CTX, HillShade East Melas 12S289E_D01]], - FilePath = asset.localResource("CTX_Shade_12S289E_24mp_D01_027446_1678_D01_027723_1677.vrt"), - Description = [[This is a grayscale shaded relief (hillshade) for the original digital elevation model (DEM/DTM) as produced as part of an effort to characterize topography within candidate Human Exploration Zones for Mars. The DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). THe DEM has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. - -References: -Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. - -Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Mars Reconnaissance Orbiter CTX, HillShade East Melas 12S289E_D01]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=CTX_Shade_12S289E_24mp_D01_027446_1678_D01_027723_1677%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Mars Reconnaissance Orbiter CTX, HillShade East Melas 12S289E_D01 layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S289E_F18/CTX_Shade_12S289E_24mp_F18_042927_1681_J02_045749_1694.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S289E_F18/CTX_Shade_12S289E_24mp_F18_042927_1681_J02_045749_1694.vrt deleted file mode 100644 index b6a2de9289..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S289E_F18/CTX_Shade_12S289E_24mp_F18_042927_1681_J02_045749_1694.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 - - 0 - Red - - CTX_Shade_12S289E_24mp_F18_042927_1681_J02_045749_1694.wms - 1 - - - - 0 - - - - 0 - Green - - CTX_Shade_12S289E_24mp_F18_042927_1681_J02_045749_1694.wms - 2 - - - - 0 - - - - 0 - Blue - - CTX_Shade_12S289E_24mp_F18_042927_1681_J02_045749_1694.wms - 3 - - - - 0 - - - - Alpha - - CTX_Shade_12S289E_24mp_F18_042927_1681_J02_045749_1694.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S289E_F18/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S289E_F18.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S289E_F18/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S289E_F18.asset deleted file mode 100644 index a49fec5a41..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S289E_F18/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S289E_F18.asset +++ /dev/null @@ -1,33 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "CTX_Shade_12S289E_24mp_F18_042927_1681_J02_045749_1694", - Name = [[Mars Reconnaissance Orbiter CTX, HillShade East Melas 12S289E_F18]], - FilePath = asset.localResource("CTX_Shade_12S289E_24mp_F18_042927_1681_J02_045749_1694.vrt"), - Description = [[This is a grayscale shaded relief (hillshade) for the original digital elevation model (DEM/DTM) as produced as part of an effort to characterize topography within candidate Human Exploration Zones for Mars. The DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). THe DEM has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. - -References: -Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. - -Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Mars Reconnaissance Orbiter CTX, HillShade East Melas 12S289E_F18]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=CTX_Shade_12S289E_24mp_F18_042927_1681_J02_045749_1694%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Mars Reconnaissance Orbiter CTX, HillShade East Melas 12S289E_F18 layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S290E/CTX_Shade_12S290E_24mp_D18_034250_1676_D21_035450_1674.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S290E/CTX_Shade_12S290E_24mp_D18_034250_1676_D21_035450_1674.vrt deleted file mode 100644 index 2fe9ed1b2b..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S290E/CTX_Shade_12S290E_24mp_D18_034250_1676_D21_035450_1674.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 - - 0 - Red - - CTX_Shade_12S290E_24mp_D18_034250_1676_D21_035450_1674.wms - 1 - - - - 0 - - - - 0 - Green - - CTX_Shade_12S290E_24mp_D18_034250_1676_D21_035450_1674.wms - 2 - - - - 0 - - - - 0 - Blue - - CTX_Shade_12S290E_24mp_D18_034250_1676_D21_035450_1674.wms - 3 - - - - 0 - - - - Alpha - - CTX_Shade_12S290E_24mp_D18_034250_1676_D21_035450_1674.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S290E/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S290E.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S290E/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S290E.asset deleted file mode 100644 index 9d54359da3..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S290E/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S290E.asset +++ /dev/null @@ -1,33 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "CTX_Shade_12S290E_24mp_D18_034250_1676_D21_035450_1674", - Name = [[Mars Reconnaissance Orbiter CTX, HillShade East Melas 12S290E]], - FilePath = asset.localResource("CTX_Shade_12S290E_24mp_D18_034250_1676_D21_035450_1674.vrt"), - Description = [[This is a grayscale shaded relief (hillshade) for the original digital elevation model (DEM/DTM) as produced as part of an effort to characterize topography within candidate Human Exploration Zones for Mars. The DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). THe DEM has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. - -References: -Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. - -Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Mars Reconnaissance Orbiter CTX, HillShade East Melas 12S290E]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=CTX_Shade_12S290E_24mp_D18_034250_1676_D21_035450_1674%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Mars Reconnaissance Orbiter CTX, HillShade East Melas 12S290E layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S291E_F14/CTX_Shade_12S291E_24mp_F14_041292_1682_F16_041938_1682.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S291E_F14/CTX_Shade_12S291E_24mp_F14_041292_1682_F16_041938_1682.vrt deleted file mode 100644 index 65b492517e..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S291E_F14/CTX_Shade_12S291E_24mp_F14_041292_1682_F16_041938_1682.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 - - 0 - Red - - CTX_Shade_12S291E_24mp_F14_041292_1682_F16_041938_1682.wms - 1 - - - - 0 - - - - 0 - Green - - CTX_Shade_12S291E_24mp_F14_041292_1682_F16_041938_1682.wms - 2 - - - - 0 - - - - 0 - Blue - - CTX_Shade_12S291E_24mp_F14_041292_1682_F16_041938_1682.wms - 3 - - - - 0 - - - - Alpha - - CTX_Shade_12S291E_24mp_F14_041292_1682_F16_041938_1682.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S291E_F14/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S291E_F14.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S291E_F14/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S291E_F14.asset deleted file mode 100644 index f0b2dbf822..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S291E_F14/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S291E_F14.asset +++ /dev/null @@ -1,33 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "CTX_Shade_12S291E_24mp_F14_041292_1682_F16_041938_1682", - Name = [[Mars Reconnaissance Orbiter CTX, HillShade East Melas 12S291E_F14]], - FilePath = asset.localResource("CTX_Shade_12S291E_24mp_F14_041292_1682_F16_041938_1682.vrt"), - Description = [[This is a grayscale shaded relief (hillshade) for the original digital elevation model (DEM/DTM) as produced as part of an effort to characterize topography within candidate Human Exploration Zones for Mars. The DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). THe DEM has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. - -References: -Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. - -Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Mars Reconnaissance Orbiter CTX, HillShade East Melas 12S291E_F14]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=CTX_Shade_12S291E_24mp_F14_041292_1682_F16_041938_1682%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Mars Reconnaissance Orbiter CTX, HillShade East Melas 12S291E_F14 layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S291E_F21/CTX_Shade_12S291E_24mp_F21_043850_1684_F21_043916_1685.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S291E_F21/CTX_Shade_12S291E_24mp_F21_043850_1684_F21_043916_1685.vrt deleted file mode 100644 index 26ad526838..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S291E_F21/CTX_Shade_12S291E_24mp_F21_043850_1684_F21_043916_1685.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 - - 0 - Red - - CTX_Shade_12S291E_24mp_F21_043850_1684_F21_043916_1685.wms - 1 - - - - 0 - - - - 0 - Green - - CTX_Shade_12S291E_24mp_F21_043850_1684_F21_043916_1685.wms - 2 - - - - 0 - - - - 0 - Blue - - CTX_Shade_12S291E_24mp_F21_043850_1684_F21_043916_1685.wms - 3 - - - - 0 - - - - Alpha - - CTX_Shade_12S291E_24mp_F21_043850_1684_F21_043916_1685.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S291E_F21/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S291E_F21.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S291E_F21/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S291E_F21.asset deleted file mode 100644 index b096b554ef..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S291E_F21/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S291E_F21.asset +++ /dev/null @@ -1,33 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "CTX_Shade_12S291E_24mp_F21_043850_1684_F21_043916_1685", - Name = [[Mars Reconnaissance Orbiter CTX, HillShade East Melas 12S291E_F21]], - FilePath = asset.localResource("CTX_Shade_12S291E_24mp_F21_043850_1684_F21_043916_1685.vrt"), - Description = [[This is a grayscale shaded relief (hillshade) for the original digital elevation model (DEM/DTM) as produced as part of an effort to characterize topography within candidate Human Exploration Zones for Mars. The DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). THe DEM has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. - -References: -Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. - -Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Mars Reconnaissance Orbiter CTX, HillShade East Melas 12S291E_F21]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=CTX_Shade_12S291E_24mp_F21_043850_1684_F21_043916_1685%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Mars Reconnaissance Orbiter CTX, HillShade East Melas 12S291E_F21 layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S291E_J01/CTX_Shade_12S291E_24mp_J01_045116_1677_J03_046039_1676.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S291E_J01/CTX_Shade_12S291E_24mp_J01_045116_1677_J03_046039_1676.vrt deleted file mode 100644 index f4e1cdf54b..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S291E_J01/CTX_Shade_12S291E_24mp_J01_045116_1677_J03_046039_1676.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 - - 0 - Red - - CTX_Shade_12S291E_24mp_J01_045116_1677_J03_046039_1676.wms - 1 - - - - 0 - - - - 0 - Green - - CTX_Shade_12S291E_24mp_J01_045116_1677_J03_046039_1676.wms - 2 - - - - 0 - - - - 0 - Blue - - CTX_Shade_12S291E_24mp_J01_045116_1677_J03_046039_1676.wms - 3 - - - - 0 - - - - Alpha - - CTX_Shade_12S291E_24mp_J01_045116_1677_J03_046039_1676.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S291E_J01/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S291E_J01.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S291E_J01/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S291E_J01.asset deleted file mode 100644 index 3743c00d74..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S291E_J01/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S291E_J01.asset +++ /dev/null @@ -1,33 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "CTX_Shade_12S291E_24mp_J01_045116_1677_J03_046039_1676", - Name = [[Mars Reconnaissance Orbiter CTX, HillShade East Melas 12S291E_J01]], - FilePath = asset.localResource("CTX_Shade_12S291E_24mp_J01_045116_1677_J03_046039_1676.vrt"), - Description = [[This is a grayscale shaded relief (hillshade) for the original digital elevation model (DEM/DTM) as produced as part of an effort to characterize topography within candidate Human Exploration Zones for Mars. The DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). THe DEM has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. - -References: -Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. - -Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Mars Reconnaissance Orbiter CTX, HillShade East Melas 12S291E_J01]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=CTX_Shade_12S291E_24mp_J01_045116_1677_J03_046039_1676%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Mars Reconnaissance Orbiter CTX, HillShade East Melas 12S291E_J01 layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_13S289E_D10/CTX_Shade_13S289E_24mp_D10_031125_1673_D12_031903_1669.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_13S289E_D10/CTX_Shade_13S289E_24mp_D10_031125_1673_D12_031903_1669.vrt deleted file mode 100644 index 5ae542f711..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_13S289E_D10/CTX_Shade_13S289E_24mp_D10_031125_1673_D12_031903_1669.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 - - 0 - Red - - CTX_Shade_13S289E_24mp_D10_031125_1673_D12_031903_1669.wms - 1 - - - - 0 - - - - 0 - Green - - CTX_Shade_13S289E_24mp_D10_031125_1673_D12_031903_1669.wms - 2 - - - - 0 - - - - 0 - Blue - - CTX_Shade_13S289E_24mp_D10_031125_1673_D12_031903_1669.wms - 3 - - - - 0 - - - - Alpha - - CTX_Shade_13S289E_24mp_D10_031125_1673_D12_031903_1669.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_13S289E_D10/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_13S289E_D10.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_13S289E_D10/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_13S289E_D10.asset deleted file mode 100644 index 193d87d3ba..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_13S289E_D10/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_13S289E_D10.asset +++ /dev/null @@ -1,33 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "CTX_Shade_13S289E_24mp_D10_031125_1673_D12_031903_1669", - Name = [[Mars Reconnaissance Orbiter CTX, HillShade East Melas 13S289E_D10]], - FilePath = asset.localResource("CTX_Shade_13S289E_24mp_D10_031125_1673_D12_031903_1669.vrt"), - Description = [[This is a grayscale shaded relief (hillshade) for the original digital elevation model (DEM/DTM) as produced as part of an effort to characterize topography within candidate Human Exploration Zones for Mars. The DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). THe DEM has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. - -References: -Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. - -Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Mars Reconnaissance Orbiter CTX, HillShade East Melas 13S289E_D10]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=CTX_Shade_13S289E_24mp_D10_031125_1673_D12_031903_1669%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Mars Reconnaissance Orbiter CTX, HillShade East Melas 13S289E_D10 layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_16S291E_D22/CTX_Shade_16S291E_24mp_D22_035951_1644_F01_036307_1644.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_16S291E_D22/CTX_Shade_16S291E_24mp_D22_035951_1644_F01_036307_1644.vrt deleted file mode 100644 index 99a32edf14..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_16S291E_D22/CTX_Shade_16S291E_24mp_D22_035951_1644_F01_036307_1644.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 - - 0 - Red - - CTX_Shade_16S291E_24mp_D22_035951_1644_F01_036307_1644.wms - 1 - - - - 0 - - - - 0 - Green - - CTX_Shade_16S291E_24mp_D22_035951_1644_F01_036307_1644.wms - 2 - - - - 0 - - - - 0 - Blue - - CTX_Shade_16S291E_24mp_D22_035951_1644_F01_036307_1644.wms - 3 - - - - 0 - - - - Alpha - - CTX_Shade_16S291E_24mp_D22_035951_1644_F01_036307_1644.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_16S291E_D22/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_16S291E_D22.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_16S291E_D22/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_16S291E_D22.asset deleted file mode 100644 index 207e939254..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_16S291E_D22/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_16S291E_D22.asset +++ /dev/null @@ -1,33 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "CTX_Shade_16S291E_24mp_D22_035951_1644_F01_036307_1644", - Name = [[Mars Reconnaissance Orbiter CTX, HillShade East Melas 16S291E_D22]], - FilePath = asset.localResource("CTX_Shade_16S291E_24mp_D22_035951_1644_F01_036307_1644.vrt"), - Description = [[This is a grayscale shaded relief (hillshade) for the original digital elevation model (DEM/DTM) as produced as part of an effort to characterize topography within candidate Human Exploration Zones for Mars. The DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). THe DEM has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. - -References: -Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. - -Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Mars Reconnaissance Orbiter CTX, HillShade East Melas 16S291E_D22]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=CTX_Shade_16S291E_24mp_D22_035951_1644_F01_036307_1644%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Mars Reconnaissance Orbiter CTX, HillShade East Melas 16S291E_D22 layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Hilllshade_Deuteronilus/Deuteronilus_CTX_Shade_v0_20171112.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Hilllshade_Deuteronilus/Deuteronilus_CTX_Shade_v0_20171112.vrt deleted file mode 100644 index ca446f9051..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Hilllshade_Deuteronilus/Deuteronilus_CTX_Shade_v0_20171112.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 - - 0 - Red - - Deuteronilus_CTX_Shade_v0_20171112.wms - 1 - - - - 0 - - - - 0 - Green - - Deuteronilus_CTX_Shade_v0_20171112.wms - 2 - - - - 0 - - - - 0 - Blue - - Deuteronilus_CTX_Shade_v0_20171112.wms - 3 - - - - 0 - - - - Alpha - - Deuteronilus_CTX_Shade_v0_20171112.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Hilllshade_Deuteronilus/Mars_Reconnaissance_Orbiter_CTX_Hilllshade_Deuteronilus.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Hilllshade_Deuteronilus/Mars_Reconnaissance_Orbiter_CTX_Hilllshade_Deuteronilus.asset deleted file mode 100644 index 115de3c4dd..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Hilllshade_Deuteronilus/Mars_Reconnaissance_Orbiter_CTX_Hilllshade_Deuteronilus.asset +++ /dev/null @@ -1,33 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "Deuteronilus_CTX_Shade_v0_20171112", - Name = [[Mars Reconnaissance Orbiter CTX, Hilllshade Deuteronilus]], - FilePath = asset.localResource("Deuteronilus_CTX_Shade_v0_20171112.vrt"), - Description = [[This is a grayscale shaded relief (hillshade) for the original digital elevation model (DEM/DTM) as produced as part of an effort to characterize topography within candidate Human Exploration Zones for Mars. The DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). THe DEM has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. - -References: -Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. - -Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Mars Reconnaissance Orbiter CTX, Hilllshade Deuteronilus]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=Deuteronilus_CTX_Shade_v0_20171112%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Mars Reconnaissance Orbiter CTX, Hilllshade Deuteronilus layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Apollinaris_12S182E/CTX_Ortho_12S182E_24mp_P22_009609_1674.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Apollinaris_12S182E/CTX_Ortho_12S182E_24mp_P22_009609_1674.vrt deleted file mode 100644 index de36d5deae..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Apollinaris_12S182E/CTX_Ortho_12S182E_24mp_P22_009609_1674.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - CTX_Ortho_12S182E_24mp_P22_009609_1674.wms - 1 - - - - 0 - - - - 0 - Green - - CTX_Ortho_12S182E_24mp_P22_009609_1674.wms - 2 - - - - 0 - - - - 0 - Blue - - CTX_Ortho_12S182E_24mp_P22_009609_1674.wms - 3 - - - - 0 - - - - Alpha - - CTX_Ortho_12S182E_24mp_P22_009609_1674.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Apollinaris_12S182E/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Apollinaris_12S182E.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Apollinaris_12S182E/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Apollinaris_12S182E.asset deleted file mode 100644 index 0941ab926e..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Apollinaris_12S182E/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Apollinaris_12S182E.asset +++ /dev/null @@ -1,33 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "CTX_Ortho_12S182E_24mp_P22_009609_1674", - Name = [[Mars Reconnaissance Orbiter CTX, Mosaic Apollinaris 12S182E]], - FilePath = asset.localResource("CTX_Ortho_12S182E_24mp_P22_009609_1674.vrt"), - Description = [[This is a CTX orthorectified image, geometrically corrected using its own source digital elevation model (DEM/DTM), as produced as part of an effort to characterize candidate Human Exploration Zones for Mars. The original DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). The DEM, and thus orthoimage, has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. - -References: -Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. - -Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Mars Reconnaissance Orbiter CTX, Mosaic Apollinaris 12S182E]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=CTX_Ortho_12S182E_24mp_P22_009609_1674%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Mars Reconnaissance Orbiter CTX, Mosaic Apollinaris 12S182E layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Apollinaris_13S182E/CTX_Ortho_13S182E_24mp_G15_024127_1673.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Apollinaris_13S182E/CTX_Ortho_13S182E_24mp_G15_024127_1673.vrt deleted file mode 100644 index 9513a3d6b6..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Apollinaris_13S182E/CTX_Ortho_13S182E_24mp_G15_024127_1673.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - CTX_Ortho_13S182E_24mp_G15_024127_1673.wms - 1 - - - - 0 - - - - 0 - Green - - CTX_Ortho_13S182E_24mp_G15_024127_1673.wms - 2 - - - - 0 - - - - 0 - Blue - - CTX_Ortho_13S182E_24mp_G15_024127_1673.wms - 3 - - - - 0 - - - - Alpha - - CTX_Ortho_13S182E_24mp_G15_024127_1673.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Apollinaris_13S182E/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Apollinaris_13S182E.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Apollinaris_13S182E/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Apollinaris_13S182E.asset deleted file mode 100644 index 63d00fd41d..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Apollinaris_13S182E/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Apollinaris_13S182E.asset +++ /dev/null @@ -1,33 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "CTX_Ortho_13S182E_24mp_G15_024127_1673", - Name = [[Mars Reconnaissance Orbiter CTX, Mosaic Apollinaris 13S182E]], - FilePath = asset.localResource("CTX_Ortho_13S182E_24mp_G15_024127_1673.vrt"), - Description = [[This is a CTX orthorectified image, geometrically corrected using its own source digital elevation model (DEM/DTM), as produced as part of an effort to characterize candidate Human Exploration Zones for Mars. The original DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). The DEM, and thus orthoimage, has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. - -References: -Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. - -Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Mars Reconnaissance Orbiter CTX, Mosaic Apollinaris 13S182E]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=CTX_Ortho_13S182E_24mp_G15_024127_1673%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Mars Reconnaissance Orbiter CTX, Mosaic Apollinaris 13S182E layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Apollinaris_14S184E/CTX_Ortho_14S184E_24mp_B01_009886_1658.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Apollinaris_14S184E/CTX_Ortho_14S184E_24mp_B01_009886_1658.vrt deleted file mode 100644 index eec206b09a..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Apollinaris_14S184E/CTX_Ortho_14S184E_24mp_B01_009886_1658.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - CTX_Ortho_14S184E_24mp_B01_009886_1658.wms - 1 - - - - 0 - - - - 0 - Green - - CTX_Ortho_14S184E_24mp_B01_009886_1658.wms - 2 - - - - 0 - - - - 0 - Blue - - CTX_Ortho_14S184E_24mp_B01_009886_1658.wms - 3 - - - - 0 - - - - Alpha - - CTX_Ortho_14S184E_24mp_B01_009886_1658.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Apollinaris_14S184E/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Apollinaris_14S184E.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Apollinaris_14S184E/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Apollinaris_14S184E.asset deleted file mode 100644 index 8d4874a5eb..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Apollinaris_14S184E/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Apollinaris_14S184E.asset +++ /dev/null @@ -1,33 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "CTX_Ortho_14S184E_24mp_B01_009886_1658", - Name = [[Mars Reconnaissance Orbiter CTX, Mosaic Apollinaris 14S184E]], - FilePath = asset.localResource("CTX_Ortho_14S184E_24mp_B01_009886_1658.vrt"), - Description = [[This is a CTX orthorectified image, geometrically corrected using its own source digital elevation model (DEM/DTM), as produced as part of an effort to characterize candidate Human Exploration Zones for Mars. The original DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). The DEM, and thus orthoimage, has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. - -References: -Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. - -Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Mars Reconnaissance Orbiter CTX, Mosaic Apollinaris 14S184E]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=CTX_Ortho_14S184E_24mp_B01_009886_1658%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Mars Reconnaissance Orbiter CTX, Mosaic Apollinaris 14S184E layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Coprates_10S291E/CTX_Ortho_10S291E_24mp_P22_009684_1699.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Coprates_10S291E/CTX_Ortho_10S291E_24mp_P22_009684_1699.vrt deleted file mode 100644 index c8d419d711..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Coprates_10S291E/CTX_Ortho_10S291E_24mp_P22_009684_1699.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - CTX_Ortho_10S291E_24mp_P22_009684_1699.wms - 1 - - - - 0 - - - - 0 - Green - - CTX_Ortho_10S291E_24mp_P22_009684_1699.wms - 2 - - - - 0 - - - - 0 - Blue - - CTX_Ortho_10S291E_24mp_P22_009684_1699.wms - 3 - - - - 0 - - - - Alpha - - CTX_Ortho_10S291E_24mp_P22_009684_1699.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Coprates_10S291E/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Coprates_10S291E.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Coprates_10S291E/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Coprates_10S291E.asset deleted file mode 100644 index df647f2a1c..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Coprates_10S291E/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Coprates_10S291E.asset +++ /dev/null @@ -1,33 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "CTX_Ortho_10S291E_24mp_P22_009684_1699", - Name = [[Mars Reconnaissance Orbiter CTX, Mosaic Coprates 10S291E]], - FilePath = asset.localResource("CTX_Ortho_10S291E_24mp_P22_009684_1699.vrt"), - Description = [[This is a CTX orthorectified image, geometrically corrected using its own source digital elevation model (DEM/DTM), as produced as part of an effort to characterize candidate Human Exploration Zones for Mars. The original DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). The DEM, and thus orthoimage, has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. - -References: -Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. - -Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Mars Reconnaissance Orbiter CTX, Mosaic Coprates 10S291E]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=CTX_Ortho_10S291E_24mp_P22_009684_1699%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Mars Reconnaissance Orbiter CTX, Mosaic Coprates 10S291E layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Coprates_11S293E/CTX_Ortho_11S293E_24mp_B09_013231_1696.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Coprates_11S293E/CTX_Ortho_11S293E_24mp_B09_013231_1696.vrt deleted file mode 100644 index 8b4de0c932..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Coprates_11S293E/CTX_Ortho_11S293E_24mp_B09_013231_1696.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - CTX_Ortho_11S293E_24mp_B09_013231_1696.wms - 1 - - - - 0 - - - - 0 - Green - - CTX_Ortho_11S293E_24mp_B09_013231_1696.wms - 2 - - - - 0 - - - - 0 - Blue - - CTX_Ortho_11S293E_24mp_B09_013231_1696.wms - 3 - - - - 0 - - - - Alpha - - CTX_Ortho_11S293E_24mp_B09_013231_1696.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Coprates_11S293E/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Coprates_11S293E.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Coprates_11S293E/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Coprates_11S293E.asset deleted file mode 100644 index 504edff3db..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Coprates_11S293E/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Coprates_11S293E.asset +++ /dev/null @@ -1,33 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "CTX_Ortho_11S293E_24mp_B09_013231_1696", - Name = [[Mars Reconnaissance Orbiter CTX, Mosaic Coprates 11S293E]], - FilePath = asset.localResource("CTX_Ortho_11S293E_24mp_B09_013231_1696.vrt"), - Description = [[This is a CTX orthorectified image, geometrically corrected using its own source digital elevation model (DEM/DTM), as produced as part of an effort to characterize candidate Human Exploration Zones for Mars. The original DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). The DEM, and thus orthoimage, has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. - -References: -Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. - -Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Mars Reconnaissance Orbiter CTX, Mosaic Coprates 11S293E]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=CTX_Ortho_11S293E_24mp_B09_013231_1696%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Mars Reconnaissance Orbiter CTX, Mosaic Coprates 11S293E layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Coprates_13S293E/CTX_Ortho_13S293E_24mp_G07_020879_1669.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Coprates_13S293E/CTX_Ortho_13S293E_24mp_G07_020879_1669.vrt deleted file mode 100644 index 27df68395f..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Coprates_13S293E/CTX_Ortho_13S293E_24mp_G07_020879_1669.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - CTX_Ortho_13S293E_24mp_G07_020879_1669.wms - 1 - - - - 0 - - - - 0 - Green - - CTX_Ortho_13S293E_24mp_G07_020879_1669.wms - 2 - - - - 0 - - - - 0 - Blue - - CTX_Ortho_13S293E_24mp_G07_020879_1669.wms - 3 - - - - 0 - - - - Alpha - - CTX_Ortho_13S293E_24mp_G07_020879_1669.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Coprates_13S293E/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Coprates_13S293E.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Coprates_13S293E/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Coprates_13S293E.asset deleted file mode 100644 index e9344c79fa..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Coprates_13S293E/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Coprates_13S293E.asset +++ /dev/null @@ -1,33 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "CTX_Ortho_13S293E_24mp_G07_020879_1669", - Name = [[Mars Reconnaissance Orbiter CTX, Mosaic Coprates 13S293E]], - FilePath = asset.localResource("CTX_Ortho_13S293E_24mp_G07_020879_1669.vrt"), - Description = [[This is a CTX orthorectified image, geometrically corrected using its own source digital elevation model (DEM/DTM), as produced as part of an effort to characterize candidate Human Exploration Zones for Mars. The original DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). The DEM, and thus orthoimage, has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. - -References: -Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. - -Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Mars Reconnaissance Orbiter CTX, Mosaic Coprates 13S293E]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=CTX_Ortho_13S293E_24mp_G07_020879_1669%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Mars Reconnaissance Orbiter CTX, Mosaic Coprates 13S293E layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Deuteronius_38N024E/CTX_Ortho_38N024E_6mp_B17_016168_2181.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Deuteronius_38N024E/CTX_Ortho_38N024E_6mp_B17_016168_2181.vrt deleted file mode 100644 index b72054dfae..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Deuteronius_38N024E/CTX_Ortho_38N024E_6mp_B17_016168_2181.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - CTX_Ortho_38N024E_6mp_B17_016168_2181.wms - 1 - - - - 0 - - - - 0 - Green - - CTX_Ortho_38N024E_6mp_B17_016168_2181.wms - 2 - - - - 0 - - - - 0 - Blue - - CTX_Ortho_38N024E_6mp_B17_016168_2181.wms - 3 - - - - 0 - - - - Alpha - - CTX_Ortho_38N024E_6mp_B17_016168_2181.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Deuteronius_38N024E/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Deuteronius_38N024E.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Deuteronius_38N024E/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Deuteronius_38N024E.asset deleted file mode 100644 index 03c4d7910f..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Deuteronius_38N024E/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Deuteronius_38N024E.asset +++ /dev/null @@ -1,33 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "CTX_Ortho_38N024E_6mp_B17_016168_2181", - Name = [[Mars Reconnaissance Orbiter CTX, Mosaic Deuteronius 38N024E]], - FilePath = asset.localResource("CTX_Ortho_38N024E_6mp_B17_016168_2181.vrt"), - Description = [[This is a CTX orthorectified image, geometrically corrected using its own source digital elevation model (DEM/DTM), as produced as part of an effort to characterize candidate Human Exploration Zones for Mars. The original DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). The DEM, and thus orthoimage, has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. - -References: -Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. - -Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Mars Reconnaissance Orbiter CTX, Mosaic Deuteronius 38N024E]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=CTX_Ortho_38N024E_6mp_B17_016168_2181%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Mars Reconnaissance Orbiter CTX, Mosaic Deuteronius 38N024E layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Deuteronius_39N024E/CTX_Ortho_39N024E_6mp_D15_032875_2196.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Deuteronius_39N024E/CTX_Ortho_39N024E_6mp_D15_032875_2196.vrt deleted file mode 100644 index f38937bb3f..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Deuteronius_39N024E/CTX_Ortho_39N024E_6mp_D15_032875_2196.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - CTX_Ortho_39N024E_6mp_D15_032875_2196.wms - 1 - - - - 0 - - - - 0 - Green - - CTX_Ortho_39N024E_6mp_D15_032875_2196.wms - 2 - - - - 0 - - - - 0 - Blue - - CTX_Ortho_39N024E_6mp_D15_032875_2196.wms - 3 - - - - 0 - - - - Alpha - - CTX_Ortho_39N024E_6mp_D15_032875_2196.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Deuteronius_39N024E/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Deuteronius_39N024E.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Deuteronius_39N024E/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Deuteronius_39N024E.asset deleted file mode 100644 index 40220990a3..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Deuteronius_39N024E/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Deuteronius_39N024E.asset +++ /dev/null @@ -1,33 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "CTX_Ortho_39N024E_6mp_D15_032875_2196", - Name = [[Mars Reconnaissance Orbiter CTX, Mosaic Deuteronius 39N024E]], - FilePath = asset.localResource("CTX_Ortho_39N024E_6mp_D15_032875_2196.vrt"), - Description = [[This is a CTX orthorectified image, geometrically corrected using its own source digital elevation model (DEM/DTM), as produced as part of an effort to characterize candidate Human Exploration Zones for Mars. The original DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). The DEM, and thus orthoimage, has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. - -References: -Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. - -Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Mars Reconnaissance Orbiter CTX, Mosaic Deuteronius 39N024E]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=CTX_Ortho_39N024E_6mp_D15_032875_2196%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Mars Reconnaissance Orbiter CTX, Mosaic Deuteronius 39N024E layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Deuteronius_40N024E/CTX_Ortho_40N022E_6mp_B18_016656_2206.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Deuteronius_40N024E/CTX_Ortho_40N022E_6mp_B18_016656_2206.vrt deleted file mode 100644 index 55a33ebc94..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Deuteronius_40N024E/CTX_Ortho_40N022E_6mp_B18_016656_2206.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - CTX_Ortho_40N022E_6mp_B18_016656_2206.wms - 1 - - - - 0 - - - - 0 - Green - - CTX_Ortho_40N022E_6mp_B18_016656_2206.wms - 2 - - - - 0 - - - - 0 - Blue - - CTX_Ortho_40N022E_6mp_B18_016656_2206.wms - 3 - - - - 0 - - - - Alpha - - CTX_Ortho_40N022E_6mp_B18_016656_2206.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Deuteronius_40N024E/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Deuteronius_40N024E.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Deuteronius_40N024E/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Deuteronius_40N024E.asset deleted file mode 100644 index eb6b66cfa7..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Deuteronius_40N024E/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Deuteronius_40N024E.asset +++ /dev/null @@ -1,33 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "CTX_Ortho_40N022E_6mp_B18_016656_2206", - Name = [[Mars Reconnaissance Orbiter CTX, Mosaic Deuteronius 40N024E]], - FilePath = asset.localResource("CTX_Ortho_40N022E_6mp_B18_016656_2206.vrt"), - Description = [[This is a CTX orthorectified image, geometrically corrected using its own source digital elevation model (DEM/DTM), as produced as part of an effort to characterize candidate Human Exploration Zones for Mars. The original DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). The DEM, and thus orthoimage, has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. - -References: -Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. - -Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Mars Reconnaissance Orbiter CTX, Mosaic Deuteronius 40N024E]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=CTX_Ortho_40N022E_6mp_B18_016656_2206%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Mars Reconnaissance Orbiter CTX, Mosaic Deuteronius 40N024E layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_11S289E/CTX_Ortho_11S289E_6mp_F23_044971_1685.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_11S289E/CTX_Ortho_11S289E_6mp_F23_044971_1685.vrt deleted file mode 100644 index 2a4e06d4ce..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_11S289E/CTX_Ortho_11S289E_6mp_F23_044971_1685.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - CTX_Ortho_11S289E_6mp_F23_044971_1685.wms - 1 - - - - 0 - - - - 0 - Green - - CTX_Ortho_11S289E_6mp_F23_044971_1685.wms - 2 - - - - 0 - - - - 0 - Blue - - CTX_Ortho_11S289E_6mp_F23_044971_1685.wms - 3 - - - - 0 - - - - Alpha - - CTX_Ortho_11S289E_6mp_F23_044971_1685.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_11S289E/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_11S289E.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_11S289E/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_11S289E.asset deleted file mode 100644 index 09c1ef62a8..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_11S289E/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_11S289E.asset +++ /dev/null @@ -1,33 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "CTX_Ortho_11S289E_6mp_F23_044971_1685", - Name = [[Mars Reconnaissance Orbiter CTX, Mosaic East Melas 11S289E]], - FilePath = asset.localResource("CTX_Ortho_11S289E_6mp_F23_044971_1685.vrt"), - Description = [[This is a CTX orthorectified image, geometrically corrected using its own source digital elevation model (DEM/DTM), as produced as part of an effort to characterize candidate Human Exploration Zones for Mars. The original DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). The DEM, and thus orthoimage, has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. - -References: -Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. - -Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Mars Reconnaissance Orbiter CTX, Mosaic East Melas 11S289E]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=CTX_Ortho_11S289E_6mp_F23_044971_1685%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Mars Reconnaissance Orbiter CTX, Mosaic East Melas 11S289E layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_11S291E/CTX_Ortho_11S291E_6mp_B19_017187_1685.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_11S291E/CTX_Ortho_11S291E_6mp_B19_017187_1685.vrt deleted file mode 100644 index 1002595bd2..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_11S291E/CTX_Ortho_11S291E_6mp_B19_017187_1685.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 5.4931640625000000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -5.4931640625000000e-03 - - 0 - Red - - CTX_Ortho_11S291E_6mp_B19_017187_1685.wms - 1 - - - - 0 - - - - 0 - Green - - CTX_Ortho_11S291E_6mp_B19_017187_1685.wms - 2 - - - - 0 - - - - 0 - Blue - - CTX_Ortho_11S291E_6mp_B19_017187_1685.wms - 3 - - - - 0 - - - - Alpha - - CTX_Ortho_11S291E_6mp_B19_017187_1685.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_11S291E/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_11S291E.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_11S291E/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_11S291E.asset deleted file mode 100644 index bae1173fb2..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_11S291E/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_11S291E.asset +++ /dev/null @@ -1,33 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "CTX_Ortho_11S291E_6mp_B19_017187_1685", - Name = [[Mars Reconnaissance Orbiter CTX, Mosaic East Melas 11S291E]], - FilePath = asset.localResource("CTX_Ortho_11S291E_6mp_B19_017187_1685.vrt"), - Description = [[This is a CTX orthorectified image, geometrically corrected using its own source digital elevation model (DEM/DTM), as produced as part of an effort to characterize candidate Human Exploration Zones for Mars. The original DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). The DEM, and thus orthoimage, has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. - -References: -Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. - -Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Mars Reconnaissance Orbiter CTX, Mosaic East Melas 11S291E]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=CTX_Ortho_11S291E_6mp_B19_017187_1685%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Mars Reconnaissance Orbiter CTX, Mosaic East Melas 11S291E layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S289E_D01/CTX_Ortho_12S289E_6mp_D01_027446_1678.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S289E_D01/CTX_Ortho_12S289E_6mp_D01_027446_1678.vrt deleted file mode 100644 index 7cfa6b9b97..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S289E_D01/CTX_Ortho_12S289E_6mp_D01_027446_1678.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - CTX_Ortho_12S289E_6mp_D01_027446_1678.wms - 1 - - - - 0 - - - - 0 - Green - - CTX_Ortho_12S289E_6mp_D01_027446_1678.wms - 2 - - - - 0 - - - - 0 - Blue - - CTX_Ortho_12S289E_6mp_D01_027446_1678.wms - 3 - - - - 0 - - - - Alpha - - CTX_Ortho_12S289E_6mp_D01_027446_1678.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S289E_D01/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S289E_D01.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S289E_D01/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S289E_D01.asset deleted file mode 100644 index c30433a47d..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S289E_D01/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S289E_D01.asset +++ /dev/null @@ -1,33 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "CTX_Ortho_12S289E_6mp_D01_027446_1678", - Name = [[Mars Reconnaissance Orbiter CTX, Mosaic East Melas 12S289E_D01]], - FilePath = asset.localResource("CTX_Ortho_12S289E_6mp_D01_027446_1678.vrt"), - Description = [[This is a CTX orthorectified image, geometrically corrected using its own source digital elevation model (DEM/DTM), as produced as part of an effort to characterize candidate Human Exploration Zones for Mars. The original DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). The DEM, and thus orthoimage, has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. - -References: -Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. - -Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Mars Reconnaissance Orbiter CTX, Mosaic East Melas 12S289E_D01]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=CTX_Ortho_12S289E_6mp_D01_027446_1678%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Mars Reconnaissance Orbiter CTX, Mosaic East Melas 12S289E_D01 layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S289E_F18/CTX_Ortho_12S289E_6mp_F18_042927_1681.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S289E_F18/CTX_Ortho_12S289E_6mp_F18_042927_1681.vrt deleted file mode 100644 index b1b644cfec..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S289E_F18/CTX_Ortho_12S289E_6mp_F18_042927_1681.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - CTX_Ortho_12S289E_6mp_F18_042927_1681.wms - 1 - - - - 0 - - - - 0 - Green - - CTX_Ortho_12S289E_6mp_F18_042927_1681.wms - 2 - - - - 0 - - - - 0 - Blue - - CTX_Ortho_12S289E_6mp_F18_042927_1681.wms - 3 - - - - 0 - - - - Alpha - - CTX_Ortho_12S289E_6mp_F18_042927_1681.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S289E_F18/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S289E_F18.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S289E_F18/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S289E_F18.asset deleted file mode 100644 index 2cd76a7563..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S289E_F18/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S289E_F18.asset +++ /dev/null @@ -1,33 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "CTX_Ortho_12S289E_6mp_F18_042927_1681", - Name = [[Mars Reconnaissance Orbiter CTX, Mosaic East Melas 12S289E_F18]], - FilePath = asset.localResource("CTX_Ortho_12S289E_6mp_F18_042927_1681.vrt"), - Description = [[This is a CTX orthorectified image, geometrically corrected using its own source digital elevation model (DEM/DTM), as produced as part of an effort to characterize candidate Human Exploration Zones for Mars. The original DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). The DEM, and thus orthoimage, has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. - -References: -Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. - -Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Mars Reconnaissance Orbiter CTX, Mosaic East Melas 12S289E_F18]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=CTX_Ortho_12S289E_6mp_F18_042927_1681%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Mars Reconnaissance Orbiter CTX, Mosaic East Melas 12S289E_F18 layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S290E/CTX_Ortho_12S290E_6mp_D18_034250_1676.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S290E/CTX_Ortho_12S290E_6mp_D18_034250_1676.vrt deleted file mode 100644 index 78c0b1931a..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S290E/CTX_Ortho_12S290E_6mp_D18_034250_1676.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - CTX_Ortho_12S290E_6mp_D18_034250_1676.wms - 1 - - - - 0 - - - - 0 - Green - - CTX_Ortho_12S290E_6mp_D18_034250_1676.wms - 2 - - - - 0 - - - - 0 - Blue - - CTX_Ortho_12S290E_6mp_D18_034250_1676.wms - 3 - - - - 0 - - - - Alpha - - CTX_Ortho_12S290E_6mp_D18_034250_1676.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S290E/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S290E.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S290E/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S290E.asset deleted file mode 100644 index ae6d9e5d0a..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S290E/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S290E.asset +++ /dev/null @@ -1,33 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "CTX_Ortho_12S290E_6mp_D18_034250_1676", - Name = [[Mars Reconnaissance Orbiter CTX, Mosaic East Melas 12S290E]], - FilePath = asset.localResource("CTX_Ortho_12S290E_6mp_D18_034250_1676.vrt"), - Description = [[This is a CTX orthorectified image, geometrically corrected using its own source digital elevation model (DEM/DTM), as produced as part of an effort to characterize candidate Human Exploration Zones for Mars. The original DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). The DEM, and thus orthoimage, has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. - -References: -Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. - -Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Mars Reconnaissance Orbiter CTX, Mosaic East Melas 12S290E]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=CTX_Ortho_12S290E_6mp_D18_034250_1676%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Mars Reconnaissance Orbiter CTX, Mosaic East Melas 12S290E layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S291E_F14/F14_041292_1682_map_ba_align_6_fill500-DRG.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S291E_F14/F14_041292_1682_map_ba_align_6_fill500-DRG.vrt deleted file mode 100644 index 8add6fee40..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S291E_F14/F14_041292_1682_map_ba_align_6_fill500-DRG.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - F14_041292_1682_map_ba_align_6_fill500-DRG.wms - 1 - - - - 0 - - - - 0 - Green - - F14_041292_1682_map_ba_align_6_fill500-DRG.wms - 2 - - - - 0 - - - - 0 - Blue - - F14_041292_1682_map_ba_align_6_fill500-DRG.wms - 3 - - - - 0 - - - - Alpha - - F14_041292_1682_map_ba_align_6_fill500-DRG.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S291E_F14/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S291E_F14.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S291E_F14/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S291E_F14.asset deleted file mode 100644 index dbda48f197..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S291E_F14/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S291E_F14.asset +++ /dev/null @@ -1,33 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "F14_041292_1682_map_ba_align_6_fill500-DRG", - Name = [[Mars Reconnaissance Orbiter CTX, Mosaic East Melas 12S291E_F14]], - FilePath = asset.localResource("F14_041292_1682_map_ba_align_6_fill500-DRG.vrt"), - Description = [[This is a CTX orthorectified image, geometrically corrected using its own source digital elevation model (DEM/DTM), as produced as part of an effort to characterize candidate Human Exploration Zones for Mars. The original DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). The DEM, and thus orthoimage, has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. - -References: -Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. - -Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Mars Reconnaissance Orbiter CTX, Mosaic East Melas 12S291E_F14]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=F14_041292_1682_map_ba_align_6_fill500-DRG%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Mars Reconnaissance Orbiter CTX, Mosaic East Melas 12S291E_F14 layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S291E_F21/CTX_Ortho_12S291E_6mp_F21_043850_1684.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S291E_F21/CTX_Ortho_12S291E_6mp_F21_043850_1684.vrt deleted file mode 100644 index c47a079ff2..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S291E_F21/CTX_Ortho_12S291E_6mp_F21_043850_1684.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - CTX_Ortho_12S291E_6mp_F21_043850_1684.wms - 1 - - - - 0 - - - - 0 - Green - - CTX_Ortho_12S291E_6mp_F21_043850_1684.wms - 2 - - - - 0 - - - - 0 - Blue - - CTX_Ortho_12S291E_6mp_F21_043850_1684.wms - 3 - - - - 0 - - - - Alpha - - CTX_Ortho_12S291E_6mp_F21_043850_1684.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S291E_F21/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S291E_F21.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S291E_F21/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S291E_F21.asset deleted file mode 100644 index ce45b685f0..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S291E_F21/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S291E_F21.asset +++ /dev/null @@ -1,33 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "CTX_Ortho_12S291E_6mp_F21_043850_1684", - Name = [[Mars Reconnaissance Orbiter CTX, Mosaic East Melas 12S291E_F21]], - FilePath = asset.localResource("CTX_Ortho_12S291E_6mp_F21_043850_1684.vrt"), - Description = [[This is a CTX orthorectified image, geometrically corrected using its own source digital elevation model (DEM/DTM), as produced as part of an effort to characterize candidate Human Exploration Zones for Mars. The original DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). The DEM, and thus orthoimage, has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. - -References: -Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. - -Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Mars Reconnaissance Orbiter CTX, Mosaic East Melas 12S291E_F21]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=CTX_Ortho_12S291E_6mp_F21_043850_1684%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Mars Reconnaissance Orbiter CTX, Mosaic East Melas 12S291E_F21 layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S291E_J01/CTX_Ortho_12S291E_6mp_J01_045116_1677.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S291E_J01/CTX_Ortho_12S291E_6mp_J01_045116_1677.vrt deleted file mode 100644 index 4338b44bb0..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S291E_J01/CTX_Ortho_12S291E_6mp_J01_045116_1677.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - CTX_Ortho_12S291E_6mp_J01_045116_1677.wms - 1 - - - - 0 - - - - 0 - Green - - CTX_Ortho_12S291E_6mp_J01_045116_1677.wms - 2 - - - - 0 - - - - 0 - Blue - - CTX_Ortho_12S291E_6mp_J01_045116_1677.wms - 3 - - - - 0 - - - - Alpha - - CTX_Ortho_12S291E_6mp_J01_045116_1677.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S291E_J01/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S291E_J01.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S291E_J01/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S291E_J01.asset deleted file mode 100644 index 04d4c9041c..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S291E_J01/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S291E_J01.asset +++ /dev/null @@ -1,33 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "CTX_Ortho_12S291E_6mp_J01_045116_1677", - Name = [[Mars Reconnaissance Orbiter CTX, Mosaic East Melas 12S291E_J01]], - FilePath = asset.localResource("CTX_Ortho_12S291E_6mp_J01_045116_1677.vrt"), - Description = [[This is a CTX orthorectified image, geometrically corrected using its own source digital elevation model (DEM/DTM), as produced as part of an effort to characterize candidate Human Exploration Zones for Mars. The original DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). The DEM, and thus orthoimage, has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. - -References: -Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. - -Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Mars Reconnaissance Orbiter CTX, Mosaic East Melas 12S291E_J01]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=CTX_Ortho_12S291E_6mp_J01_045116_1677%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Mars Reconnaissance Orbiter CTX, Mosaic East Melas 12S291E_J01 layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_13S289E_D10/CTX_Ortho_13S289E_6mp_D10_031125_1673.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_13S289E_D10/CTX_Ortho_13S289E_6mp_D10_031125_1673.vrt deleted file mode 100644 index f1cd813b50..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_13S289E_D10/CTX_Ortho_13S289E_6mp_D10_031125_1673.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 4.2915344238281250e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -4.2915344238281250e-05 - - 0 - Red - - CTX_Ortho_13S289E_6mp_D10_031125_1673.wms - 1 - - - - 0 - - - - 0 - Green - - CTX_Ortho_13S289E_6mp_D10_031125_1673.wms - 2 - - - - 0 - - - - 0 - Blue - - CTX_Ortho_13S289E_6mp_D10_031125_1673.wms - 3 - - - - 0 - - - - Alpha - - CTX_Ortho_13S289E_6mp_D10_031125_1673.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_13S289E_D10/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_13S289E_D10.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_13S289E_D10/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_13S289E_D10.asset deleted file mode 100644 index a725739b52..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_13S289E_D10/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_13S289E_D10.asset +++ /dev/null @@ -1,33 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "CTX_Ortho_13S289E_6mp_D10_031125_1673", - Name = [[Mars Reconnaissance Orbiter CTX, Mosaic East Melas 13S289E_D10]], - FilePath = asset.localResource("CTX_Ortho_13S289E_6mp_D10_031125_1673.vrt"), - Description = [[This is a CTX orthorectified image, geometrically corrected using its own source digital elevation model (DEM/DTM), as produced as part of an effort to characterize candidate Human Exploration Zones for Mars. The original DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). The DEM, and thus orthoimage, has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. - -References: -Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. - -Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Mars Reconnaissance Orbiter CTX, Mosaic East Melas 13S289E_D10]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=CTX_Ortho_13S289E_6mp_D10_031125_1673%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Mars Reconnaissance Orbiter CTX, Mosaic East Melas 13S289E_D10 layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_16S291E/CTX_Ortho_16S291E_6mp_D22_035951_1644.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_16S291E/CTX_Ortho_16S291E_6mp_D22_035951_1644.vrt deleted file mode 100644 index 9c9b182593..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_16S291E/CTX_Ortho_16S291E_6mp_D22_035951_1644.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 2.7465820312500000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -2.7465820312500000e-03 - - 0 - Red - - CTX_Ortho_16S291E_6mp_D22_035951_1644.wms - 1 - - - - 0 - - - - 0 - Green - - CTX_Ortho_16S291E_6mp_D22_035951_1644.wms - 2 - - - - 0 - - - - 0 - Blue - - CTX_Ortho_16S291E_6mp_D22_035951_1644.wms - 3 - - - - 0 - - - - Alpha - - CTX_Ortho_16S291E_6mp_D22_035951_1644.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_16S291E/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_16S291E.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_16S291E/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_16S291E.asset deleted file mode 100644 index 0a14482973..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_16S291E/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_16S291E.asset +++ /dev/null @@ -1,33 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "CTX_Ortho_16S291E_6mp_D22_035951_1644", - Name = [[Mars Reconnaissance Orbiter CTX, Mosaic East Melas 16S291E]], - FilePath = asset.localResource("CTX_Ortho_16S291E_6mp_D22_035951_1644.vrt"), - Description = [[This is a CTX orthorectified image, geometrically corrected using its own source digital elevation model (DEM/DTM), as produced as part of an effort to characterize candidate Human Exploration Zones for Mars. The original DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). The DEM, and thus orthoimage, has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. - -References: -Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. - -Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Mars Reconnaissance Orbiter CTX, Mosaic East Melas 16S291E]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=CTX_Ortho_16S291E_6mp_D22_035951_1644%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Mars Reconnaissance Orbiter CTX, Mosaic East Melas 16S291E layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Slope_Apollinaris_12S182E/CTX_Slope_12S182E_24mp_P22_009609_1674_B02_010453_1675.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Slope_Apollinaris_12S182E/CTX_Slope_12S182E_24mp_P22_009609_1674_B02_010453_1675.vrt deleted file mode 100644 index fc66a3537e..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Slope_Apollinaris_12S182E/CTX_Slope_12S182E_24mp_P22_009609_1674_B02_010453_1675.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 - - 0 - Red - - CTX_Slope_12S182E_24mp_P22_009609_1674_B02_010453_1675.wms - 1 - - - - 0 - - - - 0 - Green - - CTX_Slope_12S182E_24mp_P22_009609_1674_B02_010453_1675.wms - 2 - - - - 0 - - - - 0 - Blue - - CTX_Slope_12S182E_24mp_P22_009609_1674_B02_010453_1675.wms - 3 - - - - 0 - - - - Alpha - - CTX_Slope_12S182E_24mp_P22_009609_1674_B02_010453_1675.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Slope_Apollinaris_12S182E/Mars_Reconnaissance_Orbiter_CTX_Slope_Apollinaris_12S182E.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Slope_Apollinaris_12S182E/Mars_Reconnaissance_Orbiter_CTX_Slope_Apollinaris_12S182E.asset deleted file mode 100644 index 9cae98dc48..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Slope_Apollinaris_12S182E/Mars_Reconnaissance_Orbiter_CTX_Slope_Apollinaris_12S182E.asset +++ /dev/null @@ -1,35 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "CTX_Slope_12S182E_24mp_P22_009609_1674_B02_010453_1675", - Name = [[Mars Reconnaissance Orbiter CTX, Slope Apollinaris 12S182E]], - FilePath = asset.localResource("CTX_Slope_12S182E_24mp_P22_009609_1674_B02_010453_1675.vrt"), - Description = [[This is a colorized version of the original 2x2 pixel slope in degrees (also called a 1 baseline slope). This was produced as part of an effort to characterize topography within candidate Human Exploration Zones for Mars. The DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). THe DEM has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. - -References: -Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. - -Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261. - -Slopes were derived using the Python script called gdal_baseline_slope.py: https://github.com/USGS-Astrogeology/GDAL_scripts/blob/master/gdal_baseline_slope ]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Mars Reconnaissance Orbiter CTX, Slope Apollinaris 12S182E]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=CTX_Slope_12S182E_24mp_P22_009609_1674_B02_010453_1675%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Mars Reconnaissance Orbiter CTX, Slope Apollinaris 12S182E layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Slope_Apollinaris_13S182E/CTX_Slope_13S182E_24mp_G15_024127_1673_G16_024483_1673.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Slope_Apollinaris_13S182E/CTX_Slope_13S182E_24mp_G15_024127_1673_G16_024483_1673.vrt deleted file mode 100644 index 3627705964..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Slope_Apollinaris_13S182E/CTX_Slope_13S182E_24mp_G15_024127_1673_G16_024483_1673.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 - - 0 - Red - - CTX_Slope_13S182E_24mp_G15_024127_1673_G16_024483_1673.wms - 1 - - - - 0 - - - - 0 - Green - - CTX_Slope_13S182E_24mp_G15_024127_1673_G16_024483_1673.wms - 2 - - - - 0 - - - - 0 - Blue - - CTX_Slope_13S182E_24mp_G15_024127_1673_G16_024483_1673.wms - 3 - - - - 0 - - - - Alpha - - CTX_Slope_13S182E_24mp_G15_024127_1673_G16_024483_1673.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Slope_Apollinaris_13S182E/Mars_Reconnaissance_Orbiter_CTX_Slope_Apollinaris_13S182E.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Slope_Apollinaris_13S182E/Mars_Reconnaissance_Orbiter_CTX_Slope_Apollinaris_13S182E.asset deleted file mode 100644 index e46c6764ab..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Slope_Apollinaris_13S182E/Mars_Reconnaissance_Orbiter_CTX_Slope_Apollinaris_13S182E.asset +++ /dev/null @@ -1,35 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "CTX_Slope_13S182E_24mp_G15_024127_1673_G16_024483_1673", - Name = [[Mars Reconnaissance Orbiter CTX, Slope Apollinaris 13S182E]], - FilePath = asset.localResource("CTX_Slope_13S182E_24mp_G15_024127_1673_G16_024483_1673.vrt"), - Description = [[This is a colorized version of the original 2x2 pixel slope in degrees (also called a 1 baseline slope). This was produced as part of an effort to characterize topography within candidate Human Exploration Zones for Mars. The DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). THe DEM has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. - -References: -Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. - -Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261. - -Slopes were derived using the Python script called gdal_baseline_slope.py: https://github.com/USGS-Astrogeology/GDAL_scripts/blob/master/gdal_baseline_slope ]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Mars Reconnaissance Orbiter CTX, Slope Apollinaris 13S182E]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=CTX_Slope_13S182E_24mp_G15_024127_1673_G16_024483_1673%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Mars Reconnaissance Orbiter CTX, Slope Apollinaris 13S182E layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Slope_Apollinaris_14S184E/CTX_Slope_14S184E_24mp_B01_009886_1658_P21_009385_1658.vrt b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Slope_Apollinaris_14S184E/CTX_Slope_14S184E_24mp_B01_009886_1658_P21_009385_1658.vrt deleted file mode 100644 index 69f40d3c8f..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Slope_Apollinaris_14S184E/CTX_Slope_14S184E_24mp_B01_009886_1658_P21_009385_1658.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mars_2000",DATUM["D_Mars_2000",SPHEROID["Mars_2000_IAU_IAG",3396190.0,169.8944472236118]],PRIMEM["Reference_Meridian",0.0],UNIT["Degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.7166137695312500e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.7166137695312500e-04 - - 0 - Red - - CTX_Slope_14S184E_24mp_B01_009886_1658_P21_009385_1658.wms - 1 - - - - 0 - - - - 0 - Green - - CTX_Slope_14S184E_24mp_B01_009886_1658_P21_009385_1658.wms - 2 - - - - 0 - - - - 0 - Blue - - CTX_Slope_14S184E_24mp_B01_009886_1658_P21_009385_1658.wms - 3 - - - - 0 - - - - Alpha - - CTX_Slope_14S184E_24mp_B01_009886_1658_P21_009385_1658.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Slope_Apollinaris_14S184E/Mars_Reconnaissance_Orbiter_CTX_Slope_Apollinaris_14S184E.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Slope_Apollinaris_14S184E/Mars_Reconnaissance_Orbiter_CTX_Slope_Apollinaris_14S184E.asset deleted file mode 100644 index ca98d3ba14..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/Mars_Reconnaissance_Orbiter_CTX_Slope_Apollinaris_14S184E/Mars_Reconnaissance_Orbiter_CTX_Slope_Apollinaris_14S184E.asset +++ /dev/null @@ -1,35 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mars/mars").Mars.Identifier - -local layer = { - Identifier = "CTX_Slope_14S184E_24mp_B01_009886_1658_P21_009385_1658", - Name = [[Mars Reconnaissance Orbiter CTX, Slope Apollinaris 14S184E]], - FilePath = asset.localResource("CTX_Slope_14S184E_24mp_B01_009886_1658_P21_009385_1658.vrt"), - Description = [[This is a colorized version of the original 2x2 pixel slope in degrees (also called a 1 baseline slope). This was produced as part of an effort to characterize topography within candidate Human Exploration Zones for Mars. The DEM was constructed from a pair of CTX images using the stereo photogrammetry software AMES Stereo Pipeline (ASP). THe DEM has been tied to MOLA and can be considered resarch- and visualization-ready. Because it has not been manually edited using a full 3D editing environment, ASP DEMs cannot currently be considered true engineering-ready for performing landings. - -References: -Shean, D. E., O. Alexandrov, Z. Moratto, B. E. Smith, I. R. Joughin, C. C. Porter, P. J., Morin, 2016, An automated, open-source pipeline for mass production of digital elevation models (DEMs) from very high-resolution commercial stereo satellite imagery, ISPRS Journal of Photogrammetry and Remote Sensing, 116. - -Mayer, D. P., E. S. Kite, 2016, An Integrated Workflow for Producing Digital Terrain Models Of Mars from CTX And HiRISE Stereo Data Using the NASA Ames Stereo Pipeline, 47th Lunar and Planetary Science Conference, Abstract 1261. - -Slopes were derived using the Python script called gdal_baseline_slope.py: https://github.com/USGS-Astrogeology/GDAL_scripts/blob/master/gdal_baseline_slope ]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[Mars Reconnaissance Orbiter CTX, Slope Apollinaris 14S184E]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mars/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:EPSG::104905&d=&l=CTX_Slope_14S184E_24mp_B01_009886_1658_P21_009385_1658%2Ctrue%2C1&b=mars&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[Mars Reconnaissance Orbiter CTX, Slope Apollinaris 14S184E layer from NASA/Treks for Mars]] -} diff --git a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/all_treks_layers.asset b/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/all_treks_layers.asset deleted file mode 100644 index 70fc5f036f..0000000000 --- a/data/assets/scene/solarsystem/planets/mars/layers/nasa-treks/all_treks_layers.asset +++ /dev/null @@ -1,157 +0,0 @@ -asset.require("./MEX_HRSC_Martian_Path_Eastern_Section_DEM/MEX_HRSC_Martian_Path_Eastern_Section_DEM") -asset.require("./MEX_HRSC_Martian_Path_MC11_Quad_DEM/MEX_HRSC_Martian_Path_MC11_Quad_DEM") -asset.require("./MGS_MOC_Atlas_Global_Color_Mosaic/MGS_MOC_Atlas_Global_Color_Mosaic") -asset.require("./MGS_MOLA_and_Mars_Express_HRSC_Color_Hillshade_Blend/MGS_MOLA_and_Mars_Express_HRSC_Color_Hillshade_Blend") -asset.require("./MGS_MOLA_and_Mars_Express_HRSC_Hillshade_Blend/MGS_MOLA_and_Mars_Express_HRSC_Hillshade_Blend") -asset.require("./MGS_MOLA_Global_Color_Hillshade/MGS_MOLA_Global_Color_Hillshade") -asset.require("./MGS_MOLA_Global_DEM/MGS_MOLA_Global_DEM") -asset.require("./MGS_MOLA_Global_Surface_Roughness/MGS_MOLA_Global_Surface_Roughness") -asset.require("./MGS_TES_Global_Dust/MGS_TES_Global_Dust") -asset.require("./MGS_TES_Global_Dust_Index/MGS_TES_Global_Dust_Index") -asset.require("./MGS_TES_Global_High-Ca_Pyroxene_Abundance/MGS_TES_Global_High-Ca_Pyroxene_Abundance") -asset.require("./MGS_TES_Global_Plagioclase_Abundance/MGS_TES_Global_Plagioclase_Abundance") -asset.require("./MGS_TES_Global_Sheet_SilicatesHigh-Si_Glass/MGS_TES_Global_Sheet_SilicatesHigh-Si_Glass") -asset.require("./MGS_TES_Global_Thermal_Inertia/MGS_TES_Global_Thermal_Inertia") -asset.require("./MO_THEMIS-IR_Day_Global_Mosaic/MO_THEMIS-IR_Day_Global_Mosaic") -asset.require("./MO_THEMIS-IR_Night_Global_Mosaic/MO_THEMIS-IR_Night_Global_Mosaic") -asset.require("./MRO_CTX_22n048w_Mosaic/MRO_CTX_22n048w_Mosaic") -asset.require("./MRO_CTX_Acheron_Fossae_Mosaic/MRO_CTX_Acheron_Fossae_Mosaic") -asset.require("./MRO_CTX_Acidalia_Plantia_Mosaic/MRO_CTX_Acidalia_Plantia_Mosaic") -asset.require("./MRO_CTX_Arabia_Terra_Mosaic/MRO_CTX_Arabia_Terra_Mosaic") -asset.require("./MRO_CTX_Aram_Chaos_Mosaic/MRO_CTX_Aram_Chaos_Mosaic") -asset.require("./MRO_CTX_Arcadia_Mosaic/MRO_CTX_Arcadia_Mosaic") -asset.require("./MRO_CTX_Arcadia_Planitia_Mosaic/MRO_CTX_Arcadia_Planitia_Mosaic") -asset.require("./MRO_CTX_Ausonia_Mosaic/MRO_CTX_Ausonia_Mosaic") -asset.require("./MRO_CTX_Cerberus_Mosaic/MRO_CTX_Cerberus_Mosaic") -asset.require("./MRO_CTX_Columbia_Hills_DEM/MRO_CTX_Columbia_Hills_DEM") -asset.require("./MRO_CTX_Columbus_Crater_Mosaic/MRO_CTX_Columbus_Crater_Mosaic") -asset.require("./MRO_CTX_Copernicus_Crater_Mosaic/MRO_CTX_Copernicus_Crater_Mosaic") -asset.require("./MRO_CTX_Coprates_EMelas_Chasm_Mosaic/MRO_CTX_Coprates_EMelas_Chasm_Mosaic") -asset.require("./MRO_CTX_Curiosity_Roving_Site_Mosaic/MRO_CTX_Curiosity_Roving_Site_Mosaic") -asset.require("./MRO_CTX_Deuteronilus_Mensae_Mosaic/MRO_CTX_Deuteronilus_Mensae_Mosaic") -asset.require("./MRO_CTX_East_Melas_DEM/MRO_CTX_East_Melas_DEM") -asset.require("./MRO_CTX_East_Melas_Hillshade/MRO_CTX_East_Melas_Hillshade") -asset.require("./MRO_CTX_Eastern_Valles_Marineris_Mosaic/MRO_CTX_Eastern_Valles_Marineris_Mosaic") -asset.require("./MRO_CTX_Equatorial_Valles_Marineries_Mosaic/MRO_CTX_Equatorial_Valles_Marineries_Mosaic") -asset.require("./MRO_CTX_Erebus_Montes_Mosaic/MRO_CTX_Erebus_Montes_Mosaic") -asset.require("./MRO_CTX_Gale_Crater_Mosaic/MRO_CTX_Gale_Crater_Mosaic") -asset.require("./MRO_CTX_Gusev_Crater_Mosaic/MRO_CTX_Gusev_Crater_Mosaic") -asset.require("./MRO_CTX_Hadriacus_Mosaic/MRO_CTX_Hadriacus_Mosaic") -asset.require("./MRO_CTX_Hale_Crater_Mosaic/MRO_CTX_Hale_Crater_Mosaic") -asset.require("./MRO_CTX_Hebrus_Valles_Mosaic/MRO_CTX_Hebrus_Valles_Mosaic") -asset.require("./MRO_CTX_Hellas_Eastern_Rim_Mosaic/MRO_CTX_Hellas_Eastern_Rim_Mosaic") -asset.require("./MRO_CTX_Hellas_Mesopotamia_Mosaic/MRO_CTX_Hellas_Mesopotamia_Mosaic") -asset.require("./MRO_CTX_Huygens_Crater_Mosaic/MRO_CTX_Huygens_Crater_Mosaic") -asset.require("./MRO_CTX_Hypanis_Delta_Mosaic/MRO_CTX_Hypanis_Delta_Mosaic") -asset.require("./MRO_CTX_Ismenius_Cavus_Mosaic/MRO_CTX_Ismenius_Cavus_Mosaic") -asset.require("./MRO_CTX_Jezero_Mosaic_Preliminary/MRO_CTX_Jezero_Mosaic_Preliminary") -asset.require("./MRO_CTX_Kasei_Valles_Mosaic/MRO_CTX_Kasei_Valles_Mosaic") -asset.require("./MRO_CTX_Mawrth_Vallis_Mosaic/MRO_CTX_Mawrth_Vallis_Mosaic") -asset.require("./MRO_CTX_McLaughlin_Crater_Mosaic/MRO_CTX_McLaughlin_Crater_Mosaic") -asset.require("./MRO_CTX_Meridiani_Planum_-_Sinus_Meridiani_Mosaic/MRO_CTX_Meridiani_Planum_-_Sinus_Meridiani_Mosaic") -asset.require("./MRO_CTX_Mosaic_Global_Uncontrolled_(Caltech)/MRO_CTX_Mosaic_Global_Uncontrolled_(Caltech)") -asset.require("./MRO_CTX_Mosaic_InSight/MRO_CTX_Mosaic_InSight") -asset.require("./MRO_CTX_Mosaic_Olympus_Mons/MRO_CTX_Mosaic_Olympus_Mons") -asset.require("./MRO_CTX_Newton_Crater_Mosaic/MRO_CTX_Newton_Crater_Mosaic") -asset.require("./MRO_CTX_Noctis_Landing_Mosaic/MRO_CTX_Noctis_Landing_Mosaic") -asset.require("./MRO_CTX_Protonilus_Mensae_Mosaic/MRO_CTX_Protonilus_Mensae_Mosaic") -asset.require("./MRO_CTX_Southern_Nectaris_Fossae_Mosaic/MRO_CTX_Southern_Nectaris_Fossae_Mosaic") -asset.require("./MRO_CTX_Victoria_Crater_DEM/MRO_CTX_Victoria_Crater_DEM") -asset.require("./MRO_CTX_Viking_1_Landing_Site_Mosaic/MRO_CTX_Viking_1_Landing_Site_Mosaic") -asset.require("./MRO_CTX_Viking_2_Landing_Site_Mosaic/MRO_CTX_Viking_2_Landing_Site_Mosaic") -asset.require("./MRO_CTX_West_Candor_Chasma_Mosaic/MRO_CTX_West_Candor_Chasma_Mosaic") -asset.require("./MRO_CTX_West_Candor_DEM/MRO_CTX_West_Candor_DEM") -asset.require("./MRO_CTX_Western_Noachis_Terra_Mosaic/MRO_CTX_Western_Noachis_Terra_Mosaic") -asset.require("./MRO_CTX_Zephyria_Planum_Mosaic/MRO_CTX_Zephyria_Planum_Mosaic") -asset.require("./MRO_HiRISE_001918_1735_001984_1735_DEM/MRO_HiRISE_001918_1735_001984_1735_DEM") -asset.require("./MRO_HiRISE_042014_1760_042647_1760_DEM/MRO_HiRISE_042014_1760_042647_1760_DEM") -asset.require("./MRO_HiRISE_042753_1930_042252_1930_DEM/MRO_HiRISE_042753_1930_042252_1930_DEM") -asset.require("./MRO_HiRISE_1183_0000_DEM/MRO_HiRISE_1183_0000_DEM") -asset.require("./MRO_HiRISE_Columbia_Hills_Mosaic/MRO_HiRISE_Columbia_Hills_Mosaic") -asset.require("./MRO_HiRISE_Curiosity_Roving_Site_Mosaic/MRO_HiRISE_Curiosity_Roving_Site_Mosaic") -asset.require("./MRO_HiRISE_Gale_Crater_DEM/MRO_HiRISE_Gale_Crater_DEM") -asset.require("./MRO_HiRISE_Marth_Crater_West_Rim_Mosaic/MRO_HiRISE_Marth_Crater_West_Rim_Mosaic") -asset.require("./MRO_HiRISE_Martian_Ares_3_Landing_Site_Mosaic/MRO_HiRISE_Martian_Ares_3_Landing_Site_Mosaic") -asset.require("./MRO_HiRISE_Martian_Ares_4_Landing_Site_Mosaic/MRO_HiRISE_Martian_Ares_4_Landing_Site_Mosaic") -asset.require("./MRO_HiRISE_Mosaic_Columbia_Hills/MRO_HiRISE_Mosaic_Columbia_Hills") -asset.require("./MRO_HiRISE_Mosaic_Insight_Landing_Site/MRO_HiRISE_Mosaic_Insight_Landing_Site") -asset.require("./MRO_HiRISE_Mosaic_Jezero_NE_Syrtis_Midway/MRO_HiRISE_Mosaic_Jezero_NE_Syrtis_Midway") -asset.require("./MRO_HiRISE_Mosaic_Opportunity/MRO_HiRISE_Mosaic_Opportunity") -asset.require("./MRO_HiRISE_Opportunity_Roving_Site_Mosaic/MRO_HiRISE_Opportunity_Roving_Site_Mosaic") -asset.require("./MRO_HiRISE_Phoenix_Landing_Site_Mosaic/MRO_HiRISE_Phoenix_Landing_Site_Mosaic") -asset.require("./MRO_HiRISE_Sojourner_Roving_Site_Mosaic/MRO_HiRISE_Sojourner_Roving_Site_Mosaic") -asset.require("./MRO_HiRISE_Southwest_Candor_Chasma_Mosaic/MRO_HiRISE_Southwest_Candor_Chasma_Mosaic") -asset.require("./MRO_HiRISE_Spirit_Roving_Site_Mosaic/MRO_HiRISE_Spirit_Roving_Site_Mosaic") -asset.require("./MRO_HiRISE_Viking_1_Landing_Site_Mosaic/MRO_HiRISE_Viking_1_Landing_Site_Mosaic") -asset.require("./MRO_HiRISE_Viking_2_Landing_Site_Mosaic/MRO_HiRISE_Viking_2_Landing_Site_Mosaic") -asset.require("./MSL_Pahrump_Hills/MSL_Pahrump_Hills") -asset.require("./Mars_Express_HRSC_Martian_Path_Eastern_Section_Color_Mosaic/Mars_Express_HRSC_Martian_Path_Eastern_Section_Color_Mosaic") -asset.require("./Mars_Express_HRSC_Martian_Path_MC11_Quad_Color_Mosaic/Mars_Express_HRSC_Martian_Path_MC11_Quad_Color_Mosaic") -asset.require("./Mars_Express_HRSC_Martian_Path_MC11_Quad_Mosaic/Mars_Express_HRSC_Martian_Path_MC11_Quad_Mosaic") -asset.require("./Mars_Express_HRSC_Mawrth_Vallis_Color_Mosaic/Mars_Express_HRSC_Mawrth_Vallis_Color_Mosaic") -asset.require("./Mars_Express_HRSC_Mawrth_Vallis_Mosaic/Mars_Express_HRSC_Mawrth_Vallis_Mosaic") -asset.require("./Mars_Express_HRSC_Viking_1_Landing_Site_Mosaic/Mars_Express_HRSC_Viking_1_Landing_Site_Mosaic") -asset.require("./Mars_Express_HRSC_Viking_2_Landing_Site_Mosaic/Mars_Express_HRSC_Viking_2_Landing_Site_Mosaic") -asset.require("./Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Apollinaris_12S182E/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Apollinaris_12S182E") -asset.require("./Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Apollinaris_13S182E/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Apollinaris_13S182E") -asset.require("./Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Apollinaris_14S184E/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Apollinaris_14S184E") -asset.require("./Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Coprates_10S291E/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Coprates_10S291E") -asset.require("./Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Coprates_11S293E/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Coprates_11S293E") -asset.require("./Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Coprates_13S293E/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Coprates_13S293E") -asset.require("./Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Deuteronius_37N024E/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Deuteronius_37N024E") -asset.require("./Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Deuteronius_38N024E/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Deuteronius_38N024E") -asset.require("./Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Deuteronius_39N024E/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Deuteronius_39N024E") -asset.require("./Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Deuteronius_40N024E/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_Deuteronius_40N024E") -asset.require("./Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_11S289E/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_11S289E") -asset.require("./Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_11S291E/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_11S291E") -asset.require("./Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S289E_D01/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S289E_D01") -asset.require("./Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S289E_F18/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S289E_F18") -asset.require("./Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S290E/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S290E") -asset.require("./Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S291E_F14/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S291E_F14") -asset.require("./Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S291E_F21/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S291E_F21") -asset.require("./Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S291E_J01/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_12S291E_J01") -asset.require("./Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_13S289E/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_13S289E") -asset.require("./Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_16S291E_D22/Mars_Reconnaissance_Orbiter_CTX_Color_Slope_East_Melas_16S291E_D22") -asset.require("./Mars_Reconnaissance_Orbiter_CTX_HillShade_Apollinaris_12S182E/Mars_Reconnaissance_Orbiter_CTX_HillShade_Apollinaris_12S182E") -asset.require("./Mars_Reconnaissance_Orbiter_CTX_HillShade_Apollinaris_13S182E/Mars_Reconnaissance_Orbiter_CTX_HillShade_Apollinaris_13S182E") -asset.require("./Mars_Reconnaissance_Orbiter_CTX_HillShade_Apollinaris_14S184E/Mars_Reconnaissance_Orbiter_CTX_HillShade_Apollinaris_14S184E") -asset.require("./Mars_Reconnaissance_Orbiter_CTX_HillShade_Coprates_10S291E/Mars_Reconnaissance_Orbiter_CTX_HillShade_Coprates_10S291E") -asset.require("./Mars_Reconnaissance_Orbiter_CTX_HillShade_Coprates_11S293E/Mars_Reconnaissance_Orbiter_CTX_HillShade_Coprates_11S293E") -asset.require("./Mars_Reconnaissance_Orbiter_CTX_HillShade_Coprates_13S293E/Mars_Reconnaissance_Orbiter_CTX_HillShade_Coprates_13S293E") -asset.require("./Mars_Reconnaissance_Orbiter_CTX_HillShade_Deuteronius_37N024E/Mars_Reconnaissance_Orbiter_CTX_HillShade_Deuteronius_37N024E") -asset.require("./Mars_Reconnaissance_Orbiter_CTX_HillShade_Deuteronius_38N024E/Mars_Reconnaissance_Orbiter_CTX_HillShade_Deuteronius_38N024E") -asset.require("./Mars_Reconnaissance_Orbiter_CTX_HillShade_Deuteronius_39N024E/Mars_Reconnaissance_Orbiter_CTX_HillShade_Deuteronius_39N024E") -asset.require("./Mars_Reconnaissance_Orbiter_CTX_HillShade_Deuteronius_40N024E/Mars_Reconnaissance_Orbiter_CTX_HillShade_Deuteronius_40N024E") -asset.require("./Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_11S289E/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_11S289E") -asset.require("./Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_11S291E/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_11S291E") -asset.require("./Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S289E_D01/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S289E_D01") -asset.require("./Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S289E_F18/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S289E_F18") -asset.require("./Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S290E/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S290E") -asset.require("./Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S291E_F14/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S291E_F14") -asset.require("./Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S291E_F21/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S291E_F21") -asset.require("./Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S291E_J01/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_12S291E_J01") -asset.require("./Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_13S289E_D10/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_13S289E_D10") -asset.require("./Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_16S291E_D22/Mars_Reconnaissance_Orbiter_CTX_HillShade_East_Melas_16S291E_D22") -asset.require("./Mars_Reconnaissance_Orbiter_CTX_Hilllshade_Deuteronilus/Mars_Reconnaissance_Orbiter_CTX_Hilllshade_Deuteronilus") -asset.require("./Mars_Reconnaissance_Orbiter_CTX_Mosaic_Apollinaris_12S182E/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Apollinaris_12S182E") -asset.require("./Mars_Reconnaissance_Orbiter_CTX_Mosaic_Apollinaris_13S182E/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Apollinaris_13S182E") -asset.require("./Mars_Reconnaissance_Orbiter_CTX_Mosaic_Apollinaris_14S184E/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Apollinaris_14S184E") -asset.require("./Mars_Reconnaissance_Orbiter_CTX_Mosaic_Coprates_10S291E/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Coprates_10S291E") -asset.require("./Mars_Reconnaissance_Orbiter_CTX_Mosaic_Coprates_11S293E/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Coprates_11S293E") -asset.require("./Mars_Reconnaissance_Orbiter_CTX_Mosaic_Coprates_13S293E/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Coprates_13S293E") -asset.require("./Mars_Reconnaissance_Orbiter_CTX_Mosaic_Deuteronius_38N024E/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Deuteronius_38N024E") -asset.require("./Mars_Reconnaissance_Orbiter_CTX_Mosaic_Deuteronius_39N024E/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Deuteronius_39N024E") -asset.require("./Mars_Reconnaissance_Orbiter_CTX_Mosaic_Deuteronius_40N024E/Mars_Reconnaissance_Orbiter_CTX_Mosaic_Deuteronius_40N024E") -asset.require("./Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_11S289E/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_11S289E") -asset.require("./Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_11S291E/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_11S291E") -asset.require("./Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S289E_D01/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S289E_D01") -asset.require("./Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S289E_F18/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S289E_F18") -asset.require("./Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S290E/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S290E") -asset.require("./Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S291E_F14/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S291E_F14") -asset.require("./Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S291E_F21/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S291E_F21") -asset.require("./Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S291E_J01/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_12S291E_J01") -asset.require("./Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_13S289E_D10/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_13S289E_D10") -asset.require("./Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_16S291E/Mars_Reconnaissance_Orbiter_CTX_Mosaic_East_Melas_16S291E") -asset.require("./Mars_Reconnaissance_Orbiter_CTX_Slope_Apollinaris_12S182E/Mars_Reconnaissance_Orbiter_CTX_Slope_Apollinaris_12S182E") -asset.require("./Mars_Reconnaissance_Orbiter_CTX_Slope_Apollinaris_13S182E/Mars_Reconnaissance_Orbiter_CTX_Slope_Apollinaris_13S182E") -asset.require("./Mars_Reconnaissance_Orbiter_CTX_Slope_Apollinaris_14S184E/Mars_Reconnaissance_Orbiter_CTX_Slope_Apollinaris_14S184E") diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS.asset b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS.asset new file mode 100644 index 0000000000..f294501cbc --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS.asset @@ -0,0 +1,54 @@ +-- This file was automatically generated using a script found at +-- https://github.com/OpenSpace/scripts/treks-to-openspace. See the README.md file +-- in that repository for more information on how to run the script to update these +-- files. In particular in the case of errors, prefer to change that script rather +-- than the individual files + +local globeIdentifier = asset.require("scene/solarsystem//planets/mercury/mercury").Mercury.Identifier + +local treks_Mercury_Messenger_USGS_DEM_665m_v2_HillshadeColor = { + Identifier = "Mercury_Messenger_USGS_DEM_665m_v2_HillshadeColor", + Name = [[MSGR MDIS, ColorHillshade Global]], + FilePath = asset.localResource("MSGR_MDIS/ColorHillshade_Global.vrt"), + Description = [[This is a colorized shaded-relief generated from the USGS Astrogeology Science Center’s Mercury MESSENGER Global DEM 665m v2 data product providing global coverage of Mercury. This color hillshade was generated in ArcPro with the shaded-relief raster function. The resolution of the original DEM used to create this product is 64 pixels/degree (665 m/pixel). The control network used for registration contains tie points that are sample/line coordinates with geometric locations (derived from SPICE) that are automatically measured across the overlapping image areas. Elevation values are in meters and referred to a radius of 2439400m. The legend conveys the mapping colors to elevation values (meters).]] +} + +local treks_Mercury_Messenger_USGS_DEM_665m_v2_Hillshade = { + Identifier = "Mercury_Messenger_USGS_DEM_665m_v2_Hillshade", + Name = [[MSGR MDIS, Hillshade Global]], + FilePath = asset.localResource("MSGR_MDIS/Hillshade_Global.vrt"), + Description = [[This is a shaded-relief generated from the USGS Astrogeology Science Center’s Mercury MESSENGER Global DEM 665m v2 data product providing global coverage of Mercury. This shaded-relief data product was generated in ArcPro with the hillshade raster function. The resolution of the original DEM used to create this product is 64 pixels/degree (665 m/pixel). The control network used for registration contains tie points that are sample/line coordinates with geometric locations (derived from SPICE) that are automatically measured across the overlapping image areas. Elevation values are in meters and referred to a radius of 2439400m.]] +} + +local treks_Mercury_Messenger_USGS_DEM_665m_v2_SlopeColor = { + Identifier = "Mercury_Messenger_USGS_DEM_665m_v2_SlopeColor", + Name = [[MSGR MDIS, Slope Colorized Global]], + FilePath = asset.localResource("MSGR_MDIS/Slope_Colorized_Global.vrt"), + Description = [[This is a colorized slope data product of the USGS Astrogeology Science Center’s Mercury MESSENGER Global DEM 665m v2 data product providing global coverage of Mercury. This slope data product was generated in ArcMap with the slope spatial analysis tool. The resolution of this product is 64 pixels/degree (665 m/pixel). The control network used for registration contains tie points that are sample/line coordinates with geometric locations (derived from SPICE) that are automatically measured across the overlapping image areas. Slope values are in degrees and referred to a radius of 2439400m. Slope values range from a minimum value of 0 to a maximum value of 71.0409. The legend conveys the mapping colors to slope values (degrees).]] +} + +asset.onInitialize(function() + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_Mercury_Messenger_USGS_DEM_665m_v2_HillshadeColor) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_Mercury_Messenger_USGS_DEM_665m_v2_Hillshade) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_Mercury_Messenger_USGS_DEM_665m_v2_SlopeColor) +end) + +asset.onDeinitialize(function() + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_Mercury_Messenger_USGS_DEM_665m_v2_HillshadeColor") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_Mercury_Messenger_USGS_DEM_665m_v2_Hillshade") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_Mercury_Messenger_USGS_DEM_665m_v2_SlopeColor") +end) + +asset.export("Mercury_Messenger_USGS_DEM_665m_v2_HillshadeColor", treks_Mercury_Messenger_USGS_DEM_665m_v2_HillshadeColor) +asset.export("Mercury_Messenger_USGS_DEM_665m_v2_Hillshade", treks_Mercury_Messenger_USGS_DEM_665m_v2_Hillshade) +asset.export("Mercury_Messenger_USGS_DEM_665m_v2_SlopeColor", treks_Mercury_Messenger_USGS_DEM_665m_v2_SlopeColor) + + +asset.meta = { + Name = [[NASA Treks Layers for Mercury MSGR_MDIS], + Version = "1.0", + Author = "NASA/Treks", + URL = "https://trek.nasa.gov/mercury", + License = "NASA/Treks", + Description = [[MSGR_MDIS layers from NASA/Treks for Mercury]] +} diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS/ColorHillshade_Global.vrt b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS/ColorHillshade_Global.vrt new file mode 100644 index 0000000000..6738c75495 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS/ColorHillshade_Global.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mercury_2000",DATUM["D_Mercury_2000",SPHEROID["Mercury_2000_IAU_IAG",2439700,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.0986328125000000e-02, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.0986328125000000e-02 + + 0 + Red + + ColorHillshade_Global.wms + 1 + + + + 0 + + + + 0 + Green + + ColorHillshade_Global.wms + 2 + + + + 0 + + + + 0 + Blue + + ColorHillshade_Global.wms + 3 + + + + 0 + + + + Alpha + + ColorHillshade_Global.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_ColorHillshade_Global/Mercury_Messenger_USGS_DEM_665m_v2_HillshadeColor.wms b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS/ColorHillshade_Global.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_ColorHillshade_Global/Mercury_Messenger_USGS_DEM_665m_v2_HillshadeColor.wms rename to data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS/ColorHillshade_Global.wms diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS/Hillshade_Global.vrt b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS/Hillshade_Global.vrt new file mode 100644 index 0000000000..e993de53bf --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS/Hillshade_Global.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mercury_2000",DATUM["D_Mercury_2000",SPHEROID["Mercury_2000_IAU_IAG",2439700,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.0986328125000000e-02, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.0986328125000000e-02 + + 0 + Red + + Hillshade_Global.wms + 1 + + + + 0 + + + + 0 + Green + + Hillshade_Global.wms + 2 + + + + 0 + + + + 0 + Blue + + Hillshade_Global.wms + 3 + + + + 0 + + + + Alpha + + Hillshade_Global.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Hillshade_Global/Mercury_Messenger_USGS_DEM_665m_v2_Hillshade.wms b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS/Hillshade_Global.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Hillshade_Global/Mercury_Messenger_USGS_DEM_665m_v2_Hillshade.wms rename to data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS/Hillshade_Global.wms diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS/Slope_Colorized_Global.vrt b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS/Slope_Colorized_Global.vrt new file mode 100644 index 0000000000..08dbf958d1 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS/Slope_Colorized_Global.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mercury_2000",DATUM["D_Mercury_2000",SPHEROID["Mercury_2000_IAU_IAG",2439700,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.0986328125000000e-02, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.0986328125000000e-02 + + 0 + Red + + Slope_Colorized_Global.wms + 1 + + + + 0 + + + + 0 + Green + + Slope_Colorized_Global.wms + 2 + + + + 0 + + + + 0 + Blue + + Slope_Colorized_Global.wms + 3 + + + + 0 + + + + Alpha + + Slope_Colorized_Global.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_Colorized_Global/Mercury_Messenger_USGS_DEM_665m_v2_SlopeColor.wms b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS/Slope_Colorized_Global.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_Colorized_Global/Mercury_Messenger_USGS_DEM_665m_v2_SlopeColor.wms rename to data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS/Slope_Colorized_Global.wms diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_ColorHillshade_Global/MSGR_MDIS_ColorHillshade_Global.asset b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_ColorHillshade_Global/MSGR_MDIS_ColorHillshade_Global.asset deleted file mode 100644 index 18b3011a12..0000000000 --- a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_ColorHillshade_Global/MSGR_MDIS_ColorHillshade_Global.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mercury/mercury").Mercury.Identifier - -local layer = { - Identifier = "Mercury_Messenger_USGS_DEM_665m_v2_HillshadeColor", - Name = [[MSGR MDIS, ColorHillshade Global]], - FilePath = asset.localResource("Mercury_Messenger_USGS_DEM_665m_v2_HillshadeColor.vrt"), - Description = [[This is a colorized shaded-relief generated from the USGS Astrogeology Science Center’s Mercury MESSENGER Global DEM 665m v2 data product providing global coverage of Mercury. This color hillshade was generated in ArcPro with the shaded-relief raster function. The resolution of the original DEM used to create this product is 64 pixels/degree (665 m/pixel). The control network used for registration contains tie points that are sample/line coordinates with geometric locations (derived from SPICE) that are automatically measured across the overlapping image areas. Elevation values are in meters and referred to a radius of 2439400m. The legend conveys the mapping colors to elevation values (meters).]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MSGR MDIS, ColorHillshade Global]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mercury/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:IAU2000::19900&d=&l=Mercury_Messenger_USGS_DEM_665m_v2_HillshadeColor%2Ctrue%2C1&b=mercury&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MSGR MDIS, ColorHillshade Global layer from NASA/Treks for Mercury]] -} diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_ColorHillshade_Global/Mercury_Messenger_USGS_DEM_665m_v2_HillshadeColor.vrt b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_ColorHillshade_Global/Mercury_Messenger_USGS_DEM_665m_v2_HillshadeColor.vrt deleted file mode 100644 index 0811aa73d5..0000000000 --- a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_ColorHillshade_Global/Mercury_Messenger_USGS_DEM_665m_v2_HillshadeColor.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mercury_2000",DATUM["D_Mercury_2000",SPHEROID["Mercury_2000_IAU_IAG",2439700,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.0986328125000000e-02, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.0986328125000000e-02 - - 0 - Red - - Mercury_Messenger_USGS_DEM_665m_v2_HillshadeColor.wms - 1 - - - - 0 - - - - 0 - Green - - Mercury_Messenger_USGS_DEM_665m_v2_HillshadeColor.wms - 2 - - - - 0 - - - - 0 - Blue - - Mercury_Messenger_USGS_DEM_665m_v2_HillshadeColor.wms - 3 - - - - 0 - - - - Alpha - - Mercury_Messenger_USGS_DEM_665m_v2_HillshadeColor.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Hillshade_Global/MSGR_MDIS_Hillshade_Global.asset b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Hillshade_Global/MSGR_MDIS_Hillshade_Global.asset deleted file mode 100644 index 9ffe33cc4d..0000000000 --- a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Hillshade_Global/MSGR_MDIS_Hillshade_Global.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mercury/mercury").Mercury.Identifier - -local layer = { - Identifier = "Mercury_Messenger_USGS_DEM_665m_v2_Hillshade", - Name = [[MSGR MDIS, Hillshade Global]], - FilePath = asset.localResource("Mercury_Messenger_USGS_DEM_665m_v2_Hillshade.vrt"), - Description = [[This is a shaded-relief generated from the USGS Astrogeology Science Center’s Mercury MESSENGER Global DEM 665m v2 data product providing global coverage of Mercury. This shaded-relief data product was generated in ArcPro with the hillshade raster function. The resolution of the original DEM used to create this product is 64 pixels/degree (665 m/pixel). The control network used for registration contains tie points that are sample/line coordinates with geometric locations (derived from SPICE) that are automatically measured across the overlapping image areas. Elevation values are in meters and referred to a radius of 2439400m.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MSGR MDIS, Hillshade Global]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mercury/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:IAU2000::19900&d=&l=Mercury_Messenger_USGS_DEM_665m_v2_Hillshade%2Ctrue%2C1&b=mercury&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MSGR MDIS, Hillshade Global layer from NASA/Treks for Mercury]] -} diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Hillshade_Global/Mercury_Messenger_USGS_DEM_665m_v2_Hillshade.vrt b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Hillshade_Global/Mercury_Messenger_USGS_DEM_665m_v2_Hillshade.vrt deleted file mode 100644 index d5be6bf267..0000000000 --- a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Hillshade_Global/Mercury_Messenger_USGS_DEM_665m_v2_Hillshade.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mercury_2000",DATUM["D_Mercury_2000",SPHEROID["Mercury_2000_IAU_IAG",2439700,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.0986328125000000e-02, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.0986328125000000e-02 - - 0 - Red - - Mercury_Messenger_USGS_DEM_665m_v2_Hillshade.wms - 1 - - - - 0 - - - - 0 - Green - - Mercury_Messenger_USGS_DEM_665m_v2_Hillshade.wms - 2 - - - - 0 - - - - 0 - Blue - - Mercury_Messenger_USGS_DEM_665m_v2_Hillshade.wms - 3 - - - - 0 - - - - Alpha - - Mercury_Messenger_USGS_DEM_665m_v2_Hillshade.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic.asset b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic.asset new file mode 100644 index 0000000000..57f026c548 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic.asset @@ -0,0 +1,124 @@ +-- This file was automatically generated using a script found at +-- https://github.com/OpenSpace/scripts/treks-to-openspace. See the README.md file +-- in that repository for more information on how to run the script to update these +-- files. In particular in the case of errors, prefer to change that script rather +-- than the individual files + +local globeIdentifier = asset.require("scene/solarsystem//planets/mercury/mercury").Mercury.Identifier + +local treks_MSGR_Aksakov_Crater_Peak_Ring_Ortho_29m = { + Identifier = "MSGR_Aksakov_Crater_Peak_Ring_Ortho_29m", + Name = [[MSGR MDIS Mosaic, Aksakov Crater Peak Ring]], + FilePath = asset.localResource("MSGR_MDIS_Mosaic/Aksakov_Crater_Peak_Ring.vrt"), + Description = [[This is a visible orthoimage for the Aksakov Crater Peak Ring region on Mercury. This data product class of this data is observational and has been constructed to examine the visible and topographic settings of landforms around Mercury’s hollows. Observations of topography, specifically the relationships of hollows to their surroundings, can be used to investigate hollow formation. The visible image has been orthorectified using a digital elevation model (DEM) created from Mercury Dual Imaging System (MDIS) stereo pair images. The DEM used to generate the orthoimage has been aligned and controlled to Mercury Laser Altimeter (MLA) individual elevation points. The orthoimage was then projected onto the DEM and exported. This ortho image has been generated at a resolution of 29m/pixel.]] +} + +local treks_MSGR_near_Dali_Crater_Ortho_20m = { + Identifier = "MSGR_near_Dali_Crater_Ortho_20m", + Name = [[MSGR MDIS Mosaic, Crater near Dali Crater]], + FilePath = asset.localResource("MSGR_MDIS_Mosaic/Crater_near_Dali_Crater.vrt"), + Description = [[This is a visible orthoimage for the Crater Near Dali Crater region on Mercury. This data product class of this data is observational and has been constructed to examine the visible and topographic settings of landforms around Mercury’s hollows. Observations of topography, specifically the relationships of hollows to their surroundings, can be used to investigate hollow formation. The visible image has been orthorectified using a digital elevation model (DEM) created from Mercury Dual Imaging System (MDIS) stereo pair images. The DEM used to generate the orthoimage has been aligned and controlled to Mercury Laser Altimeter (MLA) individual elevation points. The orthoimage was then projected onto the DEM and exported. This ortho image has been generated at a resolution of 20m/pixel.]] +} + +local treks_MSGR_near_Geddes_Crater_Ortho_33m = { + Identifier = "MSGR_near_Geddes_Crater_Ortho_33m", + Name = [[MSGR MDIS Mosaic, Crater near Geddes Crater]], + FilePath = asset.localResource("MSGR_MDIS_Mosaic/Crater_near_Geddes_Crater.vrt"), + Description = [[This is a visible orthoimage for the Crater Near Geddes Crater region on Mercury. This data product class of this data is observational and has been constructed to examine the visible and topographic settings of landforms around Mercury’s hollows. Observations of topography, specifically the relationships of hollows to their surroundings, can be used to investigate hollow formation. The visible image has been orthorectified using a digital elevation model (DEM) created from Mercury Dual Imaging System (MDIS) stereo pair images. The DEM used to generate the orthoimage has been aligned and controlled to Mercury Laser Altimeter (MLA) individual elevation points. The orthoimage was then projected onto the DEM and exported. This ortho image has been generated at a resolution of 33m/pixel.]] +} + +local treks_MSGR_Degas_Crater_Ortho_30m = { + Identifier = "MSGR_Degas_Crater_Ortho_30m", + Name = [[MSGR MDIS Mosaic, Degas Crater]], + FilePath = asset.localResource("MSGR_MDIS_Mosaic/Degas_Crater.vrt"), + Description = [[This is a visible orthoimage for the Degas Crater region on Mercury. This data product class of this data is observational and has been constructed to examine the visible and topographic settings of landforms around Mercury’s hollows. Observations of topography, specifically the relationships of hollows to their surroundings, can be used to investigate hollow formation. The visible image has been orthorectified using a digital elevation model (DEM) created from Mercury Dual Imaging System (MDIS) stereo pair images. The DEM used to generate the orthoimage has been aligned and controlled to Mercury Laser Altimeter (MLA) individual elevation points. The orthoimage was then projected onto the DEM and exported. This ortho image has been generated at a resolution of 30m/pixel.]] +} + +local treks_MSGR_Kertesz_Crater_Ortho_30m = { + Identifier = "MSGR_Kertesz_Crater_Ortho_30m", + Name = [[MSGR MDIS Mosaic, Kertesz Crater]], + FilePath = asset.localResource("MSGR_MDIS_Mosaic/Kertesz_Crater.vrt"), + Description = [[This is a visible orthoimage for the KerteszCrater region on Mercury. This data product class of this data is observational and has been constructed to examine the visible and topographic settings of landforms around Mercury’s hollows. Observations of topography, specifically the relationships of hollows to their surroundings, can be used to investigate hollow formation. The visible image has been orthorectified using a digital elevation model (DEM) created from Mercury Dual Imaging System (MDIS) stereo pair images. The DEM used to generate the orthoimage has been aligned and controlled to Mercury Laser Altimeter (MLA) individual elevation points. The orthoimage was then projected onto the DEM and exported. This ortho image has been generated at a resolution of 30m/pixel.]] +} + +local treks_MSGR_nw_Degas_Crater_Ortho_26m = { + Identifier = "MSGR_nw_Degas_Crater_Ortho_26m", + Name = [[MSGR MDIS Mosaic, North-West of Degas Crater]], + FilePath = asset.localResource("MSGR_MDIS_Mosaic/North-West_of_Degas_Crater.vrt"), + Description = [[This is a visible orthoimage for the region northwest of Degas Crater on Mercury. This data product class of this data is observational and has been constructed to examine the visible and topographic settings of landforms around Mercury’s hollows. Observations of topography, specifically the relationships of hollows to their surroundings, can be used to investigate hollow formation. The visible image has been orthorectified using a digital elevation model (DEM) created from Mercury Dual Imaging System (MDIS) stereo pair images. The DEM used to generate the orthoimage has been aligned and controlled to Mercury Laser Altimeter (MLA) individual elevation points. The orthoimage was then projected onto the DEM and exported. This ortho image has been generated at a resolution of 26m/pixel.]] +} + +local treks_MSGR_Praxiteles_Peak_Ring_Ortho_20m = { + Identifier = "MSGR_Praxiteles_Peak_Ring_Ortho_20m", + Name = [[MSGR MDIS Mosaic, Praxiteles Peak Ring]], + FilePath = asset.localResource("MSGR_MDIS_Mosaic/Praxiteles_Peak_Ring.vrt"), + Description = [[This is a visible orthoimage for the Praxiteles Peak Ring region on Mercury. This data product class of this data is observational and has been constructed to examine the visible and topographic settings of landforms around Mercury’s hollows. Observations of topography, specifically the relationships of hollows to their surroundings, can be used to investigate hollow formation. The visible image has been orthorectified using a digital elevation model (DEM) created from Mercury Dual Imaging System (MDIS) stereo pair images. The DEM used to generate the orthoimage has been aligned and controlled to Mercury Laser Altimeter (MLA) individual elevation points. The orthoimage was then projected onto the DEM and exported. This ortho image has been generated at a resolution of 20m/pixel.]] +} + +local treks_MSGR_Raditladi_Crater_Ortho_40m = { + Identifier = "MSGR_Raditladi_Crater_Ortho_40m", + Name = [[MSGR MDIS Mosaic, Raditladi Crater]], + FilePath = asset.localResource("MSGR_MDIS_Mosaic/Raditladi_Crater.vrt"), + Description = [[This is a visible orthoimage for the Raditladi Crater region on Mercury. This data product class of this data is observational and has been constructed to examine the visible and topographic settings of landforms around Mercury’s hollows. Observations of topography, specifically the relationships of hollows to their surroundings, can be used to investigate hollow formation. The visible image has been orthorectified using a digital elevation model (DEM) created from Mercury Dual Imaging System (MDIS) stereo pair images. The DEM used to generate the orthoimage has been aligned and controlled to Mercury Laser Altimeter (MLA) individual elevation points. The orthoimage was then projected onto the DEM and exported. This ortho image has been generated at a resolution of 40m/pixel.]] +} + +local treks_MSGR_Sander_Crater_Ortho_22m = { + Identifier = "MSGR_Sander_Crater_Ortho_22m", + Name = [[MSGR MDIS Mosaic, Sander Crater]], + FilePath = asset.localResource("MSGR_MDIS_Mosaic/Sander_Crater.vrt"), + Description = [[This is a visible orthoimage for the Sander Crater region on Mercury. This data product class of this data is observational and has been constructed to examine the visible and topographic settings of landforms around Mercury’s hollows. Observations of topography, specifically the relationships of hollows to their surroundings, can be used to investigate hollow formation. The visible image has been orthorectified using a digital elevation model (DEM) created from Mercury Dual Imaging System (MDIS) stereo pair images. The DEM used to generate the orthoimage has been aligned and controlled to Mercury Laser Altimeter (MLA) individual elevation points. The orthoimage was then projected onto the DEM and exported. This ortho image has been generated at a resolution of 22m/pixel.]] +} + +local treks_MSGR_Sholem_Aleichem_Crater_Wall_Ortho_8m = { + Identifier = "MSGR_Sholem_Aleichem_Crater_Wall_Ortho_8m", + Name = [[MSGR MDIS Mosaic, Sholem Aleichem Crater Wall]], + FilePath = asset.localResource("MSGR_MDIS_Mosaic/Sholem_Aleichem_Crater_Wall.vrt"), + Description = [[This is a visible orthoimage for the Sholem Aleichem Crater Wall region on Mercury. This data product class of this data is observational and has been constructed to examine the visible and topographic settings of landforms around Mercury’s hollows. Observations of topography, specifically the relationships of hollows to their surroundings, can be used to investigate hollow formation. The visible image has been orthorectified using a digital elevation model (DEM) created from Mercury Dual Imaging System (MDIS) stereo pair images. The DEM used to generate the orthoimage has been aligned and controlled to Mercury Laser Altimeter (MLA) individual elevation points. The orthoimage was then projected onto the DEM and exported. This ortho image has been generated at a resolution of 8m/pixel.]] +} + +asset.onInitialize(function() + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_MSGR_Aksakov_Crater_Peak_Ring_Ortho_29m) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_MSGR_near_Dali_Crater_Ortho_20m) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_MSGR_near_Geddes_Crater_Ortho_33m) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_MSGR_Degas_Crater_Ortho_30m) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_MSGR_Kertesz_Crater_Ortho_30m) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_MSGR_nw_Degas_Crater_Ortho_26m) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_MSGR_Praxiteles_Peak_Ring_Ortho_20m) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_MSGR_Raditladi_Crater_Ortho_40m) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_MSGR_Sander_Crater_Ortho_22m) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_MSGR_Sholem_Aleichem_Crater_Wall_Ortho_8m) +end) + +asset.onDeinitialize(function() + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_MSGR_Aksakov_Crater_Peak_Ring_Ortho_29m") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_MSGR_near_Dali_Crater_Ortho_20m") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_MSGR_near_Geddes_Crater_Ortho_33m") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_MSGR_Degas_Crater_Ortho_30m") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_MSGR_Kertesz_Crater_Ortho_30m") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_MSGR_nw_Degas_Crater_Ortho_26m") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_MSGR_Praxiteles_Peak_Ring_Ortho_20m") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_MSGR_Raditladi_Crater_Ortho_40m") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_MSGR_Sander_Crater_Ortho_22m") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_MSGR_Sholem_Aleichem_Crater_Wall_Ortho_8m") +end) + +asset.export("MSGR_Aksakov_Crater_Peak_Ring_Ortho_29m", treks_MSGR_Aksakov_Crater_Peak_Ring_Ortho_29m) +asset.export("MSGR_near_Dali_Crater_Ortho_20m", treks_MSGR_near_Dali_Crater_Ortho_20m) +asset.export("MSGR_near_Geddes_Crater_Ortho_33m", treks_MSGR_near_Geddes_Crater_Ortho_33m) +asset.export("MSGR_Degas_Crater_Ortho_30m", treks_MSGR_Degas_Crater_Ortho_30m) +asset.export("MSGR_Kertesz_Crater_Ortho_30m", treks_MSGR_Kertesz_Crater_Ortho_30m) +asset.export("MSGR_nw_Degas_Crater_Ortho_26m", treks_MSGR_nw_Degas_Crater_Ortho_26m) +asset.export("MSGR_Praxiteles_Peak_Ring_Ortho_20m", treks_MSGR_Praxiteles_Peak_Ring_Ortho_20m) +asset.export("MSGR_Raditladi_Crater_Ortho_40m", treks_MSGR_Raditladi_Crater_Ortho_40m) +asset.export("MSGR_Sander_Crater_Ortho_22m", treks_MSGR_Sander_Crater_Ortho_22m) +asset.export("MSGR_Sholem_Aleichem_Crater_Wall_Ortho_8m", treks_MSGR_Sholem_Aleichem_Crater_Wall_Ortho_8m) + + +asset.meta = { + Name = [[NASA Treks Layers for Mercury MSGR_MDIS_Mosaic], + Version = "1.0", + Author = "NASA/Treks", + URL = "https://trek.nasa.gov/mercury", + License = "NASA/Treks", + Description = [[MSGR_MDIS_Mosaic layers from NASA/Treks for Mercury]] +} diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic/Aksakov_Crater_Peak_Ring.vrt b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic/Aksakov_Crater_Peak_Ring.vrt new file mode 100644 index 0000000000..aaff954070 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic/Aksakov_Crater_Peak_Ring.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mercury_2000",DATUM["D_Mercury_2000",SPHEROID["Mercury_2000_IAU_IAG",2439700,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 3.4332275390625000e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -3.4332275390625000e-04 + + 0 + Red + + Aksakov_Crater_Peak_Ring.wms + 1 + + + + 0 + + + + 0 + Green + + Aksakov_Crater_Peak_Ring.wms + 2 + + + + 0 + + + + 0 + Blue + + Aksakov_Crater_Peak_Ring.wms + 3 + + + + 0 + + + + Alpha + + Aksakov_Crater_Peak_Ring.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic_Aksakov_Crater_Peak_Ring/MSGR_Aksakov_Crater_Peak_Ring_Ortho_29m.wms b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic/Aksakov_Crater_Peak_Ring.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic_Aksakov_Crater_Peak_Ring/MSGR_Aksakov_Crater_Peak_Ring_Ortho_29m.wms rename to data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic/Aksakov_Crater_Peak_Ring.wms diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic/Crater_near_Dali_Crater.vrt b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic/Crater_near_Dali_Crater.vrt new file mode 100644 index 0000000000..535ae19afe --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic/Crater_near_Dali_Crater.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mercury_2000",DATUM["D_Mercury_2000",SPHEROID["Mercury_2000_IAU_IAG",2439700,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 3.4332275390625000e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -3.4332275390625000e-04 + + 0 + Red + + Crater_near_Dali_Crater.wms + 1 + + + + 0 + + + + 0 + Green + + Crater_near_Dali_Crater.wms + 2 + + + + 0 + + + + 0 + Blue + + Crater_near_Dali_Crater.wms + 3 + + + + 0 + + + + Alpha + + Crater_near_Dali_Crater.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic_Crater_near_Dali_Crater/MSGR_near_Dali_Crater_Ortho_20m.wms b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic/Crater_near_Dali_Crater.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic_Crater_near_Dali_Crater/MSGR_near_Dali_Crater_Ortho_20m.wms rename to data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic/Crater_near_Dali_Crater.wms diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic/Crater_near_Geddes_Crater.vrt b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic/Crater_near_Geddes_Crater.vrt new file mode 100644 index 0000000000..f46d85cdb3 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic/Crater_near_Geddes_Crater.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mercury_2000",DATUM["D_Mercury_2000",SPHEROID["Mercury_2000_IAU_IAG",2439700,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 3.4332275390625000e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -3.4332275390625000e-04 + + 0 + Red + + Crater_near_Geddes_Crater.wms + 1 + + + + 0 + + + + 0 + Green + + Crater_near_Geddes_Crater.wms + 2 + + + + 0 + + + + 0 + Blue + + Crater_near_Geddes_Crater.wms + 3 + + + + 0 + + + + Alpha + + Crater_near_Geddes_Crater.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic_Crater_near_Geddes_Crater/MSGR_near_Geddes_Crater_Ortho_33m.wms b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic/Crater_near_Geddes_Crater.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic_Crater_near_Geddes_Crater/MSGR_near_Geddes_Crater_Ortho_33m.wms rename to data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic/Crater_near_Geddes_Crater.wms diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic/Degas_Crater.vrt b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic/Degas_Crater.vrt new file mode 100644 index 0000000000..3fb7cc6cde --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic/Degas_Crater.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mercury_2000",DATUM["D_Mercury_2000",SPHEROID["Mercury_2000_IAU_IAG",2439700,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 3.4332275390625000e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -3.4332275390625000e-04 + + 0 + Red + + Degas_Crater.wms + 1 + + + + 0 + + + + 0 + Green + + Degas_Crater.wms + 2 + + + + 0 + + + + 0 + Blue + + Degas_Crater.wms + 3 + + + + 0 + + + + Alpha + + Degas_Crater.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic_Degas_Crater/MSGR_Degas_Crater_Ortho_30m.wms b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic/Degas_Crater.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic_Degas_Crater/MSGR_Degas_Crater_Ortho_30m.wms rename to data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic/Degas_Crater.wms diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic/Kertesz_Crater.vrt b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic/Kertesz_Crater.vrt new file mode 100644 index 0000000000..bb85875097 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic/Kertesz_Crater.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mercury_2000",DATUM["D_Mercury_2000",SPHEROID["Mercury_2000_IAU_IAG",2439700,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 3.4332275390625000e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -3.4332275390625000e-04 + + 0 + Red + + Kertesz_Crater.wms + 1 + + + + 0 + + + + 0 + Green + + Kertesz_Crater.wms + 2 + + + + 0 + + + + 0 + Blue + + Kertesz_Crater.wms + 3 + + + + 0 + + + + Alpha + + Kertesz_Crater.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic_Kertesz_Crater/MSGR_Kertesz_Crater_Ortho_30m.wms b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic/Kertesz_Crater.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic_Kertesz_Crater/MSGR_Kertesz_Crater_Ortho_30m.wms rename to data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic/Kertesz_Crater.wms diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic/North-West_of_Degas_Crater.vrt b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic/North-West_of_Degas_Crater.vrt new file mode 100644 index 0000000000..ab6df313f4 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic/North-West_of_Degas_Crater.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mercury_2000",DATUM["D_Mercury_2000",SPHEROID["Mercury_2000_IAU_IAG",2439700,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 3.4332275390625000e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -3.4332275390625000e-04 + + 0 + Red + + North-West_of_Degas_Crater.wms + 1 + + + + 0 + + + + 0 + Green + + North-West_of_Degas_Crater.wms + 2 + + + + 0 + + + + 0 + Blue + + North-West_of_Degas_Crater.wms + 3 + + + + 0 + + + + Alpha + + North-West_of_Degas_Crater.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic_North-West_of_Degas_Crater/MSGR_nw_Degas_Crater_Ortho_26m.wms b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic/North-West_of_Degas_Crater.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic_North-West_of_Degas_Crater/MSGR_nw_Degas_Crater_Ortho_26m.wms rename to data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic/North-West_of_Degas_Crater.wms diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic/Praxiteles_Peak_Ring.vrt b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic/Praxiteles_Peak_Ring.vrt new file mode 100644 index 0000000000..43ca28287c --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic/Praxiteles_Peak_Ring.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mercury_2000",DATUM["D_Mercury_2000",SPHEROID["Mercury_2000_IAU_IAG",2439700,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 3.4332275390625000e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -3.4332275390625000e-04 + + 0 + Red + + Praxiteles_Peak_Ring.wms + 1 + + + + 0 + + + + 0 + Green + + Praxiteles_Peak_Ring.wms + 2 + + + + 0 + + + + 0 + Blue + + Praxiteles_Peak_Ring.wms + 3 + + + + 0 + + + + Alpha + + Praxiteles_Peak_Ring.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic_Praxiteles_Peak_Ring/MSGR_Praxiteles_Peak_Ring_Ortho_20m.wms b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic/Praxiteles_Peak_Ring.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic_Praxiteles_Peak_Ring/MSGR_Praxiteles_Peak_Ring_Ortho_20m.wms rename to data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic/Praxiteles_Peak_Ring.wms diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic/Raditladi_Crater.vrt b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic/Raditladi_Crater.vrt new file mode 100644 index 0000000000..28e2f52789 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic/Raditladi_Crater.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mercury_2000",DATUM["D_Mercury_2000",SPHEROID["Mercury_2000_IAU_IAG",2439700,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 6.8664550781250000e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -6.8664550781250000e-04 + + 0 + Red + + Raditladi_Crater.wms + 1 + + + + 0 + + + + 0 + Green + + Raditladi_Crater.wms + 2 + + + + 0 + + + + 0 + Blue + + Raditladi_Crater.wms + 3 + + + + 0 + + + + Alpha + + Raditladi_Crater.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic_Raditladi_Crater/MSGR_Raditladi_Crater_Ortho_40m.wms b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic/Raditladi_Crater.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic_Raditladi_Crater/MSGR_Raditladi_Crater_Ortho_40m.wms rename to data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic/Raditladi_Crater.wms diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic/Sander_Crater.vrt b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic/Sander_Crater.vrt new file mode 100644 index 0000000000..23bfd8cf94 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic/Sander_Crater.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mercury_2000",DATUM["D_Mercury_2000",SPHEROID["Mercury_2000_IAU_IAG",2439700,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 3.4332275390625000e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -3.4332275390625000e-04 + + 0 + Red + + Sander_Crater.wms + 1 + + + + 0 + + + + 0 + Green + + Sander_Crater.wms + 2 + + + + 0 + + + + 0 + Blue + + Sander_Crater.wms + 3 + + + + 0 + + + + Alpha + + Sander_Crater.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic_Sander_Crater/MSGR_Sander_Crater_Ortho_22m.wms b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic/Sander_Crater.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic_Sander_Crater/MSGR_Sander_Crater_Ortho_22m.wms rename to data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic/Sander_Crater.wms diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic/Sholem_Aleichem_Crater_Wall.vrt b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic/Sholem_Aleichem_Crater_Wall.vrt new file mode 100644 index 0000000000..78cbbf4d1c --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic/Sholem_Aleichem_Crater_Wall.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mercury_2000",DATUM["D_Mercury_2000",SPHEROID["Mercury_2000_IAU_IAG",2439700,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 + + 0 + Red + + Sholem_Aleichem_Crater_Wall.wms + 1 + + + + 0 + + + + 0 + Green + + Sholem_Aleichem_Crater_Wall.wms + 2 + + + + 0 + + + + 0 + Blue + + Sholem_Aleichem_Crater_Wall.wms + 3 + + + + 0 + + + + Alpha + + Sholem_Aleichem_Crater_Wall.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic_Sholem_Aleichem_Crater_Wall/MSGR_Sholem_Aleichem_Crater_Wall_Ortho_8m.wms b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic/Sholem_Aleichem_Crater_Wall.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic_Sholem_Aleichem_Crater_Wall/MSGR_Sholem_Aleichem_Crater_Wall_Ortho_8m.wms rename to data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic/Sholem_Aleichem_Crater_Wall.wms diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic_Aksakov_Crater_Peak_Ring/MSGR_Aksakov_Crater_Peak_Ring_Ortho_29m.vrt b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic_Aksakov_Crater_Peak_Ring/MSGR_Aksakov_Crater_Peak_Ring_Ortho_29m.vrt deleted file mode 100644 index 1ff67f0979..0000000000 --- a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic_Aksakov_Crater_Peak_Ring/MSGR_Aksakov_Crater_Peak_Ring_Ortho_29m.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mercury_2000",DATUM["D_Mercury_2000",SPHEROID["Mercury_2000_IAU_IAG",2439700,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 3.4332275390625000e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -3.4332275390625000e-04 - - 0 - Red - - MSGR_Aksakov_Crater_Peak_Ring_Ortho_29m.wms - 1 - - - - 0 - - - - 0 - Green - - MSGR_Aksakov_Crater_Peak_Ring_Ortho_29m.wms - 2 - - - - 0 - - - - 0 - Blue - - MSGR_Aksakov_Crater_Peak_Ring_Ortho_29m.wms - 3 - - - - 0 - - - - Alpha - - MSGR_Aksakov_Crater_Peak_Ring_Ortho_29m.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic_Aksakov_Crater_Peak_Ring/MSGR_MDIS_Mosaic_Aksakov_Crater_Peak_Ring.asset b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic_Aksakov_Crater_Peak_Ring/MSGR_MDIS_Mosaic_Aksakov_Crater_Peak_Ring.asset deleted file mode 100644 index 2c905323f0..0000000000 --- a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic_Aksakov_Crater_Peak_Ring/MSGR_MDIS_Mosaic_Aksakov_Crater_Peak_Ring.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mercury/mercury").Mercury.Identifier - -local layer = { - Identifier = "MSGR_Aksakov_Crater_Peak_Ring_Ortho_29m", - Name = [[MSGR MDIS Mosaic, Aksakov Crater Peak Ring]], - FilePath = asset.localResource("MSGR_Aksakov_Crater_Peak_Ring_Ortho_29m.vrt"), - Description = [[This is a visible orthoimage for the Aksakov Crater Peak Ring region on Mercury. This data product class of this data is observational and has been constructed to examine the visible and topographic settings of landforms around Mercury’s hollows. Observations of topography, specifically the relationships of hollows to their surroundings, can be used to investigate hollow formation. The visible image has been orthorectified using a digital elevation model (DEM) created from Mercury Dual Imaging System (MDIS) stereo pair images. The DEM used to generate the orthoimage has been aligned and controlled to Mercury Laser Altimeter (MLA) individual elevation points. The orthoimage was then projected onto the DEM and exported. This ortho image has been generated at a resolution of 29m/pixel.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MSGR MDIS Mosaic, Aksakov Crater Peak Ring]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mercury/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:IAU2000::19900&d=&l=MSGR_Aksakov_Crater_Peak_Ring_Ortho_29m%2Ctrue%2C1&b=mercury&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MSGR MDIS Mosaic, Aksakov Crater Peak Ring layer from NASA/Treks for Mercury]] -} diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic_Crater_near_Dali_Crater/MSGR_MDIS_Mosaic_Crater_near_Dali_Crater.asset b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic_Crater_near_Dali_Crater/MSGR_MDIS_Mosaic_Crater_near_Dali_Crater.asset deleted file mode 100644 index a04a374353..0000000000 --- a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic_Crater_near_Dali_Crater/MSGR_MDIS_Mosaic_Crater_near_Dali_Crater.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mercury/mercury").Mercury.Identifier - -local layer = { - Identifier = "MSGR_near_Dali_Crater_Ortho_20m", - Name = [[MSGR MDIS Mosaic, Crater near Dali Crater]], - FilePath = asset.localResource("MSGR_near_Dali_Crater_Ortho_20m.vrt"), - Description = [[This is a visible orthoimage for the Crater Near Dali Crater region on Mercury. This data product class of this data is observational and has been constructed to examine the visible and topographic settings of landforms around Mercury’s hollows. Observations of topography, specifically the relationships of hollows to their surroundings, can be used to investigate hollow formation. The visible image has been orthorectified using a digital elevation model (DEM) created from Mercury Dual Imaging System (MDIS) stereo pair images. The DEM used to generate the orthoimage has been aligned and controlled to Mercury Laser Altimeter (MLA) individual elevation points. The orthoimage was then projected onto the DEM and exported. This ortho image has been generated at a resolution of 20m/pixel.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MSGR MDIS Mosaic, Crater near Dali Crater]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mercury/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:IAU2000::19900&d=&l=MSGR_near_Dali_Crater_Ortho_20m%2Ctrue%2C1&b=mercury&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MSGR MDIS Mosaic, Crater near Dali Crater layer from NASA/Treks for Mercury]] -} diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic_Crater_near_Dali_Crater/MSGR_near_Dali_Crater_Ortho_20m.vrt b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic_Crater_near_Dali_Crater/MSGR_near_Dali_Crater_Ortho_20m.vrt deleted file mode 100644 index 1ab391fc88..0000000000 --- a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic_Crater_near_Dali_Crater/MSGR_near_Dali_Crater_Ortho_20m.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mercury_2000",DATUM["D_Mercury_2000",SPHEROID["Mercury_2000_IAU_IAG",2439700,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 3.4332275390625000e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -3.4332275390625000e-04 - - 0 - Red - - MSGR_near_Dali_Crater_Ortho_20m.wms - 1 - - - - 0 - - - - 0 - Green - - MSGR_near_Dali_Crater_Ortho_20m.wms - 2 - - - - 0 - - - - 0 - Blue - - MSGR_near_Dali_Crater_Ortho_20m.wms - 3 - - - - 0 - - - - Alpha - - MSGR_near_Dali_Crater_Ortho_20m.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic_Crater_near_Geddes_Crater/MSGR_MDIS_Mosaic_Crater_near_Geddes_Crater.asset b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic_Crater_near_Geddes_Crater/MSGR_MDIS_Mosaic_Crater_near_Geddes_Crater.asset deleted file mode 100644 index 567a70bb89..0000000000 --- a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic_Crater_near_Geddes_Crater/MSGR_MDIS_Mosaic_Crater_near_Geddes_Crater.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mercury/mercury").Mercury.Identifier - -local layer = { - Identifier = "MSGR_near_Geddes_Crater_Ortho_33m", - Name = [[MSGR MDIS Mosaic, Crater near Geddes Crater]], - FilePath = asset.localResource("MSGR_near_Geddes_Crater_Ortho_33m.vrt"), - Description = [[This is a visible orthoimage for the Crater Near Geddes Crater region on Mercury. This data product class of this data is observational and has been constructed to examine the visible and topographic settings of landforms around Mercury’s hollows. Observations of topography, specifically the relationships of hollows to their surroundings, can be used to investigate hollow formation. The visible image has been orthorectified using a digital elevation model (DEM) created from Mercury Dual Imaging System (MDIS) stereo pair images. The DEM used to generate the orthoimage has been aligned and controlled to Mercury Laser Altimeter (MLA) individual elevation points. The orthoimage was then projected onto the DEM and exported. This ortho image has been generated at a resolution of 33m/pixel.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MSGR MDIS Mosaic, Crater near Geddes Crater]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mercury/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:IAU2000::19900&d=&l=MSGR_near_Geddes_Crater_Ortho_33m%2Ctrue%2C1&b=mercury&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MSGR MDIS Mosaic, Crater near Geddes Crater layer from NASA/Treks for Mercury]] -} diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic_Crater_near_Geddes_Crater/MSGR_near_Geddes_Crater_Ortho_33m.vrt b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic_Crater_near_Geddes_Crater/MSGR_near_Geddes_Crater_Ortho_33m.vrt deleted file mode 100644 index 78e5220264..0000000000 --- a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic_Crater_near_Geddes_Crater/MSGR_near_Geddes_Crater_Ortho_33m.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mercury_2000",DATUM["D_Mercury_2000",SPHEROID["Mercury_2000_IAU_IAG",2439700,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 3.4332275390625000e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -3.4332275390625000e-04 - - 0 - Red - - MSGR_near_Geddes_Crater_Ortho_33m.wms - 1 - - - - 0 - - - - 0 - Green - - MSGR_near_Geddes_Crater_Ortho_33m.wms - 2 - - - - 0 - - - - 0 - Blue - - MSGR_near_Geddes_Crater_Ortho_33m.wms - 3 - - - - 0 - - - - Alpha - - MSGR_near_Geddes_Crater_Ortho_33m.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic_Degas_Crater/MSGR_Degas_Crater_Ortho_30m.vrt b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic_Degas_Crater/MSGR_Degas_Crater_Ortho_30m.vrt deleted file mode 100644 index 15d85340d8..0000000000 --- a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic_Degas_Crater/MSGR_Degas_Crater_Ortho_30m.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mercury_2000",DATUM["D_Mercury_2000",SPHEROID["Mercury_2000_IAU_IAG",2439700,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 3.4332275390625000e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -3.4332275390625000e-04 - - 0 - Red - - MSGR_Degas_Crater_Ortho_30m.wms - 1 - - - - 0 - - - - 0 - Green - - MSGR_Degas_Crater_Ortho_30m.wms - 2 - - - - 0 - - - - 0 - Blue - - MSGR_Degas_Crater_Ortho_30m.wms - 3 - - - - 0 - - - - Alpha - - MSGR_Degas_Crater_Ortho_30m.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic_Degas_Crater/MSGR_MDIS_Mosaic_Degas_Crater.asset b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic_Degas_Crater/MSGR_MDIS_Mosaic_Degas_Crater.asset deleted file mode 100644 index 5c2e811a90..0000000000 --- a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic_Degas_Crater/MSGR_MDIS_Mosaic_Degas_Crater.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mercury/mercury").Mercury.Identifier - -local layer = { - Identifier = "MSGR_Degas_Crater_Ortho_30m", - Name = [[MSGR MDIS Mosaic, Degas Crater]], - FilePath = asset.localResource("MSGR_Degas_Crater_Ortho_30m.vrt"), - Description = [[This is a visible orthoimage for the Degas Crater region on Mercury. This data product class of this data is observational and has been constructed to examine the visible and topographic settings of landforms around Mercury’s hollows. Observations of topography, specifically the relationships of hollows to their surroundings, can be used to investigate hollow formation. The visible image has been orthorectified using a digital elevation model (DEM) created from Mercury Dual Imaging System (MDIS) stereo pair images. The DEM used to generate the orthoimage has been aligned and controlled to Mercury Laser Altimeter (MLA) individual elevation points. The orthoimage was then projected onto the DEM and exported. This ortho image has been generated at a resolution of 30m/pixel.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MSGR MDIS Mosaic, Degas Crater]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mercury/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:IAU2000::19900&d=&l=MSGR_Degas_Crater_Ortho_30m%2Ctrue%2C1&b=mercury&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MSGR MDIS Mosaic, Degas Crater layer from NASA/Treks for Mercury]] -} diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic_Kertesz_Crater/MSGR_Kertesz_Crater_Ortho_30m.vrt b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic_Kertesz_Crater/MSGR_Kertesz_Crater_Ortho_30m.vrt deleted file mode 100644 index e3dc423463..0000000000 --- a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic_Kertesz_Crater/MSGR_Kertesz_Crater_Ortho_30m.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mercury_2000",DATUM["D_Mercury_2000",SPHEROID["Mercury_2000_IAU_IAG",2439700,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 3.4332275390625000e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -3.4332275390625000e-04 - - 0 - Red - - MSGR_Kertesz_Crater_Ortho_30m.wms - 1 - - - - 0 - - - - 0 - Green - - MSGR_Kertesz_Crater_Ortho_30m.wms - 2 - - - - 0 - - - - 0 - Blue - - MSGR_Kertesz_Crater_Ortho_30m.wms - 3 - - - - 0 - - - - Alpha - - MSGR_Kertesz_Crater_Ortho_30m.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic_Kertesz_Crater/MSGR_MDIS_Mosaic_Kertesz_Crater.asset b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic_Kertesz_Crater/MSGR_MDIS_Mosaic_Kertesz_Crater.asset deleted file mode 100644 index 65c948359b..0000000000 --- a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic_Kertesz_Crater/MSGR_MDIS_Mosaic_Kertesz_Crater.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mercury/mercury").Mercury.Identifier - -local layer = { - Identifier = "MSGR_Kertesz_Crater_Ortho_30m", - Name = [[MSGR MDIS Mosaic, Kertesz Crater]], - FilePath = asset.localResource("MSGR_Kertesz_Crater_Ortho_30m.vrt"), - Description = [[This is a visible orthoimage for the KerteszCrater region on Mercury. This data product class of this data is observational and has been constructed to examine the visible and topographic settings of landforms around Mercury’s hollows. Observations of topography, specifically the relationships of hollows to their surroundings, can be used to investigate hollow formation. The visible image has been orthorectified using a digital elevation model (DEM) created from Mercury Dual Imaging System (MDIS) stereo pair images. The DEM used to generate the orthoimage has been aligned and controlled to Mercury Laser Altimeter (MLA) individual elevation points. The orthoimage was then projected onto the DEM and exported. This ortho image has been generated at a resolution of 30m/pixel.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MSGR MDIS Mosaic, Kertesz Crater]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mercury/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:IAU2000::19900&d=&l=MSGR_Kertesz_Crater_Ortho_30m%2Ctrue%2C1&b=mercury&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MSGR MDIS Mosaic, Kertesz Crater layer from NASA/Treks for Mercury]] -} diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic_North-West_of_Degas_Crater/MSGR_MDIS_Mosaic_North-West_of_Degas_Crater.asset b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic_North-West_of_Degas_Crater/MSGR_MDIS_Mosaic_North-West_of_Degas_Crater.asset deleted file mode 100644 index 3678e6ea40..0000000000 --- a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic_North-West_of_Degas_Crater/MSGR_MDIS_Mosaic_North-West_of_Degas_Crater.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mercury/mercury").Mercury.Identifier - -local layer = { - Identifier = "MSGR_nw_Degas_Crater_Ortho_26m", - Name = [[MSGR MDIS Mosaic, North-West of Degas Crater]], - FilePath = asset.localResource("MSGR_nw_Degas_Crater_Ortho_26m.vrt"), - Description = [[This is a visible orthoimage for the region northwest of Degas Crater on Mercury. This data product class of this data is observational and has been constructed to examine the visible and topographic settings of landforms around Mercury’s hollows. Observations of topography, specifically the relationships of hollows to their surroundings, can be used to investigate hollow formation. The visible image has been orthorectified using a digital elevation model (DEM) created from Mercury Dual Imaging System (MDIS) stereo pair images. The DEM used to generate the orthoimage has been aligned and controlled to Mercury Laser Altimeter (MLA) individual elevation points. The orthoimage was then projected onto the DEM and exported. This ortho image has been generated at a resolution of 26m/pixel.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MSGR MDIS Mosaic, North-West of Degas Crater]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mercury/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:IAU2000::19900&d=&l=MSGR_nw_Degas_Crater_Ortho_26m%2Ctrue%2C1&b=mercury&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MSGR MDIS Mosaic, North-West of Degas Crater layer from NASA/Treks for Mercury]] -} diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic_North-West_of_Degas_Crater/MSGR_nw_Degas_Crater_Ortho_26m.vrt b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic_North-West_of_Degas_Crater/MSGR_nw_Degas_Crater_Ortho_26m.vrt deleted file mode 100644 index 8b0c6bbc33..0000000000 --- a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic_North-West_of_Degas_Crater/MSGR_nw_Degas_Crater_Ortho_26m.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mercury_2000",DATUM["D_Mercury_2000",SPHEROID["Mercury_2000_IAU_IAG",2439700,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 3.4332275390625000e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -3.4332275390625000e-04 - - 0 - Red - - MSGR_nw_Degas_Crater_Ortho_26m.wms - 1 - - - - 0 - - - - 0 - Green - - MSGR_nw_Degas_Crater_Ortho_26m.wms - 2 - - - - 0 - - - - 0 - Blue - - MSGR_nw_Degas_Crater_Ortho_26m.wms - 3 - - - - 0 - - - - Alpha - - MSGR_nw_Degas_Crater_Ortho_26m.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic_Praxiteles_Peak_Ring/MSGR_MDIS_Mosaic_Praxiteles_Peak_Ring.asset b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic_Praxiteles_Peak_Ring/MSGR_MDIS_Mosaic_Praxiteles_Peak_Ring.asset deleted file mode 100644 index f17ae98125..0000000000 --- a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic_Praxiteles_Peak_Ring/MSGR_MDIS_Mosaic_Praxiteles_Peak_Ring.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mercury/mercury").Mercury.Identifier - -local layer = { - Identifier = "MSGR_Praxiteles_Peak_Ring_Ortho_20m", - Name = [[MSGR MDIS Mosaic, Praxiteles Peak Ring]], - FilePath = asset.localResource("MSGR_Praxiteles_Peak_Ring_Ortho_20m.vrt"), - Description = [[This is a visible orthoimage for the Praxiteles Peak Ring region on Mercury. This data product class of this data is observational and has been constructed to examine the visible and topographic settings of landforms around Mercury’s hollows. Observations of topography, specifically the relationships of hollows to their surroundings, can be used to investigate hollow formation. The visible image has been orthorectified using a digital elevation model (DEM) created from Mercury Dual Imaging System (MDIS) stereo pair images. The DEM used to generate the orthoimage has been aligned and controlled to Mercury Laser Altimeter (MLA) individual elevation points. The orthoimage was then projected onto the DEM and exported. This ortho image has been generated at a resolution of 20m/pixel.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MSGR MDIS Mosaic, Praxiteles Peak Ring]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mercury/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:IAU2000::19900&d=&l=MSGR_Praxiteles_Peak_Ring_Ortho_20m%2Ctrue%2C1&b=mercury&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MSGR MDIS Mosaic, Praxiteles Peak Ring layer from NASA/Treks for Mercury]] -} diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic_Praxiteles_Peak_Ring/MSGR_Praxiteles_Peak_Ring_Ortho_20m.vrt b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic_Praxiteles_Peak_Ring/MSGR_Praxiteles_Peak_Ring_Ortho_20m.vrt deleted file mode 100644 index 3e0e7cbf86..0000000000 --- a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic_Praxiteles_Peak_Ring/MSGR_Praxiteles_Peak_Ring_Ortho_20m.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mercury_2000",DATUM["D_Mercury_2000",SPHEROID["Mercury_2000_IAU_IAG",2439700,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 3.4332275390625000e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -3.4332275390625000e-04 - - 0 - Red - - MSGR_Praxiteles_Peak_Ring_Ortho_20m.wms - 1 - - - - 0 - - - - 0 - Green - - MSGR_Praxiteles_Peak_Ring_Ortho_20m.wms - 2 - - - - 0 - - - - 0 - Blue - - MSGR_Praxiteles_Peak_Ring_Ortho_20m.wms - 3 - - - - 0 - - - - Alpha - - MSGR_Praxiteles_Peak_Ring_Ortho_20m.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic_Raditladi_Crater/MSGR_MDIS_Mosaic_Raditladi_Crater.asset b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic_Raditladi_Crater/MSGR_MDIS_Mosaic_Raditladi_Crater.asset deleted file mode 100644 index 32d883ea04..0000000000 --- a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic_Raditladi_Crater/MSGR_MDIS_Mosaic_Raditladi_Crater.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mercury/mercury").Mercury.Identifier - -local layer = { - Identifier = "MSGR_Raditladi_Crater_Ortho_40m", - Name = [[MSGR MDIS Mosaic, Raditladi Crater]], - FilePath = asset.localResource("MSGR_Raditladi_Crater_Ortho_40m.vrt"), - Description = [[This is a visible orthoimage for the Raditladi Crater region on Mercury. This data product class of this data is observational and has been constructed to examine the visible and topographic settings of landforms around Mercury’s hollows. Observations of topography, specifically the relationships of hollows to their surroundings, can be used to investigate hollow formation. The visible image has been orthorectified using a digital elevation model (DEM) created from Mercury Dual Imaging System (MDIS) stereo pair images. The DEM used to generate the orthoimage has been aligned and controlled to Mercury Laser Altimeter (MLA) individual elevation points. The orthoimage was then projected onto the DEM and exported. This ortho image has been generated at a resolution of 40m/pixel.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MSGR MDIS Mosaic, Raditladi Crater]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mercury/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:IAU2000::19900&d=&l=MSGR_Raditladi_Crater_Ortho_40m%2Ctrue%2C1&b=mercury&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MSGR MDIS Mosaic, Raditladi Crater layer from NASA/Treks for Mercury]] -} diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic_Raditladi_Crater/MSGR_Raditladi_Crater_Ortho_40m.vrt b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic_Raditladi_Crater/MSGR_Raditladi_Crater_Ortho_40m.vrt deleted file mode 100644 index 70dc9fa49a..0000000000 --- a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic_Raditladi_Crater/MSGR_Raditladi_Crater_Ortho_40m.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mercury_2000",DATUM["D_Mercury_2000",SPHEROID["Mercury_2000_IAU_IAG",2439700,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 6.8664550781250000e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -6.8664550781250000e-04 - - 0 - Red - - MSGR_Raditladi_Crater_Ortho_40m.wms - 1 - - - - 0 - - - - 0 - Green - - MSGR_Raditladi_Crater_Ortho_40m.wms - 2 - - - - 0 - - - - 0 - Blue - - MSGR_Raditladi_Crater_Ortho_40m.wms - 3 - - - - 0 - - - - Alpha - - MSGR_Raditladi_Crater_Ortho_40m.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic_Sander_Crater/MSGR_MDIS_Mosaic_Sander_Crater.asset b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic_Sander_Crater/MSGR_MDIS_Mosaic_Sander_Crater.asset deleted file mode 100644 index 32f72d0113..0000000000 --- a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic_Sander_Crater/MSGR_MDIS_Mosaic_Sander_Crater.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mercury/mercury").Mercury.Identifier - -local layer = { - Identifier = "MSGR_Sander_Crater_Ortho_22m", - Name = [[MSGR MDIS Mosaic, Sander Crater]], - FilePath = asset.localResource("MSGR_Sander_Crater_Ortho_22m.vrt"), - Description = [[This is a visible orthoimage for the Sander Crater region on Mercury. This data product class of this data is observational and has been constructed to examine the visible and topographic settings of landforms around Mercury’s hollows. Observations of topography, specifically the relationships of hollows to their surroundings, can be used to investigate hollow formation. The visible image has been orthorectified using a digital elevation model (DEM) created from Mercury Dual Imaging System (MDIS) stereo pair images. The DEM used to generate the orthoimage has been aligned and controlled to Mercury Laser Altimeter (MLA) individual elevation points. The orthoimage was then projected onto the DEM and exported. This ortho image has been generated at a resolution of 22m/pixel.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MSGR MDIS Mosaic, Sander Crater]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mercury/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:IAU2000::19900&d=&l=MSGR_Sander_Crater_Ortho_22m%2Ctrue%2C1&b=mercury&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MSGR MDIS Mosaic, Sander Crater layer from NASA/Treks for Mercury]] -} diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic_Sander_Crater/MSGR_Sander_Crater_Ortho_22m.vrt b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic_Sander_Crater/MSGR_Sander_Crater_Ortho_22m.vrt deleted file mode 100644 index 4ebdaa74db..0000000000 --- a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic_Sander_Crater/MSGR_Sander_Crater_Ortho_22m.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mercury_2000",DATUM["D_Mercury_2000",SPHEROID["Mercury_2000_IAU_IAG",2439700,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 3.4332275390625000e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -3.4332275390625000e-04 - - 0 - Red - - MSGR_Sander_Crater_Ortho_22m.wms - 1 - - - - 0 - - - - 0 - Green - - MSGR_Sander_Crater_Ortho_22m.wms - 2 - - - - 0 - - - - 0 - Blue - - MSGR_Sander_Crater_Ortho_22m.wms - 3 - - - - 0 - - - - Alpha - - MSGR_Sander_Crater_Ortho_22m.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic_Sholem_Aleichem_Crater_Wall/MSGR_MDIS_Mosaic_Sholem_Aleichem_Crater_Wall.asset b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic_Sholem_Aleichem_Crater_Wall/MSGR_MDIS_Mosaic_Sholem_Aleichem_Crater_Wall.asset deleted file mode 100644 index eabdcac93e..0000000000 --- a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic_Sholem_Aleichem_Crater_Wall/MSGR_MDIS_Mosaic_Sholem_Aleichem_Crater_Wall.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mercury/mercury").Mercury.Identifier - -local layer = { - Identifier = "MSGR_Sholem_Aleichem_Crater_Wall_Ortho_8m", - Name = [[MSGR MDIS Mosaic, Sholem Aleichem Crater Wall]], - FilePath = asset.localResource("MSGR_Sholem_Aleichem_Crater_Wall_Ortho_8m.vrt"), - Description = [[This is a visible orthoimage for the Sholem Aleichem Crater Wall region on Mercury. This data product class of this data is observational and has been constructed to examine the visible and topographic settings of landforms around Mercury’s hollows. Observations of topography, specifically the relationships of hollows to their surroundings, can be used to investigate hollow formation. The visible image has been orthorectified using a digital elevation model (DEM) created from Mercury Dual Imaging System (MDIS) stereo pair images. The DEM used to generate the orthoimage has been aligned and controlled to Mercury Laser Altimeter (MLA) individual elevation points. The orthoimage was then projected onto the DEM and exported. This ortho image has been generated at a resolution of 8m/pixel.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MSGR MDIS Mosaic, Sholem Aleichem Crater Wall]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mercury/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:IAU2000::19900&d=&l=MSGR_Sholem_Aleichem_Crater_Wall_Ortho_8m%2Ctrue%2C1&b=mercury&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MSGR MDIS Mosaic, Sholem Aleichem Crater Wall layer from NASA/Treks for Mercury]] -} diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic_Sholem_Aleichem_Crater_Wall/MSGR_Sholem_Aleichem_Crater_Wall_Ortho_8m.vrt b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic_Sholem_Aleichem_Crater_Wall/MSGR_Sholem_Aleichem_Crater_Wall_Ortho_8m.vrt deleted file mode 100644 index ecb83ce153..0000000000 --- a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Mosaic_Sholem_Aleichem_Crater_Wall/MSGR_Sholem_Aleichem_Crater_Wall_Ortho_8m.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mercury_2000",DATUM["D_Mercury_2000",SPHEROID["Mercury_2000_IAU_IAG",2439700,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 8.5830688476562500e-05, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -8.5830688476562500e-05 - - 0 - Red - - MSGR_Sholem_Aleichem_Crater_Wall_Ortho_8m.wms - 1 - - - - 0 - - - - 0 - Green - - MSGR_Sholem_Aleichem_Crater_Wall_Ortho_8m.wms - 2 - - - - 0 - - - - 0 - Blue - - MSGR_Sholem_Aleichem_Crater_Wall_Ortho_8m.wms - 3 - - - - 0 - - - - Alpha - - MSGR_Sholem_Aleichem_Crater_Wall_Ortho_8m.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope.asset b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope.asset new file mode 100644 index 0000000000..d8c1e77abe --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope.asset @@ -0,0 +1,124 @@ +-- This file was automatically generated using a script found at +-- https://github.com/OpenSpace/scripts/treks-to-openspace. See the README.md file +-- in that repository for more information on how to run the script to update these +-- files. In particular in the case of errors, prefer to change that script rather +-- than the individual files + +local globeIdentifier = asset.require("scene/solarsystem//planets/mercury/mercury").Mercury.Identifier + +local treks_MSGR_Aksakov_Crater_Peak_Ring_Slope_100m = { + Identifier = "MSGR_Aksakov_Crater_Peak_Ring_Slope_100m", + Name = [[MSGR MDIS Slope, Aksakov Crater Peak Ring]], + FilePath = asset.localResource("MSGR_MDIS_Slope/Aksakov_Crater_Peak_Ring.vrt"), + Description = [[This is a slope product of the digital elevation model (DEM) for the Aksakov Crater Peak Ring region on Mercury. This data product class of this data is observational and has been constructed to examine the topographic settings of landforms around Mercury’s hollows. Observations of topography, specifically the relationships of hollows to their surroundings, can be used to investigate hollow formation. This DEM has been derived from Mercury Dual Imaging System (MDIS) data and has been generated at a resolution of 100m/pixel. The DEM has been aligned and controlled to Mercury Laser Altimeter (MLA) individual elevation points. Vertical offsets in this DEM have been roughly corrected relative to the USGS’s 665m Global DEM of Mercury. DEM elevation values are in meters and referred to a radius of 2440000m. Slope values are in degrees with a minimum value of 0 and a maximum value of 41.818.]] +} + +local treks_MSGR_near_Dali_Crater_Slope_60m = { + Identifier = "MSGR_near_Dali_Crater_Slope_60m", + Name = [[MSGR MDIS Slope, Crater near Dali Crater]], + FilePath = asset.localResource("MSGR_MDIS_Slope/Crater_near_Dali_Crater.vrt"), + Description = [[This is a slope product of the digital elevation model (DEM) for the Crater Near Dali Crater region on Mercury. This data product class of this data is observational and has been constructed to examine the topographic settings of landforms around Mercury’s hollows. Observations of topography, specifically the relationships of hollows to their surroundings, can be used to investigate hollow formation. This DEM has been derived from Mercury Dual Imaging System (MDIS) data and has been generated at a resolution of 60m/pixel. The DEM has been aligned and controlled to Mercury Laser Altimeter (MLA) individual elevation points. Vertical offsets in this DEM have been roughly corrected relative to the USGS’s 665m Global DEM of Mercury. DEM elevation values are in meters and referred to a radius of 2440000m. Slope values are in degrees with a minimum value of 0 and a maximum value of 50.112.]] +} + +local treks_MSGR_near_Geddes_Crater_Slope_100m = { + Identifier = "MSGR_near_Geddes_Crater_Slope_100m", + Name = [[MSGR MDIS Slope, Crater near Geddes Crater]], + FilePath = asset.localResource("MSGR_MDIS_Slope/Crater_near_Geddes_Crater.vrt"), + Description = [[This is a slope product of the digital elevation model (DEM) for the Crater Near Geddes Crater region on Mercury. This data product class of this data is observational and has been constructed to examine the topographic settings of landforms around Mercury’s hollows. Observations of topography, specifically the relationships of hollows to their surroundings, can be used to investigate hollow formation. This DEM has been derived from Mercury Dual Imaging System (MDIS) data and has been generated at a resolution of 100m/pixel. The DEM has been aligned and controlled to Mercury Laser Altimeter (MLA) individual elevation points. Vertical offsets in this DEM have been roughly corrected relative to the USGS’s 665m Global DEM of Mercury. DEM elevation values are in meters and referred to a radius of 2440000m. Slope values are in degrees with a minimum value of 0 and a maximum value of 42.451.]] +} + +local treks_MSGR_Degas_Crater_Slope_90m = { + Identifier = "MSGR_Degas_Crater_Slope_90m", + Name = [[MSGR MDIS Slope, Degas Crater]], + FilePath = asset.localResource("MSGR_MDIS_Slope/Degas_Crater.vrt"), + Description = [[This is a slope product of the digital elevation model (DEM) for the Degas Crater region on Mercury. This data product class of this data is observational and has been constructed to examine the topographic settings of landforms around Mercury’s hollows. Observations of topography, specifically the relationships of hollows to their surroundings, can be used to investigate hollow formation. This DEM has been derived from Mercury Dual Imaging System (MDIS) data and has been generated at a resolution of 90m/pixel. The DEM has been aligned and controlled to Mercury Laser Altimeter (MLA) individual elevation points. Vertical offsets in this DEM have been roughly corrected relative to the USGS’s 665m Global DEM of Mercury. DEM elevation values are in meters and referred to a radius of 2440000m. Slope values are in degrees with a minimum value of 0 and a maximum value of 53.812.]] +} + +local treks_MSGR_Kertesz_Crater_Slope_100m = { + Identifier = "MSGR_Kertesz_Crater_Slope_100m", + Name = [[MSGR MDIS Slope, Kertesz Crater]], + FilePath = asset.localResource("MSGR_MDIS_Slope/Kertesz_Crater.vrt"), + Description = [[This is a slope product of the digital elevation model (DEM) for the Kertesz Crater region on Mercury. This data product class of this data is observational and has been constructed to examine the topographic settings of landforms around Mercury’s hollows. Observations of topography, specifically the relationships of hollows to their surroundings, can be used to investigate hollow formation. This DEM has been derived from Mercury Dual Imaging System (MDIS) data and has been generated at a resolution of 100m/pixel. The DEM has been aligned and controlled to Mercury Laser Altimeter (MLA) individual elevation points. Vertical offsets in this DEM have been roughly corrected relative to the USGS’s 665m Global DEM of Mercury. DEM elevation values are in meters and referred to a radius of 2440000m. Slope values are in degrees with a minimum value of 0 and a maximum value of 51.033.]] +} + +local treks_MSGR_nw_Degas_Crater_Slope_80m = { + Identifier = "MSGR_nw_Degas_Crater_Slope_80m", + Name = [[MSGR MDIS Slope, North-West of Degas Crater]], + FilePath = asset.localResource("MSGR_MDIS_Slope/North-West_of_Degas_Crater.vrt"), + Description = [[This is a slope product of the digital elevation model (DEM) for the northwest region of Degas Crater on Mercury. This data product class of this data is observational and has been constructed to examine the topographic settings of landforms around Mercury’s hollows. Observations of topography, specifically the relationships of hollows to their surroundings, can be used to investigate hollow formation. This DEM has been derived from Mercury Dual Imaging System (MDIS) data and has been generated at a resolution of 80m/pixel. The DEM has been aligned and controlled to Mercury Laser Altimeter (MLA) individual elevation points. Vertical offsets in this DEM have been roughly corrected relative to the USGS’s 665m Global DEM of Mercury. DEM elevation values are in meters and referred to a radius of 2440000m. Slope values are in degrees with a minimum value of 0 and a maximum value of 42.616.]] +} + +local treks_MSGR_Praxiteles_Peak_Ring_Slope_60m = { + Identifier = "MSGR_Praxiteles_Peak_Ring_Slope_60m", + Name = [[MSGR MDIS Slope, Praxiteles Peak Ring]], + FilePath = asset.localResource("MSGR_MDIS_Slope/Praxiteles_Peak_Ring.vrt"), + Description = [[This is a colorized slope product of the digital elevation model (DEM) for the Praxiteles Peak Ring region on Mercury. This data product class of this data is observational and has been constructed to examine the topographic settings of landforms around Mercury’s hollows. Observations of topography, specifically the relationships of hollows to their surroundings, can be used to investigate hollow formation. This DEM has been derived from Mercury Dual Imaging System (MDIS) data and has been generated at a resolution of 60m/pixel. The DEM has been aligned and controlled to Mercury Laser Altimeter (MLA) individual elevation points. Vertical offsets in this DEM have been roughly corrected relative to the USGS’s 665m Global DEM of Mercury. DEM elevation values are in meters and referred to a radius of 2440000m. Slope values are in degrees with a minimum value of 0 and a maximum value of 46.484.]] +} + +local treks_MSGR_Raditladi_Crater_Slope_120m = { + Identifier = "MSGR_Raditladi_Crater_Slope_120m", + Name = [[MSGR MDIS Slope, Raditladi Crater]], + FilePath = asset.localResource("MSGR_MDIS_Slope/Raditladi_Crater.vrt"), + Description = [[This is a slope product of the digital elevation model (DEM) for the Raditladi Crater region on Mercury. This data product class of this data is observational and has been constructed to examine the topographic settings of landforms around Mercury’s hollows. Observations of topography, specifically the relationships of hollows to their surroundings, can be used to investigate hollow formation. This DEM has been derived from Mercury Dual Imaging System (MDIS) data and has been generated at a resolution of 120m/pixel. The DEM has been aligned and controlled to Mercury Laser Altimeter (MLA) individual elevation points. Vertical offsets in this DEM have been roughly corrected relative to the USGS’s 665m Global DEM of Mercury. DEM elevation values are in meters and referred to a radius of 2440000m. Slope values are in degrees with a minimum value of 0 and a maximum value of 39.538.]] +} + +local treks_MSGR_Sander_Crater_Slope_80m = { + Identifier = "MSGR_Sander_Crater_Slope_80m", + Name = [[MSGR MDIS Slope, Sander Crater]], + FilePath = asset.localResource("MSGR_MDIS_Slope/Sander_Crater.vrt"), + Description = [[This is a slope product of the digital elevation model (DEM) for the Sander Crater region on Mercury. This data product class of this data is observational and has been constructed to examine the topographic settings of landforms around Mercury’s hollows. Observations of topography, specifically the relationships of hollows to their surroundings, can be used to investigate hollow formation. This DEM has been derived from Mercury Dual Imaging System (MDIS) data and has been generated at a resolution of 80m/pixel. The DEM has been aligned and controlled to Mercury Laser Altimeter (MLA) individual elevation points. Vertical offsets in this DEM have been roughly corrected relative to the USGS’s 665m Global DEM of Mercury. DEM elevation values are in meters and referred to a radius of 2440000m. Slope values are in degrees with a minimum value of 0 and a maximum value of 41.517.]] +} + +local treks_MSGR_Sholem_Aleichem_Crater_Wall_Slope_25m = { + Identifier = "MSGR_Sholem_Aleichem_Crater_Wall_Slope_25m", + Name = [[MSGR MDIS Slope, Sholem Aleichem Crater Wall]], + FilePath = asset.localResource("MSGR_MDIS_Slope/Sholem_Aleichem_Crater_Wall.vrt"), + Description = [[This is a colorized slope product of the digital elevation model (DEM) for the Sholem Aleichem Crater Wall region on Mercury. This data product class of this data is observational and has been constructed to examine the topographic settings of landforms around Mercury’s hollows. Observations of topography, specifically the relationships of hollows to their surroundings, can be used to investigate hollow formation. This DEM has been derived from Mercury Dual Imaging System (MDIS) data and has been generated at a resolution of 25m/pixel. The DEM has been aligned and controlled to Mercury Laser Altimeter (MLA) individual elevation points. Vertical offsets in this DEM have been roughly corrected relative to the USGS’s 665m Global DEM of Mercury. DEM elevation values are in meters and referred to a radius of 2440000m. Slope values are in degrees with a minimum value of 0 and a maximum value of 40.746.]] +} + +asset.onInitialize(function() + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_MSGR_Aksakov_Crater_Peak_Ring_Slope_100m) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_MSGR_near_Dali_Crater_Slope_60m) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_MSGR_near_Geddes_Crater_Slope_100m) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_MSGR_Degas_Crater_Slope_90m) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_MSGR_Kertesz_Crater_Slope_100m) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_MSGR_nw_Degas_Crater_Slope_80m) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_MSGR_Praxiteles_Peak_Ring_Slope_60m) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_MSGR_Raditladi_Crater_Slope_120m) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_MSGR_Sander_Crater_Slope_80m) + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", treks_MSGR_Sholem_Aleichem_Crater_Wall_Slope_25m) +end) + +asset.onDeinitialize(function() + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_MSGR_Aksakov_Crater_Peak_Ring_Slope_100m") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_MSGR_near_Dali_Crater_Slope_60m") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_MSGR_near_Geddes_Crater_Slope_100m") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_MSGR_Degas_Crater_Slope_90m") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_MSGR_Kertesz_Crater_Slope_100m") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_MSGR_nw_Degas_Crater_Slope_80m") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_MSGR_Praxiteles_Peak_Ring_Slope_60m") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_MSGR_Raditladi_Crater_Slope_120m") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_MSGR_Sander_Crater_Slope_80m") + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", "treks_MSGR_Sholem_Aleichem_Crater_Wall_Slope_25m") +end) + +asset.export("MSGR_Aksakov_Crater_Peak_Ring_Slope_100m", treks_MSGR_Aksakov_Crater_Peak_Ring_Slope_100m) +asset.export("MSGR_near_Dali_Crater_Slope_60m", treks_MSGR_near_Dali_Crater_Slope_60m) +asset.export("MSGR_near_Geddes_Crater_Slope_100m", treks_MSGR_near_Geddes_Crater_Slope_100m) +asset.export("MSGR_Degas_Crater_Slope_90m", treks_MSGR_Degas_Crater_Slope_90m) +asset.export("MSGR_Kertesz_Crater_Slope_100m", treks_MSGR_Kertesz_Crater_Slope_100m) +asset.export("MSGR_nw_Degas_Crater_Slope_80m", treks_MSGR_nw_Degas_Crater_Slope_80m) +asset.export("MSGR_Praxiteles_Peak_Ring_Slope_60m", treks_MSGR_Praxiteles_Peak_Ring_Slope_60m) +asset.export("MSGR_Raditladi_Crater_Slope_120m", treks_MSGR_Raditladi_Crater_Slope_120m) +asset.export("MSGR_Sander_Crater_Slope_80m", treks_MSGR_Sander_Crater_Slope_80m) +asset.export("MSGR_Sholem_Aleichem_Crater_Wall_Slope_25m", treks_MSGR_Sholem_Aleichem_Crater_Wall_Slope_25m) + + +asset.meta = { + Name = [[NASA Treks Layers for Mercury MSGR_MDIS_Slope], + Version = "1.0", + Author = "NASA/Treks", + URL = "https://trek.nasa.gov/mercury", + License = "NASA/Treks", + Description = [[MSGR_MDIS_Slope layers from NASA/Treks for Mercury]] +} diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope/Aksakov_Crater_Peak_Ring.vrt b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope/Aksakov_Crater_Peak_Ring.vrt new file mode 100644 index 0000000000..33ef05cbeb --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope/Aksakov_Crater_Peak_Ring.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mercury_2000",DATUM["D_Mercury_2000",SPHEROID["Mercury_2000_IAU_IAG",2439700,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.3732910156250000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.3732910156250000e-03 + + 0 + Red + + Aksakov_Crater_Peak_Ring.wms + 1 + + + + 0 + + + + 0 + Green + + Aksakov_Crater_Peak_Ring.wms + 2 + + + + 0 + + + + 0 + Blue + + Aksakov_Crater_Peak_Ring.wms + 3 + + + + 0 + + + + Alpha + + Aksakov_Crater_Peak_Ring.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_Aksakov_Crater_Peak_Ring/MSGR_Aksakov_Crater_Peak_Ring_Slope_100m.wms b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope/Aksakov_Crater_Peak_Ring.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_Aksakov_Crater_Peak_Ring/MSGR_Aksakov_Crater_Peak_Ring_Slope_100m.wms rename to data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope/Aksakov_Crater_Peak_Ring.wms diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope/Crater_near_Dali_Crater.vrt b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope/Crater_near_Dali_Crater.vrt new file mode 100644 index 0000000000..6169e7ecbd --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope/Crater_near_Dali_Crater.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mercury_2000",DATUM["D_Mercury_2000",SPHEROID["Mercury_2000_IAU_IAG",2439700,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 6.8664550781250000e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -6.8664550781250000e-04 + + 0 + Red + + Crater_near_Dali_Crater.wms + 1 + + + + 0 + + + + 0 + Green + + Crater_near_Dali_Crater.wms + 2 + + + + 0 + + + + 0 + Blue + + Crater_near_Dali_Crater.wms + 3 + + + + 0 + + + + Alpha + + Crater_near_Dali_Crater.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_Crater_near_Dali_Crater/MSGR_near_Dali_Crater_Slope_60m.wms b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope/Crater_near_Dali_Crater.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_Crater_near_Dali_Crater/MSGR_near_Dali_Crater_Slope_60m.wms rename to data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope/Crater_near_Dali_Crater.wms diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope/Crater_near_Geddes_Crater.vrt b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope/Crater_near_Geddes_Crater.vrt new file mode 100644 index 0000000000..d1398a62f8 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope/Crater_near_Geddes_Crater.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mercury_2000",DATUM["D_Mercury_2000",SPHEROID["Mercury_2000_IAU_IAG",2439700,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.3732910156250000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.3732910156250000e-03 + + 0 + Red + + Crater_near_Geddes_Crater.wms + 1 + + + + 0 + + + + 0 + Green + + Crater_near_Geddes_Crater.wms + 2 + + + + 0 + + + + 0 + Blue + + Crater_near_Geddes_Crater.wms + 3 + + + + 0 + + + + Alpha + + Crater_near_Geddes_Crater.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_Crater_near_Geddes_Crater/MSGR_near_Geddes_Crater_Slope_100m.wms b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope/Crater_near_Geddes_Crater.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_Crater_near_Geddes_Crater/MSGR_near_Geddes_Crater_Slope_100m.wms rename to data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope/Crater_near_Geddes_Crater.wms diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope/Degas_Crater.vrt b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope/Degas_Crater.vrt new file mode 100644 index 0000000000..2e1f6a83ec --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope/Degas_Crater.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mercury_2000",DATUM["D_Mercury_2000",SPHEROID["Mercury_2000_IAU_IAG",2439700,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.3732910156250000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.3732910156250000e-03 + + 0 + Red + + Degas_Crater.wms + 1 + + + + 0 + + + + 0 + Green + + Degas_Crater.wms + 2 + + + + 0 + + + + 0 + Blue + + Degas_Crater.wms + 3 + + + + 0 + + + + Alpha + + Degas_Crater.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_Degas_Crater/MSGR_Degas_Crater_Slope_90m.wms b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope/Degas_Crater.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_Degas_Crater/MSGR_Degas_Crater_Slope_90m.wms rename to data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope/Degas_Crater.wms diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope/Kertesz_Crater.vrt b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope/Kertesz_Crater.vrt new file mode 100644 index 0000000000..9e9e240625 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope/Kertesz_Crater.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mercury_2000",DATUM["D_Mercury_2000",SPHEROID["Mercury_2000_IAU_IAG",2439700,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.3732910156250000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.3732910156250000e-03 + + 0 + Red + + Kertesz_Crater.wms + 1 + + + + 0 + + + + 0 + Green + + Kertesz_Crater.wms + 2 + + + + 0 + + + + 0 + Blue + + Kertesz_Crater.wms + 3 + + + + 0 + + + + Alpha + + Kertesz_Crater.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_Kertesz_Crater/MSGR_Kertesz_Crater_Slope_100m.wms b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope/Kertesz_Crater.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_Kertesz_Crater/MSGR_Kertesz_Crater_Slope_100m.wms rename to data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope/Kertesz_Crater.wms diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope/North-West_of_Degas_Crater.vrt b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope/North-West_of_Degas_Crater.vrt new file mode 100644 index 0000000000..9de22d2a23 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope/North-West_of_Degas_Crater.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mercury_2000",DATUM["D_Mercury_2000",SPHEROID["Mercury_2000_IAU_IAG",2439700,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.3732910156250000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.3732910156250000e-03 + + 0 + Red + + North-West_of_Degas_Crater.wms + 1 + + + + 0 + + + + 0 + Green + + North-West_of_Degas_Crater.wms + 2 + + + + 0 + + + + 0 + Blue + + North-West_of_Degas_Crater.wms + 3 + + + + 0 + + + + Alpha + + North-West_of_Degas_Crater.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_North-West_of_Degas_Crater/MSGR_nw_Degas_Crater_Slope_80m.wms b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope/North-West_of_Degas_Crater.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_North-West_of_Degas_Crater/MSGR_nw_Degas_Crater_Slope_80m.wms rename to data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope/North-West_of_Degas_Crater.wms diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope/Praxiteles_Peak_Ring.vrt b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope/Praxiteles_Peak_Ring.vrt new file mode 100644 index 0000000000..f7e1d94f53 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope/Praxiteles_Peak_Ring.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mercury_2000",DATUM["D_Mercury_2000",SPHEROID["Mercury_2000_IAU_IAG",2439700,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 6.8664550781250000e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -6.8664550781250000e-04 + + 0 + Red + + Praxiteles_Peak_Ring.wms + 1 + + + + 0 + + + + 0 + Green + + Praxiteles_Peak_Ring.wms + 2 + + + + 0 + + + + 0 + Blue + + Praxiteles_Peak_Ring.wms + 3 + + + + 0 + + + + Alpha + + Praxiteles_Peak_Ring.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_Praxiteles_Peak_Ring/MSGR_Praxiteles_Peak_Ring_Slope_60m.wms b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope/Praxiteles_Peak_Ring.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_Praxiteles_Peak_Ring/MSGR_Praxiteles_Peak_Ring_Slope_60m.wms rename to data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope/Praxiteles_Peak_Ring.wms diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope/Raditladi_Crater.vrt b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope/Raditladi_Crater.vrt new file mode 100644 index 0000000000..790cf3e838 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope/Raditladi_Crater.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mercury_2000",DATUM["D_Mercury_2000",SPHEROID["Mercury_2000_IAU_IAG",2439700,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.3732910156250000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.3732910156250000e-03 + + 0 + Red + + Raditladi_Crater.wms + 1 + + + + 0 + + + + 0 + Green + + Raditladi_Crater.wms + 2 + + + + 0 + + + + 0 + Blue + + Raditladi_Crater.wms + 3 + + + + 0 + + + + Alpha + + Raditladi_Crater.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_Raditladi_Crater/MSGR_Raditladi_Crater_Slope_120m.wms b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope/Raditladi_Crater.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_Raditladi_Crater/MSGR_Raditladi_Crater_Slope_120m.wms rename to data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope/Raditladi_Crater.wms diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope/Sander_Crater.vrt b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope/Sander_Crater.vrt new file mode 100644 index 0000000000..6738895c25 --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope/Sander_Crater.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mercury_2000",DATUM["D_Mercury_2000",SPHEROID["Mercury_2000_IAU_IAG",2439700,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 1.3732910156250000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.3732910156250000e-03 + + 0 + Red + + Sander_Crater.wms + 1 + + + + 0 + + + + 0 + Green + + Sander_Crater.wms + 2 + + + + 0 + + + + 0 + Blue + + Sander_Crater.wms + 3 + + + + 0 + + + + Alpha + + Sander_Crater.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_Sander_Crater/MSGR_Sander_Crater_Slope_80m.wms b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope/Sander_Crater.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_Sander_Crater/MSGR_Sander_Crater_Slope_80m.wms rename to data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope/Sander_Crater.wms diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope/Sholem_Aleichem_Crater_Wall.vrt b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope/Sholem_Aleichem_Crater_Wall.vrt new file mode 100644 index 0000000000..5101bdac5a --- /dev/null +++ b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope/Sholem_Aleichem_Crater_Wall.vrt @@ -0,0 +1,53 @@ + + GEOGCS["GCS_Mercury_2000",DATUM["D_Mercury_2000",SPHEROID["Mercury_2000_IAU_IAG",2439700,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] + -1.8000000000000000e+02, 3.4332275390625000e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -3.4332275390625000e-04 + + 0 + Red + + Sholem_Aleichem_Crater_Wall.wms + 1 + + + + 0 + + + + 0 + Green + + Sholem_Aleichem_Crater_Wall.wms + 2 + + + + 0 + + + + 0 + Blue + + Sholem_Aleichem_Crater_Wall.wms + 3 + + + + 0 + + + + Alpha + + Sholem_Aleichem_Crater_Wall.wms + 1 + + + + 255 + 0 + 0 + + + diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_Sholem_Aleichem_Crater_Wall/MSGR_Sholem_Aleichem_Crater_Wall_Slope_25m.wms b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope/Sholem_Aleichem_Crater_Wall.wms similarity index 100% rename from data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_Sholem_Aleichem_Crater_Wall/MSGR_Sholem_Aleichem_Crater_Wall_Slope_25m.wms rename to data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope/Sholem_Aleichem_Crater_Wall.wms diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_Aksakov_Crater_Peak_Ring/MSGR_Aksakov_Crater_Peak_Ring_Slope_100m.vrt b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_Aksakov_Crater_Peak_Ring/MSGR_Aksakov_Crater_Peak_Ring_Slope_100m.vrt deleted file mode 100644 index 52fe40cdc9..0000000000 --- a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_Aksakov_Crater_Peak_Ring/MSGR_Aksakov_Crater_Peak_Ring_Slope_100m.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mercury_2000",DATUM["D_Mercury_2000",SPHEROID["Mercury_2000_IAU_IAG",2439700,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.3732910156250000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.3732910156250000e-03 - - 0 - Red - - MSGR_Aksakov_Crater_Peak_Ring_Slope_100m.wms - 1 - - - - 0 - - - - 0 - Green - - MSGR_Aksakov_Crater_Peak_Ring_Slope_100m.wms - 2 - - - - 0 - - - - 0 - Blue - - MSGR_Aksakov_Crater_Peak_Ring_Slope_100m.wms - 3 - - - - 0 - - - - Alpha - - MSGR_Aksakov_Crater_Peak_Ring_Slope_100m.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_Aksakov_Crater_Peak_Ring/MSGR_MDIS_Slope_Aksakov_Crater_Peak_Ring.asset b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_Aksakov_Crater_Peak_Ring/MSGR_MDIS_Slope_Aksakov_Crater_Peak_Ring.asset deleted file mode 100644 index 996a9b3e15..0000000000 --- a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_Aksakov_Crater_Peak_Ring/MSGR_MDIS_Slope_Aksakov_Crater_Peak_Ring.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mercury/mercury").Mercury.Identifier - -local layer = { - Identifier = "MSGR_Aksakov_Crater_Peak_Ring_Slope_100m", - Name = [[MSGR MDIS Slope, Aksakov Crater Peak Ring]], - FilePath = asset.localResource("MSGR_Aksakov_Crater_Peak_Ring_Slope_100m.vrt"), - Description = [[This is a slope product of the digital elevation model (DEM) for the Aksakov Crater Peak Ring region on Mercury. This data product class of this data is observational and has been constructed to examine the topographic settings of landforms around Mercury’s hollows. Observations of topography, specifically the relationships of hollows to their surroundings, can be used to investigate hollow formation. This DEM has been derived from Mercury Dual Imaging System (MDIS) data and has been generated at a resolution of 100m/pixel. The DEM has been aligned and controlled to Mercury Laser Altimeter (MLA) individual elevation points. Vertical offsets in this DEM have been roughly corrected relative to the USGS’s 665m Global DEM of Mercury. DEM elevation values are in meters and referred to a radius of 2440000m. Slope values are in degrees with a minimum value of 0 and a maximum value of 41.818.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MSGR MDIS Slope, Aksakov Crater Peak Ring]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mercury/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:IAU2000::19900&d=&l=MSGR_Aksakov_Crater_Peak_Ring_Slope_100m%2Ctrue%2C1&b=mercury&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MSGR MDIS Slope, Aksakov Crater Peak Ring layer from NASA/Treks for Mercury]] -} diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_Colorized_Global/MSGR_MDIS_Slope_Colorized_Global.asset b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_Colorized_Global/MSGR_MDIS_Slope_Colorized_Global.asset deleted file mode 100644 index 36a6a77f5b..0000000000 --- a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_Colorized_Global/MSGR_MDIS_Slope_Colorized_Global.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mercury/mercury").Mercury.Identifier - -local layer = { - Identifier = "Mercury_Messenger_USGS_DEM_665m_v2_SlopeColor", - Name = [[MSGR MDIS, Slope Colorized Global]], - FilePath = asset.localResource("Mercury_Messenger_USGS_DEM_665m_v2_SlopeColor.vrt"), - Description = [[This is a colorized slope data product of the USGS Astrogeology Science Center’s Mercury MESSENGER Global DEM 665m v2 data product providing global coverage of Mercury. This slope data product was generated in ArcMap with the slope spatial analysis tool. The resolution of this product is 64 pixels/degree (665 m/pixel). The control network used for registration contains tie points that are sample/line coordinates with geometric locations (derived from SPICE) that are automatically measured across the overlapping image areas. Slope values are in degrees and referred to a radius of 2439400m. Slope values range from a minimum value of 0 to a maximum value of 71.0409. The legend conveys the mapping colors to slope values (degrees).]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MSGR MDIS, Slope Colorized Global]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mercury/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:IAU2000::19900&d=&l=Mercury_Messenger_USGS_DEM_665m_v2_SlopeColor%2Ctrue%2C1&b=mercury&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MSGR MDIS, Slope Colorized Global layer from NASA/Treks for Mercury]] -} diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_Colorized_Global/Mercury_Messenger_USGS_DEM_665m_v2_SlopeColor.vrt b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_Colorized_Global/Mercury_Messenger_USGS_DEM_665m_v2_SlopeColor.vrt deleted file mode 100644 index 538d7aee5d..0000000000 --- a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_Colorized_Global/Mercury_Messenger_USGS_DEM_665m_v2_SlopeColor.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mercury_2000",DATUM["D_Mercury_2000",SPHEROID["Mercury_2000_IAU_IAG",2439700,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.0986328125000000e-02, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.0986328125000000e-02 - - 0 - Red - - Mercury_Messenger_USGS_DEM_665m_v2_SlopeColor.wms - 1 - - - - 0 - - - - 0 - Green - - Mercury_Messenger_USGS_DEM_665m_v2_SlopeColor.wms - 2 - - - - 0 - - - - 0 - Blue - - Mercury_Messenger_USGS_DEM_665m_v2_SlopeColor.wms - 3 - - - - 0 - - - - Alpha - - Mercury_Messenger_USGS_DEM_665m_v2_SlopeColor.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_Crater_near_Dali_Crater/MSGR_MDIS_Slope_Crater_near_Dali_Crater.asset b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_Crater_near_Dali_Crater/MSGR_MDIS_Slope_Crater_near_Dali_Crater.asset deleted file mode 100644 index aa4aa2afc1..0000000000 --- a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_Crater_near_Dali_Crater/MSGR_MDIS_Slope_Crater_near_Dali_Crater.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mercury/mercury").Mercury.Identifier - -local layer = { - Identifier = "MSGR_near_Dali_Crater_Slope_60m", - Name = [[MSGR MDIS Slope, Crater near Dali Crater]], - FilePath = asset.localResource("MSGR_near_Dali_Crater_Slope_60m.vrt"), - Description = [[This is a slope product of the digital elevation model (DEM) for the Crater Near Dali Crater region on Mercury. This data product class of this data is observational and has been constructed to examine the topographic settings of landforms around Mercury’s hollows. Observations of topography, specifically the relationships of hollows to their surroundings, can be used to investigate hollow formation. This DEM has been derived from Mercury Dual Imaging System (MDIS) data and has been generated at a resolution of 60m/pixel. The DEM has been aligned and controlled to Mercury Laser Altimeter (MLA) individual elevation points. Vertical offsets in this DEM have been roughly corrected relative to the USGS’s 665m Global DEM of Mercury. DEM elevation values are in meters and referred to a radius of 2440000m. Slope values are in degrees with a minimum value of 0 and a maximum value of 50.112.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MSGR MDIS Slope, Crater near Dali Crater]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mercury/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:IAU2000::19900&d=&l=MSGR_near_Dali_Crater_Slope_60m%2Ctrue%2C1&b=mercury&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MSGR MDIS Slope, Crater near Dali Crater layer from NASA/Treks for Mercury]] -} diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_Crater_near_Dali_Crater/MSGR_near_Dali_Crater_Slope_60m.vrt b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_Crater_near_Dali_Crater/MSGR_near_Dali_Crater_Slope_60m.vrt deleted file mode 100644 index 51760c8393..0000000000 --- a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_Crater_near_Dali_Crater/MSGR_near_Dali_Crater_Slope_60m.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mercury_2000",DATUM["D_Mercury_2000",SPHEROID["Mercury_2000_IAU_IAG",2439700,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 6.8664550781250000e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -6.8664550781250000e-04 - - 0 - Red - - MSGR_near_Dali_Crater_Slope_60m.wms - 1 - - - - 0 - - - - 0 - Green - - MSGR_near_Dali_Crater_Slope_60m.wms - 2 - - - - 0 - - - - 0 - Blue - - MSGR_near_Dali_Crater_Slope_60m.wms - 3 - - - - 0 - - - - Alpha - - MSGR_near_Dali_Crater_Slope_60m.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_Crater_near_Geddes_Crater/MSGR_MDIS_Slope_Crater_near_Geddes_Crater.asset b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_Crater_near_Geddes_Crater/MSGR_MDIS_Slope_Crater_near_Geddes_Crater.asset deleted file mode 100644 index 61ad8fb1c9..0000000000 --- a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_Crater_near_Geddes_Crater/MSGR_MDIS_Slope_Crater_near_Geddes_Crater.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mercury/mercury").Mercury.Identifier - -local layer = { - Identifier = "MSGR_near_Geddes_Crater_Slope_100m", - Name = [[MSGR MDIS Slope, Crater near Geddes Crater]], - FilePath = asset.localResource("MSGR_near_Geddes_Crater_Slope_100m.vrt"), - Description = [[This is a slope product of the digital elevation model (DEM) for the Crater Near Geddes Crater region on Mercury. This data product class of this data is observational and has been constructed to examine the topographic settings of landforms around Mercury’s hollows. Observations of topography, specifically the relationships of hollows to their surroundings, can be used to investigate hollow formation. This DEM has been derived from Mercury Dual Imaging System (MDIS) data and has been generated at a resolution of 100m/pixel. The DEM has been aligned and controlled to Mercury Laser Altimeter (MLA) individual elevation points. Vertical offsets in this DEM have been roughly corrected relative to the USGS’s 665m Global DEM of Mercury. DEM elevation values are in meters and referred to a radius of 2440000m. Slope values are in degrees with a minimum value of 0 and a maximum value of 42.451.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MSGR MDIS Slope, Crater near Geddes Crater]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mercury/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:IAU2000::19900&d=&l=MSGR_near_Geddes_Crater_Slope_100m%2Ctrue%2C1&b=mercury&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MSGR MDIS Slope, Crater near Geddes Crater layer from NASA/Treks for Mercury]] -} diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_Crater_near_Geddes_Crater/MSGR_near_Geddes_Crater_Slope_100m.vrt b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_Crater_near_Geddes_Crater/MSGR_near_Geddes_Crater_Slope_100m.vrt deleted file mode 100644 index eb128ec82b..0000000000 --- a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_Crater_near_Geddes_Crater/MSGR_near_Geddes_Crater_Slope_100m.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mercury_2000",DATUM["D_Mercury_2000",SPHEROID["Mercury_2000_IAU_IAG",2439700,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.3732910156250000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.3732910156250000e-03 - - 0 - Red - - MSGR_near_Geddes_Crater_Slope_100m.wms - 1 - - - - 0 - - - - 0 - Green - - MSGR_near_Geddes_Crater_Slope_100m.wms - 2 - - - - 0 - - - - 0 - Blue - - MSGR_near_Geddes_Crater_Slope_100m.wms - 3 - - - - 0 - - - - Alpha - - MSGR_near_Geddes_Crater_Slope_100m.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_Degas_Crater/MSGR_Degas_Crater_Slope_90m.vrt b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_Degas_Crater/MSGR_Degas_Crater_Slope_90m.vrt deleted file mode 100644 index cac6364d4c..0000000000 --- a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_Degas_Crater/MSGR_Degas_Crater_Slope_90m.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mercury_2000",DATUM["D_Mercury_2000",SPHEROID["Mercury_2000_IAU_IAG",2439700,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.3732910156250000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.3732910156250000e-03 - - 0 - Red - - MSGR_Degas_Crater_Slope_90m.wms - 1 - - - - 0 - - - - 0 - Green - - MSGR_Degas_Crater_Slope_90m.wms - 2 - - - - 0 - - - - 0 - Blue - - MSGR_Degas_Crater_Slope_90m.wms - 3 - - - - 0 - - - - Alpha - - MSGR_Degas_Crater_Slope_90m.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_Degas_Crater/MSGR_MDIS_Slope_Degas_Crater.asset b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_Degas_Crater/MSGR_MDIS_Slope_Degas_Crater.asset deleted file mode 100644 index 92ab30fb24..0000000000 --- a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_Degas_Crater/MSGR_MDIS_Slope_Degas_Crater.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mercury/mercury").Mercury.Identifier - -local layer = { - Identifier = "MSGR_Degas_Crater_Slope_90m", - Name = [[MSGR MDIS Slope, Degas Crater]], - FilePath = asset.localResource("MSGR_Degas_Crater_Slope_90m.vrt"), - Description = [[This is a slope product of the digital elevation model (DEM) for the Degas Crater region on Mercury. This data product class of this data is observational and has been constructed to examine the topographic settings of landforms around Mercury’s hollows. Observations of topography, specifically the relationships of hollows to their surroundings, can be used to investigate hollow formation. This DEM has been derived from Mercury Dual Imaging System (MDIS) data and has been generated at a resolution of 90m/pixel. The DEM has been aligned and controlled to Mercury Laser Altimeter (MLA) individual elevation points. Vertical offsets in this DEM have been roughly corrected relative to the USGS’s 665m Global DEM of Mercury. DEM elevation values are in meters and referred to a radius of 2440000m. Slope values are in degrees with a minimum value of 0 and a maximum value of 53.812.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MSGR MDIS Slope, Degas Crater]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mercury/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:IAU2000::19900&d=&l=MSGR_Degas_Crater_Slope_90m%2Ctrue%2C1&b=mercury&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MSGR MDIS Slope, Degas Crater layer from NASA/Treks for Mercury]] -} diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_Kertesz_Crater/MSGR_Kertesz_Crater_Slope_100m.vrt b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_Kertesz_Crater/MSGR_Kertesz_Crater_Slope_100m.vrt deleted file mode 100644 index c0d9f0316f..0000000000 --- a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_Kertesz_Crater/MSGR_Kertesz_Crater_Slope_100m.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mercury_2000",DATUM["D_Mercury_2000",SPHEROID["Mercury_2000_IAU_IAG",2439700,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.3732910156250000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.3732910156250000e-03 - - 0 - Red - - MSGR_Kertesz_Crater_Slope_100m.wms - 1 - - - - 0 - - - - 0 - Green - - MSGR_Kertesz_Crater_Slope_100m.wms - 2 - - - - 0 - - - - 0 - Blue - - MSGR_Kertesz_Crater_Slope_100m.wms - 3 - - - - 0 - - - - Alpha - - MSGR_Kertesz_Crater_Slope_100m.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_Kertesz_Crater/MSGR_MDIS_Slope_Kertesz_Crater.asset b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_Kertesz_Crater/MSGR_MDIS_Slope_Kertesz_Crater.asset deleted file mode 100644 index 7b7b50e863..0000000000 --- a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_Kertesz_Crater/MSGR_MDIS_Slope_Kertesz_Crater.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mercury/mercury").Mercury.Identifier - -local layer = { - Identifier = "MSGR_Kertesz_Crater_Slope_100m", - Name = [[MSGR MDIS Slope, Kertesz Crater]], - FilePath = asset.localResource("MSGR_Kertesz_Crater_Slope_100m.vrt"), - Description = [[This is a slope product of the digital elevation model (DEM) for the Kertesz Crater region on Mercury. This data product class of this data is observational and has been constructed to examine the topographic settings of landforms around Mercury’s hollows. Observations of topography, specifically the relationships of hollows to their surroundings, can be used to investigate hollow formation. This DEM has been derived from Mercury Dual Imaging System (MDIS) data and has been generated at a resolution of 100m/pixel. The DEM has been aligned and controlled to Mercury Laser Altimeter (MLA) individual elevation points. Vertical offsets in this DEM have been roughly corrected relative to the USGS’s 665m Global DEM of Mercury. DEM elevation values are in meters and referred to a radius of 2440000m. Slope values are in degrees with a minimum value of 0 and a maximum value of 51.033.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MSGR MDIS Slope, Kertesz Crater]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mercury/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:IAU2000::19900&d=&l=MSGR_Kertesz_Crater_Slope_100m%2Ctrue%2C1&b=mercury&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MSGR MDIS Slope, Kertesz Crater layer from NASA/Treks for Mercury]] -} diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_North-West_of_Degas_Crater/MSGR_MDIS_Slope_North-West_of_Degas_Crater.asset b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_North-West_of_Degas_Crater/MSGR_MDIS_Slope_North-West_of_Degas_Crater.asset deleted file mode 100644 index 8bc3a56c36..0000000000 --- a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_North-West_of_Degas_Crater/MSGR_MDIS_Slope_North-West_of_Degas_Crater.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mercury/mercury").Mercury.Identifier - -local layer = { - Identifier = "MSGR_nw_Degas_Crater_Slope_80m", - Name = [[MSGR MDIS Slope, North-West of Degas Crater]], - FilePath = asset.localResource("MSGR_nw_Degas_Crater_Slope_80m.vrt"), - Description = [[This is a slope product of the digital elevation model (DEM) for the northwest region of Degas Crater on Mercury. This data product class of this data is observational and has been constructed to examine the topographic settings of landforms around Mercury’s hollows. Observations of topography, specifically the relationships of hollows to their surroundings, can be used to investigate hollow formation. This DEM has been derived from Mercury Dual Imaging System (MDIS) data and has been generated at a resolution of 80m/pixel. The DEM has been aligned and controlled to Mercury Laser Altimeter (MLA) individual elevation points. Vertical offsets in this DEM have been roughly corrected relative to the USGS’s 665m Global DEM of Mercury. DEM elevation values are in meters and referred to a radius of 2440000m. Slope values are in degrees with a minimum value of 0 and a maximum value of 42.616.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MSGR MDIS Slope, North-West of Degas Crater]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mercury/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:IAU2000::19900&d=&l=MSGR_nw_Degas_Crater_Slope_80m%2Ctrue%2C1&b=mercury&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MSGR MDIS Slope, North-West of Degas Crater layer from NASA/Treks for Mercury]] -} diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_North-West_of_Degas_Crater/MSGR_nw_Degas_Crater_Slope_80m.vrt b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_North-West_of_Degas_Crater/MSGR_nw_Degas_Crater_Slope_80m.vrt deleted file mode 100644 index 15fc004c6b..0000000000 --- a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_North-West_of_Degas_Crater/MSGR_nw_Degas_Crater_Slope_80m.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mercury_2000",DATUM["D_Mercury_2000",SPHEROID["Mercury_2000_IAU_IAG",2439700,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.3732910156250000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.3732910156250000e-03 - - 0 - Red - - MSGR_nw_Degas_Crater_Slope_80m.wms - 1 - - - - 0 - - - - 0 - Green - - MSGR_nw_Degas_Crater_Slope_80m.wms - 2 - - - - 0 - - - - 0 - Blue - - MSGR_nw_Degas_Crater_Slope_80m.wms - 3 - - - - 0 - - - - Alpha - - MSGR_nw_Degas_Crater_Slope_80m.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_Praxiteles_Peak_Ring/MSGR_MDIS_Slope_Praxiteles_Peak_Ring.asset b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_Praxiteles_Peak_Ring/MSGR_MDIS_Slope_Praxiteles_Peak_Ring.asset deleted file mode 100644 index f5a94b02aa..0000000000 --- a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_Praxiteles_Peak_Ring/MSGR_MDIS_Slope_Praxiteles_Peak_Ring.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mercury/mercury").Mercury.Identifier - -local layer = { - Identifier = "MSGR_Praxiteles_Peak_Ring_Slope_60m", - Name = [[MSGR MDIS Slope, Praxiteles Peak Ring]], - FilePath = asset.localResource("MSGR_Praxiteles_Peak_Ring_Slope_60m.vrt"), - Description = [[This is a colorized slope product of the digital elevation model (DEM) for the Praxiteles Peak Ring region on Mercury. This data product class of this data is observational and has been constructed to examine the topographic settings of landforms around Mercury’s hollows. Observations of topography, specifically the relationships of hollows to their surroundings, can be used to investigate hollow formation. This DEM has been derived from Mercury Dual Imaging System (MDIS) data and has been generated at a resolution of 60m/pixel. The DEM has been aligned and controlled to Mercury Laser Altimeter (MLA) individual elevation points. Vertical offsets in this DEM have been roughly corrected relative to the USGS’s 665m Global DEM of Mercury. DEM elevation values are in meters and referred to a radius of 2440000m. Slope values are in degrees with a minimum value of 0 and a maximum value of 46.484.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MSGR MDIS Slope, Praxiteles Peak Ring]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mercury/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:IAU2000::19900&d=&l=MSGR_Praxiteles_Peak_Ring_Slope_60m%2Ctrue%2C1&b=mercury&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MSGR MDIS Slope, Praxiteles Peak Ring layer from NASA/Treks for Mercury]] -} diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_Praxiteles_Peak_Ring/MSGR_Praxiteles_Peak_Ring_Slope_60m.vrt b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_Praxiteles_Peak_Ring/MSGR_Praxiteles_Peak_Ring_Slope_60m.vrt deleted file mode 100644 index a3d9e79e72..0000000000 --- a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_Praxiteles_Peak_Ring/MSGR_Praxiteles_Peak_Ring_Slope_60m.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mercury_2000",DATUM["D_Mercury_2000",SPHEROID["Mercury_2000_IAU_IAG",2439700,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 6.8664550781250000e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -6.8664550781250000e-04 - - 0 - Red - - MSGR_Praxiteles_Peak_Ring_Slope_60m.wms - 1 - - - - 0 - - - - 0 - Green - - MSGR_Praxiteles_Peak_Ring_Slope_60m.wms - 2 - - - - 0 - - - - 0 - Blue - - MSGR_Praxiteles_Peak_Ring_Slope_60m.wms - 3 - - - - 0 - - - - Alpha - - MSGR_Praxiteles_Peak_Ring_Slope_60m.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_Raditladi_Crater/MSGR_MDIS_Slope_Raditladi_Crater.asset b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_Raditladi_Crater/MSGR_MDIS_Slope_Raditladi_Crater.asset deleted file mode 100644 index d2ca96c355..0000000000 --- a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_Raditladi_Crater/MSGR_MDIS_Slope_Raditladi_Crater.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mercury/mercury").Mercury.Identifier - -local layer = { - Identifier = "MSGR_Raditladi_Crater_Slope_120m", - Name = [[MSGR MDIS Slope, Raditladi Crater]], - FilePath = asset.localResource("MSGR_Raditladi_Crater_Slope_120m.vrt"), - Description = [[This is a slope product of the digital elevation model (DEM) for the Raditladi Crater region on Mercury. This data product class of this data is observational and has been constructed to examine the topographic settings of landforms around Mercury’s hollows. Observations of topography, specifically the relationships of hollows to their surroundings, can be used to investigate hollow formation. This DEM has been derived from Mercury Dual Imaging System (MDIS) data and has been generated at a resolution of 120m/pixel. The DEM has been aligned and controlled to Mercury Laser Altimeter (MLA) individual elevation points. Vertical offsets in this DEM have been roughly corrected relative to the USGS’s 665m Global DEM of Mercury. DEM elevation values are in meters and referred to a radius of 2440000m. Slope values are in degrees with a minimum value of 0 and a maximum value of 39.538.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MSGR MDIS Slope, Raditladi Crater]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mercury/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:IAU2000::19900&d=&l=MSGR_Raditladi_Crater_Slope_120m%2Ctrue%2C1&b=mercury&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MSGR MDIS Slope, Raditladi Crater layer from NASA/Treks for Mercury]] -} diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_Raditladi_Crater/MSGR_Raditladi_Crater_Slope_120m.vrt b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_Raditladi_Crater/MSGR_Raditladi_Crater_Slope_120m.vrt deleted file mode 100644 index b4a47d865b..0000000000 --- a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_Raditladi_Crater/MSGR_Raditladi_Crater_Slope_120m.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mercury_2000",DATUM["D_Mercury_2000",SPHEROID["Mercury_2000_IAU_IAG",2439700,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.3732910156250000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.3732910156250000e-03 - - 0 - Red - - MSGR_Raditladi_Crater_Slope_120m.wms - 1 - - - - 0 - - - - 0 - Green - - MSGR_Raditladi_Crater_Slope_120m.wms - 2 - - - - 0 - - - - 0 - Blue - - MSGR_Raditladi_Crater_Slope_120m.wms - 3 - - - - 0 - - - - Alpha - - MSGR_Raditladi_Crater_Slope_120m.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_Sander_Crater/MSGR_MDIS_Slope_Sander_Crater.asset b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_Sander_Crater/MSGR_MDIS_Slope_Sander_Crater.asset deleted file mode 100644 index 80eec36b81..0000000000 --- a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_Sander_Crater/MSGR_MDIS_Slope_Sander_Crater.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mercury/mercury").Mercury.Identifier - -local layer = { - Identifier = "MSGR_Sander_Crater_Slope_80m", - Name = [[MSGR MDIS Slope, Sander Crater]], - FilePath = asset.localResource("MSGR_Sander_Crater_Slope_80m.vrt"), - Description = [[This is a slope product of the digital elevation model (DEM) for the Sander Crater region on Mercury. This data product class of this data is observational and has been constructed to examine the topographic settings of landforms around Mercury’s hollows. Observations of topography, specifically the relationships of hollows to their surroundings, can be used to investigate hollow formation. This DEM has been derived from Mercury Dual Imaging System (MDIS) data and has been generated at a resolution of 80m/pixel. The DEM has been aligned and controlled to Mercury Laser Altimeter (MLA) individual elevation points. Vertical offsets in this DEM have been roughly corrected relative to the USGS’s 665m Global DEM of Mercury. DEM elevation values are in meters and referred to a radius of 2440000m. Slope values are in degrees with a minimum value of 0 and a maximum value of 41.517.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MSGR MDIS Slope, Sander Crater]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mercury/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:IAU2000::19900&d=&l=MSGR_Sander_Crater_Slope_80m%2Ctrue%2C1&b=mercury&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MSGR MDIS Slope, Sander Crater layer from NASA/Treks for Mercury]] -} diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_Sander_Crater/MSGR_Sander_Crater_Slope_80m.vrt b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_Sander_Crater/MSGR_Sander_Crater_Slope_80m.vrt deleted file mode 100644 index 8c1c5541a9..0000000000 --- a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_Sander_Crater/MSGR_Sander_Crater_Slope_80m.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mercury_2000",DATUM["D_Mercury_2000",SPHEROID["Mercury_2000_IAU_IAG",2439700,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 1.3732910156250000e-03, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -1.3732910156250000e-03 - - 0 - Red - - MSGR_Sander_Crater_Slope_80m.wms - 1 - - - - 0 - - - - 0 - Green - - MSGR_Sander_Crater_Slope_80m.wms - 2 - - - - 0 - - - - 0 - Blue - - MSGR_Sander_Crater_Slope_80m.wms - 3 - - - - 0 - - - - Alpha - - MSGR_Sander_Crater_Slope_80m.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_Sholem_Aleichem_Crater_Wall/MSGR_MDIS_Slope_Sholem_Aleichem_Crater_Wall.asset b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_Sholem_Aleichem_Crater_Wall/MSGR_MDIS_Slope_Sholem_Aleichem_Crater_Wall.asset deleted file mode 100644 index f77555858f..0000000000 --- a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_Sholem_Aleichem_Crater_Wall/MSGR_MDIS_Slope_Sholem_Aleichem_Crater_Wall.asset +++ /dev/null @@ -1,28 +0,0 @@ -local globeIdentifier = asset.require("scene/solarsystem//planets/mercury/mercury").Mercury.Identifier - -local layer = { - Identifier = "MSGR_Sholem_Aleichem_Crater_Wall_Slope_25m", - Name = [[MSGR MDIS Slope, Sholem Aleichem Crater Wall]], - FilePath = asset.localResource("MSGR_Sholem_Aleichem_Crater_Wall_Slope_25m.vrt"), - Description = [[This is a colorized slope product of the digital elevation model (DEM) for the Sholem Aleichem Crater Wall region on Mercury. This data product class of this data is observational and has been constructed to examine the topographic settings of landforms around Mercury’s hollows. Observations of topography, specifically the relationships of hollows to their surroundings, can be used to investigate hollow formation. This DEM has been derived from Mercury Dual Imaging System (MDIS) data and has been generated at a resolution of 25m/pixel. The DEM has been aligned and controlled to Mercury Laser Altimeter (MLA) individual elevation points. Vertical offsets in this DEM have been roughly corrected relative to the USGS’s 665m Global DEM of Mercury. DEM elevation values are in meters and referred to a radius of 2440000m. Slope values are in degrees with a minimum value of 0 and a maximum value of 40.746.]] -} - -asset.onInitialize(function() - openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) -end) - -asset.onDeinitialize(function() - openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer.Identifier) -end) - -asset.export("layer", layer) - - -asset.meta = { - Name = [[MSGR MDIS Slope, Sholem Aleichem Crater Wall]], - Version = "1.0", - Author = "NASA/Treks", - URL = "https://trek.nasa.gov/mercury/#v=0.1&x=0&y=0&z=1&p=urn:ogc:def:crs:IAU2000::19900&d=&l=MSGR_Sholem_Aleichem_Crater_Wall_Slope_25m%2Ctrue%2C1&b=mercury&e=-180.0%2C-90.0%2C180.0%2C90.0&sfv=&w=", - License = "NASA/Treks", - Description = [[MSGR MDIS Slope, Sholem Aleichem Crater Wall layer from NASA/Treks for Mercury]] -} diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_Sholem_Aleichem_Crater_Wall/MSGR_Sholem_Aleichem_Crater_Wall_Slope_25m.vrt b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_Sholem_Aleichem_Crater_Wall/MSGR_Sholem_Aleichem_Crater_Wall_Slope_25m.vrt deleted file mode 100644 index 0d8af8c464..0000000000 --- a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/MSGR_MDIS_Slope_Sholem_Aleichem_Crater_Wall/MSGR_Sholem_Aleichem_Crater_Wall_Slope_25m.vrt +++ /dev/null @@ -1,53 +0,0 @@ - - GEOGCS["GCS_Mercury_2000",DATUM["D_Mercury_2000",SPHEROID["Mercury_2000_IAU_IAG",2439700,0]],PRIMEM["Reference_Meridian",0],UNIT["degree",0.0174532925199433]] - -1.8000000000000000e+02, 3.4332275390625000e-04, 0.0000000000000000e+00, 9.0000000000000000e+01, 0.0000000000000000e+00, -3.4332275390625000e-04 - - 0 - Red - - MSGR_Sholem_Aleichem_Crater_Wall_Slope_25m.wms - 1 - - - - 0 - - - - 0 - Green - - MSGR_Sholem_Aleichem_Crater_Wall_Slope_25m.wms - 2 - - - - 0 - - - - 0 - Blue - - MSGR_Sholem_Aleichem_Crater_Wall_Slope_25m.wms - 3 - - - - 0 - - - - Alpha - - MSGR_Sholem_Aleichem_Crater_Wall_Slope_25m.wms - 1 - - - - 255 - 0 - 0 - - - diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/all_treks_layers.asset b/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/all_treks_layers.asset deleted file mode 100644 index acae69753f..0000000000 --- a/data/assets/scene/solarsystem/planets/mercury/layers/nasa-treks/all_treks_layers.asset +++ /dev/null @@ -1,23 +0,0 @@ -asset.require("./MSGR_MDIS_Mosaic_Aksakov_Crater_Peak_Ring/MSGR_MDIS_Mosaic_Aksakov_Crater_Peak_Ring") -asset.require("./MSGR_MDIS_Mosaic_Crater_near_Dali_Crater/MSGR_MDIS_Mosaic_Crater_near_Dali_Crater") -asset.require("./MSGR_MDIS_Mosaic_Crater_near_Geddes_Crater/MSGR_MDIS_Mosaic_Crater_near_Geddes_Crater") -asset.require("./MSGR_MDIS_Mosaic_Degas_Crater/MSGR_MDIS_Mosaic_Degas_Crater") -asset.require("./MSGR_MDIS_Mosaic_Kertesz_Crater/MSGR_MDIS_Mosaic_Kertesz_Crater") -asset.require("./MSGR_MDIS_Mosaic_North-West_of_Degas_Crater/MSGR_MDIS_Mosaic_North-West_of_Degas_Crater") -asset.require("./MSGR_MDIS_Mosaic_Praxiteles_Peak_Ring/MSGR_MDIS_Mosaic_Praxiteles_Peak_Ring") -asset.require("./MSGR_MDIS_Mosaic_Raditladi_Crater/MSGR_MDIS_Mosaic_Raditladi_Crater") -asset.require("./MSGR_MDIS_Mosaic_Sander_Crater/MSGR_MDIS_Mosaic_Sander_Crater") -asset.require("./MSGR_MDIS_Mosaic_Sholem_Aleichem_Crater_Wall/MSGR_MDIS_Mosaic_Sholem_Aleichem_Crater_Wall") -asset.require("./MSGR_MDIS_Slope_Aksakov_Crater_Peak_Ring/MSGR_MDIS_Slope_Aksakov_Crater_Peak_Ring") -asset.require("./MSGR_MDIS_Slope_Crater_near_Dali_Crater/MSGR_MDIS_Slope_Crater_near_Dali_Crater") -asset.require("./MSGR_MDIS_Slope_Crater_near_Geddes_Crater/MSGR_MDIS_Slope_Crater_near_Geddes_Crater") -asset.require("./MSGR_MDIS_Slope_Degas_Crater/MSGR_MDIS_Slope_Degas_Crater") -asset.require("./MSGR_MDIS_Slope_Kertesz_Crater/MSGR_MDIS_Slope_Kertesz_Crater") -asset.require("./MSGR_MDIS_Slope_North-West_of_Degas_Crater/MSGR_MDIS_Slope_North-West_of_Degas_Crater") -asset.require("./MSGR_MDIS_Slope_Praxiteles_Peak_Ring/MSGR_MDIS_Slope_Praxiteles_Peak_Ring") -asset.require("./MSGR_MDIS_Slope_Raditladi_Crater/MSGR_MDIS_Slope_Raditladi_Crater") -asset.require("./MSGR_MDIS_Slope_Sander_Crater/MSGR_MDIS_Slope_Sander_Crater") -asset.require("./MSGR_MDIS_Slope_Sholem_Aleichem_Crater_Wall/MSGR_MDIS_Slope_Sholem_Aleichem_Crater_Wall") -asset.require("./MSGR_MDIS_ColorHillshade_Global/MSGR_MDIS_ColorHillshade_Global") -asset.require("./MSGR_MDIS_Hillshade_Global/MSGR_MDIS_Hillshade_Global") -asset.require("./MSGR_MDIS_Slope_Colorized_Global/MSGR_MDIS_Slope_Colorized_Global") From 54a254e189fbe3c09f2ff82383e288037997a9c0 Mon Sep 17 00:00:00 2001 From: Malin E Date: Mon, 14 Nov 2022 10:28:06 +0100 Subject: [PATCH 66/81] Some Ceres fixes (#2295) * Add Ceres in dwarf planet folder * Remove old Ceres asset and redirect dawn profile to the new asset * Remove missing dawn kernels from list in asset * Add meta info for dawn and vesta asset files * Add WMS layer --- .../dwarf_planets/ceres/ceres.asset | 62 ++ .../dwarf_planets/ceres/default_layers.asset | 12 + .../dwarf_planets/ceres/kernels.asset | 23 + .../ceres/layers/colorlayers/LAMO.wms | 20 + .../ceres/layers/colorlayers/lamo.asset | 28 + .../ceres/layers/colorlayers/lamo_local.asset | 35 ++ .../dwarf_planets/ceres/trail.asset | 44 ++ .../dwarf_planets/ceres/transforms.asset | 46 ++ .../dwarf_planets/pluto/pluto.asset | 6 +- .../dwarf_planets/pluto/trail.asset | 4 +- .../dwarf_planets/pluto/transforms.asset | 4 +- .../solarsystem/missions/dawn/ceres.asset | 98 --- .../solarsystem/missions/dawn/dawn.asset | 584 +----------------- .../solarsystem/missions/dawn/vesta.asset | 25 +- data/profiles/dawn.profile | 6 +- 15 files changed, 317 insertions(+), 680 deletions(-) create mode 100644 data/assets/scene/solarsystem/dwarf_planets/ceres/ceres.asset create mode 100644 data/assets/scene/solarsystem/dwarf_planets/ceres/default_layers.asset create mode 100644 data/assets/scene/solarsystem/dwarf_planets/ceres/kernels.asset create mode 100644 data/assets/scene/solarsystem/dwarf_planets/ceres/layers/colorlayers/LAMO.wms create mode 100644 data/assets/scene/solarsystem/dwarf_planets/ceres/layers/colorlayers/lamo.asset create mode 100644 data/assets/scene/solarsystem/dwarf_planets/ceres/layers/colorlayers/lamo_local.asset create mode 100644 data/assets/scene/solarsystem/dwarf_planets/ceres/trail.asset create mode 100644 data/assets/scene/solarsystem/dwarf_planets/ceres/transforms.asset delete mode 100644 data/assets/scene/solarsystem/missions/dawn/ceres.asset diff --git a/data/assets/scene/solarsystem/dwarf_planets/ceres/ceres.asset b/data/assets/scene/solarsystem/dwarf_planets/ceres/ceres.asset new file mode 100644 index 0000000000..2f6a71c574 --- /dev/null +++ b/data/assets/scene/solarsystem/dwarf_planets/ceres/ceres.asset @@ -0,0 +1,62 @@ +local transforms = asset.require("./transforms") +asset.require("spice/base") + +local Ceres = { + Identifier = "Ceres", + Parent = transforms.CeresPosition.Identifier, + Renderable = { + Type = "RenderableGlobe", + Radii = { 487.3E3, 487.3E3, 454.7E3 }, + SegmentsPerPatch = 64, + Layers = {} + }, + Tag = { "planet_solarSystem", "planet_terrestrial", "dwarf_planet" }, + GUI = { + Path = "/Solar System/Dwarf Planets/Ceres" + } +} + +local CeresLabel = { + Identifier = "CeresLabel", + Parent = Ceres.Identifier, + Renderable = { + Enabled = false, + Type = "RenderableLabel", + Text = "Ceres", + FontSize = 70.0, + Size = 8.66, + MinMaxSize = { 1, 100 }, + BlendMode = "Additive", + OrientationOption = "Camera View Direction" + }, + Tag = { "solarsystem_labels" }, + GUI = { + Name = "Ceres Label", + Path = "/Solar System/Dwarf Planets/Ceres", + Description = "Label for Ceres, visible at the solarsystem overview zoom level" + } +} + + +asset.onInitialize(function() + openspace.addSceneGraphNode(Ceres) + openspace.addSceneGraphNode(CeresLabel) +end) + +asset.onDeinitialize(function() + openspace.removeSceneGraphNode(CeresLabel) + openspace.removeSceneGraphNode(Ceres) +end) + +asset.export(Ceres) +asset.export(CeresLabel) + + +asset.meta = { + Name = "Ceres", + Version = "1.0", + Description = "Ceres globe, and main label", + Author = "OpenSpace Team", + URL = "http://openspaceproject.com", + License = "MIT license" +} diff --git a/data/assets/scene/solarsystem/dwarf_planets/ceres/default_layers.asset b/data/assets/scene/solarsystem/dwarf_planets/ceres/default_layers.asset new file mode 100644 index 0000000000..1e856d9e1d --- /dev/null +++ b/data/assets/scene/solarsystem/dwarf_planets/ceres/default_layers.asset @@ -0,0 +1,12 @@ +asset.require("./layers/colorlayers/lamo_local", false) +asset.require("./layers/colorlayers/lamo", true) + + +asset.meta = { + Name = "Default Ceres Layers", + Version = "1.0", + Description = "Default Ceres layers are: LAMO", + Author = "OpenSpace Team", + URL = "http://openspaceproject.com", + License = "MIT license" +} diff --git a/data/assets/scene/solarsystem/dwarf_planets/ceres/kernels.asset b/data/assets/scene/solarsystem/dwarf_planets/ceres/kernels.asset new file mode 100644 index 0000000000..33ac113172 --- /dev/null +++ b/data/assets/scene/solarsystem/dwarf_planets/ceres/kernels.asset @@ -0,0 +1,23 @@ +local Kernels = asset.syncedResource({ + Name = "Ceres Kernels", + Type = "HttpSynchronization", + Identifier = "ceres_kernels", + Version = 1 +}) + +local CeresKernels = { + Kernels .. "ceres_v01.tpc", + Kernels .. "sb_ceres_140724.bsp", + Kernels .. "sb_ceres_110211.bsp" +} + +asset.export("CeresKernels", CeresKernels) + +asset.meta = { + Name = "Ceres Spice Kernels", + Version = "1.0", + Description = "SPICE kernels for Ceres", + Author = "OpenSpace Team", + URL = "http://openspaceproject.com", + License = "NASA" +} diff --git a/data/assets/scene/solarsystem/dwarf_planets/ceres/layers/colorlayers/LAMO.wms b/data/assets/scene/solarsystem/dwarf_planets/ceres/layers/colorlayers/LAMO.wms new file mode 100644 index 0000000000..b8b86df7b2 --- /dev/null +++ b/data/assets/scene/solarsystem/dwarf_planets/ceres/layers/colorlayers/LAMO.wms @@ -0,0 +1,20 @@ + + + http://wms.itn.liu.se/Ceres/LAMO/tile/${z}/${y}/${x} + + + -180.0 + 90 + 180.0 + -90.0 + 131072 + 65536 + 9 + top + + EPSG:4326 + 256 + 256 + 1 + 10 + diff --git a/data/assets/scene/solarsystem/dwarf_planets/ceres/layers/colorlayers/lamo.asset b/data/assets/scene/solarsystem/dwarf_planets/ceres/layers/colorlayers/lamo.asset new file mode 100644 index 0000000000..03f42963d2 --- /dev/null +++ b/data/assets/scene/solarsystem/dwarf_planets/ceres/layers/colorlayers/lamo.asset @@ -0,0 +1,28 @@ +local globeIdentifier = asset.require("../../ceres").Ceres.Identifier + +local layer = { + Identifier = "LAMO_", + Name = "LAMO [Sweden]", + Enabled = asset.enabled, + FilePath = asset.localResource('LAMO.wms'), +} + +asset.onInitialize(function () + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) +end) + +asset.onDeinitialize(function() + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer) +end) + +asset.export("layer", layer) + + +asset.meta = { + Name = "LAMO [Sweden]", + Version = "1.0", + Description = [[]], + Author = "", + URL = "", + License = "" +} diff --git a/data/assets/scene/solarsystem/dwarf_planets/ceres/layers/colorlayers/lamo_local.asset b/data/assets/scene/solarsystem/dwarf_planets/ceres/layers/colorlayers/lamo_local.asset new file mode 100644 index 0000000000..2fe1a48c59 --- /dev/null +++ b/data/assets/scene/solarsystem/dwarf_planets/ceres/layers/colorlayers/lamo_local.asset @@ -0,0 +1,35 @@ +local globeIdentifier = asset.require("../../ceres").Ceres.Identifier + +local textures = asset.syncedResource({ + Name = "Ceres Textures", + Type = "HttpSynchronization", + Identifier = "ceres_textures", + Version = 2 +}) + +local layer = { + Identifier = "LAMO_Local", + Name = "LAMO [Local]", + Enabled = asset.enabled, + FilePath = textures .. "ceres_lamo_4096x2048.png", +} + +asset.onInitialize(function () + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) +end) + +asset.onDeinitialize(function() + openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer) +end) + +asset.export("layer", layer) + + +asset.meta = { + Name = "LAMO [Local]", + Version = "1.0", + Description = [[]], + Author = "", + URL = "", + License = "" +} diff --git a/data/assets/scene/solarsystem/dwarf_planets/ceres/trail.asset b/data/assets/scene/solarsystem/dwarf_planets/ceres/trail.asset new file mode 100644 index 0000000000..49b074bca8 --- /dev/null +++ b/data/assets/scene/solarsystem/dwarf_planets/ceres/trail.asset @@ -0,0 +1,44 @@ +local transforms = asset.require("scene/solarsystem/sun/transforms") +asset.require("spice/base") +local kernels = asset.require("./kernels").CeresKernels + +local CeresTrail = { + Identifier = "CeresTrail", + Parent = transforms.SolarSystemBarycenter.Identifier, + Renderable = { + Type = "RenderableTrailOrbit", + Translation = { + Type = "SpiceTranslation", + Target = "CERES", + Observer = "SSB", + Kernels = kernels + }, + Color = { 0.7, 0.8, 0.7 }, + Period = 1680, + Resolution = 1000 + }, + Tag = { "planetTrail_solarSystem", "planetTrail_dwarf" }, + GUI = { + Name = "Ceres Trail", + Path = "/Solar System/Dwarf Planets/Ceres" + } +} + +asset.onInitialize(function() + openspace.addSceneGraphNode(CeresTrail) +end) + +asset.onDeinitialize(function() + openspace.removeSceneGraphNode(CeresTrail) +end) + +asset.export(CeresTrail) + +asset.meta = { + Name = "Ceres Trail", + Version = "1.0", + Description = "Trail of Ceres as observed by the Sun. Data from NASA Spice", + Author = "OpenSpace Team", + URL = "http://openspaceproject.com", + License = "MIT license" +} diff --git a/data/assets/scene/solarsystem/dwarf_planets/ceres/transforms.asset b/data/assets/scene/solarsystem/dwarf_planets/ceres/transforms.asset new file mode 100644 index 0000000000..8665dfad28 --- /dev/null +++ b/data/assets/scene/solarsystem/dwarf_planets/ceres/transforms.asset @@ -0,0 +1,46 @@ +local transforms = asset.require("scene/solarsystem/sun/transforms") +asset.require("spice/base") +local kernels = asset.require("./kernels").CeresKernels + +local CeresPosition = { + Identifier = "CeresPosition", + Parent = transforms.SolarSystemBarycenter.Identifier, + Transform = { + Rotation = { + Type = "SpiceRotation", + SourceFrame = "IAU_CERES", + DestinationFrame = "GALACTIC", + Kernels = kernels + }, + Translation = { + Type = "SpiceTranslation", + Target = "CERES", + Observer = "SSB", + Kernels = kernels + } + }, + GUI = { + Name = "Ceres Position", + Path = "/Solar System/Dwarf Planets/Ceres", + Hidden = true + } +} + +asset.onInitialize(function() + openspace.addSceneGraphNode(CeresPosition) +end) + +asset.onDeinitialize(function() + openspace.removeSceneGraphNode(CeresPosition) +end) + +asset.export(CeresPosition) + +asset.meta = { + Name = "Ceres Transforms", + Version = "1.0", + Description = "Ceres transform", + Author = "OpenSpace Team", + URL = "http://openspaceproject.com", + License = "MIT license" +} diff --git a/data/assets/scene/solarsystem/dwarf_planets/pluto/pluto.asset b/data/assets/scene/solarsystem/dwarf_planets/pluto/pluto.asset index da1200f3bf..6489f9b3f9 100644 --- a/data/assets/scene/solarsystem/dwarf_planets/pluto/pluto.asset +++ b/data/assets/scene/solarsystem/dwarf_planets/pluto/pluto.asset @@ -43,7 +43,7 @@ local Pluto = { Color = { 1.0, 1.0, 0.0 } } }, - Tag = { "planet_solarSystem", "planet_terrestrial" }, + Tag = { "planet_solarSystem", "planet_terrestrial", "dwarf_planet" }, GUI = { Path = "/Solar System/Dwarf Planets/Pluto" } @@ -74,12 +74,12 @@ asset.onInitialize(function() openspace.addSceneGraphNode(Pluto) openspace.addSceneGraphNode(PlutoLabel) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(PlutoLabel) openspace.removeSceneGraphNode(Pluto) end) - + asset.export(Pluto) asset.export(PlutoLabel) diff --git a/data/assets/scene/solarsystem/dwarf_planets/pluto/trail.asset b/data/assets/scene/solarsystem/dwarf_planets/pluto/trail.asset index ae8381c9c0..179f893de5 100644 --- a/data/assets/scene/solarsystem/dwarf_planets/pluto/trail.asset +++ b/data/assets/scene/solarsystem/dwarf_planets/pluto/trail.asset @@ -31,11 +31,11 @@ local PlutoBarycenterTrail = { asset.onInitialize(function() openspace.addSceneGraphNode(PlutoBarycenterTrail) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(PlutoBarycenterTrail) end) - + asset.export(PlutoBarycenterTrail) diff --git a/data/assets/scene/solarsystem/dwarf_planets/pluto/transforms.asset b/data/assets/scene/solarsystem/dwarf_planets/pluto/transforms.asset index 171107d94c..c24067c412 100644 --- a/data/assets/scene/solarsystem/dwarf_planets/pluto/transforms.asset +++ b/data/assets/scene/solarsystem/dwarf_planets/pluto/transforms.asset @@ -24,11 +24,11 @@ local PlutoBarycenter = { asset.onInitialize(function() openspace.addSceneGraphNode(PlutoBarycenter) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(PlutoBarycenter) end) - + asset.export(PlutoBarycenter) diff --git a/data/assets/scene/solarsystem/missions/dawn/ceres.asset b/data/assets/scene/solarsystem/missions/dawn/ceres.asset deleted file mode 100644 index 27dcf52e74..0000000000 --- a/data/assets/scene/solarsystem/missions/dawn/ceres.asset +++ /dev/null @@ -1,98 +0,0 @@ -local transforms = asset.require("scene/solarsystem/sun/transforms") - - - -local kernels = asset.syncedResource({ - Name = "Dawn Kernels", - Type = "HttpSynchronization", - Identifier = "dawn_kernels", - Version = 2 -}) - -local textures = asset.syncedResource({ - Name = "Ceres Textures", - Type = "HttpSynchronization", - Identifier = "ceres_textures", - Version = 1 -}) - -local Ceres = { - Identifier = "Ceres", - Parent = transforms.SolarSystemBarycenter.Identifier, - Transform = { - Rotation = { - Type = "SpiceRotation", - SourceFrame = "IAU_CERES", - DestinationFrame = "GALACTIC", - Kernels = { - kernels .. "dawn_ceres_v01.tpc", - kernels .. "sb_ceres_140724.bsp", - kernels .. "sb_ceres_110211.bsp" - } - }, - Translation = { - Type = "SpiceTranslation", - Target = "CERES", - Observer = "SSB", - Kernels = { - kernels .. "dawn_ceres_v01.tpc", - kernels .. "sb_ceres_140724.bsp", - kernels .. "sb_ceres_110211.bsp" - } - } - }, - Renderable = { - Type = "RenderableGlobe", - Radii = { 6.390E5, 6.390E5, 6.390E5 }, - SegmentsPerPatch = 64, - Layers = { - ColorLayers = { - { - Identifier = "Texture", - FilePath = textures .. "gray.png", - Enabled = true - } - } - } - }, - GUI = { - Path = "/Solar System/Dwarf Planets/Ceres" - } -} - - -local CeresTrail = { - Identifier = "CeresTrail", - Parent = transforms.SolarSystemBarycenter.Identifier, - Renderable = { - Type = "RenderableTrailOrbit", - Translation = { - Type = "SpiceTranslation", - Target = "CERES", - Observer = "SSB" - }, - Color = { 0.7, 0.8, 0.7 }, - StartTime = "2010 JAN 01 00:00:00.000", - EndTime = "2100 JAN 01 00:00:00.000", - Period = 1325.0, - Resolution = 3600 * 24 - }, - GUI = { - Name = "Ceres Trail", - Path = "/Solar System/Asteroid Belt/Vesta" - } -} - - -asset.onInitialize(function() - openspace.addSceneGraphNode(Ceres) - openspace.addSceneGraphNode(CeresTrail) -end) - -asset.onDeinitialize(function() - openspace.removeSceneGraphNode(CeresTrail) - openspace.removeSceneGraphNode(Ceres) -end) - -asset.export(Ceres) -asset.export(CeresTrail) diff --git a/data/assets/scene/solarsystem/missions/dawn/dawn.asset b/data/assets/scene/solarsystem/missions/dawn/dawn.asset index 9bdc24141f..c805757412 100644 --- a/data/assets/scene/solarsystem/missions/dawn/dawn.asset +++ b/data/assets/scene/solarsystem/missions/dawn/dawn.asset @@ -6,7 +6,7 @@ local kernels = asset.syncedResource({ Name = "Dawn Kernels", Type = "HttpSynchronization", Identifier = "dawn_kernels", - Version = 2 + Version = 3 }) local textures = asset.syncedResource({ @@ -30,52 +30,18 @@ local KernelFiles = { kernels .. "dawn_fc_v10.ti", -- SPK - kernels .. "sb_ceres_110211.bsp", - kernels .. "sb_ceres_140724.bsp", - kernels .. "sb_vesta_071107.bsp", - kernels .. "dawn_rec_070927_070930_081218_v1.bsp", - --[[kernels .. "dawn_rec_070930_071201_081218_v1.bsp", - kernels .. "dawn_rec_071201_080205_081218_v1.bsp", - kernels .. "dawn_rec_080205_080325_081218_v1.bsp", - kernels .. "dawn_rec_080325_080503_081218_v1.bsp", - kernels .. "dawn_rec_080503_080601_081218_v1.bsp", - kernels .. "dawn_rec_080601_080718_081218_v1.bsp", - kernels .. "dawn_rec_080718_080910_081218_v1.bsp", - kernels .. "dawn_rec_080910_081022_090218_v1.bsp", - kernels .. "dawn_rec_081022_081109_090218_v1.bsp", - kernels .. "dawn_rec_081109_090228_090306_v1.bsp", - kernels .. "dawn_rec_090228_090501_090702_v1.bsp", - kernels .. "dawn_rec_090501_090801_090916_v1.bsp", - kernels .. "dawn_rec_090801_090915_090923_v1.bsp", - kernels .. "dawn_rec_090915_091201_091202_v1.bsp", - kernels .. "dawn_rec_091201_100208_100209_v1.bsp", - kernels .. "dawn_rec_100208_100316_100323_v1.bsp", - kernels .. "dawn_rec_100316_100413_100422_v1.bsp", - kernels .. "dawn_rec_100413_100622_100830_v1.bsp", - kernels .. "dawn_rec_100622_100824_100830_v1.bsp", - kernels .. "dawn_rec_100824_101130_101202_v1.bsp", - kernels .. "dawn_rec_101130_110201_110201_v1.bsp", - kernels .. "dawn_rec_110201_110328_110328_v1.bsp", - kernels .. "dawn_rec_110328_110419_110420_v1.bsp",--]] - + -- kernels .. "dawn_rec_110201_110328_110328_v1.bsp", + -- kernels .. "dawn_rec_110328_110419_110420_v1.bsp", kernels .. "dawn_rec_110416_110802_110913_v1.bsp", kernels .. "dawn_rec_110802_110831_110922_v1.bsp", - --[[kernels .. "spk/dawn_rec_110831_110928_111221_v1.bsp", - kernels .. "dawn_rec_110928_111102_120615_v1.bsp", - kernels .. "dawn_rec_111102_111210_120618_v1.bsp", - kernels .. "dawn_rec_111211_120501_120620_v1.bsp", - kernels .. "dawn_rec_120501_120611_120625_v1.bsp", - kernels .. "dawn_rec_120611_120724_121101_v1.bsp",--]] + -- kernels .. "spk/dawn_rec_110831_110928_111221_v1.bsp", + -- kernels .. "dawn_rec_110928_111102_120615_v1.bsp", + -- kernels .. "dawn_rec_111102_111210_120618_v1.bsp", + -- kernels .. "dawn_rec_111211_120501_120620_v1.bsp", kernels .. "dawn_rec_120724_120913_121213_v1.bsp", - --PCK - --kernels .. "dawn_vesta_v06.tpc", - --kernels .. "dawn_ceres_v01.tpc", - --kernels .. "pck00008.tpc", - -- FK - kernels .. "dawn_vesta_v00.tf", kernels .. "dawn_v12.tf", --SCLK @@ -86,538 +52,17 @@ local KernelFiles = { kernels .. "dawn_sc_110801_110807.bc", kernels .. "dawn_sc_110808_110814.bc", kernels .. "dawn_sc_120910_120916.bc", - -- kernels .. "dawn_sc_111226_120101.bc", - -- kernels .. "dawn_sc_120102_120108.bc", - -- kernels .. "dawn_sc_120109_120115.bc", - -- kernels .. "dawn_sc_120116_120122.bc", - -- kernels .. "dawn_sc_120123_120129.bc", - -- all space craft CK files, ~10 gb - -- kernels .. "dawn_sc_120123_120129.bc", + -- space craft CK files -- kernels .. "dawn_sc_070927_070930.bc", - --[[kernels .. "ck/dawn_sc_071001_071007.bc", - kernels .. "dawn_sc_071008_071014_v2.bc", - kernels .. "dawn_sc_071015_071021.bc", - kernels .. "dawn_sc_071022_071028_v2.bc", - kernels .. "dawn_sc_071029_071104.bc", - kernels .. "dawn_sc_071105_071111.bc", - kernels .. "dawn_sc_071112_071118.bc", - kernels .. "dawn_sc_071119_071125.bc", - kernels .. "dawn_sc_071126_071202.bc", - kernels .. "dawn_sc_071203_071209.bc", - kernels .. "dawn_sc_071210_071216.bc", - kernels .. "dawn_sc_071217_071223.bc", - kernels .. "dawn_sc_071224_071230.bc", - kernels .. "dawn_sc_071231_080106.bc", - kernels .. "dawn_sc_080107_080113.bc", - kernels .. "dawn_sc_080114_080120.bc", - kernels .. "dawn_sc_080121_080127.bc", - kernels .. "dawn_sc_080128_080203.bc", - kernels .. "dawn_sc_080204_080210.bc", - kernels .. "dawn_sc_080211_080217.bc", - kernels .. "dawn_sc_080218_080224.bc", - kernels .. "dawn_sc_080225_080302.bc", - kernels .. "dawn_sc_080303_080309.bc", - kernels .. "dawn_sc_080310_080316.bc", - kernels .. "dawn_sc_080317_080323.bc", - kernels .. "dawn_sc_080324_080330.bc", - kernels .. "dawn_sc_080331_080406.bc", - kernels .. "dawn_sc_080407_080413.bc", - kernels .. "dawn_sc_080414_080420.bc", - kernels .. "dawn_sc_080421_080427.bc", - kernels .. "dawn_sc_080428_080504.bc", - kernels .. "dawn_sc_080505_080511.bc", - kernels .. "dawn_sc_080512_080518.bc", - kernels .. "dawn_sc_080519_080525.bc", - kernels .. "dawn_sc_080526_080601.bc", - kernels .. "dawn_sc_080602_080608.bc", - kernels .. "dawn_sc_080609_080615.bc", - kernels .. "dawn_sc_080616_080622.bc", - kernels .. "dawn_sc_080623_080629.bc", - kernels .. "dawn_sc_080630_080706.bc", - kernels .. "dawn_sc_080707_080713.bc", - kernels .. "dawn_sc_080714_080720.bc", - kernels .. "dawn_sc_080721_080727.bc", - kernels .. "dawn_sc_080728_080803.bc", - kernels .. "dawn_sc_080804_080810.bc", - kernels .. "dawn_sc_080811_080817.bc", - kernels .. "dawn_sc_080818_080824.bc", - kernels .. "dawn_sc_080825_080831.bc", - kernels .. "dawn_sc_080901_080907.bc", - kernels .. "dawn_sc_080908_080914.bc", - kernels .. "dawn_sc_080915_080921.bc", - kernels .. "dawn_sc_080922_080928.bc", - kernels .. "dawn_sc_080929_081005.bc", - kernels .. "dawn_sc_081006_081012.bc", - kernels .. "dawn_sc_081013_081019.bc", - kernels .. "dawn_sc_081020_081026.bc", - kernels .. "dawn_sc_081027_081102.bc", - kernels .. "dawn_sc_081103_081109.bc", - kernels .. "dawn_sc_081110_081116.bc", - kernels .. "dawn_sc_081117_081123.bc", - kernels .. "dawn_sc_081124_081130.bc", - kernels .. "dawn_sc_081201_081207.bc", - kernels .. "dawn_sc_081208_081214.bc", - kernels .. "dawn_sc_081215_081221.bc", - kernels .. "dawn_sc_081222_081228.bc", - kernels .. "dawn_sc_081229_090104.bc", - kernels .. "dawn_sc_090105_090111.bc", - kernels .. "dawn_sc_090112_090118.bc", - kernels .. "dawn_sc_090119_090125.bc", - kernels .. "dawn_sc_090126_090201.bc", - kernels .. "dawn_sc_090202_090208.bc", - kernels .. "dawn_sc_090209_090215.bc", - kernels .. "dawn_sc_090216_090222.bc", - kernels .. "dawn_sc_090223_090301.bc", - kernels .. "dawn_sc_090302_090308.bc", - kernels .. "dawn_sc_090309_090315.bc", - kernels .. "dawn_sc_090316_090322.bc", - kernels .. "dawn_sc_090323_090329.bc", - kernels .. "dawn_sc_090330_090405.bc", - kernels .. "dawn_sc_090406_090412.bc", - kernels .. "dawn_sc_090413_090419.bc", - kernels .. "dawn_sc_090420_090426.bc", - kernels .. "dawn_sc_090427_090503.bc", - kernels .. "dawn_sc_090504_090510.bc", - kernels .. "dawn_sc_090511_090517.bc", - kernels .. "dawn_sc_090518_090524.bc", - kernels .. "dawn_sc_090525_090531.bc", - kernels .. "dawn_sc_090601_090607.bc", - kernels .. "dawn_sc_090608_090614.bc", - kernels .. "dawn_sc_090615_090621.bc", - kernels .. "dawn_sc_090622_090628.bc", - kernels .. "dawn_sc_090629_090705.bc", - kernels .. "dawn_sc_090706_090712.bc", - kernels .. "dawn_sc_090713_090719.bc", - kernels .. "dawn_sc_090720_090726.bc", - kernels .. "dawn_sc_090727_090802.bc", - kernels .. "dawn_sc_090803_090809.bc", - kernels .. "dawn_sc_090810_090816.bc", - kernels .. "dawn_sc_090817_090823.bc", - kernels .. "dawn_sc_090824_090830.bc", - kernels .. "dawn_sc_090831_090906.bc", - kernels .. "dawn_sc_090907_090913.bc", - kernels .. "dawn_sc_090914_090920.bc", - kernels .. "dawn_sc_090921_090927.bc", - kernels .. "dawn_sc_090928_091004.bc", - kernels .. "dawn_sc_091005_091011.bc", - kernels .. "dawn_sc_091012_091018.bc", - kernels .. "dawn_sc_091019_091025.bc", - kernels .. "dawn_sc_091026_091101.bc", - kernels .. "dawn_sc_091102_091108.bc", - kernels .. "dawn_sc_091109_091115.bc", - kernels .. "dawn_sc_091116_091122.bc", - kernels .. "dawn_sc_091123_091129.bc", - kernels .. "dawn_sc_091130_091206.bc", - kernels .. "dawn_sc_091207_091213.bc", - kernels .. "dawn_sc_091214_091220.bc", - kernels .. "dawn_sc_091221_091227.bc", - kernels .. "dawn_sc_091228_100103.bc", - kernels .. "dawn_sc_100104_100110_v2.bc", - kernels .. "dawn_sc_100111_100117_v2.bc",--]] - -- kernels .. "dawn_sc_100118_100124.bc", - -- kernels .. "dawn_sc_100125_100131.bc", - -- kernels .. "dawn_sc_100201_100207.bc", - -- kernels .. "dawn_sc_100208_100214.bc", - -- kernels .. "dawn_sc_100215_100221.bc", - -- kernels .. "dawn_sc_100222_100228.bc", - -- kernels .. "dawn_sc_100301_100307.bc", - -- kernels .. "dawn_sc_100308_100314.bc", - -- kernels .. "dawn_sc_100315_100321.bc", - -- kernels .. "dawn_sc_100322_100328.bc", - -- kernels .. "dawn_sc_100329_100404.bc", - -- kernels .. "dawn_sc_100405_100411.bc", - -- kernels .. "dawn_sc_100412_100418.bc", - -- kernels .. "dawn_sc_100419_100425.bc", - -- kernels .. "dawn_sc_100426_100502.bc", - -- kernels .. "dawn_sc_100503_100509.bc", - -- kernels .. "dawn_sc_100510_100516.bc", - -- kernels .. "dawn_sc_100517_100523.bc", - -- kernels .. "dawn_sc_100524_100530.bc", - -- kernels .. "dawn_sc_100531_100606.bc", - -- kernels .. "dawn_sc_100607_100613.bc", - -- kernels .. "dawn_sc_100614_100620.bc", - -- kernels .. "dawn_sc_100621_100627.bc", - -- kernels .. "dawn_sc_100628_100704.bc", - -- kernels .. "dawn_sc_100705_100711.bc", - -- kernels .. "dawn_sc_100712_100718.bc", - -- kernels .. "dawn_sc_100719_100725.bc", - -- kernels .. "dawn_sc_100726_100801.bc", - -- kernels .. "dawn_sc_100802_100808.bc", - -- kernels .. "dawn_sc_100809_100815.bc", - -- kernels .. "dawn_sc_100816_100822.bc", - -- kernels .. "dawn_sc_100823_100829.bc", - -- kernels .. "dawn_sc_100830_100905.bc", - -- kernels .. "dawn_sc_100906_100912.bc", - -- kernels .. "dawn_sc_100913_100919.bc", - -- kernels .. "dawn_sc_100920_100926.bc", - -- kernels .. "dawn_sc_100927_101003.bc", - -- kernels .. "dawn_sc_101004_101010.bc", - -- kernels .. "dawn_sc_101011_101017.bc", - -- kernels .. "dawn_sc_101018_101024.bc", - -- kernels .. "dawn_sc_101025_101031.bc", - -- kernels .. "dawn_sc_101101_101107.bc", - -- kernels .. "dawn_sc_101108_101114.bc", - -- kernels .. "dawn_sc_101115_101121.bc", - -- kernels .. "dawn_sc_101122_101128.bc", - -- kernels .. "dawn_sc_101129_101205.bc", - -- kernels .. "dawn_sc_101206_101212.bc", - -- kernels .. "dawn_sc_101213_101219.bc", - -- kernels .. "dawn_sc_101220_101226.bc", - -- kernels .. "dawn_sc_101227_110102.bc", - -- kernels .. "dawn_sc_110103_110109.bc", - -- kernels .. "dawn_sc_110110_110116.bc", - -- kernels .. "dawn_sc_110117_110123.bc", - -- kernels .. "dawn_sc_110124_110130.bc", - -- kernels .. "dawn_sc_110131_110206.bc", - -- kernels .. "dawn_sc_110207_110213.bc", - -- kernels .. "dawn_sc_110214_110220.bc", - -- kernels .. "dawn_sc_110221_110227.bc", - -- kernels .. "dawn_sc_110228_110306.bc", - -- kernels .. "dawn_sc_110307_110313.bc", - -- kernels .. "dawn_sc_110314_110320.bc", - -- kernels .. "dawn_sc_110321_110327.bc", - -- kernels .. "dawn_sc_110328_110403.bc", - -- kernels .. "dawn_sc_110404_110410.bc", - -- kernels .. "dawn_sc_110411_110417.bc", - -- kernels .. "dawn_sc_110418_110424.bc", - -- kernels .. "dawn_sc_110425_110501.bc", - -- kernels .. "dawn_sc_110502_110508.bc", - -- kernels .. "dawn_sc_110509_110515.bc", - -- kernels .. "dawn_sc_110516_110522.bc", - -- kernels .. "dawn_sc_110523_110529.bc", - -- kernels .. "dawn_sc_110530_110605.bc", - -- kernels .. "dawn_sc_110606_110612.bc", - -- kernels .. "dawn_sc_110613_110619.bc", - -- kernels .. "dawn_sc_110620_110626.bc", - -- kernels .. "dawn_sc_110627_110703.bc", - -- kernels .. "dawn_sc_110704_110710.bc", - -- kernels .. "dawn_sc_110711_110717.bc", - -- kernels .. "dawn_sc_110718_110724.bc", - -- kernels .. "dawn_sc_110725_110731.bc", -- kernels .. "dawn_sc_110801_110807.bc", -- kernels .. "dawn_sc_110808_110814.bc", - -- kernels .. "dawn_sc_110815_110821.bc", - -- kernels .. "dawn_sc_110822_110828.bc", - -- kernels .. "dawn_sc_110829_110904.bc", - -- kernels .. "dawn_sc_110905_110911.bc", - -- kernels .. "dawn_sc_110912_110918.bc", - -- kernels .. "dawn_sc_110919_110925.bc", - -- kernels .. "dawn_sc_110926_111002.bc", - -- kernels .. "dawn_sc_111003_111009.bc", - -- kernels .. "dawn_sc_111010_111016.bc", - -- kernels .. "dawn_sc_111017_111023.bc", - -- kernels .. "dawn_sc_111024_111030.bc", - -- kernels .. "dawn_sc_111031_111106.bc", - -- kernels .. "dawn_sc_111107_111113.bc", - -- kernels .. "dawn_sc_111114_111120.bc", - -- kernels .. "dawn_sc_111121_111127.bc", - -- kernels .. "dawn_sc_111128_111204.bc", - -- kernels .. "dawn_sc_111205_111211.bc", - -- kernels .. "dawn_sc_111212_111218.bc", - -- kernels .. "dawn_sc_111219_111225.bc", - -- kernels .. "dawn_sc_111226_120101.bc", - -- kernels .. "dawn_sc_120102_120108.bc", - -- kernels .. "dawn_sc_120109_120115.bc", - -- kernels .. "dawn_sc_120116_120122.bc", - -- kernels .. "dawn_sc_120123_120129.bc", - -- kernels .. "dawn_sc_120130_120205.bc", - -- kernels .. "dawn_sc_120206_120212.bc", - -- kernels .. "dawn_sc_120213_120219.bc", - -- kernels .. "dawn_sc_120220_120226.bc", - -- kernels .. "dawn_sc_120227_120304.bc", - -- kernels .. "dawn_sc_120305_120311.bc", - -- kernels .. "dawn_sc_120312_120318.bc", - -- kernels .. "dawn_sc_120319_120325.bc", - -- kernels .. "dawn_sc_120326_120401.bc", - -- kernels .. "dawn_sc_120402_120408.bc", - -- kernels .. "dawn_sc_120409_120415.bc", - -- kernels .. "dawn_sc_120416_120422.bc", - -- kernels .. "dawn_sc_120423_120429.bc", - -- kernels .. "dawn_sc_120430_120506.bc", - -- kernels .. "dawn_sc_120507_120513.bc", - -- kernels .. "dawn_sc_120514_120520.bc", - -- kernels .. "dawn_sc_120521_120527.bc", - -- kernels .. "dawn_sc_120528_120603.bc", - -- kernels .. "dawn_sc_120604_120610.bc", - -- kernels .. "dawn_sc_120611_120617.bc", - -- kernels .. "dawn_sc_120618_120624.bc", - -- kernels .. "dawn_sc_120625_120701.bc", - -- kernels .. "dawn_sc_120702_120708.bc", - -- kernels .. "dawn_sc_120709_120715.bc", - -- kernels .. "dawn_sc_120716_120722.bc", - -- kernels .. "dawn_sc_120723_120729.bc", - -- kernels .. "dawn_sc_120730_120805.bc", - -- kernels .. "dawn_sc_120806_120812.bc", - -- kernels .. "dawn_sc_120813_120819.bc", - -- kernels .. "dawn_sc_120820_120826.bc", - -- kernels .. "dawn_sc_120827_120902.bc", - -- kernels .. "dawn_sc_120903_120909.bc", -- kernels .. "dawn_sc_120910_120916.bc", - -- kernels .. "dawn_sc_f2_3942xxxxx.bc", - -- kernels .. "dawn_sc_pred_da028b_00_eu.bc", - -- kernels .. "dawn_sc_pred_dc041a_00.bc", - -- Solar array rotation kernels ~ 2gb + -- Solar array rotation kernels kernels .. "dawn_sa_070927_070930.bc", - --[[kernels .. "ck/dawn_sa_071001_071007.bc", - kernels .. "dawn_sa_071008_071014.bc", - kernels .. "dawn_sa_071015_071021.bc", - kernels .. "dawn_sa_071022_071028_v2.bc", - kernels .. "dawn_sa_071029_071104.bc", - kernels .. "dawn_sa_071105_071111.bc", - kernels .. "dawn_sa_071112_071118.bc", - kernels .. "dawn_sa_071119_071125.bc", - kernels .. "dawn_sa_071126_071202.bc", - kernels .. "dawn_sa_071203_071209.bc", - kernels .. "dawn_sa_071210_071216.bc", - kernels .. "dawn_sa_071217_071223.bc", - kernels .. "dawn_sa_071224_071230.bc", - kernels .. "dawn_sa_071231_080106.bc", - kernels .. "dawn_sa_080107_080113.bc", - kernels .. "dawn_sa_080114_080120.bc", - kernels .. "dawn_sa_080121_080127.bc", - kernels .. "dawn_sa_080128_080203.bc", - kernels .. "dawn_sa_080204_080210.bc", - kernels .. "dawn_sa_080211_080217.bc", - kernels .. "dawn_sa_080218_080224.bc", - kernels .. "dawn_sa_080225_080302.bc", - kernels .. "dawn_sa_080303_080309.bc", - kernels .. "dawn_sa_080310_080316.bc", - kernels .. "dawn_sa_080317_080323.bc", - kernels .. "dawn_sa_080324_080330.bc", - kernels .. "dawn_sa_080331_080406.bc", - kernels .. "dawn_sa_080407_080413.bc", - kernels .. "dawn_sa_080414_080420.bc", - kernels .. "dawn_sa_080421_080427.bc", - kernels .. "dawn_sa_080428_080504.bc", - kernels .. "dawn_sa_080505_080511.bc", - kernels .. "dawn_sa_080512_080518.bc", - kernels .. "dawn_sa_080519_080525.bc", - kernels .. "dawn_sa_080526_080601.bc", - kernels .. "dawn_sa_080602_080608.bc", - kernels .. "dawn_sa_080609_080615.bc", - kernels .. "dawn_sa_080616_080622.bc", - kernels .. "dawn_sa_080623_080629.bc", - kernels .. "dawn_sa_080630_080706.bc", - kernels .. "dawn_sa_080707_080713.bc", - kernels .. "dawn_sa_080714_080720.bc", - kernels .. "dawn_sa_080721_080727.bc", - kernels .. "dawn_sa_080728_080803.bc", - kernels .. "dawn_sa_080804_080810.bc", - kernels .. "dawn_sa_080811_080817.bc", - kernels .. "dawn_sa_080818_080824.bc", - kernels .. "dawn_sa_080825_080831.bc", - kernels .. "dawn_sa_080901_080907.bc", - kernels .. "dawn_sa_080908_080914.bc", - kernels .. "dawn_sa_080915_080921.bc", - kernels .. "dawn_sa_080922_080928.bc", - kernels .. "dawn_sa_080929_081005.bc", - kernels .. "dawn_sa_081006_081012.bc", - kernels .. "dawn_sa_081013_081019.bc", - kernels .. "dawn_sa_081020_081026.bc", - kernels .. "dawn_sa_081027_081102.bc", - kernels .. "dawn_sa_081103_081109.bc", - kernels .. "dawn_sa_081110_081116.bc", - kernels .. "dawn_sa_081117_081123.bc", - kernels .. "dawn_sa_081124_081130.bc", - kernels .. "dawn_sa_081201_081207.bc", - kernels .. "dawn_sa_081208_081214.bc", - kernels .. "dawn_sa_081215_081221.bc", - kernels .. "dawn_sa_081222_081228.bc", - kernels .. "dawn_sa_081229_090104.bc", - kernels .. "dawn_sa_090105_090111.bc", - kernels .. "dawn_sa_090112_090118.bc", - kernels .. "dawn_sa_090119_090125.bc", - kernels .. "dawn_sa_090126_090201.bc", - kernels .. "dawn_sa_090202_090208.bc", - kernels .. "dawn_sa_090209_090215.bc", - kernels .. "dawn_sa_090216_090222.bc", - kernels .. "dawn_sa_090223_090301.bc", - kernels .. "dawn_sa_090302_090308.bc", - kernels .. "dawn_sa_090309_090315.bc", - kernels .. "dawn_sa_090316_090322.bc", - kernels .. "dawn_sa_090323_090329.bc", - kernels .. "dawn_sa_090330_090405.bc", - kernels .. "dawn_sa_090406_090412.bc", - kernels .. "dawn_sa_090413_090419.bc", - kernels .. "dawn_sa_090420_090426.bc", - kernels .. "dawn_sa_090427_090503.bc", - kernels .. "dawn_sa_090504_090510.bc", - kernels .. "dawn_sa_090511_090517.bc", - kernels .. "dawn_sa_090518_090524.bc", - kernels .. "dawn_sa_090525_090531.bc", - kernels .. "dawn_sa_090601_090607.bc", - kernels .. "dawn_sa_090608_090614.bc", - kernels .. "dawn_sa_090615_090621.bc", - kernels .. "dawn_sa_090622_090628.bc", - kernels .. "dawn_sa_090629_090705.bc", - kernels .. "dawn_sa_090706_090712.bc", - kernels .. "dawn_sa_090713_090719.bc", - kernels .. "dawn_sa_090720_090726.bc", - kernels .. "dawn_sa_090727_090802.bc", - kernels .. "dawn_sa_090803_090809.bc", - kernels .. "dawn_sa_090810_090816.bc", - kernels .. "dawn_sa_090817_090823.bc", - kernels .. "dawn_sa_090824_090830.bc", - kernels .. "dawn_sa_090831_090906.bc", - kernels .. "dawn_sa_090907_090913.bc", - kernels .. "dawn_sa_090914_090920.bc", - kernels .. "dawn_sa_090921_090927.bc", - kernels .. "dawn_sa_090928_091004.bc", - kernels .. "dawn_sa_091005_091011.bc", - kernels .. "dawn_sa_091012_091018.bc", - kernels .. "dawn_sa_091019_091025.bc", - kernels .. "dawn_sa_091026_091101.bc", - kernels .. "dawn_sa_091102_091108.bc", - kernels .. "dawn_sa_091109_091115.bc", - kernels .. "dawn_sa_091116_091122.bc", - kernels .. "dawn_sa_091123_091129.bc", - kernels .. "dawn_sa_091130_091206.bc", - kernels .. "dawn_sa_091207_091213.bc", - kernels .. "dawn_sa_091214_091220.bc", - kernels .. "dawn_sa_091221_091227.bc", - kernels .. "dawn_sa_091228_100103.bc", - kernels .. "dawn_sa_100104_100110_v2.bc", - kernels .. "dawn_sa_100111_100117_v2.bc", - kernels .. "dawn_sa_100118_100124.bc", - kernels .. "dawn_sa_100125_100131.bc", - kernels .. "dawn_sa_100201_100207.bc", - kernels .. "dawn_sa_100208_100214.bc", - kernels .. "dawn_sa_100215_100221.bc", - kernels .. "dawn_sa_100222_100228.bc", - kernels .. "dawn_sa_100301_100307.bc", - kernels .. "dawn_sa_100308_100314.bc", - kernels .. "dawn_sa_100315_100321.bc", - kernels .. "dawn_sa_100322_100328.bc", - kernels .. "dawn_sa_100329_100404.bc", - kernels .. "dawn_sa_100405_100411.bc", - kernels .. "dawn_sa_100412_100418.bc", - kernels .. "dawn_sa_100419_100425.bc", - kernels .. "dawn_sa_100426_100502.bc", - kernels .. "dawn_sa_100503_100509.bc", - kernels .. "dawn_sa_100510_100516.bc", - kernels .. "dawn_sa_100517_100523.bc", - kernels .. "dawn_sa_100524_100530.bc", - kernels .. "dawn_sa_100531_100606.bc", - kernels .. "dawn_sa_100607_100613.bc", - kernels .. "dawn_sa_100614_100620.bc", - kernels .. "dawn_sa_100621_100627.bc", - kernels .. "dawn_sa_100628_100704.bc", - kernels .. "dawn_sa_100705_100711.bc", - kernels .. "dawn_sa_100712_100718.bc", - kernels .. "dawn_sa_100719_100725.bc", - kernels .. "dawn_sa_100726_100801.bc", - kernels .. "dawn_sa_100802_100808.bc", - kernels .. "dawn_sa_100809_100815.bc", - kernels .. "dawn_sa_100816_100822.bc", - kernels .. "dawn_sa_100823_100829.bc", - kernels .. "dawn_sa_100830_100905.bc", - kernels .. "dawn_sa_100906_100912.bc", - kernels .. "dawn_sa_100913_100919.bc", - kernels .. "dawn_sa_100920_100926.bc", - kernels .. "dawn_sa_100927_101003.bc", - kernels .. "dawn_sa_101004_101010.bc", - kernels .. "dawn_sa_101011_101017.bc", --]] - -- kernels .. "dawn_sa_101018_101024.bc", - -- kernels .. "dawn_sa_101025_101031.bc", - -- kernels .. "dawn_sa_101101_101107.bc", - -- kernels .. "dawn_sa_101108_101114.bc", - -- kernels .. "dawn_sa_101115_101121.bc", - -- kernels .. "dawn_sa_101122_101128.bc", - -- kernels .. "dawn_sa_101129_101205.bc", - -- kernels .. "dawn_sa_101206_101212.bc", - -- kernels .. "dawn_sa_101213_101219.bc", - -- kernels .. "dawn_sa_101220_101226.bc", - -- kernels .. "dawn_sa_101227_110102.bc", - -- kernels .. "dawn_sa_110103_110109.bc", - -- kernels .. "dawn_sa_110110_110116.bc", - -- kernels .. "dawn_sa_110117_110123.bc", - -- kernels .. "dawn_sa_110124_110130.bc", - -- kernels .. "dawn_sa_110131_110206.bc", - -- kernels .. "dawn_sa_110207_110213.bc", - -- kernels .. "dawn_sa_110214_110220.bc", - -- kernels .. "dawn_sa_110221_110227.bc", - -- kernels .. "dawn_sa_110228_110306.bc", - -- kernels .. "dawn_sa_110307_110313.bc", - -- kernels .. "dawn_sa_110314_110320.bc", - -- kernels .. "dawn_sa_110321_110327.bc", - -- kernels .. "dawn_sa_110328_110403.bc", - -- kernels .. "dawn_sa_110404_110410.bc", - -- kernels .. "dawn_sa_110411_110417.bc", - -- kernels .. "dawn_sa_110418_110424.bc", - -- kernels .. "dawn_sa_110425_110501.bc", - -- kernels .. "dawn_sa_110502_110508.bc", - -- kernels .. "dawn_sa_110509_110515.bc", - -- kernels .. "dawn_sa_110516_110522.bc", - -- kernels .. "dawn_sa_110523_110529.bc", - -- kernels .. "dawn_sa_110530_110605.bc", - -- kernels .. "dawn_sa_110606_110612.bc", - -- kernels .. "dawn_sa_110613_110619.bc", - -- kernels .. "dawn_sa_110620_110626.bc", - -- kernels .. "dawn_sa_110627_110703.bc", - -- kernels .. "dawn_sa_110704_110710.bc", - -- kernels .. "dawn_sa_110711_110717.bc", - -- kernels .. "dawn_sa_110718_110724.bc", - -- kernels .. "dawn_sa_110725_110731.bc", -- kernels .. "dawn_sa_110801_110807.bc", -- kernels .. "dawn_sa_110808_110814.bc", - -- kernels .. "dawn_sa_110815_110821.bc", - -- kernels .. "dawn_sa_110822_110828.bc", - -- kernels .. "dawn_sa_110829_110904.bc", - -- kernels .. "dawn_sa_110905_110911.bc", - -- kernels .. "dawn_sa_110912_110918.bc", - -- kernels .. "dawn_sa_110919_110925.bc", - -- kernels .. "dawn_sa_110926_111002.bc", - -- kernels .. "dawn_sa_111003_111009.bc", - -- kernels .. "dawn_sa_111010_111016.bc", - -- kernels .. "dawn_sa_111017_111023.bc", - -- kernels .. "dawn_sa_111024_111030.bc", - -- kernels .. "dawn_sa_111031_111106.bc", - -- kernels .. "dawn_sa_111107_111113.bc", - -- kernels .. "dawn_sa_111114_111120.bc", - -- kernels .. "dawn_sa_111121_111127.bc", - -- kernels .. "dawn_sa_111128_111204.bc", - -- kernels .. "dawn_sa_111205_111211.bc", - -- kernels .. "dawn_sa_111212_111218.bc", - -- kernels .. "dawn_sa_111219_111225.bc", - -- kernels .. "dawn_sa_111226_120101.bc", - -- kernels .. "dawn_sa_120102_120108.bc", - -- kernels .. "dawn_sa_120109_120115.bc", - -- kernels .. "dawn_sa_120116_120122.bc", - -- kernels .. "dawn_sa_120123_120129.bc", - -- kernels .. "dawn_sa_120130_120205.bc", - -- kernels .. "dawn_sa_120206_120212.bc", - -- kernels .. "dawn_sa_120213_120219.bc", - -- kernels .. "dawn_sa_120220_120226.bc", - -- kernels .. "dawn_sa_120227_120304.bc", - -- kernels .. "dawn_sa_120305_120311.bc", - -- kernels .. "dawn_sa_120312_120318.bc", - -- kernels .. "dawn_sa_120319_120325.bc", - -- kernels .. "dawn_sa_120326_120401.bc", - -- kernels .. "dawn_sa_120402_120408.bc", - -- kernels .. "dawn_sa_120409_120415.bc", - -- kernels .. "dawn_sa_120416_120422.bc", - -- kernels .. "dawn_sa_120423_120429.bc", - -- kernels .. "dawn_sa_120430_120506.bc", - -- kernels .. "dawn_sa_120507_120513.bc", - -- kernels .. "dawn_sa_120514_120520.bc", - -- kernels .. "dawn_sa_120521_120527.bc", - -- kernels .. "dawn_sa_120528_120603.bc", - -- kernels .. "dawn_sa_120604_120610.bc", - -- kernels .. "dawn_sa_120611_120617.bc", - -- kernels .. "dawn_sa_120618_120624.bc", - -- kernels .. "dawn_sa_120625_120701.bc", - -- kernels .. "dawn_sa_120702_120708.bc", - -- kernels .. "dawn_sa_120709_120715.bc", - -- kernels .. "dawn_sa_120716_120722.bc", - -- kernels .. "dawn_sa_120723_120729.bc", - -- kernels .. "dawn_sa_120730_120805.bc", - -- kernels .. "dawn_sa_120806_120812.bc", - -- kernels .. "dawn_sa_120813_120819.bc", - -- kernels .. "dawn_sa_120820_120826.bc", - -- kernels .. "dawn_sa_120827_120902.bc", - -- kernels .. "dawn_sa_120903_120909.bc", -- kernels .. "dawn_sa_120910_120916.bc", } @@ -797,7 +242,7 @@ asset.onInitialize(function() openspace.addSceneGraphNode(node) end end) - + asset.onDeinitialize(function() for i = #nodes, 1, -1 do local node = nodes[i] @@ -808,3 +253,12 @@ end) for i, node in ipairs(nodes) do asset.export(node) end + +asset.meta = { + Name = "Dawn", + Version = "1.0", + Description = "Dawn spacecraft and trail", + Author = "OpenSpace Team", + URL = "http://openspaceproject.com", + License = "MIT license" +} diff --git a/data/assets/scene/solarsystem/missions/dawn/vesta.asset b/data/assets/scene/solarsystem/missions/dawn/vesta.asset index 4c7cf140a2..7ef5bee128 100644 --- a/data/assets/scene/solarsystem/missions/dawn/vesta.asset +++ b/data/assets/scene/solarsystem/missions/dawn/vesta.asset @@ -2,10 +2,10 @@ local transforms = asset.require("scene/solarsystem/sun/transforms") local kernels = asset.syncedResource({ - Name = "Dawn Kernels", + Name = "Vesta Kernels", Type = "HttpSynchronization", - Identifier = "dawn_kernels", - Version = 2 + Identifier = "vesta_kernels", + Version = 1 }) local textures = asset.syncedResource({ @@ -38,7 +38,7 @@ local Vesta = { Target = "VESTA", Observer = "SSB", Kernels = { - --kernels .. "dawn_vesta_v06.tpc", + --kernels .. "vesta_v06.tpc", kernels .. "sb_vesta_071107.bsp" } }, @@ -58,7 +58,7 @@ local Vesta = { Observer = "DAWN", Target = "VESTA", Aberration = "NONE", - + DataInputTranslation = { Instrument = { -- FC1 = { @@ -97,7 +97,7 @@ local Vesta = { Fovy = 5.46, Aspect = 1 }, - + --[[ Instrument = { Name = "DAWN_FC1", Method = "ELLIPSOID", @@ -141,11 +141,20 @@ asset.onInitialize(function() openspace.addSceneGraphNode(Vesta) openspace.addSceneGraphNode(VestaTrail) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(VestaTrail.Identifier) openspace.removeSceneGraphNode(Vesta.Identifier) end) - + asset.export(Vesta) asset.export(VestaTrail) + +asset.meta = { + Name = "Vesta", + Version = "1.0", + Description = "Vesta model projection and trail", + Author = "OpenSpace Team", + URL = "http://openspaceproject.com", + License = "MIT license" +} diff --git a/data/profiles/dawn.profile b/data/profiles/dawn.profile index c5ce5a3758..77e8f29ee3 100644 --- a/data/profiles/dawn.profile +++ b/data/profiles/dawn.profile @@ -1,7 +1,9 @@ { "assets": [ "base", - "scene/solarsystem/missions/dawn/ceres", + "scene/solarsystem/dwarf_planets/ceres/ceres", + "scene/solarsystem/dwarf_planets/ceres/default_layers", + "scene/solarsystem/dwarf_planets/ceres/trail", "scene/solarsystem/missions/dawn/dawn", "scene/solarsystem/missions/dawn/vesta" ], @@ -60,4 +62,4 @@ "major": 1, "minor": 0 } -} \ No newline at end of file +} From e7f52f3893c1cab37770c6be6a294ad46ea5ab42 Mon Sep 17 00:00:00 2001 From: Alexander Bock Date: Mon, 14 Nov 2022 10:29:26 +0100 Subject: [PATCH 67/81] Address PR --- src/navigation/pathnavigator.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/navigation/pathnavigator.cpp b/src/navigation/pathnavigator.cpp index 3457a847db..b2b81cb92d 100644 --- a/src/navigation/pathnavigator.cpp +++ b/src/navigation/pathnavigator.cpp @@ -544,7 +544,7 @@ void PathNavigator::removeRollRotation(CameraPose& pose, double deltaTime) { pose.rotation * Camera::ViewDirectionCameraSpace ); - // The actual distance does not really matter either. Just have to far + // The actual distance does not really matter either. Just has to be far // enough away from the camera constexpr double NotTooCloseDistance = 10000.0; From 43787328684d5599a59eec4897aca26ecb7f7214 Mon Sep 17 00:00:00 2001 From: Malin E Date: Mon, 14 Nov 2022 11:35:45 +0100 Subject: [PATCH 68/81] Update xbox controller asset --- data/assets/util/joysticks/xbox.asset | 152 ++++++++++++++++++-------- 1 file changed, 107 insertions(+), 45 deletions(-) diff --git a/data/assets/util/joysticks/xbox.asset b/data/assets/util/joysticks/xbox.asset index f4389e83f1..e1e93600fb 100644 --- a/data/assets/util/joysticks/xbox.asset +++ b/data/assets/util/joysticks/xbox.asset @@ -34,7 +34,7 @@ local XBoxController = { Y = 3, LB = 4, RB = 5, - Select = 6, + Back = 6, Start = 7, LeftStickButton = 8, RightStickButton = 9, @@ -50,7 +50,7 @@ asset.onInitialize(function() local controller = XBoxController; local name = "Xbox Controller"; - local deadzoneJoysticks = 0.15 + local deadzoneJoysticks = 0.2 local deadzoneTriggers = 0.05 openspace.navigation.setAxisDeadZone(name, controller.LeftThumbStick[1], deadzoneJoysticks) openspace.navigation.setAxisDeadZone(name, controller.LeftThumbStick[2], deadzoneJoysticks) @@ -60,76 +60,138 @@ asset.onInitialize(function() openspace.navigation.setAxisDeadZone(name, controller.RightTrigger, deadzoneTriggers) openspace.navigation.bindJoystickAxis(name, controller.LeftThumbStick[1], "Orbit X"); - openspace.navigation.bindJoystickAxis(name, controller.LeftThumbStick[2], "Orbit Y", true); + openspace.navigation.bindJoystickAxis(name, controller.LeftThumbStick[2], "Orbit Y"); openspace.navigation.bindJoystickAxis(name, controller.RightThumbStick[1], "Pan X", true); openspace.navigation.bindJoystickAxis(name, controller.RightThumbStick[2], "Pan Y", true); openspace.navigation.bindJoystickAxis(name, controller.LeftTrigger, "Zoom Out", false, "TriggerLike"); openspace.navigation.bindJoystickAxis(name, controller.RightTrigger, "Zoom In", false, "TriggerLike"); + -- Roll openspace.navigation.bindJoystickButton( name, - controller.LB, - joystickHelper.bindLocalRoll(name, controller.RightThumbStick[1]), - "Switch to local roll mode" + controller.DPad.Up, + joystickHelper.bindLocalRoll(name, controller.RightThumbStick[1]) .. + "openspace.navigation.bindJoystickAxis('" .. name .. "', " .. controller.RightThumbStick[2] .. ", 'None');", + "Switch to roll mode" ) openspace.navigation.bindJoystickButton( name, - controller.LB, - joystickHelper.unbindRoll(name, controller.RightThumbStick[1]), - "Switch back to normal mode", - "Release" - ) - openspace.navigation.bindJoystickButton( - name, - controller.RB, - joystickHelper.bindGlobalRoll(name, controller.RightThumbStick[1]), - "Switch to global roll mode" - ) - openspace.navigation.bindJoystickButton( - name, - controller.RB, - joystickHelper.unbindRoll(name, controller.RightThumbStick[1]), + controller.DPad.Up, + joystickHelper.unbindRoll(name, controller.RightThumbStick[1]) .. + "openspace.navigation.bindJoystickAxis('" .. name .. "', " .. controller.RightThumbStick[2] .. ", 'Pan Y', true);", "Switch back to normal mode", "Release" ) + -- Switch focus in the interesting nodes menu + openspace.navigation.bindJoystickButton( + name, + controller.LB, + [[ + openspace.navigation.targetPreviousInterestingAnchor(); + openspace.navigation.retargetAnchor(); + ]], + "Switch target to the previous interesting node" + ) + + openspace.navigation.bindJoystickButton( + name, + controller.RB, + [[ + openspace.navigation.targetNextInterestingAnchor(); + openspace.navigation.retargetAnchor(); + ]], + "Switch target to the next interesting node" + ) + + -- Toggle Frictions openspace.navigation.bindJoystickButton( name, controller.A, - propertyHelper.invert("NavigationHandler.OrbitalNavigator.Friction.ZoomFriction"), - "Toggle zoom friction" - ) - openspace.navigation.bindJoystickButton( - name, - controller.B, propertyHelper.invert("NavigationHandler.OrbitalNavigator.Friction.RotationalFriction"), "Toggle rotational friction" ) openspace.navigation.bindJoystickButton( name, - controller.DPad.Left, - propertyHelper.invert("NavigationHandler.OrbitalNavigator.Friction.RollFriction"), - "Toggle roll friction" - ) - - openspace.navigation.bindJoystickButton( - name, - controller.X, - [[ - openspace.setPropertyValueSingle("NavigationHandler.OrbitalNavigator.Aim", ""); - openspace.setPropertyValueSingle("NavigationHandler.OrbitalNavigator.Anchor", "Earth"); - openspace.setPropertyValueSingle("NavigationHandler.OrbitalNavigator.RetargetAnchor", nil); - ]], - "Switch target to Earth" + controller.B, + propertyHelper.invert("NavigationHandler.OrbitalNavigator.Friction.ZoomFriction"), + "Toggle zoom friction" ) openspace.navigation.bindJoystickButton( name, controller.Y, + propertyHelper.invert("NavigationHandler.OrbitalNavigator.Friction.RollFriction"), + "Toggle roll friction" + ) + + -- Refocus + openspace.navigation.bindJoystickButton( + name, + controller.RightStickButton, + "openspace.navigation.retargetAnchor();", + "Retarget on current focus" + ) + + -- Time + openspace.navigation.bindJoystickButton( + name, + controller.DPad.Left, + "openspace.time.interpolatePreviousDeltaTimeStep();", + "Go backwards in time, faster the more times this button is pressed" + ) + + openspace.navigation.bindJoystickButton( + name, + controller.DPad.Down, + "openspace.time.interpolateDeltaTime(1);", + "Reset realtime" + ) + + openspace.navigation.bindJoystickButton( + name, + controller.DPad.Right, + "openspace.time.interpolateNextDeltaTimeStep();", + "Go forwards in time, faster the more times this button is pressed" + ) + + -- Reset Time to yesterday + openspace.navigation.bindJoystickButton( + name, + controller.Back, [[ - openspace.setPropertyValueSingle("NavigationHandler.OrbitalNavigator.Aim", ""); - openspace.setPropertyValueSingle("NavigationHandler.OrbitalNavigator.Anchor", "Mars"); - openspace.setPropertyValueSingle("NavigationHandler.OrbitalNavigator.RetargetAnchor", nil); + openspace.time.setDeltaTime(1); + local yesterday = openspace.time.advancedTime(openspace.time.currentWallTime(), "-1d"); + openspace.time.setTime(yesterday); ]], - "Switch target to Mars" + "Reset to yesterday realtime" + ) + + -- Pause + openspace.navigation.bindJoystickButton( + name, + controller.Start, + "openspace.time.togglePause();", + "Pause time simulation" + ) + + -- Open buttons that can be customized + -- X + openspace.navigation.bindJoystickButton( + name, + controller.X, + [[ + -- <-- Copy paste your custum script here + ]], + "" -- <-- Description of your custom script here (optional) + ) + + -- Left Joystick Button + openspace.navigation.bindJoystickButton( + name, + controller.LeftStickButton, + [[ + -- <-- Copy paste your custum script here + ]], + "" -- <-- Description of your custom script here (optional) ) end) From 10f4e848b991356d122e4a0767ec834b6a4d4e47 Mon Sep 17 00:00:00 2001 From: Emma Broman Date: Mon, 14 Nov 2022 18:10:27 +0100 Subject: [PATCH 69/81] Remove row setting non-existing property in orion nebula asset Bounding sphere is however correctly computed --- data/assets/scene/milkyway/objects/orionnebula/nebula.asset | 1 - 1 file changed, 1 deletion(-) diff --git a/data/assets/scene/milkyway/objects/orionnebula/nebula.asset b/data/assets/scene/milkyway/objects/orionnebula/nebula.asset index 7f30e23fbf..43fe0fcec8 100644 --- a/data/assets/scene/milkyway/objects/orionnebula/nebula.asset +++ b/data/assets/scene/milkyway/objects/orionnebula/nebula.asset @@ -58,7 +58,6 @@ local OrionNebulaModel = { Type = "RenderableModel", GeometryFile = sync .. "orion_nebula.obj", Opacity = 1.0, - BoundingSphereRadius = 35999998699110400/2, DisableFaceCulling = false, SpecularIntensity = 0.0, AmbientIntensity = 0.0, From 6a25d12aaec36fbd96195c808e946d3c0b3ca65c Mon Sep 17 00:00:00 2001 From: Malin E Date: Tue, 15 Nov 2022 16:50:05 +0100 Subject: [PATCH 70/81] Update PS4 joystick asset --- data/assets/util/joysticks/ps4.asset | 170 ++++++++++++++++++++------- 1 file changed, 126 insertions(+), 44 deletions(-) diff --git a/data/assets/util/joysticks/ps4.asset b/data/assets/util/joysticks/ps4.asset index 40db2d4533..58441ee338 100644 --- a/data/assets/util/joysticks/ps4.asset +++ b/data/assets/util/joysticks/ps4.asset @@ -52,7 +52,7 @@ asset.onInitialize(function() local controller = PS4Controller; local name = "Wireless Controller"; - local deadzoneJoysticks = 0.15 + local deadzoneJoysticks = 0.2 local deadzoneTriggers = 0.05 openspace.navigation.setAxisDeadZone(name, controller.LeftThumbStick[1], deadzoneJoysticks) openspace.navigation.setAxisDeadZone(name, controller.LeftThumbStick[2], deadzoneJoysticks) @@ -62,76 +62,158 @@ asset.onInitialize(function() openspace.navigation.setAxisDeadZone(name, controller.R2, deadzoneTriggers) openspace.navigation.bindJoystickAxis(name, controller.LeftThumbStick[1], "Orbit X"); - openspace.navigation.bindJoystickAxis(name, controller.LeftThumbStick[2], "Orbit Y", true); + openspace.navigation.bindJoystickAxis(name, controller.LeftThumbStick[2], "Orbit Y"); openspace.navigation.bindJoystickAxis(name, controller.RightThumbStick[1], "Pan X", true); openspace.navigation.bindJoystickAxis(name, controller.RightThumbStick[2], "Pan Y", true); openspace.navigation.bindJoystickAxis(name, controller.L2, "Zoom Out", false, "TriggerLike"); openspace.navigation.bindJoystickAxis(name, controller.R2, "Zoom In", false, "TriggerLike"); + -- Roll openspace.navigation.bindJoystickButton( name, - controller.L1, - joystickHelper.bindLocalRoll(name, controller.RightThumbStick[1]), - "Switch to local roll mode" + controller.DPad.Up, + joystickHelper.bindLocalRoll(name, controller.RightThumbStick[1]) .. + "openspace.navigation.bindJoystickAxis('" .. name .. "', " .. controller.RightThumbStick[2] .. ", 'None');", + "Switch to roll mode" ) openspace.navigation.bindJoystickButton( name, - controller.L1, - joystickHelper.unbindRoll(name, controller.RightThumbStick[1]), - "Switch back to normal mode", - "Release" - ) - openspace.navigation.bindJoystickButton( - name, - controller.R1, - joystickHelper.bindGlobalRoll(name, controller.RightThumbStick[1]), - "Switch to global roll mode" - ) - openspace.navigation.bindJoystickButton( - name, - controller.R1, - joystickHelper.unbindRoll(name, controller.RightThumbStick[1]), + controller.DPad.Up, + joystickHelper.unbindRoll(name, controller.RightThumbStick[1]) .. + "openspace.navigation.bindJoystickAxis('" .. name .. "', " .. controller.RightThumbStick[2] .. ", 'Pan Y', true);", "Switch back to normal mode", "Release" ) + -- Switch focus in the interesting nodes menu + openspace.navigation.bindJoystickButton( + name, + controller.L1, + [[ + openspace.navigation.targetPreviousInterestingAnchor(); + openspace.navigation.retargetAnchor(); + ]], + "Switch target to the previous interesting node" + ) + + openspace.navigation.bindJoystickButton( + name, + controller.R1, + [[ + openspace.navigation.targetNextInterestingAnchor(); + openspace.navigation.retargetAnchor(); + ]], + "Switch target to the next interesting node" + ) + + -- Toggle Frictions openspace.navigation.bindJoystickButton( name, controller.Cross, - propertyHelper.invert("NavigationHandler.OrbitalNavigator.Friction.ZoomFriction"), - "Toggle zoom friction" - ) - openspace.navigation.bindJoystickButton( - name, - controller.Circle, propertyHelper.invert("NavigationHandler.OrbitalNavigator.Friction.RotationalFriction"), "Toggle rotational friction" ) openspace.navigation.bindJoystickButton( name, - controller.DPad.Left, - propertyHelper.invert("NavigationHandler.OrbitalNavigator.Friction.RollFriction"), - "Toggle roll friction" - ) - - openspace.navigation.bindJoystickButton( - name, - controller.Square, - [[ - openspace.setPropertyValueSingle("NavigationHandler.OrbitalNavigator.Aim", ""); - openspace.setPropertyValueSingle("NavigationHandler.OrbitalNavigator.Anchor", "Earth"); - openspace.setPropertyValueSingle("NavigationHandler.OrbitalNavigator.RetargetAnchor", nil); - ]], - "Switch target to Earth" + controller.Circle, + propertyHelper.invert("NavigationHandler.OrbitalNavigator.Friction.ZoomFriction"), + "Toggle zoom friction" ) openspace.navigation.bindJoystickButton( name, controller.Triangle, + propertyHelper.invert("NavigationHandler.OrbitalNavigator.Friction.RollFriction"), + "Toggle roll friction" + ) + + -- Refocus + openspace.navigation.bindJoystickButton( + name, + controller.RightStickButton, + "openspace.navigation.retargetAnchor();", + "Retarget on current focus" + ) + + -- Time + openspace.navigation.bindJoystickButton( + name, + controller.DPad.Left, + "openspace.time.interpolatePreviousDeltaTimeStep();", + "Go backwards in time, faster the more times this button is pressed" + ) + + openspace.navigation.bindJoystickButton( + name, + controller.DPad.Down, + "openspace.time.interpolateDeltaTime(1);", + "Reset realtime" + ) + + openspace.navigation.bindJoystickButton( + name, + controller.DPad.Right, + "openspace.time.interpolateNextDeltaTimeStep();", + "Go forwards in time, faster the more times this button is pressed" + ) + + -- Reset Time to yesterday + openspace.navigation.bindJoystickButton( + name, + controller.Options, [[ - openspace.setPropertyValueSingle("NavigationHandler.OrbitalNavigator.Aim", ""); - openspace.setPropertyValueSingle("NavigationHandler.OrbitalNavigator.Anchor", "Mars"); - openspace.setPropertyValueSingle("NavigationHandler.OrbitalNavigator.RetargetAnchor", nil); + openspace.time.setDeltaTime(1); + local yesterday = openspace.time.advancedTime(openspace.time.currentWallTime(), "-1d"); + openspace.time.setTime(yesterday); ]], - "Switch target to Mars" + "Reset to yesterday realtime" + ) + + -- Pause + openspace.navigation.bindJoystickButton( + name, + controller.TouchPad, + "openspace.time.togglePause();", + "Pause time simulation" + ) + + -- Open buttons that can be customized + -- Square + openspace.navigation.bindJoystickButton( + name, + controller.Square, + [[ + -- <-- Copy paste your custum script here + ]], + "" -- <-- Description of your custom script here (optional) + ) + + -- Share button + openspace.navigation.bindJoystickButton( + name, + controller.Share, + [[ + -- <-- Copy paste your custum script here + ]], + "" -- <-- Description of your custom script here (optional) + ) + + -- Left Joystick Button + openspace.navigation.bindJoystickButton( + name, + controller.LeftStickButton, + [[ + -- <-- Copy paste your custum script here + ]], + "" -- <-- Description of your custom script here (optional) + ) + + -- Playstation button + openspace.navigation.bindJoystickButton( + name, + controller.PS, + [[ + -- <-- Copy paste your custum script here + ]], + "" -- <-- Description of your custom script here (optional) ) end) From 69b83c831669a28e19bf9801badf7a151c99a13a Mon Sep 17 00:00:00 2001 From: Malin E Date: Tue, 15 Nov 2022 16:51:07 +0100 Subject: [PATCH 71/81] Update wireless xbox joystick asset --- .../assets/util/joysticks/xbox-wireless.asset | 150 +++++++++++++----- 1 file changed, 106 insertions(+), 44 deletions(-) diff --git a/data/assets/util/joysticks/xbox-wireless.asset b/data/assets/util/joysticks/xbox-wireless.asset index aaef2fc79d..c13f066ccf 100644 --- a/data/assets/util/joysticks/xbox-wireless.asset +++ b/data/assets/util/joysticks/xbox-wireless.asset @@ -34,7 +34,7 @@ local XBoxController = { Y = 3, LB = 4, RB = 5, - Select = 6, + Back = 6, Start = 7, LeftStickButton = 8, RightStickButton = 9, @@ -60,76 +60,138 @@ asset.onInitialize(function() openspace.navigation.setAxisDeadZone(name, controller.RightTrigger, deadzoneTriggers) openspace.navigation.bindJoystickAxis(name, controller.LeftThumbStick[1], "Orbit X"); - openspace.navigation.bindJoystickAxis(name, controller.LeftThumbStick[2], "Orbit Y", true); + openspace.navigation.bindJoystickAxis(name, controller.LeftThumbStick[2], "Orbit Y"); openspace.navigation.bindJoystickAxis(name, controller.RightThumbStick[1], "Pan X", true); openspace.navigation.bindJoystickAxis(name, controller.RightThumbStick[2], "Pan Y", true); openspace.navigation.bindJoystickAxis(name, controller.LeftTrigger, "Zoom Out", false, "TriggerLike"); openspace.navigation.bindJoystickAxis(name, controller.RightTrigger, "Zoom In", false, "TriggerLike"); + -- Roll openspace.navigation.bindJoystickButton( name, - controller.LB, - joystickHelper.bindLocalRoll(name, controller.RightThumbStick[1]), - "Switch to local roll mode" + controller.DPad.Up, + joystickHelper.bindLocalRoll(name, controller.RightThumbStick[1]) .. + "openspace.navigation.bindJoystickAxis('" .. name .. "', " .. controller.RightThumbStick[2] .. ", 'None');", + "Switch to roll mode" ) openspace.navigation.bindJoystickButton( name, - controller.LB, - joystickHelper.unbindRoll(name, controller.RightThumbStick[1]), - "Switch back to normal mode", - "Release" - ) - openspace.navigation.bindJoystickButton( - name, - controller.RB, - joystickHelper.bindGlobalRoll(name, controller.RightThumbStick[1]), - "Switch to global roll mode" - ) - openspace.navigation.bindJoystickButton( - name, - controller.RB, - joystickHelper.unbindRoll(name, controller.RightThumbStick[1]), + controller.DPad.Up, + joystickHelper.unbindRoll(name, controller.RightThumbStick[1]) .. + "openspace.navigation.bindJoystickAxis('" .. name .. "', " .. controller.RightThumbStick[2] .. ", 'Pan Y', true);", "Switch back to normal mode", "Release" ) + -- Switch focus in the interesting nodes menu + openspace.navigation.bindJoystickButton( + name, + controller.LB, + [[ + openspace.navigation.targetPreviousInterestingAnchor(); + openspace.navigation.retargetAnchor(); + ]], + "Switch target to the previous interesting node" + ) + + openspace.navigation.bindJoystickButton( + name, + controller.RB, + [[ + openspace.navigation.targetNextInterestingAnchor(); + openspace.navigation.retargetAnchor(); + ]], + "Switch target to the next interesting node" + ) + + -- Toggle Frictions openspace.navigation.bindJoystickButton( name, controller.A, - propertyHelper.invert("NavigationHandler.OrbitalNavigator.Friction.ZoomFriction"), - "Toggle zoom friction" - ) - openspace.navigation.bindJoystickButton( - name, - controller.B, propertyHelper.invert("NavigationHandler.OrbitalNavigator.Friction.RotationalFriction"), "Toggle rotational friction" ) openspace.navigation.bindJoystickButton( name, - controller.DPad.Left, - propertyHelper.invert("NavigationHandler.OrbitalNavigator.Friction.RollFriction"), - "Toggle roll friction" - ) - - openspace.navigation.bindJoystickButton( - name, - controller.X, - [[ - openspace.setPropertyValueSingle("NavigationHandler.OrbitalNavigator.Aim", ""); - openspace.setPropertyValueSingle("NavigationHandler.OrbitalNavigator.Anchor", "Earth"); - openspace.setPropertyValueSingle("NavigationHandler.OrbitalNavigator.RetargetAnchor", nil); - ]], - "Switch target to Earth" + controller.B, + propertyHelper.invert("NavigationHandler.OrbitalNavigator.Friction.ZoomFriction"), + "Toggle zoom friction" ) openspace.navigation.bindJoystickButton( name, controller.Y, + propertyHelper.invert("NavigationHandler.OrbitalNavigator.Friction.RollFriction"), + "Toggle roll friction" + ) + + -- Refocus + openspace.navigation.bindJoystickButton( + name, + controller.RightStickButton, + "openspace.navigation.retargetAnchor();", + "Retarget on current focus" + ) + + -- Time + openspace.navigation.bindJoystickButton( + name, + controller.DPad.Left, + "openspace.time.interpolatePreviousDeltaTimeStep();", + "Go backwards in time, faster the more times this button is pressed" + ) + + openspace.navigation.bindJoystickButton( + name, + controller.DPad.Down, + "openspace.time.interpolateDeltaTime(1);", + "Reset realtime" + ) + + openspace.navigation.bindJoystickButton( + name, + controller.DPad.Right, + "openspace.time.interpolateNextDeltaTimeStep();", + "Go forwards in time, faster the more times this button is pressed" + ) + + -- Reset Time to yesterday + openspace.navigation.bindJoystickButton( + name, + controller.Back, [[ - openspace.setPropertyValueSingle("NavigationHandler.OrbitalNavigator.Aim", ""); - openspace.setPropertyValueSingle("NavigationHandler.OrbitalNavigator.Anchor", "Mars"); - openspace.setPropertyValueSingle("NavigationHandler.OrbitalNavigator.RetargetAnchor", nil); + openspace.time.setDeltaTime(1); + local yesterday = openspace.time.advancedTime(openspace.time.currentWallTime(), "-1d"); + openspace.time.setTime(yesterday); ]], - "Switch target to Mars" + "Reset to yesterday realtime" + ) + + -- Pause + openspace.navigation.bindJoystickButton( + name, + controller.Start, + "openspace.time.togglePause();", + "Pause time simulation" + ) + + -- Open buttons that can be customized + -- X + openspace.navigation.bindJoystickButton( + name, + controller.X, + [[ + -- <-- Copy paste your custum script here + ]], + "" -- <-- Description of your custom script here (optional) + ) + + -- Left Joystick Button + openspace.navigation.bindJoystickButton( + name, + controller.LeftStickButton, + [[ + -- <-- Copy paste your custum script here + ]], + "" -- <-- Description of your custom script here (optional) ) end) From 96c31c9746b42ed50bd7561e9a7f98de37ffeb7d Mon Sep 17 00:00:00 2001 From: Malin E Date: Tue, 15 Nov 2022 16:54:24 +0100 Subject: [PATCH 72/81] Update wireless xbox joystick deadzone size --- data/assets/util/joysticks/xbox-wireless.asset | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/assets/util/joysticks/xbox-wireless.asset b/data/assets/util/joysticks/xbox-wireless.asset index c13f066ccf..c6d3a087df 100644 --- a/data/assets/util/joysticks/xbox-wireless.asset +++ b/data/assets/util/joysticks/xbox-wireless.asset @@ -50,7 +50,7 @@ asset.onInitialize(function() local controller = XBoxController; local name = "Wireless Xbox Controller"; - local deadzoneJoysticks = 0.15 + local deadzoneJoysticks = 0.2 local deadzoneTriggers = 0.05 openspace.navigation.setAxisDeadZone(name, controller.LeftThumbStick[1], deadzoneJoysticks) openspace.navigation.setAxisDeadZone(name, controller.LeftThumbStick[2], deadzoneJoysticks) From 9aa229fd28dd0b1bd3f375984eadf787e6021439 Mon Sep 17 00:00:00 2001 From: GPayne Date: Tue, 15 Nov 2022 08:56:32 -0700 Subject: [PATCH 73/81] Minor fixes to image test scripts --- ...srecording => RecordingDefaultSolarSystem.osrec} | Bin 1 file changed, 0 insertions(+), 0 deletions(-) rename tests/visual/default/{RecordingDefaultSolarSystem.osrecording => RecordingDefaultSolarSystem.osrec} (100%) diff --git a/tests/visual/default/RecordingDefaultSolarSystem.osrecording b/tests/visual/default/RecordingDefaultSolarSystem.osrec similarity index 100% rename from tests/visual/default/RecordingDefaultSolarSystem.osrecording rename to tests/visual/default/RecordingDefaultSolarSystem.osrec From 0e52b3debdb79ee23b98f80b1ac039fa994a549f Mon Sep 17 00:00:00 2001 From: GPayne Date: Tue, 15 Nov 2022 08:58:24 -0700 Subject: [PATCH 74/81] Minor fix to ostest timestamps to avoid timing issue --- tests/visual/juno/junomodel.ostest | 4 ++-- tests/visual/juno/junotrailfull.ostest | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/visual/juno/junomodel.ostest b/tests/visual/juno/junomodel.ostest index 2e11c7dfc4..dd2c23090f 100644 --- a/tests/visual/juno/junomodel.ostest +++ b/tests/visual/juno/junomodel.ostest @@ -2,11 +2,11 @@ { "type": "pause", "value": "true"}, { "type": "time", - "value": "2016-07-01T00:00:00.00"}, + "value": "2016-07-01T00:00:01.00"}, { "type": "navigationstate", "value": "{Anchor='Juno',Pitch=-0.165756E-1,Position={-2.249081E1,1.191533E0,2.635740E1},Up={0.288083E-1,0.999373E0,-0.205962E-1},Yaw=0.152454E0}"}, { "type": "wait", "value": "2"}, { "type": "screenshot", "value": ""} -] \ No newline at end of file +] diff --git a/tests/visual/juno/junotrailfull.ostest b/tests/visual/juno/junotrailfull.ostest index 95b3b93b51..8f0cc26215 100644 --- a/tests/visual/juno/junotrailfull.ostest +++ b/tests/visual/juno/junotrailfull.ostest @@ -2,7 +2,7 @@ { "type": "pause", "value": "true"}, { "type": "time", - "value": "2016-07-01T00:00:00.00"}, + "value": "2016-07-01T00:00:01.00"}, { "type": "navigationstate", "value": "{Anchor='Jupiter',Pitch=-0.884063E-1,Position={-2.734747E8,7.875195E9,-4.723682E9},ReferenceFrame='Root',Up={-0.318598E-1,0.513306E0,0.857614E0},Yaw=-0.311906E0}"}, { "type": "script", @@ -13,4 +13,4 @@ "value": "2"}, { "type": "screenshot", "value": ""} -] \ No newline at end of file +] From 9ae5e16b90f851a7bb0eeb4be7d8f70018b44300 Mon Sep 17 00:00:00 2001 From: Alexander Bock Date: Fri, 18 Nov 2022 15:16:04 +0100 Subject: [PATCH 75/81] Fix ESRI WorldImagery URL --- .../planets/earth/layers/colorlayers/esri_world_imagery.wms | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/assets/scene/solarsystem/planets/earth/layers/colorlayers/esri_world_imagery.wms b/data/assets/scene/solarsystem/planets/earth/layers/colorlayers/esri_world_imagery.wms index 79ec166a99..34b474d295 100644 --- a/data/assets/scene/solarsystem/planets/earth/layers/colorlayers/esri_world_imagery.wms +++ b/data/assets/scene/solarsystem/planets/earth/layers/colorlayers/esri_world_imagery.wms @@ -1,6 +1,6 @@ - http://wi.maptiles.arcgis.com/arcgis/rest/services/World_Imagery/MapServer/WMTS/tile/1.0.0/World_Imagery/default/default/${z}/${y}/${x}.jpg + https://wi.maptiles.arcgis.com/arcgis/rest/services/World_Imagery/MapServer/tile/${z}/${y}/${x}.jpg -180.0 From cc366db2993d9fb6ad63b7dbef8cf68201ca132c Mon Sep 17 00:00:00 2001 From: Alexander Bock Date: Mon, 21 Nov 2022 19:12:55 +0100 Subject: [PATCH 76/81] Correctly place Perseverance on Mars after landing --- .../missions/perseverance/model.asset | 90 +++++++++++++++++-- .../missions/perseverance/spice.asset | 25 ++++++ .../missions/perseverance/trail.asset | 65 ++------------ data/profiles/mars.profile | 2 +- 4 files changed, 118 insertions(+), 64 deletions(-) create mode 100644 data/assets/scene/solarsystem/missions/perseverance/spice.asset diff --git a/data/assets/scene/solarsystem/missions/perseverance/model.asset b/data/assets/scene/solarsystem/missions/perseverance/model.asset index 31e5be7cee..09285e73c6 100644 --- a/data/assets/scene/solarsystem/missions/perseverance/model.asset +++ b/data/assets/scene/solarsystem/missions/perseverance/model.asset @@ -1,6 +1,7 @@ local trail = asset.require("./trail") local marsTransforms = asset.require("scene/solarsystem/planets/mars/transforms") local sun = asset.require("scene/solarsystem/sun/sun") +local spice = asset.require("./spice") local models = asset.syncedResource({ Name = "Perseverance Model", @@ -9,10 +10,86 @@ local models = asset.syncedResource({ Version = 2 }) +local TranslationKeyframes = { + ["1850 JAN 01 00:00:00"] = { + Type = "SpiceTranslation", + Target = spice.ID, + Observer = "MARS", + Kernels = spice.Kernels, + Frame = "IAU_MARS", + FixedDate = "2020 JUL 17 13:56:43" + }, + ["2020 JUL 17 13:56:42"] = { + Type = "SpiceTranslation", + Target = spice.ID, + Observer = "MARS", + Kernels = spice.Kernels, + Frame = "IAU_MARS", + FixedDate = "2020 JUL 17 13:56:43" + }, + ["2020 JUL 17 13:56:43"] = { + Type = "SpiceTranslation", + Target = spice.ID, + Observer = "MARS", + Frame = "IAU_MARS", + Kernels = spice.Kernels + }, + ["2020 JUL 17 13:56:44"] = { + Type = "SpiceTranslation", + Target = spice.ID, + Observer = "MARS", + Frame = "IAU_MARS", + Kernels = spice.Kernels + }, + ["2021 FEB 18 20:43:48"] = { + Type = "SpiceTranslation", + Target = spice.ID, + Observer = "MARS", + Frame = "IAU_MARS", + Kernels = spice.Kernels, + }, + ["2021 FEB 18 20:43:49"] = { + Type = "SpiceTranslation", + Target = spice.ID, + Observer = "MARS", + Frame = "IAU_MARS", + Kernels = spice.Kernels, + FixedDate = "2021 FEB 18 20:43:48" + }, +} + +local PerseveranceNode = { + Identifier = "PerseveranceNode", + Parent = marsTransforms.MarsBarycenter.Identifier, + Transform = { + Translation = { + Type = "SpiceTranslation", + Target = "MARS", + Observer = "MARS BARYCENTER" + }, + Rotation = { + Type = "SpiceRotation", + SourceFrame = "IAU_MARS", + DestinationFrame = "GALACTIC" + } + }, + GUI = { + Name = "Perseverance Node", + Path = "/Solar System/Missions/Perseverance", + Hidden = true + } +} + -- Perseverance Model -- local Perseverance = { Identifier = "Perseverance", - Parent = trail.PerseveranceNode.Identifier, + Parent = PerseveranceNode.Identifier, + Transform = { + Translation = { + Type = "TimelineTranslation", + Keyframes = TranslationKeyframes + } + }, GUI = { Name = "Perseverance", Path = "/Solar System/Missions/Perseverance" @@ -46,29 +123,30 @@ local Body = { Intensity = 0.5 } }, - PerformShading = false, - RotationVector = {65.940000,201.389999,263.980011} + RotationVector = {19.19,0.0,348.08} }, GUI = { Name = "Perseverance Model Body", Path = "/Solar System/Missions/Perseverance/Model", - Hidden = true + -- Hidden = true } } asset.onInitialize(function() + openspace.addSceneGraphNode(PerseveranceNode) openspace.addSceneGraphNode(Perseverance) openspace.addSceneGraphNode(PerseveranceModel) openspace.addSceneGraphNode(Body) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(Body) openspace.removeSceneGraphNode(PerseveranceModel) openspace.removeSceneGraphNode(Perseverance) + openspace.removeSceneGraphNode(PerseveranceNode) end) - + asset.export(Perseverance) asset.export(PerseveranceModel) asset.export(Body) diff --git a/data/assets/scene/solarsystem/missions/perseverance/spice.asset b/data/assets/scene/solarsystem/missions/perseverance/spice.asset new file mode 100644 index 0000000000..65ed32bc04 --- /dev/null +++ b/data/assets/scene/solarsystem/missions/perseverance/spice.asset @@ -0,0 +1,25 @@ +local kernels = asset.syncedResource({ + Name = "Mars 2020 Kernels", + Type = "HttpSynchronization", + Identifier = "perseverance_kernels", + Version = 2 +}) + +local m2020_kernels = { + kernels .. "m2020.tf", + kernels .. "m2020.tsc", + kernels .. "m2020_v04.tf", + + kernels .. "m2020_cruise_recon_nospin_v1.bc", + kernels .. "m2020_cruise_recon_rawrt_v1.bc", + kernels .. "m2020_cruise_recon_raweng_v1.bc", + kernels .. "m2020_edl_v01.bc", + + kernels .. "m2020_cruise_od138_v1.bsp", + kernels .. "m2020_edl_v01.bsp", + kernels .. "m2020_surf_rover_loc_0000_0089_v1.bsp" +} + +asset.export("Kernels", m2020_kernels) +asset.export("ID", -168) + diff --git a/data/assets/scene/solarsystem/missions/perseverance/trail.asset b/data/assets/scene/solarsystem/missions/perseverance/trail.asset index 2df94fa738..9b9fb46c9d 100644 --- a/data/assets/scene/solarsystem/missions/perseverance/trail.asset +++ b/data/assets/scene/solarsystem/missions/perseverance/trail.asset @@ -1,67 +1,21 @@ local sunTransforms = asset.require("scene/solarsystem/sun/transforms") local marsTransforms = asset.require("scene/solarsystem/planets/mars/transforms") - -local kernels = asset.syncedResource({ - Name = "Mars 2020 Kernels", - Type = "HttpSynchronization", - Identifier = "perseverance_kernels", - Version = 2 -}) - -local perseverance_id = -168 - -local m2020_kernels = { - kernels .. "m2020.tf", - kernels .. "m2020.tsc", - kernels .. "m2020_v04.tf", - - kernels .. "m2020_cruise_recon_nospin_v1.bc", - kernels .. "m2020_cruise_recon_rawrt_v1.bc", - kernels .. "m2020_cruise_recon_raweng_v1.bc", - kernels .. "m2020_edl_v01.bc", - - kernels .. "m2020_cruise_od138_v1.bsp", - kernels .. "m2020_edl_v01.bsp", - kernels .. "m2020_surf_rover_loc_0000_0089_v1.bsp" -} +local spice = asset.require("./spice") local startTime = "2020 JUL 17 13:56:42" local approachMars = "2021 FEB 11 20:32:16" local endTime = "2021 FEB 18 20:32:16" -local PerseveranceNode = { - Identifier = "PerseveranceNode", - Parent = sunTransforms.SolarSystemBarycenter.Identifier, - Transform = { - Translation = { - Type = "SpiceTranslation", - Target = perseverance_id, - Observer = "SSB", - Kernels = m2020_kernels - } - }, - GUI = { - Name = "Perseverance Node", - Path = "/Solar System/Missions/Perseverance", - Hidden = true - }, - TimeFrame = { - Type = "TimeFrameInterval", - Start = "2020 JUL 30 12:52:43.643", - End = "2021 FEB 18 20:43:48" - } -} - local PerseveranceTrailSun = { Identifier = "PerseveranceTrailSun", Parent = sunTransforms.SolarSystemBarycenter.Identifier, Renderable = { Type = "RenderableTrailTrajectory", - Translation = { + Translation = { Type = "SpiceTranslation", - Target = perseverance_id, + Target = spice.ID, Observer = "SSB", - Kernels = m2020_kernels + Kernels = spice.Kernels }, Color = { 0.2, 0.7, 0.1 }, StartTime = startTime, @@ -82,9 +36,9 @@ local PerseveranceTrailMars = { Type = "RenderableTrailTrajectory", Translation = { Type = "SpiceTranslation", - Target = perseverance_id, + Target = spice.ID, Observer = "MARS BARYCENTER", - Kernels = m2020_kernels + Kernels = spice.Kernels }, Color = { 0.7, 0.9, 0.6 }, StartTime = approachMars, @@ -99,17 +53,14 @@ local PerseveranceTrailMars = { } asset.onInitialize(function() - openspace.addSceneGraphNode(PerseveranceNode) openspace.addSceneGraphNode(PerseveranceTrailSun) openspace.addSceneGraphNode(PerseveranceTrailMars) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(PerseveranceTrailMars) openspace.removeSceneGraphNode(PerseveranceTrailSun) - openspace.removeSceneGraphNode(PerseveranceNode) end) - -asset.export(PerseveranceNode) + asset.export(PerseveranceTrailSun) asset.export(PerseveranceTrailMars) diff --git a/data/profiles/mars.profile b/data/profiles/mars.profile index 152a19ca03..ee0ef5776c 100644 --- a/data/profiles/mars.profile +++ b/data/profiles/mars.profile @@ -22,7 +22,7 @@ "identifier": "profile.setup.perseverance", "is_local": false, "name": "Setup and Goto Perseverance", - "script": "openspace.setPropertyValueSingle('Scene.Mars.Renderable.Layers.HeightLayers.Mola_Utah.Settings.Offset', -1686.0);openspace.setPropertyValueSingle('Scene.Mars.Renderable.Layers.HeightLayers.HiRISE-LS-DEM.Settings.Offset', -1686.0);openspace.setPropertyValueSingle('Scene.Mars.Renderable.Layers.HeightLayers.MDEM200M.Settings.Offset', -1686);openspace.time.setPause(true);openspace.time.setTime('2021 FEB 18 20:32:16');openspace.setPropertyValueSingle('Scene.Mars.Renderable.Layers.HeightLayers.HiRISE-LS-DEM.Enabled', true);openspace.setPropertyValueSingle('Scene.Mars.Renderable.Layers.ColorLayers.HiRISE-LS.Enabled', true);openspace.navigation.setNavigationState({Anchor = 'Perseverance',Pitch = 0.567457E-4,Position = { 1.240506E1,-1.369270E1,-2.423553E0 },ReferenceFrame = 'Root',Up = { 0.441211E0,0.247019E0,0.862737E0 },Yaw = -0.446853E-4});" + "script": "openspace.setPropertyValueSingle('Scene.Mars.Renderable.Layers.HeightLayers.Mola_Utah.Settings.Offset', -1685.5);openspace.setPropertyValueSingle('Scene.Mars.Renderable.Layers.HeightLayers.HiRISE-LS-DEM.Settings.Offset', -1686.0);openspace.setPropertyValueSingle('Scene.Mars.Renderable.Layers.HeightLayers.MDEM200M.Settings.Offset', -1686);openspace.time.setPause(true);openspace.time.setTime('2021 FEB 18 20:32:16');openspace.setPropertyValueSingle('Scene.Mars.Renderable.Layers.HeightLayers.HiRISE-LS-DEM.Enabled', true);openspace.setPropertyValueSingle('Scene.Mars.Renderable.Layers.ColorLayers.HiRISE-LS.Enabled', true);openspace.navigation.setNavigationState({Anchor = 'Perseverance',Pitch = 0.567457E-4,Position = { 1.240506E1,-1.369270E1,-2.423553E0 },ReferenceFrame = 'Root',Up = { 0.441211E0,0.247019E0,0.862737E0 },Yaw = -0.446853E-4});" } ], "assets": [ From 4ae50bbcb8af3d302bdfc31665d4677a9ec741e1 Mon Sep 17 00:00:00 2001 From: Alexander Bock Date: Mon, 21 Nov 2022 19:22:01 +0100 Subject: [PATCH 77/81] Fix issue with the Show All Trails / Hide All Trails action when no trails with specific capitalization are present in the profile --- .../actions/trails/toggle_all_trails.asset | 20 +++++++++++++++---- 1 file changed, 16 insertions(+), 4 deletions(-) diff --git a/data/assets/actions/trails/toggle_all_trails.asset b/data/assets/actions/trails/toggle_all_trails.asset index 7ade2ff9e1..dbe39e362a 100644 --- a/data/assets/actions/trails/toggle_all_trails.asset +++ b/data/assets/actions/trails/toggle_all_trails.asset @@ -2,8 +2,14 @@ local fade_up_trails = { Identifier = "os.fade_up_trails", Name = "Show All Trails", Command = [[ - openspace.setPropertyValue("Scene.*Trail.Renderable.Fade", 1, 2); - openspace.setPropertyValue("Scene.*trail.Renderable.Fade", 1, 2); + local capList = openspace.getProperty("Scene.*Trail.Renderable.Fade"); + for _,v in ipairs(capList) do + openspace.setPropertyValueSingle(v, 1, 2); + end + local list = openspace.getProperty("Scene.*trail.Renderable.Fade"); + for _,v in ipairs(list) do + openspace.setPropertyValueSingle(v, 1, 2); + end ]], Documentation = "Fade up all enabled trails in the Scene", GuiPath = "/Trails", @@ -15,8 +21,14 @@ local fade_down_trails = { Identifier = "os.fade_down_trails", Name = "Hide All Trails", Command = [[ - openspace.setPropertyValue("Scene.*Trail.Renderable.Fade", 0, 2); - openspace.setPropertyValue("Scene.*trail.Renderable.Fade", 0, 2); + local capList = openspace.getProperty("Scene.*Trail.Renderable.Fade"); + for _,v in ipairs(capList) do + openspace.setPropertyValueSingle(v, 0, 2); + end + local list = openspace.getProperty("Scene.*trail.Renderable.Fade"); + for _,v in ipairs(list) do + openspace.setPropertyValueSingle(v, 0, 2); + end ]], Documentation = "Fade down all enabled trails in the Scene", GuiPath = "/Trails", From ffc56a79e6152d238329720856276958d8381b35 Mon Sep 17 00:00:00 2001 From: Alexander Bock Date: Mon, 21 Nov 2022 19:28:38 +0100 Subject: [PATCH 78/81] Fix missing GuiPath for setting Jupiter approach time in Voyager profile --- data/profiles/voyager.profile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/profiles/voyager.profile b/data/profiles/voyager.profile index 28082bbd5f..e3f75683e8 100644 --- a/data/profiles/voyager.profile +++ b/data/profiles/voyager.profile @@ -18,7 +18,7 @@ }, { "documentation": "Sets the time for Voyager's approach to Jupiter", - "gui_path": "/", + "gui_path": "/Missions/Voyager", "identifier": "profile.setup.jupiter_approach", "is_local": false, "name": "Set Jupiter Approach", From 0fe1cb7c23a57603c632e7e7f1d672410373bff4 Mon Sep 17 00:00:00 2001 From: Alexander Bock Date: Mon, 21 Nov 2022 19:33:06 +0100 Subject: [PATCH 79/81] Fix missing 1 on Voyager in focus action --- data/profiles/voyager.profile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/data/profiles/voyager.profile b/data/profiles/voyager.profile index e3f75683e8..d8c1df1738 100644 --- a/data/profiles/voyager.profile +++ b/data/profiles/voyager.profile @@ -5,7 +5,7 @@ "gui_path": "/Missions/Voyager", "identifier": "profile.focus.voyager1", "is_local": false, - "name": "Focus on Voyager", + "name": "Focus on Voyager 1", "script": "openspace.setPropertyValueSingle(\"NavigationHandler.OrbitalNavigator.RetargetAnchor\", nil);openspace.setPropertyValueSingle(\"NavigationHandler.OrbitalNavigator.Anchor\", 'Voyager_1');openspace.setPropertyValueSingle(\"NavigationHandler.OrbitalNavigator.Aim\", '')" }, { @@ -13,7 +13,7 @@ "gui_path": "/Missions/Voyager", "identifier": "profile.focus.voyager2", "is_local": false, - "name": "Focus on Voyager2", + "name": "Focus on Voyager 2", "script": "openspace.setPropertyValueSingle(\"NavigationHandler.OrbitalNavigator.RetargetAnchor\", nil);openspace.setPropertyValueSingle(\"NavigationHandler.OrbitalNavigator.Anchor\", 'Voyager_2');openspace.setPropertyValueSingle(\"NavigationHandler.OrbitalNavigator.Aim\", '');" }, { From 44e5b17ec919b9ca4bf2c3be3f0ebc3e4b07e733 Mon Sep 17 00:00:00 2001 From: Alexander Bock Date: Tue, 22 Nov 2022 21:06:52 +0100 Subject: [PATCH 80/81] Global pass over the code to remove trailing spaces --- .../actions/planets/planet_lighting.asset | 6 +- ...gle_all_trails_planets_moons_instant.asset | 4 +- data/assets/actions/trails/toggle_trail.asset | 4 +- data/assets/base.asset | 2 +- data/assets/examples/approachevents.asset | 2 +- data/assets/examples/dashboarditems.asset | 2 +- data/assets/examples/grids.asset | 4 +- .../assets/examples/modelshader/model_fs.glsl | 4 +- .../assets/examples/modelshader/model_vs.glsl | 2 +- .../examples/modelshader/modelshader.asset | 4 +- data/assets/examples/primitives.asset | 4 +- .../examples/renderableplaneimageonline.asset | 4 +- data/assets/examples/screenspacespout.asset | 4 +- data/assets/examples/slidedeck.asset | 4 +- data/assets/examples/spheres.asset | 2 +- data/assets/examples/statemachine.asset | 4 +- .../examples/temperature_land_highres.asset | 2 +- .../examples/volume/generated/cartesian.asset | 46 +++++++-------- .../volume/generated/cartesiansequence.asset | 2 +- .../examples/volume/generated/spherical.asset | 14 ++--- data/assets/examples/volume/toyvolume.asset | 4 +- data/assets/global/localbookmarks.asset | 4 +- .../modules/exoplanets/default_settings.asset | 2 +- .../modules/exoplanets/exoplanets_data.asset | 8 +-- .../modules/skybrowser/default_settings.asset | 2 +- .../modules/skybrowser/hoverCircle.asset | 6 +- data/assets/scene/digitaluniverse/2dF.asset | 4 +- data/assets/scene/digitaluniverse/2mass.asset | 4 +- data/assets/scene/digitaluniverse/6dF.asset | 4 +- data/assets/scene/digitaluniverse/abell.asset | 4 +- .../digitaluniverse/backgroundradiation.asset | 4 +- .../backgroundradiation_multiverse.asset | 4 +- .../scene/digitaluniverse/deepsky.asset | 2 +- .../digitaluniverse/digitaluniverse.asset | 2 +- .../digitaluniverse/globularclusters.asset | 22 ++++---- data/assets/scene/digitaluniverse/grids.asset | 8 +-- data/assets/scene/digitaluniverse/hdf.asset | 4 +- .../assets/scene/digitaluniverse/kepler.asset | 4 +- .../scene/digitaluniverse/milkyway.asset | 4 +- .../digitaluniverse/milkyway_arm_labels.asset | 4 +- .../digitaluniverse/milkyway_sphere.asset | 4 +- .../scene/digitaluniverse/openclusters.asset | 27 ++++----- .../scene/digitaluniverse/quasars.asset | 4 +- data/assets/scene/digitaluniverse/sdss.asset | 4 +- .../scene/digitaluniverse/starorbits.asset | 2 +- data/assets/scene/digitaluniverse/stars.asset | 4 +- data/assets/scene/milkyway/gaia/apogee.asset | 4 +- .../scene/milkyway/gaia/gaiastars.asset | 4 +- data/assets/scene/milkyway/gaia/galah.asset | 4 +- data/assets/scene/milkyway/milkyway/eso.asset | 4 +- .../scene/milkyway/milkyway/volume.asset | 4 +- .../objects/orionnebula/cluster.asset | 4 +- .../milkyway/objects/orionnebula/nebula.asset | 8 +-- .../objects/orionnebula/transforms.asset | 4 +- data/assets/scene/milkyway/stars/denver.asset | 4 +- .../dwarf_planets/pluto/charon/charon.asset | 4 +- .../pluto/charon/charon_trail.asset | 12 ++-- .../layers/colorlayers/greyscale_usgs.asset | 2 +- .../layers/colorlayers/greyscale_usgs.asset | 4 +- .../dwarf_planets/pluto/minor/hydra.asset | 12 ++-- .../dwarf_planets/pluto/minor/kerberos.asset | 12 ++-- .../dwarf_planets/pluto/minor/nix.asset | 12 ++-- .../dwarf_planets/pluto/minor/styx.asset | 12 ++-- .../dwarf_planets/pluto/pluto_trail.asset | 4 +- .../pluto/pluto_trail_kepler.asset | 4 +- .../heliosphere/2012/reset_loop_action.asset | 16 +++--- .../bastille_day/lightindicator.asset | 4 +- .../interstellar/c-2019_q4_borisov.asset | 4 +- .../solarsystem/interstellar/oumuamua.asset | 4 +- .../missions/apollo/11/apollo11.asset | 2 +- .../solarsystem/missions/apollo/11/lem.asset | 4 +- .../missions/apollo/15/apollo15.asset | 4 +- .../missions/apollo/15/kernels.asset | 2 +- .../missions/apollo/17/bouldersstation2.asset | 2 +- .../missions/apollo/17/bouldersstation6.asset | 2 +- .../missions/apollo/17/bouldersstation7.asset | 4 +- .../solarsystem/missions/apollo/17/lem.asset | 4 +- .../missions/apollo/8/launch_model.asset | 4 +- .../solarsystem/missions/apollo/8/model.asset | 4 +- .../missions/apollo/8/trails.asset | 4 +- .../missions/apollo/insignias_map.asset | 2 +- .../solarsystem/missions/dawn/vesta.asset | 2 +- .../solarsystem/missions/gaia/gaia.asset | 6 +- .../solarsystem/missions/gaia/trail.asset | 4 +- .../missions/gaia/transforms.asset | 4 +- .../solarsystem/missions/insight/edl.asset | 2 +- .../solarsystem/missions/juice/fov/swi.asset | 2 +- .../solarsystem/missions/juice/model.asset | 2 +- .../solarsystem/missions/juno/juno.asset | 4 +- .../missions/messenger/dashboard.asset | 2 +- .../messenger/mercurymagnetosphere.asset | 6 +- .../missions/messenger/messengerSC.asset | 2 +- .../missions/newhorizons/charon.asset | 6 +- .../missions/newhorizons/dashboard.asset | 2 +- .../missions/newhorizons/kernels.asset | 2 +- .../missions/newhorizons/label.asset | 4 +- .../missions/newhorizons/model.asset | 4 +- .../missions/newhorizons/othermoons.asset | 4 +- .../missions/newhorizons/pluto.asset | 14 ++--- .../missions/newhorizons/trail.asset | 4 +- .../missions/newhorizons/transforms.asset | 4 +- .../missions/osirisrex/bennu.asset | 4 +- .../missions/osirisrex/bennu_projection.asset | 6 +- .../missions/osirisrex/dashboard.asset | 2 +- .../missions/osirisrex/imageplane.asset | 4 +- .../missions/osirisrex/kernels.asset | 2 +- .../missions/osirisrex/model.asset | 2 +- .../missions/osirisrex/osirisrex.mission | 22 ++++---- .../missions/osirisrex/trail.asset | 4 +- .../missions/osirisrex/transforms.asset | 4 +- .../missions/pioneer/pioneer10.asset | 6 +- .../missions/pioneer/pioneer11.asset | 6 +- .../solarsystem/missions/rosetta/67p.asset | 4 +- .../missions/rosetta/dashboard.asset | 2 +- .../missions/rosetta/rosetta.asset | 6 +- .../missions/voyager/dashboard.asset | 2 +- .../missions/voyager/voyager1.asset | 2 +- .../missions/voyager/voyager2.asset | 2 +- .../voyager1_2__pioneer10_11.asset | 4 +- .../planets/earth/atmosphere.asset | 6 +- .../planets/earth/default_layers.asset | 4 +- .../solarsystem/planets/earth/earth.asset | 4 +- ...om_w1_sea_ice_concentration_temporal.asset | 2 +- .../colorlayers/aqua_modis_temporal.asset | 2 +- .../earth/layers/colorlayers/bmng_utah.asset | 2 +- .../colorlayers/terra_texture_spout.asset | 2 +- .../solarsystem/planets/earth/markers.asset | 4 +- .../layers/colorlayers/clemuvvis_sweden.asset | 8 +-- .../layers/colorlayers/clemuvvis_utah.asset | 6 +- .../layers/colorlayers/kaguya_sweden.asset | 4 +- .../moon/layers/colorlayers/kaguya_utah.asset | 4 +- .../colorlayers/lola_clr_shade_sweden.asset | 16 +++--- .../colorlayers/lola_clr_shade_utah.asset | 14 ++--- .../colorlayers/lola_shade_sweden.asset | 16 +++--- .../layers/colorlayers/lola_shade_utah.asset | 16 +++--- .../colorlayers/uvvishybrid_sweden.asset | 4 +- .../layers/colorlayers/uvvishybrid_utah.asset | 4 +- .../layers/heightlayers/loladem_utah.asset | 10 ++-- .../solarsystem/planets/earth/moon/moon.asset | 6 +- .../planets/earth/moon/trail.asset | 4 +- .../atmosphere/2000_carbon_monoxide.asset | 2 +- .../atmosphere/2004_ir_hurricane.asset | 16 +++--- .../atmosphere/2005_hurricane-grayir.asset | 8 +-- .../atmosphere/2005_hurricane-wvsst.asset | 10 ++-- .../noaa-sos/atmosphere/2012_hurricane.asset | 22 ++++---- .../atmosphere/aerosol_blackcarbon.asset | 30 +++++----- .../aerosol_blackcarbon_and_sulfate.asset | 30 +++++----- .../noaa-sos/atmosphere/aerosol_sulfate.asset | 30 +++++----- .../noaa-sos/atmosphere/airtraffic.asset | 16 +++--- .../earth/noaa-sos/atmosphere/all_sats.asset | 26 ++++----- .../noaa-sos/atmosphere/aqua_swath.asset | 22 ++++---- .../noaa-sos/atmosphere/carbonflux.asset | 22 ++++---- .../carbontracker_2000_2100-fixed_scale.asset | 30 +++++----- ...arbontracker_2000_2100-sliding_scale.asset | 30 +++++----- .../noaa-sos/atmosphere/climate_niche.asset | 30 +++++----- .../earth/noaa-sos/atmosphere/co_gmd.asset | 30 +++++----- .../earth/noaa-sos/atmosphere/fim_chem.asset | 20 +++---- .../noaa-sos/atmosphere/fossil_fuel.asset | 36 ++++++------ .../earth/noaa-sos/atmosphere/fukushima.asset | 18 +++--- .../earth/noaa-sos/atmosphere/geo_sat.asset | 22 ++++---- .../earth/noaa-sos/atmosphere/geo_scan.asset | 22 ++++---- .../noaa-sos/atmosphere/giss_temp_anom.asset | 10 ++-- .../atmosphere/globe-insolation.asset | 18 +++--- .../noaa-sos/atmosphere/globe-rainfall.asset | 18 +++--- .../atmosphere/harvey-clouds_precip.asset | 20 +++---- .../atmosphere/hurricane_season_2017.asset | 22 ++++---- .../hurricane_season_2017_wvsst.asset | 12 ++-- .../hurricane_tracks-cumulative.asset | 10 ++-- .../earth/noaa-sos/atmosphere/isaac.asset | 20 +++---- .../earth/noaa-sos/atmosphere/iss_track.asset | 22 ++++---- .../earth/noaa-sos/atmosphere/land_temp.asset | 16 +++--- .../earth/noaa-sos/atmosphere/lightning.asset | 18 +++--- .../noaa-sos/atmosphere/ltg_vaisala.asset | 28 +++++----- .../earth/noaa-sos/atmosphere/nasa_sats.asset | 22 ++++---- .../atmosphere/nccs_models-carbon.asset | 16 +++--- .../atmosphere/nccs_models-chem.asset | 18 +++--- .../atmosphere/nccs_models-winds.asset | 16 +++--- .../earth/noaa-sos/atmosphere/no2_omsi.asset | 8 +-- .../noaa-sos/atmosphere/noaa_sat-tracks.asset | 24 ++++---- .../earth/noaa-sos/atmosphere/pclim.asset | 12 ++-- .../earth/noaa-sos/atmosphere/poes_sat.asset | 18 +++--- .../atmosphere/reanalysis-antarctic.asset | 40 ++++++------- .../atmosphere/reanalysis-elnino.asset | 40 ++++++------- .../atmosphere/reanalysis-hurricane.asset | 32 +++++------ .../earth/noaa-sos/atmosphere/sandy.asset | 4 +- .../noaa-sos/atmosphere/sunsync_sat.asset | 14 ++--- .../earth/noaa-sos/atmosphere/temp_anom.asset | 22 ++++---- .../atmosphere/tropical_widening.asset | 6 +- .../atmosphere/typhoon_haiyan-wvsst.asset | 8 +-- .../noaa-sos/atmosphere/typhoon_haiyan.asset | 8 +-- .../noaa-sos/atmosphere/volcano_ash.asset | 20 +++---- .../noaa-sos/land/agriculture-cropland.asset | 16 +++--- .../land/agriculture-pastureland.asset | 16 +++--- .../planets/earth/noaa-sos/land/birds.asset | 12 ++-- .../land/blue_marble-blue_marble.asset | 14 ++--- .../land/blue_marble-blue_marble_topo.asset | 6 +- .../blue_marble-blue_marble_topo_bathy.asset | 10 ++-- .../land/blue_marble-nightlights.asset | 22 ++++---- .../blue_marble-seasonal_blue_marble.asset | 12 ++-- .../earth/noaa-sos/land/dams-global.asset | 8 +-- .../noaa-sos/land/dams-mississippi.asset | 8 +-- .../earth/noaa-sos/land/dams-yangtze.asset | 8 +-- .../noaa-sos/land/day_night-06z_only.asset | 12 ++-- .../noaa-sos/land/day_night-full_year.asset | 12 ++-- .../noaa-sos/land/day_night-oneday.asset | 12 ++-- .../noaa-sos/land/earth_night-1992_2002.asset | 6 +- .../noaa-sos/land/earth_night-1992_2008.asset | 12 ++-- .../noaa-sos/land/earth_night-1992_2009.asset | 14 ++--- .../noaa-sos/land/earth_night-2012.asset | 8 +-- .../land/earth_night-color_nightlights.asset | 18 +++--- .../land/earth_night-nightlights.asset | 18 +++--- .../land/earthquake-1980_1995_quakes.asset | 32 +++++------ .../noaa-sos/land/earthquake-2001_2015.asset | 24 ++++---- .../noaa-sos/land/earthquakes_1901_2000.asset | 26 ++++----- .../land/earthquakes_and_eruptions.asset | 14 ++--- .../earths_magnetism_magnetic_lines.asset | 22 ++++---- .../land/earths_magnetism_magnets.asset | 22 ++++---- .../planets/earth/noaa-sos/land/etopo1.asset | 20 +++---- .../noaa-sos/land/etopo2-earth_bright.asset | 14 ++--- .../noaa-sos/land/etopo2-earth_color.asset | 14 ++--- .../noaa-sos/land/etopo2-earth_shaded.asset | 14 ++--- .../noaa-sos/land/etopo2-earth_topo.asset | 20 +++---- .../earth/noaa-sos/land/etopo2-landsat.asset | 12 ++-- .../planets/earth/noaa-sos/land/fire.asset | 18 +++--- .../earth/noaa-sos/land/fire_veg.asset | 18 +++--- .../land/flooding-displaced_250.asset | 20 +++---- .../earth/noaa-sos/land/flooding-fatal.asset | 20 +++---- .../noaa-sos/land/flooding-heavy_rain.asset | 20 +++---- .../noaa-sos/land/flooding-major_floods.asset | 20 +++---- .../earth/noaa-sos/land/food_v_feed.asset | 12 ++-- .../planets/earth/noaa-sos/land/forests.asset | 16 +++--- .../noaa-sos/land/geomag_tracklines.asset | 14 ++--- .../noaa-sos/land/global_vegetation.asset | 12 ++-- .../earth/noaa-sos/land/gray_earth.asset | 16 +++--- .../earth/noaa-sos/land/hot_topo.asset | 24 ++++---- .../noaa-sos/land/irsat_nightlights.asset | 12 ++-- .../earth/noaa-sos/land/japan_quake.asset | 14 ++--- .../koppen_climate-koppen_1901_2100.asset | 16 +++--- .../land/koppen_climate-koppen_2007.asset | 18 +++--- .../noaa-sos/land/land_cover-animation.asset | 24 ++++---- .../noaa-sos/land/land_cover-ribbon.asset | 26 ++++----- .../noaa-sos/land/land_cover-slideshow.asset | 24 ++++---- .../land_production-cropland_current.asset | 16 +++--- .../land_production-cropland_potential.asset | 14 ++--- .../land/land_production-production_gap.asset | 14 ++--- .../earth/noaa-sos/land/land_ratio.asset | 2 +- .../noaa-sos/land/latitude_longitude.asset | 6 +- .../noaa-sos/land/magnetic_declination.asset | 10 ++-- .../earth/noaa-sos/land/nightsky.asset | 8 +-- .../noaa-sos/land/nuclear_earthquake.asset | 26 ++++----- .../earth/noaa-sos/land/paleo_map.asset | 16 +++--- .../earth/noaa-sos/land/paleo_overlays.asset | 22 ++++---- .../noaa-sos/land/pantropical_biomass.asset | 10 ++-- .../earth/noaa-sos/land/plate_movement.asset | 28 +++++----- .../noaa-sos/land/river_discharge_2010.asset | 10 ++-- .../land/sea_floor_age-iso_lines_yellow.asset | 22 ++++---- .../land/sea_floor_age-shaded_veg.asset | 22 ++++---- .../noaa-sos/land/sea_floor_age-topo.asset | 22 ++++---- .../land/seismic_waves-1994northridge.asset | 16 +++--- .../land/species_richness-amphibians.asset | 18 +++--- ...ecies_richness-amphibians_threatened.asset | 16 +++--- .../land/species_richness-birds.asset | 14 ++--- .../species_richness-birds_threatened.asset | 18 +++--- .../land/species_richness-mammals.asset | 14 ++--- .../species_richness-mammals_threatened.asset | 14 ++--- .../noaa-sos/land/surface_temperature.asset | 18 +++--- .../earth/noaa-sos/land/top_quakes.asset | 26 ++++----- .../noaa-sos/land/volcanoes-eruptions.asset | 22 ++++---- .../land/volcanoes-global_volcanoes.asset | 22 ++++---- .../noaa-sos/land/volcanoes-tsunami.asset | 22 ++++---- .../earth/noaa-sos/models/bm10000.asset | 44 +++++++-------- .../earth/noaa-sos/models/gfdl_seaice.asset | 26 ++++----- .../noaa-sos/models/ipcc_temp-ccsm-a1b.asset | 20 +++---- .../noaa-sos/models/ipcc_temp-ccsm-b1.asset | 20 +++---- .../noaa-sos/models/ipcc_temp-compare.asset | 20 +++---- .../noaa-sos/models/ipcc_temp-gfdl-a1b.asset | 20 +++---- .../noaa-sos/models/ipcc_temp-gfdl-b1.asset | 20 +++---- .../noaa-sos/models/ipcc_temp-had-a1b.asset | 20 +++---- .../noaa-sos/models/ipcc_temp-had-b1.asset | 20 +++---- .../earth/noaa-sos/models/rcp-ga26.asset | 4 +- .../earth/noaa-sos/models/rcp-ga45.asset | 4 +- .../earth/noaa-sos/models/rcp-ga60.asset | 4 +- .../earth/noaa-sos/models/rcp-ga85.asset | 4 +- .../earth/noaa-sos/models/ukmet-a1b.asset | 18 +++--- .../earth/noaa-sos/models/ukmet-e1.asset | 22 ++++---- .../noaa-sos/oceans/2009_ice_animation.asset | 26 ++++----- .../oceans/6m_sea_level_rise-black.asset | 28 +++++----- .../oceans/6m_sea_level_rise-red.asset | 28 +++++----- .../noaa-sos/oceans/animal_tracking.asset | 6 +- .../noaa-sos/oceans/argo_buoy_tracks.asset | 20 +++---- .../noaa-sos/oceans/argo_buoy_waterfall.asset | 18 +++--- .../earth/noaa-sos/oceans/atl_turtle.asset | 18 +++--- .../noaa-sos/oceans/buoy_locations.asset | 16 +++--- .../earth/noaa-sos/oceans/catch_model.asset | 24 ++++---- .../noaa-sos/oceans/chlorophyll_model.asset | 20 +++---- .../earth/noaa-sos/oceans/currents.asset | 30 +++++----- .../earth/noaa-sos/oceans/dart_buoy.asset | 18 +++--- .../noaa-sos/oceans/ecco2_sst-gray_land.asset | 38 ++++++------- .../noaa-sos/oceans/ecco2_sst-veg_land.asset | 42 +++++++------- .../earth/noaa-sos/oceans/elnino.asset | 18 +++--- .../oceans/gfdl_sst-black_background.asset | 12 ++-- .../oceans/gfdl_sst-land_background.asset | 12 ++-- .../noaa-sos/oceans/greenland_melt.asset | 18 +++--- .../earth/noaa-sos/oceans/japan_tsunami.asset | 14 ++--- .../noaa-sos/oceans/japan_tsunami_waves.asset | 24 ++++---- .../oceans/loggerheadseaturtletracks.asset | 18 +++--- .../noaa-sos/oceans/marine_impacts.asset | 24 ++++---- .../oceans/marine_life_tracking.asset | 16 +++--- .../oceans/mexico_turtles_947293.asset | 16 +++--- .../oceans/mexico_turtles_958002.asset | 16 +++--- .../earth/noaa-sos/oceans/modis_sst.asset | 14 ++--- .../earth/noaa-sos/oceans/nasa_speed.asset | 14 ++--- .../earth/noaa-sos/oceans/nasa_sst.asset | 10 ++-- .../noaa-sos/oceans/ocean_acid-co2_flux.asset | 12 ++-- .../earth/noaa-sos/oceans/ocean_acid-ph.asset | 16 +++--- .../oceans/ocean_acid-saturation.asset | 26 ++++----- .../noaa-sos/oceans/ocean_depths_temp.asset | 16 +++--- .../noaa-sos/oceans/ocean_drain-gray.asset | 10 ++-- .../earth/noaa-sos/oceans/pac_turtle.asset | 14 ++--- .../earth/noaa-sos/oceans/phytoplankton.asset | 24 ++++---- .../earth/noaa-sos/oceans/pr_tsunami.asset | 16 +++--- .../earth/noaa-sos/oceans/reefs_risk.asset | 22 ++++---- .../earth/noaa-sos/oceans/sea_level.asset | 26 ++++----- .../noaa-sos/oceans/sea_level_trends.asset | 32 +++++------ .../oceans/sea_surface_height_anomaly.asset | 18 +++--- .../noaa-sos/oceans/seaice_monthly.asset | 14 ++--- .../noaa-sos/oceans/seaice_radiation.asset | 12 ++-- .../oceans/seawifs-land_background.asset | 6 +- .../noaa-sos/oceans/seawifs-no_holes.asset | 8 +-- .../noaa-sos/oceans/seawifs-polar_holes.asset | 8 +-- .../planets/earth/noaa-sos/oceans/shark.asset | 16 +++--- .../noaa-sos/oceans/ship_tracks-mosaic.asset | 32 +++++------ .../noaa-sos/oceans/ship_tracks-tracks.asset | 32 +++++------ .../earth/noaa-sos/oceans/shipping.asset | 20 +++---- .../noaa-sos/oceans/species_richness.asset | 28 +++++----- .../planets/earth/noaa-sos/oceans/sss.asset | 14 ++--- .../earth/noaa-sos/oceans/sst_1980_1999.asset | 16 +++--- .../tsunami_historical_series-alaska.asset | 38 ++++++------- .../tsunami_historical_series-aleutians.asset | 32 +++++------ ...ami_historical_series-aleutians_1957.asset | 34 +++++------ .../tsunami_historical_series-cascadia.asset | 38 ++++++------- .../tsunami_historical_series-chile.asset | 42 +++++++------- .../tsunami_historical_series-japan.asset | 52 ++++++++--------- .../tsunami_historical_series-lisbon.asset | 18 +++--- .../tsunami_historical_series-samoa.asset | 22 ++++---- .../tsunami_historical_series-sumatra.asset | 10 ++-- .../noaa-sos/oceans/tsunami_locations.asset | 30 +++++----- .../earth/noaa-sos/oceans/vector_winds.asset | 18 +++--- .../oceans/vent_discoveries_animation.asset | 10 ++-- .../noaa-sos/oceans/vent_locations.asset | 12 ++-- .../earth/noaa-sos/oceans/vorticity.asset | 14 ++--- .../oceans/waves-wave_height_2012.asset | 8 +-- .../oceans/waves-wave_height_katrina.asset | 12 ++-- .../oceans/waves-wave_height_sandy.asset | 12 ++-- .../oceans/waves-wave_power_2012.asset | 8 +-- .../oceans/weeklyseaice-10day_seaice.asset | 18 +++--- .../oceans/weeklyseaice-sept_seaice.asset | 34 +++++------ .../earth/noaa-sos/overlays/cables.asset | 8 +-- .../earth/noaa-sos/overlays/capitals.asset | 6 +- .../earth/noaa-sos/overlays/city_names.asset | 8 +-- .../overlays/continent_borders-black.asset | 6 +- .../overlays/continent_borders-white.asset | 6 +- .../noaa-sos/overlays/continent_names.asset | 6 +- .../overlays/country_borders-black.asset | 6 +- .../overlays/country_borders-white.asset | 6 +- .../noaa-sos/overlays/country_pop_names.asset | 8 +-- .../earth/noaa-sos/overlays/currents.asset | 6 +- .../overlays/general_circulation.asset | 10 ++-- .../noaa-sos/overlays/land_mask-black.asset | 6 +- .../noaa-sos/overlays/land_mask-veg.asset | 8 +-- .../noaa-sos/overlays/latlon_grid-black.asset | 6 +- .../noaa-sos/overlays/latlon_grid-white.asset | 6 +- .../earth/noaa-sos/overlays/ocean_names.asset | 6 +- .../overlays/plate_boundary-color.asset | 8 +-- .../overlays/plate_boundary-white.asset | 6 +- .../earth/noaa-sos/overlays/plate_names.asset | 6 +- .../earth/noaa-sos/overlays/railroad.asset | 8 +-- .../earth/noaa-sos/overlays/rivers.asset | 8 +-- .../earth/noaa-sos/overlays/roads-black.asset | 8 +-- .../earth/noaa-sos/overlays/roads-white.asset | 8 +-- .../overlays/state_borders-black.asset | 6 +- .../overlays/state_borders-white.asset | 6 +- .../earth/noaa-sos/overlays/timezones.asset | 6 +- .../debris/volume/cartesian_volume.asset | 6 +- .../debris/volume/spherical_volume.asset | 6 +- .../solarsystem/planets/earth/trail.asset | 4 +- .../planets/earth/trail_barycenter.asset | 4 +- .../planets/jupiter/callisto/callisto.asset | 4 +- .../planets/jupiter/callisto/trail.asset | 4 +- .../planets/jupiter/europa/europa.asset | 4 +- .../planets/jupiter/europa/trail.asset | 4 +- .../planets/jupiter/ganymede/ganymede.asset | 4 +- .../planets/jupiter/ganymede/trail.asset | 4 +- .../solarsystem/planets/jupiter/io/io.asset | 4 +- .../planets/jupiter/io/trail.asset | 4 +- .../solarsystem/planets/jupiter/jupiter.asset | 4 +- .../planets/jupiter/minor/ananke_group.asset | 4 +- .../planets/jupiter/minor/carme_group.asset | 4 +- .../planets/jupiter/minor/carpo_group.asset | 4 +- .../planets/jupiter/minor/himalia_group.asset | 4 +- .../planets/jupiter/minor/inner_group.asset | 4 +- .../planets/jupiter/minor/other_groups.asset | 4 +- .../jupiter/minor/pasiphae_group.asset | 4 +- .../jupiter/minor/themisto_group.asset | 4 +- .../solarsystem/planets/jupiter/trail.asset | 4 +- .../planets/jupiter/trail_barycenter.asset | 4 +- .../planets/jupiter/trail_earth.asset | 4 +- .../planets/jupiter/transforms.asset | 4 +- .../solarsystem/planets/mars/atmosphere.asset | 8 +-- .../layers/colorlayers/ctx_blended_01.asset | 2 +- .../colorlayers/ctx_mosaic_sweden.asset | 2 +- .../layers/colorlayers/ctx_mosaic_utah.asset | 2 +- .../mars/layers/colorlayers/hirise.asset | 2 +- .../mars/layers/colorlayers/hirisels.asset | 2 +- .../colorlayers/moc_wa_color_sweden.asset | 4 +- .../colorlayers/moc_wa_color_utah.asset | 4 +- .../layers/colorlayers/mola_hrsc_sweden.asset | 2 +- .../layers/colorlayers/mola_hrsc_utah.asset | 2 +- .../mola_pseudo_color_sweden.asset | 2 +- .../colorlayers/mola_pseudo_color_utah.asset | 2 +- .../colorlayers/themis_ir_day_sweden.asset | 2 +- .../colorlayers/themis_ir_day_utah.asset | 2 +- .../colorlayers/themis_ir_night_sweden.asset | 2 +- .../colorlayers/themis_ir_night_utah.asset | 2 +- .../colorlayers/viking_mdim_sweden.asset | 2 +- .../layers/colorlayers/viking_mdim_utah.asset | 2 +- .../mars/layers/heightlayers/MDEM200M.asset | 6 +- .../mars/layers/heightlayers/hirisels.asset | 2 +- .../layers/heightlayers/mola_sweden.asset | 2 +- .../mars/layers/heightlayers/mola_utah.asset | 2 +- .../scene/solarsystem/planets/mars/mars.asset | 4 +- .../planets/mars/moons/deimos.asset | 4 +- .../planets/mars/moons/phobos.asset | 4 +- .../solarsystem/planets/mars/trail.asset | 4 +- .../planets/mars/trail_barycenter.asset | 4 +- .../planets/mars/trail_earth.asset | 4 +- .../solarsystem/planets/mars/transforms.asset | 4 +- .../planets/mercury/default_layers.asset | 2 +- .../colorlayers/messenger_bdr_sweden.asset | 14 ++--- .../colorlayers/messenger_bdr_utah.asset | 14 ++--- .../colorlayers/messenger_mdis_sweden.asset | 18 +++--- .../colorlayers/messenger_mdis_utah.asset | 18 +++--- .../colorlayers/messenger_shade_sweden.asset | 2 +- .../colorlayers/messenger_shade_utah.asset | 2 +- .../layers/colorlayers/mgsimap_02122015.asset | 2 +- .../heightlayers/messenger_dem_utah.asset | 2 +- .../solarsystem/planets/mercury/mercury.asset | 4 +- .../solarsystem/planets/mercury/trail.asset | 4 +- .../planets/mercury/trail_barycenter.asset | 4 +- .../planets/mercury/trail_earth.asset | 4 +- .../planets/mercury/transforms.asset | 4 +- .../planets/neptune/inner_moons.asset | 6 +- .../neptune/irregular_prograde_moons.asset | 6 +- .../neptune/irregular_retrograde_moons.asset | 6 +- .../planets/neptune/minor_moons.asset | 2 +- .../solarsystem/planets/neptune/neptune.asset | 4 +- .../solarsystem/planets/neptune/trail.asset | 4 +- .../planets/neptune/trail_barycenter.asset | 4 +- .../planets/neptune/trail_earth.asset | 4 +- .../planets/neptune/transforms.asset | 4 +- .../solarsystem/planets/neptune/triton.asset | 4 +- .../planets/saturn/dione/dione.asset | 6 +- .../planets/saturn/dione/trail.asset | 4 +- .../planets/saturn/enceladus/enceladus.asset | 6 +- .../planets/saturn/enceladus/trail.asset | 4 +- .../planets/saturn/hyperion/hyperion.asset | 4 +- .../planets/saturn/hyperion/trail.asset | 4 +- .../planets/saturn/iapetus/iapetus.asset | 4 +- .../planets/saturn/iapetus/trail.asset | 4 +- .../planets/saturn/mimas/mimas.asset | 4 +- .../planets/saturn/mimas/trail.asset | 4 +- .../planets/saturn/minor/gallic_group.asset | 6 +- .../planets/saturn/minor/inuit_group.asset | 6 +- .../planets/saturn/minor/norse_group.asset | 6 +- .../planets/saturn/minor/other_group.asset | 6 +- .../planets/saturn/minor/shepherd_group.asset | 2 +- .../planets/saturn/rhea/rhea.asset | 4 +- .../planets/saturn/rhea/trail.asset | 4 +- .../solarsystem/planets/saturn/saturn.asset | 8 +-- .../planets/saturn/tethys/tethys.asset | 4 +- .../planets/saturn/tethys/trail.asset | 4 +- .../planets/saturn/titan/atmosphere.asset | 4 +- .../planets/saturn/titan/titan.asset | 4 +- .../planets/saturn/titan/trail.asset | 4 +- .../solarsystem/planets/saturn/trail.asset | 4 +- .../planets/saturn/trail_barycenter.asset | 4 +- .../planets/saturn/trail_earth.asset | 4 +- .../planets/saturn/transforms.asset | 4 +- .../planets/uranus/inner_moons.asset | 6 +- .../uranus/irregular_prograde_moons.asset | 6 +- .../uranus/irregular_retrograde_moons.asset | 6 +- .../planets/uranus/major_moons.asset | 4 +- .../solarsystem/planets/uranus/trail.asset | 4 +- .../planets/uranus/trail_barycenter.asset | 4 +- .../planets/uranus/trail_earth.asset | 4 +- .../planets/uranus/transforms.asset | 4 +- .../solarsystem/planets/uranus/uranus.asset | 4 +- .../planets/venus/atmosphere.asset | 8 +-- .../solarsystem/planets/venus/trail.asset | 4 +- .../planets/venus/trail_barycenter.asset | 4 +- .../planets/venus/trail_earth.asset | 4 +- .../planets/venus/transforms.asset | 4 +- .../solarsystem/planets/venus/venus.asset | 4 +- .../solarsystem/sssb/amor_asteroid.asset | 6 +- .../solarsystem/sssb/apollo_asteroid.asset | 4 +- .../scene/solarsystem/sssb/astraea.asset | 4 +- .../solarsystem/sssb/aten_asteroid.asset | 4 +- .../solarsystem/sssb/atira_asteroid.asset | 4 +- .../scene/solarsystem/sssb/c2019y4atlas.asset | 4 +- .../solarsystem/sssb/centaur_asteroid.asset | 6 +- .../solarsystem/sssb/chiron-type_comet.asset | 4 +- .../solarsystem/sssb/encke-type_comet.asset | 6 +- .../solarsystem/sssb/halley-type_comet.asset | 4 +- .../sssb/inner_main_belt_asteroid.asset | 4 +- .../sssb/jupiter-family_comet.asset | 4 +- .../sssb/jupiter_trojan_asteroid.asset | 4 +- .../solarsystem/sssb/main_belt_asteroid.asset | 4 +- .../sssb/mars-crossing_asteroid.asset | 4 +- .../sssb/outer_main_belt_asteroid.asset | 4 +- data/assets/scene/solarsystem/sssb/pha.asset | 4 +- .../scene/solarsystem/sssb/swifttuttle.asset | 4 +- .../solarsystem/sssb/tesla_roadster.asset | 4 +- .../sssb/transneptunian_object_asteroid.asset | 4 +- data/assets/scene/solarsystem/sun/glare.asset | 4 +- .../scene/solarsystem/sun/habitablezone.asset | 4 +- .../assets/scene/solarsystem/sun/marker.asset | 4 +- .../scene/solarsystem/sun/transforms.asset | 4 +- data/assets/spice/base.asset | 4 +- data/assets/util/asset_helper.asset | 4 +- data/assets/util/default_keybindings.asset | 18 +++--- data/assets/util/generate_bookmarks.asset | 4 +- .../assets/util/script_scheduler_helper.asset | 4 +- data/assets/util/slide_deck_helper.asset | 4 +- data/assets/util/vrt_flipbook_helper.asset | 14 ++--- data/tasks/exoplanets/downloadexodata.py | 10 ++-- data/web/documentation/script.js | 8 +-- data/web/documentation/scripting.hbs | 4 +- data/web/documentation/style.css | 6 +- data/web/kameleondocumentation/script.js | 4 +- data/web/log/script.js | 4 +- include/openspace/events/event.h | 42 +++++++------- include/openspace/events/eventengine.h | 2 +- include/openspace/properties/property.h | 4 +- include/openspace/properties/stringproperty.h | 2 +- .../rendering/renderableatmosphere.cpp | 10 ++-- .../dashboard/dashboarditemelapsedtime.cpp | 2 +- .../base/dashboard/dashboarditemelapsedtime.h | 2 +- modules/galaxy/rendering/galaxyraycaster.h | 2 +- .../src/dashboarditemglobelocation.cpp | 2 +- modules/globebrowsing/src/layergroupid.cpp | 1 - modules/globebrowsing/src/layergroupid.h | 56 +++++++++++-------- modules/imgui/src/guipropertycomponent.cpp | 2 - modules/imgui/src/renderproperties.cpp | 4 +- modules/server/src/topics/cameratopic.cpp | 2 +- .../src/topics/sessionrecordingtopic.cpp | 2 +- modules/skybrowser/include/wwtcommunicator.h | 6 +- modules/skybrowser/skybrowsermodule_lua.inl | 6 +- modules/skybrowser/src/browser.cpp | 2 +- .../skybrowser/src/renderableskytarget.cpp | 6 +- .../skybrowser/src/screenspaceskybrowser.cpp | 7 ++- modules/skybrowser/src/targetbrowserpair.cpp | 5 +- modules/skybrowser/src/utility.cpp | 2 +- modules/skybrowser/src/wwtdatahandler.cpp | 4 +- modules/space/horizonsfile.h | 3 +- modules/space/kepler.cpp | 3 +- modules/space/kepler.h | 6 +- modules/space/labelscomponent.cpp | 11 ++-- .../renderableconstellationsbase.cpp | 3 +- .../space/rendering/renderablefluxnodes.cpp | 2 +- .../rendering/renderableorbitalkepler.cpp | 6 +- .../volume/rendering/basicvolumeraycaster.h | 2 +- src/events/eventengine.cpp | 10 ++-- src/events/eventengine_lua.inl | 2 +- src/rendering/dashboard.cpp | 2 +- src/rendering/renderable.cpp | 8 ++- src/util/timeconversion.cpp | 4 +- 576 files changed, 2953 insertions(+), 2949 deletions(-) diff --git a/data/assets/actions/planets/planet_lighting.asset b/data/assets/actions/planets/planet_lighting.asset index dc7f692ccc..509988774d 100644 --- a/data/assets/actions/planets/planet_lighting.asset +++ b/data/assets/actions/planets/planet_lighting.asset @@ -1,16 +1,16 @@ local function getIlluminationCommand(node, global) local commandString = "local node = \"" .. node .. "\"\n" - if (node == "Current Focus") then + if (node == "Current Focus") then commandString = "local node = openspace.navigation.getNavigationState().Anchor\n" end if (global) then commandString = commandString .. [[ -if (openspace.hasProperty("Scene."..node..".Renderable.UseAccurateNormals")) then +if (openspace.hasProperty("Scene."..node..".Renderable.UseAccurateNormals")) then local list = openspace.getProperty("Scene." .. node .. ".Renderable.Layers.NightLayers.*.Enabled") if (#list > 0) then openspace.setPropertyValue("Scene." .. node .. ".Renderable.Layers.NightLayers.*.Enabled", false) else - openspace.setPropertyValueSingle("Scene." .. node .. ".Renderable.PerformShading", false) + openspace.setPropertyValueSingle("Scene." .. node .. ".Renderable.PerformShading", false) end if openspace.hasSceneGraphNode(node .. "Atmosphere") then openspace.setPropertyValueSingle("Scene." .. node .. "Atmosphere.Renderable.SunFollowingCamera", true) diff --git a/data/assets/actions/trails/toggle_all_trails_planets_moons_instant.asset b/data/assets/actions/trails/toggle_all_trails_planets_moons_instant.asset index 4c657af07c..a9bbd70335 100644 --- a/data/assets/actions/trails/toggle_all_trails_planets_moons_instant.asset +++ b/data/assets/actions/trails/toggle_all_trails_planets_moons_instant.asset @@ -4,14 +4,14 @@ local toggle_trails = { 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 ]], Documentation = "Toggles the visibility of planet and moon trails", GuiPath = "/Solar System", IsLocal = false, -} +} asset.onInitialize(function() openspace.action.registerAction(toggle_trails) diff --git a/data/assets/actions/trails/toggle_trail.asset b/data/assets/actions/trails/toggle_trail.asset index 5f9f6c6c15..ab5db95231 100644 --- a/data/assets/actions/trails/toggle_trail.asset +++ b/data/assets/actions/trails/toggle_trail.asset @@ -56,7 +56,7 @@ local hide_trail = { else node = openspace.navigation.getNavigationState().Anchor end - + if openspace.hasSceneGraphNode(node .. "Trail") then openspace.setPropertyValueSingle("Scene." .. node .. "Trail.Renderable.Fade", 0.0, 1.0) elseif openspace.hasSceneGraphNode(node .. "_trail") then @@ -81,7 +81,7 @@ local show_trail = { else node = openspace.navigation.getNavigationState().Anchor end - + if openspace.hasSceneGraphNode(node .. "Trail") then openspace.setPropertyValueSingle("Scene." .. node .. "Trail.Renderable.Fade", 1.0, 1.0) elseif openspace.hasSceneGraphNode(node .. "_trail") then diff --git a/data/assets/base.asset b/data/assets/base.asset index b9d3164422..ba2735a083 100644 --- a/data/assets/base.asset +++ b/data/assets/base.asset @@ -67,7 +67,7 @@ local toggle_trails = { 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 ]], diff --git a/data/assets/examples/approachevents.asset b/data/assets/examples/approachevents.asset index ceac006790..821a40e6e3 100644 --- a/data/assets/examples/approachevents.asset +++ b/data/assets/examples/approachevents.asset @@ -43,7 +43,7 @@ local obj = { OnApproach = { "os.example.generic" }, OnReach = { "os.example.generic" }, OnRecede = { "os.example.generic" }, - OnExit = { "os.example.generic" }, + OnExit = { "os.example.generic" }, GUI = { Name = "Example Event Model", Path = "/Example", diff --git a/data/assets/examples/dashboarditems.asset b/data/assets/examples/dashboarditems.asset index ba5138ba6b..045e0d21f7 100644 --- a/data/assets/examples/dashboarditems.asset +++ b/data/assets/examples/dashboarditems.asset @@ -58,7 +58,7 @@ local elapsed_time = { ReferenceTime = "2022-10-12 12:00:00" } -asset.onInitialize(function() +asset.onInitialize(function() openspace.dashboard.addDashboardItem(angle) openspace.dashboard.addDashboardItem(date) openspace.dashboard.addDashboardItem(simulation_increment) diff --git a/data/assets/examples/grids.asset b/data/assets/examples/grids.asset index 6c32a1be5a..a3cdd4cd88 100644 --- a/data/assets/examples/grids.asset +++ b/data/assets/examples/grids.asset @@ -97,14 +97,14 @@ asset.onInitialize(function() openspace.addSceneGraphNode(sphericalGrid) openspace.addSceneGraphNode(boxGrid) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(boxGrid) openspace.removeSceneGraphNode(sphericalGrid) openspace.removeSceneGraphNode(planarGrid) openspace.removeSceneGraphNode(radialGrid) end) - + asset.export(radialGrid) asset.export(sphericalGrid) asset.export(planarGrid) diff --git a/data/assets/examples/modelshader/model_fs.glsl b/data/assets/examples/modelshader/model_fs.glsl index dbe7871d9a..b79b1bb406 100644 --- a/data/assets/examples/modelshader/model_fs.glsl +++ b/data/assets/examples/modelshader/model_fs.glsl @@ -68,8 +68,8 @@ Fragment getFragment() { frag.color.rgb = normalize(vs_normalViewSpace); } frag.color.a = 1.0; - frag.gPosition = vs_positionCameraSpace; - frag.gNormal = vec4(vs_normalViewSpace, 0.0); + frag.gPosition = vs_positionCameraSpace; + frag.gNormal = vec4(vs_normalViewSpace, 0.0); frag.disableLDR2HDR = true; return frag; } diff --git a/data/assets/examples/modelshader/model_vs.glsl b/data/assets/examples/modelshader/model_vs.glsl index 21cc03ede2..1f99ad904e 100644 --- a/data/assets/examples/modelshader/model_vs.glsl +++ b/data/assets/examples/modelshader/model_vs.glsl @@ -51,7 +51,7 @@ void main() { gl_Position = positionScreenSpace; vs_st = in_st; vs_screenSpaceDepth = positionScreenSpace.w; - + vs_normalViewSpace = normalize(mat3(normalTransform) * (mat3(meshNormalTransform) * in_normal)); // TBN matrix for normal mapping diff --git a/data/assets/examples/modelshader/modelshader.asset b/data/assets/examples/modelshader/modelshader.asset index 969d3521cb..9cab18baf0 100644 --- a/data/assets/examples/modelshader/modelshader.asset +++ b/data/assets/examples/modelshader/modelshader.asset @@ -39,9 +39,9 @@ local model = { asset.onInitialize(function() openspace.addSceneGraphNode(model) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(model) end) - + asset.export(model) diff --git a/data/assets/examples/primitives.asset b/data/assets/examples/primitives.asset index 61080e73b3..1fc7e208a0 100644 --- a/data/assets/examples/primitives.asset +++ b/data/assets/examples/primitives.asset @@ -48,11 +48,11 @@ asset.onInitialize(function() openspace.addSceneGraphNode(circle) openspace.addSceneGraphNode(ellipse) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(ellipse) openspace.removeSceneGraphNode(circle) end) - + asset.export(circle) asset.export(ellipse) diff --git a/data/assets/examples/renderableplaneimageonline.asset b/data/assets/examples/renderableplaneimageonline.asset index 645eac919e..9624a51668 100644 --- a/data/assets/examples/renderableplaneimageonline.asset +++ b/data/assets/examples/renderableplaneimageonline.asset @@ -24,9 +24,9 @@ local RenderablePlaneImageOnline = { asset.onInitialize(function() openspace.addSceneGraphNode(RenderablePlaneImageOnline) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(RenderablePlaneImageOnline) end) - + asset.export(RenderablePlaneImageOnline) diff --git a/data/assets/examples/screenspacespout.asset b/data/assets/examples/screenspacespout.asset index f20f09b303..1c32c68fb6 100644 --- a/data/assets/examples/screenspacespout.asset +++ b/data/assets/examples/screenspacespout.asset @@ -23,9 +23,9 @@ local Spout = { asset.onInitialize(function() openspace.addSceneGraphNode(Spout) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(Spout) end) - + asset.export(Spout) diff --git a/data/assets/examples/slidedeck.asset b/data/assets/examples/slidedeck.asset index 7765a9b8bd..299903646b 100644 --- a/data/assets/examples/slidedeck.asset +++ b/data/assets/examples/slidedeck.asset @@ -4,7 +4,7 @@ local deck = nil asset.onInitialize(function () deck = helper.createDeck("example", { UseRadiusAzimuthElevation = true, - RadiusAzimuthElevation = {1.0, 0.0, 0.0}, -- use for dome + RadiusAzimuthElevation = { 1.0, 0.0, 0.0 }, -- use for dome UsePerspectiveProjection = true, FaceCamera = true, Scale = 0.7 @@ -17,7 +17,7 @@ asset.onInitialize(function () -- Add global functions for controlling slide deck and bind to keys rawset(_G, "nextSlide", function() - helper.goToNextSlide(deck, interpolationDuration) + helper.goToNextSlide(deck, interpolationDuration) end) rawset(_G, "previousSlide", function() diff --git a/data/assets/examples/spheres.asset b/data/assets/examples/spheres.asset index 935bb7a82a..8c63ab7ed0 100644 --- a/data/assets/examples/spheres.asset +++ b/data/assets/examples/spheres.asset @@ -39,7 +39,7 @@ asset.onInitialize(function() openspace.addSceneGraphNode(n) end end) - + asset.onDeinitialize(function() for _, n in ipairs(spheres) do openspace.removeSceneGraphNode(n) diff --git a/data/assets/examples/statemachine.asset b/data/assets/examples/statemachine.asset index adb2740172..ce15cd46eb 100644 --- a/data/assets/examples/statemachine.asset +++ b/data/assets/examples/statemachine.asset @@ -1,11 +1,11 @@ -- Create a state machine with a few different states. The state machine can be controlled through -- the scripting commands from the state machine module. -local targetNode = function(nodeIdentifier) +local targetNode = function(nodeIdentifier) return [[ openspace.setPropertyValueSingle("NavigationHandler.OrbitalNavigator.RetargetAnchor", nil) openspace.setPropertyValueSingle( - "NavigationHandler.OrbitalNavigator.Anchor", + "NavigationHandler.OrbitalNavigator.Anchor", "]] .. nodeIdentifier .. [[" ) openspace.setPropertyValueSingle("NavigationHandler.OrbitalNavigator.Aim", "") diff --git a/data/assets/examples/temperature_land_highres.asset b/data/assets/examples/temperature_land_highres.asset index b3b67fff8d..dd5faa846f 100644 --- a/data/assets/examples/temperature_land_highres.asset +++ b/data/assets/examples/temperature_land_highres.asset @@ -40,7 +40,7 @@ local layer_folder = { Description = "Temporal coverage: 01 Jan 1981 - 31 Dec 2020" } -asset.onInitialize(function() +asset.onInitialize(function() openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_prototype) openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_folder) end) diff --git a/data/assets/examples/volume/generated/cartesian.asset b/data/assets/examples/volume/generated/cartesian.asset index 1b6fbb4b1b..34ef0cc2a1 100644 --- a/data/assets/examples/volume/generated/cartesian.asset +++ b/data/assets/examples/volume/generated/cartesian.asset @@ -9,36 +9,36 @@ local transforms = asset.require("scene/solarsystem/sun/transforms") local sunRadius = 695508000 local volume = { - Identifier = "GeneratedVolume", - Parent = transforms.SolarSystemBarycenter.Identifier, - Renderable = { - Type = "RenderableTimeVaryingVolume", - SourceDirectory = asset.localResource("cartesian"), - TransferFunction = asset.localResource("../transferfunction.txt"), - StepSize = 0.01, - MinValue = 0, - MaxValue = 1, - GridType = "Cartesian", - SecondsBefore = 50*365*24*60*60, -- 50 years before - SecondsAfter = 50*365*24*60*60 -- 50 years after - }, - GUI = { - Path = "/Examples" - }, - Transform = { - Scale = { - Type = "StaticScale", - Scale = 1000 * sunRadius - } + Identifier = "GeneratedVolume", + Parent = transforms.SolarSystemBarycenter.Identifier, + Transform = { + Scale = { + Type = "StaticScale", + Scale = 1000 * sunRadius } + }, + Renderable = { + Type = "RenderableTimeVaryingVolume", + SourceDirectory = asset.localResource("cartesian"), + TransferFunction = asset.localResource("../transferfunction.txt"), + StepSize = 0.01, + MinValue = 0, + MaxValue = 1, + GridType = "Cartesian", + SecondsBefore = 50*365*24*60*60, -- 50 years before + SecondsAfter = 50*365*24*60*60 -- 50 years after + }, + GUI = { + Path = "/Examples" + } } asset.onInitialize(function() openspace.addSceneGraphNode(volume) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(volume) end) - + asset.export(volume) diff --git a/data/assets/examples/volume/generated/cartesiansequence.asset b/data/assets/examples/volume/generated/cartesiansequence.asset index 3430cc9b9f..2316a91fc3 100644 --- a/data/assets/examples/volume/generated/cartesiansequence.asset +++ b/data/assets/examples/volume/generated/cartesiansequence.asset @@ -36,7 +36,7 @@ local volume = { asset.onInitialize(function() openspace.addSceneGraphNode(volume) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(volume) end) diff --git a/data/assets/examples/volume/generated/spherical.asset b/data/assets/examples/volume/generated/spherical.asset index e80d514272..1355cab920 100644 --- a/data/assets/examples/volume/generated/spherical.asset +++ b/data/assets/examples/volume/generated/spherical.asset @@ -11,6 +11,12 @@ local astronomicalUnit = 149597870700 local volume = { Identifier = "GeneratedVolume", Parent = transforms.SolarSystemBarycenter.Identifier, + Transform = { + Scale = { + Type = "StaticScale", + Scale = astronomicalUnit + } + }, Renderable = { Type = "RenderableTimeVaryingVolume", SourceDirectory = asset.localResource("spherical"), @@ -24,19 +30,13 @@ local volume = { }, GUI = { Path = "/Examples" - }, - Transform = { - Scale = { - Type = "StaticScale", - Scale = astronomicalUnit - } } } asset.onInitialize(function() openspace.addSceneGraphNode(volume) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(volume) end) diff --git a/data/assets/examples/volume/toyvolume.asset b/data/assets/examples/volume/toyvolume.asset index 3312e03844..d4f2c7a41a 100644 --- a/data/assets/examples/volume/toyvolume.asset +++ b/data/assets/examples/volume/toyvolume.asset @@ -20,9 +20,9 @@ local ToyVolume = { asset.onInitialize(function() openspace.addSceneGraphNode(ToyVolume) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(ToyVolume) end) - + asset.export(ToyVolume) diff --git a/data/assets/global/localbookmarks.asset b/data/assets/global/localbookmarks.asset index 3543a8cbb7..9800bb4bbc 100644 --- a/data/assets/global/localbookmarks.asset +++ b/data/assets/global/localbookmarks.asset @@ -8,13 +8,13 @@ asset.onInitialize(function() openspace.addSceneGraphNode(n) end end) - + asset.onDeinitialize(function() for _, n in ipairs(nodes) do openspace.removeSceneGraphNode(n) end end) - + for _, n in ipairs(nodes) do asset.export(n) end diff --git a/data/assets/modules/exoplanets/default_settings.asset b/data/assets/modules/exoplanets/default_settings.asset index 88a5c2f448..bece6270b6 100644 --- a/data/assets/modules/exoplanets/default_settings.asset +++ b/data/assets/modules/exoplanets/default_settings.asset @@ -1,4 +1,4 @@ -asset.onInitialize(function () +asset.onInitialize(function () openspace.setPropertyValueSingle("Modules.Exoplanets.Enabled", true) openspace.setPropertyValueSingle("Modules.Exoplanets.ShowComparisonCircle", false) openspace.setPropertyValueSingle("Modules.Exoplanets.ShowHabitableZone", true) diff --git a/data/assets/modules/exoplanets/exoplanets_data.asset b/data/assets/modules/exoplanets/exoplanets_data.asset index ecf3d4bd1f..686196593c 100644 --- a/data/assets/modules/exoplanets/exoplanets_data.asset +++ b/data/assets/modules/exoplanets/exoplanets_data.asset @@ -12,7 +12,7 @@ local colormaps = asset.syncedResource({ Version = 3 }) -asset.onInitialize(function () +asset.onInitialize(function () -- Set the default data files used for the exoplanet system creation -- (Check if already set, to not override value set in another file) local p = "Modules.Exoplanets.DataFolder"; @@ -31,9 +31,9 @@ asset.export("DataPath", DataPath) asset.meta = { Name = "Exoplanet Data", Version = "3.0", - Description = [[The data that is used for the exoplanet systems. The data has been - derived from the 'Planetary Systems Composite Data' dataset from the NASA Exoplanet - Archive]], + Description = [[The data that is used for the exoplanet systems. The data has been + derived from the 'Planetary Systems Composite Data' dataset from the NASA Exoplanet + Archive]], Author = "OpenSpace Team", URL = "https://exoplanetarchive.ipac.caltech.edu/docs/data.html", License = "MIT license" diff --git a/data/assets/modules/skybrowser/default_settings.asset b/data/assets/modules/skybrowser/default_settings.asset index cd17650430..c5ce08a4fd 100644 --- a/data/assets/modules/skybrowser/default_settings.asset +++ b/data/assets/modules/skybrowser/default_settings.asset @@ -1,4 +1,4 @@ -asset.onInitialize(function () +asset.onInitialize(function () openspace.setPropertyValueSingle("Modules.SkyBrowser.Enabled", true) openspace.setPropertyValueSingle("Modules.SkyBrowser.ShowTitleInGuiBrowser", false) -- More settings are available, but for now using the default values diff --git a/data/assets/modules/skybrowser/hoverCircle.asset b/data/assets/modules/skybrowser/hoverCircle.asset index 0618873b49..a9afe795a7 100644 --- a/data/assets/modules/skybrowser/hoverCircle.asset +++ b/data/assets/modules/skybrowser/hoverCircle.asset @@ -21,8 +21,8 @@ local circle = { }, GUI = { Name = "Hover Circle", - Description = [[A circular marker that shows the position on the night sky - of the object hovered in the sky browser UI. The circle will hide/show up + Description = [[A circular marker that shows the position on the night sky + of the object hovered in the sky browser UI. The circle will hide/show up dynamically, depending on the interaction with the items in the UI]], Path = "/SkyBrowser" } @@ -42,7 +42,7 @@ asset.export(circle) asset.meta = { Name = "SkyBrowser Hover Circle", Version = "1.0", - Description = [[Includes a circular marker that shows the position on the night sky + Description = [[Includes a circular marker that shows the position on the night sky of the object hovered in the sky browser UI]], Author = "OpenSpace Team", URL = "http://openspaceproject.com", diff --git a/data/assets/scene/digitaluniverse/2dF.asset b/data/assets/scene/digitaluniverse/2dF.asset index 5cf19a4096..e8b97fa514 100644 --- a/data/assets/scene/digitaluniverse/2dF.asset +++ b/data/assets/scene/digitaluniverse/2dF.asset @@ -53,11 +53,11 @@ local object = { asset.onInitialize(function() openspace.addSceneGraphNode(object) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(object) end) - + asset.export(object) diff --git a/data/assets/scene/digitaluniverse/2mass.asset b/data/assets/scene/digitaluniverse/2mass.asset index c03d84df55..8e589af253 100644 --- a/data/assets/scene/digitaluniverse/2mass.asset +++ b/data/assets/scene/digitaluniverse/2mass.asset @@ -48,11 +48,11 @@ local object = { asset.onInitialize(function() openspace.addSceneGraphNode(object) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(object) end) - + asset.export(object) diff --git a/data/assets/scene/digitaluniverse/6dF.asset b/data/assets/scene/digitaluniverse/6dF.asset index 8d6d0fb0a9..8af90893d8 100644 --- a/data/assets/scene/digitaluniverse/6dF.asset +++ b/data/assets/scene/digitaluniverse/6dF.asset @@ -50,11 +50,11 @@ local object = { asset.onInitialize(function() openspace.addSceneGraphNode(object) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(object) end) - + asset.export(object) diff --git a/data/assets/scene/digitaluniverse/abell.asset b/data/assets/scene/digitaluniverse/abell.asset index 649fbf182a..0c1796a1d2 100644 --- a/data/assets/scene/digitaluniverse/abell.asset +++ b/data/assets/scene/digitaluniverse/abell.asset @@ -63,11 +63,11 @@ local object = { asset.onInitialize(function() openspace.addSceneGraphNode(object) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(object) end) - + asset.export(object) diff --git a/data/assets/scene/digitaluniverse/backgroundradiation.asset b/data/assets/scene/digitaluniverse/backgroundradiation.asset index b088e2b642..4b6c8f00e2 100644 --- a/data/assets/scene/digitaluniverse/backgroundradiation.asset +++ b/data/assets/scene/digitaluniverse/backgroundradiation.asset @@ -125,14 +125,14 @@ asset.onInitialize(function() openspace.addSceneGraphNode(planck) openspace.addSceneGraphNode(Halpha) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(Halpha) openspace.removeSceneGraphNode(planck) openspace.removeSceneGraphNode(cbe) openspace.removeSceneGraphNode(wmap) end) - + asset.export(wmap) asset.export(cbe) asset.export(planck) diff --git a/data/assets/scene/digitaluniverse/backgroundradiation_multiverse.asset b/data/assets/scene/digitaluniverse/backgroundradiation_multiverse.asset index 2e377c4175..736a1e416e 100644 --- a/data/assets/scene/digitaluniverse/backgroundradiation_multiverse.asset +++ b/data/assets/scene/digitaluniverse/backgroundradiation_multiverse.asset @@ -132,14 +132,14 @@ asset.onInitialize(function() openspace.addSceneGraphNode(multiverse_planck_3) openspace.addSceneGraphNode(multiverse_planck_4) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(multiverse_planck_4) openspace.removeSceneGraphNode(multiverse_planck_3) openspace.removeSceneGraphNode(multiverse_planck_2) openspace.removeSceneGraphNode(multiverse_planck_1) end) - + asset.export(multiverse_planck_1) asset.export(multiverse_planck_2) asset.export(multiverse_planck_3) diff --git a/data/assets/scene/digitaluniverse/deepsky.asset b/data/assets/scene/digitaluniverse/deepsky.asset index d9fd9cad1b..cf126c5829 100644 --- a/data/assets/scene/digitaluniverse/deepsky.asset +++ b/data/assets/scene/digitaluniverse/deepsky.asset @@ -81,7 +81,7 @@ local deepSkyImages = { Name = "Deep Sky Objects Images", Path = "/Universe/Galaxies", Description = [[Census: 63 images and labels. DU Version 1.3.
These data are - 2-D images of Messier objects placed in 3-D space. Not only do we place these + 2-D images of Messier objects placed in 3-D space. Not only do we place these images at the proper location and give them the correct orientation, we also size them accurately so that you can fly to the globular cluster M13, for example, and see just how small the cluster of hundreds of thousands of stars diff --git a/data/assets/scene/digitaluniverse/digitaluniverse.asset b/data/assets/scene/digitaluniverse/digitaluniverse.asset index 0506ccf4f5..98f534c4b1 100644 --- a/data/assets/scene/digitaluniverse/digitaluniverse.asset +++ b/data/assets/scene/digitaluniverse/digitaluniverse.asset @@ -39,7 +39,7 @@ asset.require("./voids") asset.meta = { Name = "Digital Universe", Version = "1.0", - Description = [[This asset is a meta asset, containing all the assets from the AMNH + Description = [[This asset is a meta asset, containing all the assets from the AMNH Digital Universe]], Author = "Brian Abbott (AMNH)", URL = "https://www.amnh.org/research/hayden-planetarium/digital-universe", diff --git a/data/assets/scene/digitaluniverse/globularclusters.asset b/data/assets/scene/digitaluniverse/globularclusters.asset index a4476dc6da..de1c936e6a 100644 --- a/data/assets/scene/digitaluniverse/globularclusters.asset +++ b/data/assets/scene/digitaluniverse/globularclusters.asset @@ -46,7 +46,7 @@ local object = { abundance of stars brighter than the Sun. The globular clusters form one of the most complete data sets in the Atlas. Data for the clusters represent almost all the clusters in our Galaxy—several on the opposite side of Galactic - center may be invisible to us. The clusters orbit the Milky Way in random + center may be invisible to us. The clusters orbit the Milky Way in random orientations, as comets orbit the Sun.(Description from URL)

Data Reference: Properties of Galactic Globular Clusters, C. Francis+ (U Cambridge)]], @@ -69,16 +69,16 @@ asset.meta = { Name = "Globular Clusters", Version = "2.1", Description = [[Census: 157 globular clusters. DU Version 2.6. Globular star clusters - are gravitationally bound groups of 100,000 to 1 million stars. They are compact, - spherical "balls" of stars with very high stellar densities in their centers (stars - near their center are within a light year of one another). These clusters are - typically 30 to 100 light years in diameter. If Earth were located inside one of these - clusters, our sky would be lit by an abundance of stars brighter than the Sun. The - globular clusters form one of the most complete data sets in the Atlas. Data for the - clusters represent almost all the clusters in our Galaxy—several on the opposite side - of Galactic center may be invisible to us. The clusters orbit the Milky Way in random - orientations, as comets orbit the Sun.(Description from URL)

Data Reference: - Properties of Galactic Globular Clusters, C. Francis+ (U Cambridge)]], + are gravitationally bound groups of 100,000 to 1 million stars. They are compact, + spherical "balls" of stars with very high stellar densities in their centers (stars + near their center are within a light year of one another). These clusters are + typically 30 to 100 light years in diameter. If Earth were located inside one of these + clusters, our sky would be lit by an abundance of stars brighter than the Sun. The + globular clusters form one of the most complete data sets in the Atlas. Data for the + clusters represent almost all the clusters in our Galaxy—several on the opposite side + of Galactic center may be invisible to us. The clusters orbit the Milky Way in random + orientations, as comets orbit the Sun.(Description from URL)

Data Reference: + Properties of Galactic Globular Clusters, C. Francis+ (U Cambridge)]], Author = "Brian Abbott (AMNH)", URL = "https://www.amnh.org/research/hayden-planetarium/digital-universe", License = "AMNH Digital Universe" diff --git a/data/assets/scene/digitaluniverse/grids.asset b/data/assets/scene/digitaluniverse/grids.asset index dccad41868..1ad5e83126 100644 --- a/data/assets/scene/digitaluniverse/grids.asset +++ b/data/assets/scene/digitaluniverse/grids.asset @@ -33,7 +33,7 @@ local radio = { -- First TV signals strong enough to leave the ionosphere ReferenceDate = "1936 AUG 01 12:00:00", Speed = 299792458 -- c - }, + }, Rotation = { Type = "StaticRotation", Rotation = equatorialRotationMatrix @@ -59,7 +59,7 @@ local oort = { Scale = { Type = "StaticScale", Scale = 7.47989845E15 - }, + }, Rotation = { Type = "StaticRotation", Rotation = eclipticRotationMatrix @@ -85,7 +85,7 @@ local ecliptic = { Scale = { Type = "StaticScale", Scale = 9.46377307652E17 - }, + }, Rotation = { Type = "StaticRotation", Rotation = eclipticRotationMatrix @@ -141,7 +141,7 @@ local equatorial = { Scale = { Type = "StaticScale", Scale = 4.28601E17; - }, + }, Rotation = { Type = "StaticRotation", Rotation = equatorialRotationMatrix diff --git a/data/assets/scene/digitaluniverse/hdf.asset b/data/assets/scene/digitaluniverse/hdf.asset index 77b599a8ec..8c40bfb0e1 100644 --- a/data/assets/scene/digitaluniverse/hdf.asset +++ b/data/assets/scene/digitaluniverse/hdf.asset @@ -49,11 +49,11 @@ local object = { asset.onInitialize(function() openspace.addSceneGraphNode(object) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(object) end) - + asset.export(object) diff --git a/data/assets/scene/digitaluniverse/kepler.asset b/data/assets/scene/digitaluniverse/kepler.asset index 5c2309c985..7e6f9b56b7 100644 --- a/data/assets/scene/digitaluniverse/kepler.asset +++ b/data/assets/scene/digitaluniverse/kepler.asset @@ -47,11 +47,11 @@ local object = { asset.onInitialize(function() openspace.addSceneGraphNode(object) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(object) end) - + asset.export(object) diff --git a/data/assets/scene/digitaluniverse/milkyway.asset b/data/assets/scene/digitaluniverse/milkyway.asset index 4b35bf87a6..93c9efb353 100644 --- a/data/assets/scene/digitaluniverse/milkyway.asset +++ b/data/assets/scene/digitaluniverse/milkyway.asset @@ -46,11 +46,11 @@ local plane = { asset.onInitialize(function() openspace.addSceneGraphNode(plane) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(plane) end) - + asset.export(plane) diff --git a/data/assets/scene/digitaluniverse/milkyway_arm_labels.asset b/data/assets/scene/digitaluniverse/milkyway_arm_labels.asset index 36daaf41c4..be5978a829 100644 --- a/data/assets/scene/digitaluniverse/milkyway_arm_labels.asset +++ b/data/assets/scene/digitaluniverse/milkyway_arm_labels.asset @@ -43,11 +43,11 @@ local plane = { asset.onInitialize(function() openspace.addSceneGraphNode(plane) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(plane) end) - + asset.export(plane) diff --git a/data/assets/scene/digitaluniverse/milkyway_sphere.asset b/data/assets/scene/digitaluniverse/milkyway_sphere.asset index 5e900f12ab..2cde64e74a 100644 --- a/data/assets/scene/digitaluniverse/milkyway_sphere.asset +++ b/data/assets/scene/digitaluniverse/milkyway_sphere.asset @@ -38,11 +38,11 @@ local sphere = { asset.onInitialize(function() openspace.addSceneGraphNode(sphere) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(sphere) end) - + asset.export(sphere) diff --git a/data/assets/scene/digitaluniverse/openclusters.asset b/data/assets/scene/digitaluniverse/openclusters.asset index 06dfbf3219..e0a18922c0 100644 --- a/data/assets/scene/digitaluniverse/openclusters.asset +++ b/data/assets/scene/digitaluniverse/openclusters.asset @@ -37,21 +37,18 @@ local object = { GUI = { Name = "Open Star Clusters", Path = "/Milky Way", - Description = [[Census: 2,040 clusters. DU Version 5.7.
- An open star cluster is a loose assemblage of stars numbering from - hundreds to thousands that are bound by their mutual gravitation. - Astronomers know from their stellar spectra that stars in open clusters - are typically young. (With a star's spectrum, we can determine - the spectral type and the luminosity class, revealing the star's age.) - Because these are young stars, we expect to see them in the - star-forming regions of our Galaxy, namely in the spiral arms. For - this reason, open clusters exist, for the most part, in the plane of the - Galaxy, where we view the arms edge-on as that band of light in - the night sky. Because of this, open clusters were originally known - as Galactic clusters, but this term fell out of favor once astronomers - began to understand that the Galaxy includes objects beyond the - Milky Way's disk.

Data Reference: Optically - visible open clusters and Candidates (Dias+ 2002-2015)]] + Description = [[Census: 2,040 clusters. DU Version 5.7.
An open star cluster is a + loose assemblage of stars numbering from hundreds to thousands that are bound by + their mutual gravitation. Astronomers know from their stellar spectra that stars in + open clusters are typically young. (With a star's spectrum, we can determine the + spectral type and the luminosity class, revealing the star's age.) Because these are + young stars, we expect to see them in the star-forming regions of our Galaxy, namely + in the spiral arms. For this reason, open clusters exist, for the most part, in the + plane of the Galaxy, where we view the arms edge-on as that band of light in the + night sky. Because of this, open clusters were originally known as Galactic + clusters, but this term fell out of favor once astronomers began to understand that + the Galaxy includes objects beyond the Milky Way's disk.

Data Reference: + Optically visible open clusters and Candidates (Dias+ 2002-2015)]] } } diff --git a/data/assets/scene/digitaluniverse/quasars.asset b/data/assets/scene/digitaluniverse/quasars.asset index 6a9b575edf..529561df07 100644 --- a/data/assets/scene/digitaluniverse/quasars.asset +++ b/data/assets/scene/digitaluniverse/quasars.asset @@ -55,11 +55,11 @@ local object = { asset.onInitialize(function() openspace.addSceneGraphNode(object) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(object) end) - + asset.export(object) diff --git a/data/assets/scene/digitaluniverse/sdss.asset b/data/assets/scene/digitaluniverse/sdss.asset index 2f1af244ea..a6de370c5b 100644 --- a/data/assets/scene/digitaluniverse/sdss.asset +++ b/data/assets/scene/digitaluniverse/sdss.asset @@ -58,11 +58,11 @@ local object = { asset.onInitialize(function() openspace.addSceneGraphNode(object) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(object) end) - + asset.export(object) diff --git a/data/assets/scene/digitaluniverse/starorbits.asset b/data/assets/scene/digitaluniverse/starorbits.asset index 958499cd3c..d23aa45a40 100644 --- a/data/assets/scene/digitaluniverse/starorbits.asset +++ b/data/assets/scene/digitaluniverse/starorbits.asset @@ -172,7 +172,7 @@ asset.onInitialize(function() openspace.addSceneGraphNode(node) end end) - + asset.onDeinitialize(function() for i = #nodes, 1, -1 do local node = nodes[i] diff --git a/data/assets/scene/digitaluniverse/stars.asset b/data/assets/scene/digitaluniverse/stars.asset index 069e59b0ab..11a7df0414 100644 --- a/data/assets/scene/digitaluniverse/stars.asset +++ b/data/assets/scene/digitaluniverse/stars.asset @@ -100,12 +100,12 @@ asset.onInitialize(function() openspace.addSceneGraphNode(stars) openspace.addSceneGraphNode(sunstar) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(sunstar) openspace.removeSceneGraphNode(stars) end) - + asset.export(stars) asset.export(sunstar) diff --git a/data/assets/scene/milkyway/gaia/apogee.asset b/data/assets/scene/milkyway/gaia/apogee.asset index abc8c1cb7f..f36e400df5 100644 --- a/data/assets/scene/milkyway/gaia/apogee.asset +++ b/data/assets/scene/milkyway/gaia/apogee.asset @@ -58,11 +58,11 @@ local gaia_abundance_apogee = { asset.onInitialize(function() openspace.addSceneGraphNode(gaia_abundance_apogee) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(gaia_abundance_apogee) end) - + asset.export(gaia_abundance_apogee) diff --git a/data/assets/scene/milkyway/gaia/gaiastars.asset b/data/assets/scene/milkyway/gaia/gaiastars.asset index 7ed47dc838..881b826934 100644 --- a/data/assets/scene/milkyway/gaia/gaiastars.asset +++ b/data/assets/scene/milkyway/gaia/gaiastars.asset @@ -65,11 +65,11 @@ local GaiaStars = { asset.onInitialize(function() openspace.addSceneGraphNode(GaiaStars) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(GaiaStars) end) - + asset.export(GaiaStars) diff --git a/data/assets/scene/milkyway/gaia/galah.asset b/data/assets/scene/milkyway/gaia/galah.asset index 8fa9fecdea..1b00d53a21 100644 --- a/data/assets/scene/milkyway/gaia/galah.asset +++ b/data/assets/scene/milkyway/gaia/galah.asset @@ -58,11 +58,11 @@ local gaia_abundance_galah = { asset.onInitialize(function() openspace.addSceneGraphNode(gaia_abundance_galah) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(gaia_abundance_galah) end) - + asset.export(gaia_abundance_galah) diff --git a/data/assets/scene/milkyway/milkyway/eso.asset b/data/assets/scene/milkyway/milkyway/eso.asset index 0599938a3a..190fa46693 100644 --- a/data/assets/scene/milkyway/milkyway/eso.asset +++ b/data/assets/scene/milkyway/milkyway/eso.asset @@ -35,11 +35,11 @@ local object = { asset.onInitialize(function() openspace.addSceneGraphNode(object) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(object) end) - + asset.export(object) diff --git a/data/assets/scene/milkyway/milkyway/volume.asset b/data/assets/scene/milkyway/milkyway/volume.asset index 52a6602a30..a69f446b5e 100644 --- a/data/assets/scene/milkyway/milkyway/volume.asset +++ b/data/assets/scene/milkyway/milkyway/volume.asset @@ -53,11 +53,11 @@ local MilkyWayVolumeGalaxy = { asset.onInitialize(function() openspace.addSceneGraphNode(MilkyWayVolumeGalaxy) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(MilkyWayVolumeGalaxy) end) - + asset.export(MilkyWayVolumeGalaxy) diff --git a/data/assets/scene/milkyway/objects/orionnebula/cluster.asset b/data/assets/scene/milkyway/objects/orionnebula/cluster.asset index 7ffdd40758..e507f89499 100644 --- a/data/assets/scene/milkyway/objects/orionnebula/cluster.asset +++ b/data/assets/scene/milkyway/objects/orionnebula/cluster.asset @@ -53,11 +53,11 @@ local OrionClusterStars = { asset.onInitialize(function() openspace.addSceneGraphNode(OrionClusterStars) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(OrionClusterStars) end) - + asset.export(OrionClusterStars) diff --git a/data/assets/scene/milkyway/objects/orionnebula/nebula.asset b/data/assets/scene/milkyway/objects/orionnebula/nebula.asset index 43fe0fcec8..74f785af05 100644 --- a/data/assets/scene/milkyway/objects/orionnebula/nebula.asset +++ b/data/assets/scene/milkyway/objects/orionnebula/nebula.asset @@ -92,7 +92,7 @@ local OrionNebulaShocksModel = { Renderable = { Type = "RenderableModel", GeometryFile = sync .. "orishocks.obj", - Opacity = 1.0, + Opacity = 1.0, DisableFaceCulling = false, SpecularIntensity = 0.0, AmbientIntensity = 0.0, @@ -128,7 +128,7 @@ local OrionNebulaProplydsModel = { Renderable = { Type = "RenderableModel", GeometryFile = sync .. "proplyds.obj", - Opacity = 1.0, + Opacity = 1.0, DisableFaceCulling = false, SpecularIntensity = 0.0, AmbientIntensity = 0.0, @@ -158,14 +158,14 @@ asset.onInitialize(function() openspace.addSceneGraphNode(OrionNebulaShocksModel) openspace.addSceneGraphNode(OrionNebulaProplydsModel) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(OrionNebulaProplydsModel) openspace.removeSceneGraphNode(OrionNebulaShocksModel) openspace.removeSceneGraphNode(OrionNebulaModel) openspace.removeSceneGraphNode(NebulaHolder) end) - + asset.export(NebulaHolder) asset.export(OrionNebulaModel) asset.export(OrionNebulaShocksModel) diff --git a/data/assets/scene/milkyway/objects/orionnebula/transforms.asset b/data/assets/scene/milkyway/objects/orionnebula/transforms.asset index 1f6f25ad2d..2ed07ad0b6 100644 --- a/data/assets/scene/milkyway/objects/orionnebula/transforms.asset +++ b/data/assets/scene/milkyway/objects/orionnebula/transforms.asset @@ -26,11 +26,11 @@ local NebulaPosition = { asset.onInitialize(function() openspace.addSceneGraphNode(NebulaPosition) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(NebulaPosition) end) - + asset.export(NebulaPosition) diff --git a/data/assets/scene/milkyway/stars/denver.asset b/data/assets/scene/milkyway/stars/denver.asset index 68775657c9..614f190094 100644 --- a/data/assets/scene/milkyway/stars/denver.asset +++ b/data/assets/scene/milkyway/stars/denver.asset @@ -49,11 +49,11 @@ local object = { asset.onInitialize(function() openspace.addSceneGraphNode(object) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(object) end) - + asset.export(object) diff --git a/data/assets/scene/solarsystem/dwarf_planets/pluto/charon/charon.asset b/data/assets/scene/solarsystem/dwarf_planets/pluto/charon/charon.asset index 91ea8d781c..39f60d681e 100644 --- a/data/assets/scene/solarsystem/dwarf_planets/pluto/charon/charon.asset +++ b/data/assets/scene/solarsystem/dwarf_planets/pluto/charon/charon.asset @@ -53,11 +53,11 @@ local Charon = { asset.onInitialize(function() openspace.addSceneGraphNode(Charon) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(Charon) end) - + asset.export(Charon) diff --git a/data/assets/scene/solarsystem/dwarf_planets/pluto/charon/charon_trail.asset b/data/assets/scene/solarsystem/dwarf_planets/pluto/charon/charon_trail.asset index 909163cf61..9e1a0107f1 100644 --- a/data/assets/scene/solarsystem/dwarf_planets/pluto/charon/charon_trail.asset +++ b/data/assets/scene/solarsystem/dwarf_planets/pluto/charon/charon_trail.asset @@ -16,10 +16,10 @@ local CharonTrailBarycentric = { Period = 6.38723, Resolution = 1000 }, - Tag = { - "moonTrail_solarSystem", - "moonTrail_dwarf", - "moonTrail_pluto", + Tag = { + "moonTrail_solarSystem", + "moonTrail_dwarf", + "moonTrail_pluto", "moonTrail_minor" }, GUI = { @@ -31,11 +31,11 @@ local CharonTrailBarycentric = { asset.onInitialize(function() openspace.addSceneGraphNode(CharonTrailBarycentric) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(CharonTrailBarycentric) end) - + asset.export(CharonTrailBarycentric) diff --git a/data/assets/scene/solarsystem/dwarf_planets/pluto/charon/layers/colorlayers/greyscale_usgs.asset b/data/assets/scene/solarsystem/dwarf_planets/pluto/charon/layers/colorlayers/greyscale_usgs.asset index b0e1d68425..ee0400a9f6 100644 --- a/data/assets/scene/solarsystem/dwarf_planets/pluto/charon/layers/colorlayers/greyscale_usgs.asset +++ b/data/assets/scene/solarsystem/dwarf_planets/pluto/charon/layers/colorlayers/greyscale_usgs.asset @@ -7,7 +7,7 @@ local layer = { 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", } -asset.onInitialize(function () +asset.onInitialize(function () openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) end) diff --git a/data/assets/scene/solarsystem/dwarf_planets/pluto/layers/colorlayers/greyscale_usgs.asset b/data/assets/scene/solarsystem/dwarf_planets/pluto/layers/colorlayers/greyscale_usgs.asset index 4f31344644..63ba1fc696 100644 --- a/data/assets/scene/solarsystem/dwarf_planets/pluto/layers/colorlayers/greyscale_usgs.asset +++ b/data/assets/scene/solarsystem/dwarf_planets/pluto/layers/colorlayers/greyscale_usgs.asset @@ -7,7 +7,7 @@ local layer = { 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", } -asset.onInitialize(function () +asset.onInitialize(function () openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) end) @@ -31,7 +31,7 @@ asset.meta = { parallax - or the difference in the apparent relative positions - of features on the surface obtained at different viewing angles during the encounter. Scientists use these parallax displacements of high and low terrain to estimate landform - heights.The mosaic is available in Equirectangular projection at an equatorial + heights.The mosaic is available in Equirectangular projection at an equatorial pixel scale of 300 meters per pixel (m). (Description from URL)]], Author = "USGS", URL = "https://astrogeology.usgs.gov/search/map/Pluto/NewHorizons/" .. diff --git a/data/assets/scene/solarsystem/dwarf_planets/pluto/minor/hydra.asset b/data/assets/scene/solarsystem/dwarf_planets/pluto/minor/hydra.asset index 8eb2810076..7a3f994a6a 100644 --- a/data/assets/scene/solarsystem/dwarf_planets/pluto/minor/hydra.asset +++ b/data/assets/scene/solarsystem/dwarf_planets/pluto/minor/hydra.asset @@ -40,10 +40,10 @@ local HydraTrail = { Period = 38.20177, Resolution = 1000 }, - Tag = { - "moonTrail_solarSystem", - "moonTrail_dwarf", - "moonTrail_pluto", + Tag = { + "moonTrail_solarSystem", + "moonTrail_dwarf", + "moonTrail_pluto", "moonTrail_minor" }, GUI = { @@ -56,12 +56,12 @@ asset.onInitialize(function() openspace.addSceneGraphNode(Hydra) openspace.addSceneGraphNode(HydraTrail) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(HydraTrail) openspace.removeSceneGraphNode(Hydra) end) - + asset.export(Hydra) asset.export(HydraTrail) diff --git a/data/assets/scene/solarsystem/dwarf_planets/pluto/minor/kerberos.asset b/data/assets/scene/solarsystem/dwarf_planets/pluto/minor/kerberos.asset index f169d62ddb..1d9adb8736 100644 --- a/data/assets/scene/solarsystem/dwarf_planets/pluto/minor/kerberos.asset +++ b/data/assets/scene/solarsystem/dwarf_planets/pluto/minor/kerberos.asset @@ -39,10 +39,10 @@ local KerberosTrail = { Period = 32.16756, Resolution = 1000 }, - Tag = { - "moonTrail_solarSystem", - "moonTrail_dwarf", - "moonTrail_pluto", + Tag = { + "moonTrail_solarSystem", + "moonTrail_dwarf", + "moonTrail_pluto", "moonTrail_minor" }, GUI = { @@ -55,12 +55,12 @@ asset.onInitialize(function() openspace.addSceneGraphNode(Kerberos) openspace.addSceneGraphNode(KerberosTrail) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(KerberosTrail) openspace.removeSceneGraphNode(Kerberos) end) - + asset.export(Kerberos) asset.export(KerberosTrail) diff --git a/data/assets/scene/solarsystem/dwarf_planets/pluto/minor/nix.asset b/data/assets/scene/solarsystem/dwarf_planets/pluto/minor/nix.asset index 474ea25bb8..a1f1715e1d 100644 --- a/data/assets/scene/solarsystem/dwarf_planets/pluto/minor/nix.asset +++ b/data/assets/scene/solarsystem/dwarf_planets/pluto/minor/nix.asset @@ -39,10 +39,10 @@ local NixTrail = { Period = 24.85463, Resolution = 1000 }, - Tag = { - "moonTrail_solarSystem", - "moonTrail_dwarf", - "moonTrail_pluto", + Tag = { + "moonTrail_solarSystem", + "moonTrail_dwarf", + "moonTrail_pluto", "moonTrail_minor" }, GUI = { @@ -55,12 +55,12 @@ asset.onInitialize(function() openspace.addSceneGraphNode(Nix) openspace.addSceneGraphNode(NixTrail) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(NixTrail) openspace.removeSceneGraphNode(Nix) end) - + asset.export(Nix) asset.export(NixTrail) diff --git a/data/assets/scene/solarsystem/dwarf_planets/pluto/minor/styx.asset b/data/assets/scene/solarsystem/dwarf_planets/pluto/minor/styx.asset index 2f0e120c65..9503ffd8e2 100644 --- a/data/assets/scene/solarsystem/dwarf_planets/pluto/minor/styx.asset +++ b/data/assets/scene/solarsystem/dwarf_planets/pluto/minor/styx.asset @@ -38,10 +38,10 @@ local StyxTrail = { Period = 20.16155, Resolution = 1000 }, - Tag = { - "moonTrail_solarSystem", - "moonTrail_dwarf", - "moonTrail_pluto", + Tag = { + "moonTrail_solarSystem", + "moonTrail_dwarf", + "moonTrail_pluto", "moonTrail_minor" }, GUI = { @@ -54,12 +54,12 @@ asset.onInitialize(function() openspace.addSceneGraphNode(Styx) openspace.addSceneGraphNode(StyxTrail) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(StyxTrail) openspace.removeSceneGraphNode(Styx) end) - + asset.export(Styx) asset.export(StyxTrail) diff --git a/data/assets/scene/solarsystem/dwarf_planets/pluto/pluto_trail.asset b/data/assets/scene/solarsystem/dwarf_planets/pluto/pluto_trail.asset index 0ac4ffef77..55df245498 100644 --- a/data/assets/scene/solarsystem/dwarf_planets/pluto/pluto_trail.asset +++ b/data/assets/scene/solarsystem/dwarf_planets/pluto/pluto_trail.asset @@ -27,11 +27,11 @@ local PlutoTrailBarycentric = { asset.onInitialize(function() openspace.addSceneGraphNode(PlutoTrailBarycentric) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(PlutoTrailBarycentric) end) - + asset.export(PlutoTrailBarycentric) diff --git a/data/assets/scene/solarsystem/dwarf_planets/pluto/pluto_trail_kepler.asset b/data/assets/scene/solarsystem/dwarf_planets/pluto/pluto_trail_kepler.asset index fecee05b0f..f029ae1b1a 100644 --- a/data/assets/scene/solarsystem/dwarf_planets/pluto/pluto_trail_kepler.asset +++ b/data/assets/scene/solarsystem/dwarf_planets/pluto/pluto_trail_kepler.asset @@ -36,11 +36,11 @@ local PlutoKeplerianTrail = { asset.onInitialize(function() openspace.addSceneGraphNode(PlutoKeplerianTrail) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(PlutoKeplerianTrail) end) - + asset.export(PlutoKeplerianTrail) diff --git a/data/assets/scene/solarsystem/heliosphere/2012/reset_loop_action.asset b/data/assets/scene/solarsystem/heliosphere/2012/reset_loop_action.asset index 8c2e4e3637..7a4b581928 100644 --- a/data/assets/scene/solarsystem/heliosphere/2012/reset_loop_action.asset +++ b/data/assets/scene/solarsystem/heliosphere/2012/reset_loop_action.asset @@ -1,18 +1,18 @@ local resetLoopAction = { - Documentation = "Reset button. Sets time to start of dataset. No loop", - GuiPath = "2012July", - Identifier = "2012july.reset_loop", - IsLocal = false, - Name = "Reset button", - Command = "openspace.time.setTime('2012-JUL-01 07:00:00.00');\nopenspace.time.setDeltaTime(1400);\nopenspace.scriptScheduler.clear();" + Documentation = "Reset button. Sets time to start of dataset. No loop", + GuiPath = "2012July", + Identifier = "2012july.reset_loop", + IsLocal = false, + Name = "Reset button", + Command = "openspace.time.setTime('2012-JUL-01 07:00:00.00');\nopenspace.time.setDeltaTime(1400);\nopenspace.scriptScheduler.clear();" } asset.export(resetLoopAction) asset.onInitialize(function () - openspace.action.registerAction(resetLoopAction) + openspace.action.registerAction(resetLoopAction) end) asset.onDeinitialize(function () - openspace.action.removeAction(resetLoopAction) + openspace.action.removeAction(resetLoopAction) end) diff --git a/data/assets/scene/solarsystem/heliosphere/bastille_day/lightindicator.asset b/data/assets/scene/solarsystem/heliosphere/bastille_day/lightindicator.asset index 2830ff1952..6e52139d91 100644 --- a/data/assets/scene/solarsystem/heliosphere/bastille_day/lightindicator.asset +++ b/data/assets/scene/solarsystem/heliosphere/bastille_day/lightindicator.asset @@ -32,11 +32,11 @@ local travelSpeedIndicator = { asset.onInitialize(function() openspace.addSceneGraphNode(travelSpeedIndicator) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(travelSpeedIndicator) end) - + asset.export(travelSpeedIndicator) diff --git a/data/assets/scene/solarsystem/interstellar/c-2019_q4_borisov.asset b/data/assets/scene/solarsystem/interstellar/c-2019_q4_borisov.asset index e40eb40aa2..c99fc8b1b1 100644 --- a/data/assets/scene/solarsystem/interstellar/c-2019_q4_borisov.asset +++ b/data/assets/scene/solarsystem/interstellar/c-2019_q4_borisov.asset @@ -55,12 +55,12 @@ asset.onInitialize(function() openspace.addSceneGraphNode(C2019Q4BorisovPosition) openspace.addSceneGraphNode(C2019Q4BorisovTrail) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(C2019Q4BorisovTrail) openspace.removeSceneGraphNode(C2019Q4BorisovPosition) end) - + asset.export(C2019Q4BorisovPosition) asset.export(C2019Q4BorisovTrail) diff --git a/data/assets/scene/solarsystem/interstellar/oumuamua.asset b/data/assets/scene/solarsystem/interstellar/oumuamua.asset index 93f5811802..2fdf3686ce 100644 --- a/data/assets/scene/solarsystem/interstellar/oumuamua.asset +++ b/data/assets/scene/solarsystem/interstellar/oumuamua.asset @@ -56,12 +56,12 @@ asset.onInitialize(function() openspace.addSceneGraphNode(OumuamuaPosition) openspace.addSceneGraphNode(OumuamuaTrail) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(OumuamuaTrail) openspace.removeSceneGraphNode(OumuamuaPosition) end) - + asset.export(OumuamuaPosition) asset.export(OumuamuaTrail) diff --git a/data/assets/scene/solarsystem/missions/apollo/11/apollo11.asset b/data/assets/scene/solarsystem/missions/apollo/11/apollo11.asset index f68e13b48b..f9b0bf226e 100644 --- a/data/assets/scene/solarsystem/missions/apollo/11/apollo11.asset +++ b/data/assets/scene/solarsystem/missions/apollo/11/apollo11.asset @@ -254,7 +254,7 @@ asset.onInitialize(function() openspace.addSceneGraphNode(node) end end) - + asset.onDeinitialize(function() for i = #nodes, 1, -1 do local node = nodes[i] diff --git a/data/assets/scene/solarsystem/missions/apollo/11/lem.asset b/data/assets/scene/solarsystem/missions/apollo/11/lem.asset index 9bd947fdaf..167fb9d49d 100644 --- a/data/assets/scene/solarsystem/missions/apollo/11/lem.asset +++ b/data/assets/scene/solarsystem/missions/apollo/11/lem.asset @@ -60,11 +60,11 @@ asset.onInitialize(function() openspace.addSceneGraphNode(Apollo11Lem) openspace.addSceneGraphNode(Apollo11LemModel) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(Apollo11LemModel) openspace.removeSceneGraphNode(Apollo11Lem) end) - + asset.export(Apollo11Lem) asset.export(Apollo11LemModel) diff --git a/data/assets/scene/solarsystem/missions/apollo/15/apollo15.asset b/data/assets/scene/solarsystem/missions/apollo/15/apollo15.asset index 4623d140ce..a3e5bbec00 100644 --- a/data/assets/scene/solarsystem/missions/apollo/15/apollo15.asset +++ b/data/assets/scene/solarsystem/missions/apollo/15/apollo15.asset @@ -84,11 +84,11 @@ asset.onInitialize(function() openspace.addSceneGraphNode(Apollo15) openspace.addSceneGraphNode(Apollo15Trail) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(Apollo15Trail) openspace.removeSceneGraphNode(Apollo15) end) - + asset.export(Apollo15) asset.export(Apollo15Trail) diff --git a/data/assets/scene/solarsystem/missions/apollo/15/kernels.asset b/data/assets/scene/solarsystem/missions/apollo/15/kernels.asset index 320adc553e..6a196db81e 100644 --- a/data/assets/scene/solarsystem/missions/apollo/15/kernels.asset +++ b/data/assets/scene/solarsystem/missions/apollo/15/kernels.asset @@ -32,7 +32,7 @@ local kernels = { -- folder .. "apollo15_panoramic.0001.ti", -- --tspk --- folder .. "de421.bsp", +-- folder .. "de421.bsp", -- folder .. "moon_pa_de421_1900-2050.bpc", -- --iak diff --git a/data/assets/scene/solarsystem/missions/apollo/17/bouldersstation2.asset b/data/assets/scene/solarsystem/missions/apollo/17/bouldersstation2.asset index ea4b2e8cb4..30f2ed29ec 100644 --- a/data/assets/scene/solarsystem/missions/apollo/17/bouldersstation2.asset +++ b/data/assets/scene/solarsystem/missions/apollo/17/bouldersstation2.asset @@ -166,7 +166,7 @@ asset.onInitialize(function() openspace.addSceneGraphNode(node) end end) - + asset.onDeinitialize(function() for i = #nodes, 1, -1 do local node = nodes[i] diff --git a/data/assets/scene/solarsystem/missions/apollo/17/bouldersstation6.asset b/data/assets/scene/solarsystem/missions/apollo/17/bouldersstation6.asset index 65683ec844..bfabdbbf01 100644 --- a/data/assets/scene/solarsystem/missions/apollo/17/bouldersstation6.asset +++ b/data/assets/scene/solarsystem/missions/apollo/17/bouldersstation6.asset @@ -166,7 +166,7 @@ asset.onInitialize(function() openspace.addSceneGraphNode(node) end end) - + asset.onDeinitialize(function() for i = #nodes, 1, -1 do local node = nodes[i] diff --git a/data/assets/scene/solarsystem/missions/apollo/17/bouldersstation7.asset b/data/assets/scene/solarsystem/missions/apollo/17/bouldersstation7.asset index f9016a794c..5ad8cd27dc 100644 --- a/data/assets/scene/solarsystem/missions/apollo/17/bouldersstation7.asset +++ b/data/assets/scene/solarsystem/missions/apollo/17/bouldersstation7.asset @@ -61,11 +61,11 @@ asset.onInitialize(function() openspace.addSceneGraphNode(Station7BoulderHolder) openspace.addSceneGraphNode(Station7BoulderModel) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(Station7BoulderModel) openspace.removeSceneGraphNode(Station7BoulderHolder) end) - + asset.export(Station7BoulderHolder) asset.export(Station7BoulderModel) diff --git a/data/assets/scene/solarsystem/missions/apollo/17/lem.asset b/data/assets/scene/solarsystem/missions/apollo/17/lem.asset index ace02e3cfe..cf37b8df57 100644 --- a/data/assets/scene/solarsystem/missions/apollo/17/lem.asset +++ b/data/assets/scene/solarsystem/missions/apollo/17/lem.asset @@ -60,11 +60,11 @@ asset.onInitialize(function() openspace.addSceneGraphNode(Apollo17Lem) openspace.addSceneGraphNode(Apollo17LemModel) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(Apollo17LemModel) openspace.removeSceneGraphNode(Apollo17Lem) end) - + asset.export(Apollo17Lem) asset.export(Apollo17LemModel) diff --git a/data/assets/scene/solarsystem/missions/apollo/8/launch_model.asset b/data/assets/scene/solarsystem/missions/apollo/8/launch_model.asset index c66dfd8dc4..fee121656d 100644 --- a/data/assets/scene/solarsystem/missions/apollo/8/launch_model.asset +++ b/data/assets/scene/solarsystem/missions/apollo/8/launch_model.asset @@ -69,11 +69,11 @@ asset.onInitialize(function() openspace.addSceneGraphNode(Apollo8Launch) openspace.addSceneGraphNode(Apollo8LaunchModel) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(Apollo8LaunchModel) openspace.removeSceneGraphNode(Apollo8Launch) end) - + asset.export(Apollo8Launch) asset.export(Apollo8LaunchModel) diff --git a/data/assets/scene/solarsystem/missions/apollo/8/model.asset b/data/assets/scene/solarsystem/missions/apollo/8/model.asset index c3ada29c00..c7d134b7bf 100644 --- a/data/assets/scene/solarsystem/missions/apollo/8/model.asset +++ b/data/assets/scene/solarsystem/missions/apollo/8/model.asset @@ -98,13 +98,13 @@ asset.onInitialize(function() openspace.addSceneGraphNode(Apollo8Model) openspace.addSceneGraphNode(Apollo8Pivot) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(Apollo8Pivot) openspace.removeSceneGraphNode(Apollo8Model) openspace.removeSceneGraphNode(Apollo8) end) - + asset.export(Apollo8) asset.export(Apollo8Model) asset.export(Apollo8Pivot) diff --git a/data/assets/scene/solarsystem/missions/apollo/8/trails.asset b/data/assets/scene/solarsystem/missions/apollo/8/trails.asset index 978267062d..6bc4398bef 100644 --- a/data/assets/scene/solarsystem/missions/apollo/8/trails.asset +++ b/data/assets/scene/solarsystem/missions/apollo/8/trails.asset @@ -82,13 +82,13 @@ asset.onInitialize(function() openspace.addSceneGraphNode(MoonTrail) openspace.addSceneGraphNode(EarthBarycenterTrail) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(EarthBarycenterTrail) openspace.removeSceneGraphNode(MoonTrail) openspace.removeSceneGraphNode(LaunchTrail) end) - + asset.export(LaunchTrail) asset.export(MoonTrail) asset.export(EarthBarycenterTrail) diff --git a/data/assets/scene/solarsystem/missions/apollo/insignias_map.asset b/data/assets/scene/solarsystem/missions/apollo/insignias_map.asset index d8bba76038..291eb01e04 100644 --- a/data/assets/scene/solarsystem/missions/apollo/insignias_map.asset +++ b/data/assets/scene/solarsystem/missions/apollo/insignias_map.asset @@ -101,7 +101,7 @@ local hide_apollo_labels = { IsLocal = true } -asset.onInitialize(function () +asset.onInitialize(function () openspace.action.registerAction(show_apollo_labels) openspace.action.registerAction(hide_apollo_labels) for _, node in ipairs(nodes) do diff --git a/data/assets/scene/solarsystem/missions/dawn/vesta.asset b/data/assets/scene/solarsystem/missions/dawn/vesta.asset index 07cbe93e79..57a1d68144 100644 --- a/data/assets/scene/solarsystem/missions/dawn/vesta.asset +++ b/data/assets/scene/solarsystem/missions/dawn/vesta.asset @@ -70,7 +70,7 @@ local Vesta = { Spice = { "DAWN_FC2" } } }, - Target = { + Target = { Read = { "TARGET_NAME", "INSTRUMENT_HOST_NAME", diff --git a/data/assets/scene/solarsystem/missions/gaia/gaia.asset b/data/assets/scene/solarsystem/missions/gaia/gaia.asset index b9965f122c..9d3e1fd8bb 100644 --- a/data/assets/scene/solarsystem/missions/gaia/gaia.asset +++ b/data/assets/scene/solarsystem/missions/gaia/gaia.asset @@ -26,7 +26,7 @@ local Gaia = { Scale = 10.0 } }, - -- X Orthogonal + -- X Orthogonal Renderable = { Type = "RenderableModel", Body = "GAIA", @@ -49,9 +49,9 @@ local Gaia = { asset.onInitialize(function() openspace.addSceneGraphNode(Gaia) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(Gaia) end) - + asset.export(Gaia) diff --git a/data/assets/scene/solarsystem/missions/gaia/trail.asset b/data/assets/scene/solarsystem/missions/gaia/trail.asset index e70473e731..65ed0592eb 100644 --- a/data/assets/scene/solarsystem/missions/gaia/trail.asset +++ b/data/assets/scene/solarsystem/missions/gaia/trail.asset @@ -66,12 +66,12 @@ asset.onInitialize(function() openspace.addSceneGraphNode(GaiaTrail) openspace.addSceneGraphNode(GaiaTrailEclip) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(GaiaTrailEclip) openspace.removeSceneGraphNode(GaiaTrail) end) - + asset.export(GaiaTrail) asset.export(GaiaTrailEclip) diff --git a/data/assets/scene/solarsystem/missions/gaia/transforms.asset b/data/assets/scene/solarsystem/missions/gaia/transforms.asset index 410ac239dc..a6a3676053 100644 --- a/data/assets/scene/solarsystem/missions/gaia/transforms.asset +++ b/data/assets/scene/solarsystem/missions/gaia/transforms.asset @@ -34,11 +34,11 @@ local GaiaPosition = { asset.onInitialize(function() openspace.addSceneGraphNode(GaiaPosition) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(GaiaPosition) end) - + asset.export(GaiaPosition) diff --git a/data/assets/scene/solarsystem/missions/insight/edl.asset b/data/assets/scene/solarsystem/missions/insight/edl.asset index 4171b87b3c..3b24ae5265 100644 --- a/data/assets/scene/solarsystem/missions/insight/edl.asset +++ b/data/assets/scene/solarsystem/missions/insight/edl.asset @@ -810,7 +810,7 @@ asset.onInitialize(function() openspace.addSceneGraphNode(node) end end) - + asset.onDeinitialize(function() for i = #nodes, 1, -1 do openspace.removeSceneGraphNode(nodes[i]) diff --git a/data/assets/scene/solarsystem/missions/juice/fov/swi.asset b/data/assets/scene/solarsystem/missions/juice/fov/swi.asset index 9780c9c6c8..00e3c6a4dc 100644 --- a/data/assets/scene/solarsystem/missions/juice/fov/swi.asset +++ b/data/assets/scene/solarsystem/missions/juice/fov/swi.asset @@ -83,7 +83,7 @@ local SwiFullGCO500 = { -- These translations are eyeballed based on the existing model Position = { 0.465, -0.1, 0.95 } } - }, + }, Renderable = { Type = "RenderableFov", Body = "JUICE", diff --git a/data/assets/scene/solarsystem/missions/juice/model.asset b/data/assets/scene/solarsystem/missions/juice/model.asset index 7e7bdd62bc..67cacd628e 100644 --- a/data/assets/scene/solarsystem/missions/juice/model.asset +++ b/data/assets/scene/solarsystem/missions/juice/model.asset @@ -67,7 +67,7 @@ asset.meta = { Version = "1.0", Description = [[ The model of the JUICE spacecraft. The model file was taken from - https://www.cosmos.esa.int/web/esac-cmso/scifleet. + https://www.cosmos.esa.int/web/esac-cmso/scifleet. ]], Author = "OpenSpace Team", URL = "http://openspaceproject.com", diff --git a/data/assets/scene/solarsystem/missions/juno/juno.asset b/data/assets/scene/solarsystem/missions/juno/juno.asset index e20ef42013..97798dfbb2 100644 --- a/data/assets/scene/solarsystem/missions/juno/juno.asset +++ b/data/assets/scene/solarsystem/missions/juno/juno.asset @@ -196,11 +196,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) diff --git a/data/assets/scene/solarsystem/missions/messenger/dashboard.asset b/data/assets/scene/solarsystem/missions/messenger/dashboard.asset index b460d104d9..79dac4be7f 100644 --- a/data/assets/scene/solarsystem/missions/messenger/dashboard.asset +++ b/data/assets/scene/solarsystem/missions/messenger/dashboard.asset @@ -11,7 +11,7 @@ local distance = { asset.onInitialize(function() openspace.dashboard.addDashboardItem(distance) end) - + asset.onDeinitialize(function() openspace.dashboard.removeDashboardItem(distance) end) diff --git a/data/assets/scene/solarsystem/missions/messenger/mercurymagnetosphere.asset b/data/assets/scene/solarsystem/missions/messenger/mercurymagnetosphere.asset index 576f0b8ed6..b42d772eeb 100644 --- a/data/assets/scene/solarsystem/missions/messenger/mercurymagnetosphere.asset +++ b/data/assets/scene/solarsystem/missions/messenger/mercurymagnetosphere.asset @@ -11,7 +11,7 @@ local localFolder = asset.syncedResource({ local MercuryRadius = 2.4397E6 -local Magnetosphere = { +local Magnetosphere = { Name = "Mercury Magnetosphere", Identifier = "MercuryMagnetosphere", Parent = mercuryTransforms.MercuryBarycenter.Identifier, @@ -56,9 +56,9 @@ local Magnetosphere = { asset.onInitialize(function() openspace.addSceneGraphNode(Magnetosphere) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(Magnetosphere) end) - + asset.export(Magnetosphere) diff --git a/data/assets/scene/solarsystem/missions/messenger/messengerSC.asset b/data/assets/scene/solarsystem/missions/messenger/messengerSC.asset index 7f8d7597f8..45aebea264 100644 --- a/data/assets/scene/solarsystem/missions/messenger/messengerSC.asset +++ b/data/assets/scene/solarsystem/missions/messenger/messengerSC.asset @@ -234,7 +234,7 @@ asset.onInitialize(function() openspace.addSceneGraphNode(node) end end) - + asset.onDeinitialize(function() for i = #nodes, 1, -1 do openspace.removeSceneGraphNode(nodes[i]) diff --git a/data/assets/scene/solarsystem/missions/newhorizons/charon.asset b/data/assets/scene/solarsystem/missions/newhorizons/charon.asset index d11bbc1af5..85bd2bc4f0 100644 --- a/data/assets/scene/solarsystem/missions/newhorizons/charon.asset +++ b/data/assets/scene/solarsystem/missions/newhorizons/charon.asset @@ -45,7 +45,6 @@ local CharonProjection = { Target = "CHARON", Aberration = "NONE", AspectRatio = 2, - Instrument = { Name = "NH_LORRI", Method = "ELLIPSOID", @@ -55,7 +54,6 @@ local CharonProjection = { Near = 0.2, Far = 10000 }, - PotentialTargets = { "PLUTO", "CHARON" @@ -115,13 +113,13 @@ asset.onInitialize(function() openspace.addSceneGraphNode(CharonText) openspace.addSceneGraphNode(CharonShadow) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(CharonShadow) openspace.removeSceneGraphNode(CharonText) openspace.removeSceneGraphNode(CharonProjection) end) - + asset.export(CharonProjection) asset.export(CharonText) asset.export(CharonShadow) diff --git a/data/assets/scene/solarsystem/missions/newhorizons/dashboard.asset b/data/assets/scene/solarsystem/missions/newhorizons/dashboard.asset index 3d668bd2cd..38cd160f78 100644 --- a/data/assets/scene/solarsystem/missions/newhorizons/dashboard.asset +++ b/data/assets/scene/solarsystem/missions/newhorizons/dashboard.asset @@ -26,7 +26,7 @@ asset.onInitialize(function() openspace.dashboard.addDashboardItem(distance) openspace.dashboard.addDashboardItem(instruments) end) - + asset.onDeinitialize(function() openspace.dashboard.removeDashboardItem(instruments) openspace.dashboard.removeDashboardItem(distance) diff --git a/data/assets/scene/solarsystem/missions/newhorizons/kernels.asset b/data/assets/scene/solarsystem/missions/newhorizons/kernels.asset index 3400b3299d..252ef95c56 100644 --- a/data/assets/scene/solarsystem/missions/newhorizons/kernels.asset +++ b/data/assets/scene/solarsystem/missions/newhorizons/kernels.asset @@ -15,7 +15,7 @@ local NewHorizonsKernels = { Kernels .. "nh_scispi_2015_pred.bc", Kernels .. "nh_scispi_2015_recon.bc", Kernels .. "nh_lorri_wcs.bc", - + Kernels .. "PLU_LORRI_ALL_161216.bc", Kernels .. "nh_targets_v001.tpc", diff --git a/data/assets/scene/solarsystem/missions/newhorizons/label.asset b/data/assets/scene/solarsystem/missions/newhorizons/label.asset index 646aec1f8f..33e8047448 100644 --- a/data/assets/scene/solarsystem/missions/newhorizons/label.asset +++ b/data/assets/scene/solarsystem/missions/newhorizons/label.asset @@ -27,9 +27,9 @@ local Labels = { asset.onInitialize(function() openspace.addSceneGraphNode(Labels) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(Labels) end) - + asset.export(Labels) diff --git a/data/assets/scene/solarsystem/missions/newhorizons/model.asset b/data/assets/scene/solarsystem/missions/newhorizons/model.asset index ef6ce125f5..85a6898932 100644 --- a/data/assets/scene/solarsystem/missions/newhorizons/model.asset +++ b/data/assets/scene/solarsystem/missions/newhorizons/model.asset @@ -31,9 +31,9 @@ local NewHorizons = { asset.onInitialize(function() openspace.addSceneGraphNode(NewHorizons) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(NewHorizons) end) - + asset.export(NewHorizons) diff --git a/data/assets/scene/solarsystem/missions/newhorizons/othermoons.asset b/data/assets/scene/solarsystem/missions/newhorizons/othermoons.asset index 0c0c7124a9..c8a19ac902 100644 --- a/data/assets/scene/solarsystem/missions/newhorizons/othermoons.asset +++ b/data/assets/scene/solarsystem/missions/newhorizons/othermoons.asset @@ -123,14 +123,14 @@ asset.onInitialize(function() openspace.addSceneGraphNode(NixText) openspace.addSceneGraphNode(StyxText) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(StyxText) openspace.removeSceneGraphNode(NixText) openspace.removeSceneGraphNode(KerberosText) openspace.removeSceneGraphNode(HydraText) end) - + asset.export(HydraText) asset.export(KerberosText) asset.export(NixText) diff --git a/data/assets/scene/solarsystem/missions/newhorizons/pluto.asset b/data/assets/scene/solarsystem/missions/newhorizons/pluto.asset index 2dcab6bebc..2469643335 100644 --- a/data/assets/scene/solarsystem/missions/newhorizons/pluto.asset +++ b/data/assets/scene/solarsystem/missions/newhorizons/pluto.asset @@ -99,7 +99,7 @@ local PlutoProjection = { DetectorType = "Scanner", StopCommand = "END_NOM", Spice = { "NH_RALPH_LEISA" } - }, + }, RALPH_MVIC_PAN1 = { DetectorType = "Scanner", StopCommand = "END_NOM", @@ -109,7 +109,7 @@ local PlutoProjection = { DetectorType = "Scanner", StopCommand = "END_NOM", Spice = { "NH_RALPH_MVIC_PAN2" } - }, + }, ALICE_Use_AIRGLOW = { DetectorType = "Scanner", StopCommand = "ALICE_END_PIXELLIST", @@ -136,7 +136,7 @@ local PlutoProjection = { Spice = { "NH_REX" } } }, - Target ={ + Target ={ Read = { "TARGET_NAME", "INSTRUMENT_HOST_NAME", @@ -153,7 +153,6 @@ local PlutoProjection = { } } }, - Instrument = { Name = "NH_LORRI", Method = "ELLIPSOID", @@ -163,7 +162,6 @@ local PlutoProjection = { Near = 0.2, Far = 10000 }, - PotentialTargets = { "PLUTO", "CHARON", @@ -225,7 +223,7 @@ local PlutoShadow = { Renderable = { Type = "RenderableShadowCylinder", Opacity = 0.25, - TerminatorType = "PENUMBRAL", + TerminatorType = "PENUMBRAL", LightSource = "SUN", Observer = "NEW HORIZONS", Body = "PLUTO", @@ -244,14 +242,14 @@ asset.onInitialize(function() openspace.addSceneGraphNode(PlutoText) openspace.addSceneGraphNode(PlutoShadow) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(PlutoShadow) openspace.removeSceneGraphNode(PlutoText) openspace.removeSceneGraphNode(PlutoBarycenterLabel) openspace.removeSceneGraphNode(PlutoProjection) end) - + asset.export(PlutoProjection) asset.export(PlutoBarycenterLabel) asset.export(PlutoText) diff --git a/data/assets/scene/solarsystem/missions/newhorizons/trail.asset b/data/assets/scene/solarsystem/missions/newhorizons/trail.asset index aa07cc3711..4419ff247c 100644 --- a/data/assets/scene/solarsystem/missions/newhorizons/trail.asset +++ b/data/assets/scene/solarsystem/missions/newhorizons/trail.asset @@ -31,9 +31,9 @@ local TrailAtPluto = { asset.onInitialize(function() openspace.addSceneGraphNode(TrailAtPluto) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(TrailAtPluto) end) - + asset.export(TrailAtPluto) diff --git a/data/assets/scene/solarsystem/missions/newhorizons/transforms.asset b/data/assets/scene/solarsystem/missions/newhorizons/transforms.asset index 8e4dd6d0a4..c8be212212 100644 --- a/data/assets/scene/solarsystem/missions/newhorizons/transforms.asset +++ b/data/assets/scene/solarsystem/missions/newhorizons/transforms.asset @@ -49,11 +49,11 @@ asset.onInitialize(function() openspace.addSceneGraphNode(PlutoBarycenterAccurate) openspace.addSceneGraphNode(NewHorizonsPosition) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(NewHorizonsPosition) openspace.removeSceneGraphNode(PlutoBarycenterAccurate) end) - + asset.export(PlutoBarycenterAccurate) asset.export(NewHorizonsPosition) diff --git a/data/assets/scene/solarsystem/missions/osirisrex/bennu.asset b/data/assets/scene/solarsystem/missions/osirisrex/bennu.asset index 700edd5f2b..58b90555d9 100644 --- a/data/assets/scene/solarsystem/missions/osirisrex/bennu.asset +++ b/data/assets/scene/solarsystem/missions/osirisrex/bennu.asset @@ -38,9 +38,9 @@ local Bennu = { asset.onInitialize(function() openspace.addSceneGraphNode(Bennu) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(Bennu) end) - + asset.export(Bennu) diff --git a/data/assets/scene/solarsystem/missions/osirisrex/bennu_projection.asset b/data/assets/scene/solarsystem/missions/osirisrex/bennu_projection.asset index c4d0935813..686bb6b9a2 100644 --- a/data/assets/scene/solarsystem/missions/osirisrex/bennu_projection.asset +++ b/data/assets/scene/solarsystem/missions/osirisrex/bennu_projection.asset @@ -53,7 +53,7 @@ local BennuProjection = { Spice = { "ORX_OCAMS_POLYCAM" }, }, }, - Target = { + Target = { Read = { "TARGET_NAME", "INSTRUMENT_HOST_NAME", @@ -109,11 +109,11 @@ asset.onInitialize(function() openspace.addSceneGraphNode(BennuProjection) openspace.addSceneGraphNode(BennuTrail) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(BennuTrail) openspace.removeSceneGraphNode(BennuProjection) end) - + asset.export(BennuProjection) asset.export(BennuTrail) diff --git a/data/assets/scene/solarsystem/missions/osirisrex/dashboard.asset b/data/assets/scene/solarsystem/missions/osirisrex/dashboard.asset index 723ef7967b..16a6c37603 100644 --- a/data/assets/scene/solarsystem/missions/osirisrex/dashboard.asset +++ b/data/assets/scene/solarsystem/missions/osirisrex/dashboard.asset @@ -26,7 +26,7 @@ asset.onInitialize(function() openspace.dashboard.addDashboardItem(distance) openspace.dashboard.addDashboardItem(instruments) end) - + asset.onDeinitialize(function() openspace.dashboard.removeDashboardItem(instruments) openspace.dashboard.removeDashboardItem(distance) diff --git a/data/assets/scene/solarsystem/missions/osirisrex/imageplane.asset b/data/assets/scene/solarsystem/missions/osirisrex/imageplane.asset index 97837c5c87..0b8b1903e8 100644 --- a/data/assets/scene/solarsystem/missions/osirisrex/imageplane.asset +++ b/data/assets/scene/solarsystem/missions/osirisrex/imageplane.asset @@ -42,9 +42,9 @@ local ImagePlane = { asset.onInitialize(function() openspace.addSceneGraphNode(ImagePlane) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(ImagePlane) end) - + asset.export(ImagePlane) diff --git a/data/assets/scene/solarsystem/missions/osirisrex/kernels.asset b/data/assets/scene/solarsystem/missions/osirisrex/kernels.asset index ba1c27cfae..1c768f7ccc 100644 --- a/data/assets/scene/solarsystem/missions/osirisrex/kernels.asset +++ b/data/assets/scene/solarsystem/missions/osirisrex/kernels.asset @@ -4,7 +4,7 @@ local kernels = asset.syncedResource({ Identifier = "osirisrex_kernels", Version = 4 }) - + local OsirisRexKernels = { kernels .. "orx_v14.tf", kernels .. "orx_ocams_v07.ti", diff --git a/data/assets/scene/solarsystem/missions/osirisrex/model.asset b/data/assets/scene/solarsystem/missions/osirisrex/model.asset index 2e15fc5aed..0495381e73 100644 --- a/data/assets/scene/solarsystem/missions/osirisrex/model.asset +++ b/data/assets/scene/solarsystem/missions/osirisrex/model.asset @@ -175,7 +175,7 @@ asset.onInitialize(function() openspace.addSceneGraphNode(node) end end) - + asset.onDeinitialize(function() for i = #nodes, 1, -1 do openspace.removeSceneGraphNode(nodes[i]) diff --git a/data/assets/scene/solarsystem/missions/osirisrex/osirisrex.mission b/data/assets/scene/solarsystem/missions/osirisrex/osirisrex.mission index 2693825cdf..3fb16b30e6 100644 --- a/data/assets/scene/solarsystem/missions/osirisrex/osirisrex.mission +++ b/data/assets/scene/solarsystem/missions/osirisrex/osirisrex.mission @@ -13,9 +13,9 @@ References: [3] Source : SPICE kernel data coverage Date : 2016-08-23 Comment : The spice data is split up into across different files. These files - seems to represent different phases. A script was used to extract the + seems to represent different phases. A script was used to extract the SPICE coverage from all .bc files and use the names of the files as - mission names and associate the name with the time coverage. + mission names and associate the name with the time coverage. Script used: support/mission/ckbrief2mission.js [4] Source : Visual interpretation of SPICE kernel data coverage @@ -27,12 +27,12 @@ References: return { Name = "OSIRIS-REx", Phases = { - -- All 1-level phases based on [1] + -- All 1-level phases based on [1] { Name = "Planning and Fabrication", TimeRange = { Start = "2012 JAN 01 00:00:00", End = "2016 SEP 08 23:05:00" } }, - { + { Name = "Outbound Cruise", TimeRange = { Start = "2016 SEP 03 00:00:00", End = "2018 SEP 01 01:00:00" }, Phases = { @@ -41,19 +41,19 @@ return { Name = "Pre Launch", TimeRange = { Start = "2016 SEP 03 01:00:00", End = "2016 SEP 08 23:05:05" } }, - { + { Name = "Launch", TimeRange = { Start = "2016 SEP 08 23:05:05", End = "2016 SEP 08 23:09:00" } }, - { + { Name = "Earth Orbit", TimeRange = { Start = "2016 SEP 08 23:09:00", End = "2016 SEP 08 23:45:00" } }, - { + { Name = "Solar Orbit", TimeRange = { Start = "2016 SEP 08 23:45:00", End = "2018 SEP 01 00:00:00" } }, - { + { Name = "Upcoming Gravity Assist", TimeRange = { Start = "2017 JAN 22 15:00:00", End = "2017 SEP 22 15:00:00" } }, - { + { Name = "Gravity Assist", TimeRange = { Start = "2017 SEP 22 15:00:00", End = "2017 SEP 22 21:00:00" } } } @@ -64,10 +64,10 @@ return { -- Nested Levels from [3] { Name = "03_Approach", Phases = { - { + { Name = "DustSearch_v1", Phases = { - { + { Name = "Phase03_AP_DustSearch_1.bc", TimeRange = { Start = "2018-SEP-11 21:31:01.183", End = "2018-SEP-12 02:18:41.183" } } diff --git a/data/assets/scene/solarsystem/missions/osirisrex/trail.asset b/data/assets/scene/solarsystem/missions/osirisrex/trail.asset index 5238d3f6a9..e2c60b0b49 100644 --- a/data/assets/scene/solarsystem/missions/osirisrex/trail.asset +++ b/data/assets/scene/solarsystem/missions/osirisrex/trail.asset @@ -75,13 +75,13 @@ asset.onInitialize(function() openspace.addSceneGraphNode(OsirisRexTrailSolarSystem) openspace.addSceneGraphNode(OsirisRexTrailBennu) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(OsirisRexTrailBennu) openspace.removeSceneGraphNode(OsirisRexTrailSolarSystem) openspace.removeSceneGraphNode(OsirisRexTrailEarth) end) - + asset.export(OsirisRexTrailEarth) asset.export(OsirisRexTrailSolarSystem) asset.export(OsirisRexTrailBennu) diff --git a/data/assets/scene/solarsystem/missions/osirisrex/transforms.asset b/data/assets/scene/solarsystem/missions/osirisrex/transforms.asset index cb7d63a118..409f47d542 100644 --- a/data/assets/scene/solarsystem/missions/osirisrex/transforms.asset +++ b/data/assets/scene/solarsystem/missions/osirisrex/transforms.asset @@ -23,9 +23,9 @@ local BennuBarycenter = { asset.onInitialize(function() openspace.addSceneGraphNode(BennuBarycenter) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(BennuBarycenter) end) - + asset.export(BennuBarycenter) diff --git a/data/assets/scene/solarsystem/missions/pioneer/pioneer10.asset b/data/assets/scene/solarsystem/missions/pioneer/pioneer10.asset index 210e6091b6..7a26da8500 100644 --- a/data/assets/scene/solarsystem/missions/pioneer/pioneer10.asset +++ b/data/assets/scene/solarsystem/missions/pioneer/pioneer10.asset @@ -47,7 +47,7 @@ local Pioneer10Trail = { StartTime = "1972 MAR 03 02:04:00", EndTime = "1990 JAN 02 00:00:00", EnableFade = false, - SampleInterval = 6545 * 2 + SampleInterval = 6545 * 2 -- 6545 is the number of days between the Start and End time (aka sample every 2d) }, GUI = { @@ -62,12 +62,12 @@ asset.onInitialize(function() openspace.addSceneGraphNode(Pioneer10) openspace.addSceneGraphNode(Pioneer10Trail) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(Pioneer10Trail) openspace.removeSceneGraphNode(Pioneer10) end) - + asset.export(Pioneer10) asset.export(Pioneer10Trail) diff --git a/data/assets/scene/solarsystem/missions/pioneer/pioneer11.asset b/data/assets/scene/solarsystem/missions/pioneer/pioneer11.asset index 53903a88c1..aab6def066 100644 --- a/data/assets/scene/solarsystem/missions/pioneer/pioneer11.asset +++ b/data/assets/scene/solarsystem/missions/pioneer/pioneer11.asset @@ -50,7 +50,7 @@ local Pioneer11Trail = { StartTime = "1973 APR 06 02:25:00.000", EndTime = "1990 JAN 02 00:00:00.000", EnableFade = false, - SampleInterval = 6087 * 2 + SampleInterval = 6087 * 2 --6087 is the number of days between the Start and End time (so sample every 2d) }, GUI = { @@ -65,12 +65,12 @@ asset.onInitialize(function() openspace.addSceneGraphNode(Pioneer11) openspace.addSceneGraphNode(Pioneer11Trail) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(Pioneer11Trail) openspace.removeSceneGraphNode(Pioneer11) end) - + asset.export(Pioneer11) asset.export(Pioneer11Trail) diff --git a/data/assets/scene/solarsystem/missions/rosetta/67p.asset b/data/assets/scene/solarsystem/missions/rosetta/67p.asset index 1d412a61cd..da18a50436 100644 --- a/data/assets/scene/solarsystem/missions/rosetta/67p.asset +++ b/data/assets/scene/solarsystem/missions/rosetta/67p.asset @@ -144,13 +144,13 @@ asset.onInitialize(function() openspace.addSceneGraphNode(Comet67P) openspace.addSceneGraphNode(Trail67P) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(Trail67P) openspace.removeSceneGraphNode(Comet67P) openspace.removeSceneGraphNode(Barycenter) end) - + asset.export("Barycenter", Barycenter) -- @TODO: This double export should disappear asset.export(Barycenter) asset.export("Comet67P", Comet67P) -- @TODO: This double export should disappear diff --git a/data/assets/scene/solarsystem/missions/rosetta/dashboard.asset b/data/assets/scene/solarsystem/missions/rosetta/dashboard.asset index 4bb458e8f0..96c087773a 100644 --- a/data/assets/scene/solarsystem/missions/rosetta/dashboard.asset +++ b/data/assets/scene/solarsystem/missions/rosetta/dashboard.asset @@ -26,7 +26,7 @@ asset.onInitialize(function() openspace.dashboard.addDashboardItem(distance) openspace.dashboard.addDashboardItem(instruments) end) - + asset.onDeinitialize(function() openspace.dashboard.removeDashboardItem(instruments) openspace.dashboard.removeDashboardItem(distance) diff --git a/data/assets/scene/solarsystem/missions/rosetta/rosetta.asset b/data/assets/scene/solarsystem/missions/rosetta/rosetta.asset index 6b9280501a..add4e4e36c 100644 --- a/data/assets/scene/solarsystem/missions/rosetta/rosetta.asset +++ b/data/assets/scene/solarsystem/missions/rosetta/rosetta.asset @@ -28,7 +28,7 @@ local RosettaKernels = { kernels .. "LORB_DV_236_01___T19_00318.BSP", kernels .. "LORB_DV_223_01___T19_00302.BSP", kernels .. "LORB_DV_145_01___T19_00216.BSP", - + kernels .. "RORB_DV_243_01___T19_00325.BSP", kernels .. "RORB_DV_223_01___T19_00302.BSP", kernels .. "RORB_DV_145_01___T19_00216.BSP", @@ -38,7 +38,7 @@ local RosettaKernels = { kernels .. "ROS_STRUCT_V5.BSP", kernels .. "ROS_NAVCAM_V01.TI", - + kernels .. "ROS_CHURYUMOV_V01.TF", kernels .. "ROS_V26.TF", @@ -81,7 +81,7 @@ local Rosetta = { Target = "ROSETTA", Observer = "SSB", Kernels = RosettaKernels - }, + }, Rotation = { Type = "SpiceRotation", SourceFrame = "ROS_SPACECRAFT", diff --git a/data/assets/scene/solarsystem/missions/voyager/dashboard.asset b/data/assets/scene/solarsystem/missions/voyager/dashboard.asset index be4e9c3b51..ae99e94d5b 100644 --- a/data/assets/scene/solarsystem/missions/voyager/dashboard.asset +++ b/data/assets/scene/solarsystem/missions/voyager/dashboard.asset @@ -22,7 +22,7 @@ asset.onInitialize(function() openspace.dashboard.addDashboardItem(distance_voyager1) openspace.dashboard.addDashboardItem(distance_voyager2) end) - + asset.onDeinitialize(function() openspace.dashboard.removeDashboardItem(distance_voyager2) openspace.dashboard.removeDashboardItem(distance_voyager1) diff --git a/data/assets/scene/solarsystem/missions/voyager/voyager1.asset b/data/assets/scene/solarsystem/missions/voyager/voyager1.asset index 768a42bcfb..8b6fe64442 100644 --- a/data/assets/scene/solarsystem/missions/voyager/voyager1.asset +++ b/data/assets/scene/solarsystem/missions/voyager/voyager1.asset @@ -236,7 +236,7 @@ asset.onInitialize(function() openspace.addSceneGraphNode(node) end end) - + asset.onDeinitialize(function() for i = #nodes, 1, -1 do openspace.removeSceneGraphNode(nodes[i]) diff --git a/data/assets/scene/solarsystem/missions/voyager/voyager2.asset b/data/assets/scene/solarsystem/missions/voyager/voyager2.asset index e90d726106..e918571335 100644 --- a/data/assets/scene/solarsystem/missions/voyager/voyager2.asset +++ b/data/assets/scene/solarsystem/missions/voyager/voyager2.asset @@ -336,7 +336,7 @@ asset.onInitialize(function() openspace.addSceneGraphNode(node) end end) - + asset.onDeinitialize(function() for i = #nodes, 1, -1 do openspace.removeSceneGraphNode(nodes[i]) diff --git a/data/assets/scene/solarsystem/missions/voyagerpioneer/voyager1_2__pioneer10_11.asset b/data/assets/scene/solarsystem/missions/voyagerpioneer/voyager1_2__pioneer10_11.asset index f4ede21e72..ee21045e91 100644 --- a/data/assets/scene/solarsystem/missions/voyagerpioneer/voyager1_2__pioneer10_11.asset +++ b/data/assets/scene/solarsystem/missions/voyagerpioneer/voyager1_2__pioneer10_11.asset @@ -140,14 +140,14 @@ asset.onInitialize(function() openspace.addSceneGraphNode(pioneer10) openspace.addSceneGraphNode(pioneer11) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(pioneer11) openspace.removeSceneGraphNode(pioneer10) openspace.removeSceneGraphNode(voyager2) openspace.removeSceneGraphNode(voyager1) end) - + asset.export(voyager1) asset.export(voyager2) asset.export(pioneer10) diff --git a/data/assets/scene/solarsystem/planets/earth/atmosphere.asset b/data/assets/scene/solarsystem/planets/earth/atmosphere.asset index 3d9de9330c..268215e9e4 100644 --- a/data/assets/scene/solarsystem/planets/earth/atmosphere.asset +++ b/data/assets/scene/solarsystem/planets/earth/atmosphere.asset @@ -29,7 +29,7 @@ local Atmosphere = { --[[ Ozone = { Coefficients = { - -- Extinction coefficients + -- Extinction coefficients Extinction = {3.426, 8.298, 0.356} }, H_O = 8.0, @@ -91,11 +91,11 @@ local Atmosphere = { asset.onInitialize(function() openspace.addSceneGraphNode(Atmosphere) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(Atmosphere) end) - + asset.export(Atmosphere) diff --git a/data/assets/scene/solarsystem/planets/earth/default_layers.asset b/data/assets/scene/solarsystem/planets/earth/default_layers.asset index a9ce0a5e6d..a92d9f2ca4 100644 --- a/data/assets/scene/solarsystem/planets/earth/default_layers.asset +++ b/data/assets/scene/solarsystem/planets/earth/default_layers.asset @@ -1,14 +1,14 @@ -- Color layers asset.require("./layers/colorlayers/blue_marble", false) asset.require("./layers/colorlayers/esri_viirs_combo", true) -asset.require("./layers/colorlayers/esri_world_imagery", false) +asset.require("./layers/colorlayers/esri_world_imagery", false) asset.require("./layers/colorlayers/esri_imagery_world_2D", false) asset.require("./layers/colorlayers/viirs_snpp_temporal", false) asset.require("./layers/colorlayers/aqua_modis_temporal", false) asset.require("./layers/colorlayers/terra_modis_temporal", false) asset.require("./layers/colorlayers/bmng_utah", false) asset.require("./layers/colorlayers/bmng_sweden", false) -asset.require("./layers/colorlayers/amsr2_gcom_w1_sea_ice_concentration_temporal", false) +asset.require("./layers/colorlayers/amsr2_gcom_w1_sea_ice_concentration_temporal", false) asset.require("./layers/colorlayers/modis_terra_chlorophyll_a_temporal", false) asset.require("./layers/colorlayers/ghrsst_l4_g1sst_sea_surface_temperature_temporal", false) asset.require("./layers/colorlayers/ghrsst_l4_mur_sea_surface_temperature_temporal", false) diff --git a/data/assets/scene/solarsystem/planets/earth/earth.asset b/data/assets/scene/solarsystem/planets/earth/earth.asset index bf366bd6ef..3c94a4a630 100644 --- a/data/assets/scene/solarsystem/planets/earth/earth.asset +++ b/data/assets/scene/solarsystem/planets/earth/earth.asset @@ -77,12 +77,12 @@ asset.onInitialize(function() openspace.addSceneGraphNode(Earth) openspace.addSceneGraphNode(EarthLabel) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(EarthLabel) openspace.removeSceneGraphNode(Earth) end) - + asset.export(Earth) asset.export(EarthLabel) diff --git a/data/assets/scene/solarsystem/planets/earth/layers/colorlayers/amsr2_gcom_w1_sea_ice_concentration_temporal.asset b/data/assets/scene/solarsystem/planets/earth/layers/colorlayers/amsr2_gcom_w1_sea_ice_concentration_temporal.asset index 997e418a9c..b73afa9394 100644 --- a/data/assets/scene/solarsystem/planets/earth/layers/colorlayers/amsr2_gcom_w1_sea_ice_concentration_temporal.asset +++ b/data/assets/scene/solarsystem/planets/earth/layers/colorlayers/amsr2_gcom_w1_sea_ice_concentration_temporal.asset @@ -17,7 +17,7 @@ local layer = { "AMSRU2_Sea_Ice_Concentration_12km", "2km", "png" - ) + ) }, Description = [[Temporal coverage: 02 July 2012 - Present. The Advanced Microwave Scanning Radiometer-E/Advanced Microwave Scanning Radiometer-2 (AMSR-E/AMSR2) unified diff --git a/data/assets/scene/solarsystem/planets/earth/layers/colorlayers/aqua_modis_temporal.asset b/data/assets/scene/solarsystem/planets/earth/layers/colorlayers/aqua_modis_temporal.asset index b0b496bc6b..fe6f496e4f 100644 --- a/data/assets/scene/solarsystem/planets/earth/layers/colorlayers/aqua_modis_temporal.asset +++ b/data/assets/scene/solarsystem/planets/earth/layers/colorlayers/aqua_modis_temporal.asset @@ -25,7 +25,7 @@ local layer = { The images are natural-looking images of land surface, oceanic and atmospheric features. The downside of this set of bands is that they tend to produce a hazy image. The MODIS Corrected Reflectance imagery is available only as near real-time imagery. - The imagery can be visualized in Worldview and the Global Imagery Browse Services + The imagery can be visualized in Worldview and the Global Imagery Browse Services (GIBS). The sensor resolution is 500 m and 250 m (Bands 1 and 2 have a sensor resolution of 250 m, Bands 3 - 7 have a sensor resolution of 500m, and Bands 8 - 36 are 1 km. Band 1 is used to sharpen Band 3, 4, 6, and 7), imagery resolution is 250 m, diff --git a/data/assets/scene/solarsystem/planets/earth/layers/colorlayers/bmng_utah.asset b/data/assets/scene/solarsystem/planets/earth/layers/colorlayers/bmng_utah.asset index 184dbf880a..417cde22c1 100644 --- a/data/assets/scene/solarsystem/planets/earth/layers/colorlayers/bmng_utah.asset +++ b/data/assets/scene/solarsystem/planets/earth/layers/colorlayers/bmng_utah.asset @@ -6,7 +6,7 @@ local layer = { Enabled = asset.enabled, FilePath = asset.localResource("bmng_utah.wms"), Description = [[Web loaded full resolution map of Blue Marble Next Generation. This map - is hosted on the OpenSpace servers in Utah]], + is hosted on the OpenSpace servers in Utah]], } asset.onInitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/layers/colorlayers/terra_texture_spout.asset b/data/assets/scene/solarsystem/planets/earth/layers/colorlayers/terra_texture_spout.asset index a565e71d4f..824efe53dc 100644 --- a/data/assets/scene/solarsystem/planets/earth/layers/colorlayers/terra_texture_spout.asset +++ b/data/assets/scene/solarsystem/planets/earth/layers/colorlayers/terra_texture_spout.asset @@ -7,7 +7,7 @@ local layer = { Type = "SpoutImageTileLayer" } -asset.onInitialize(function () +asset.onInitialize(function () openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) end) diff --git a/data/assets/scene/solarsystem/planets/earth/markers.asset b/data/assets/scene/solarsystem/planets/earth/markers.asset index ce7527babf..941bea2224 100644 --- a/data/assets/scene/solarsystem/planets/earth/markers.asset +++ b/data/assets/scene/solarsystem/planets/earth/markers.asset @@ -29,11 +29,11 @@ local EarthMarker = { asset.onInitialize(function() openspace.addSceneGraphNode(EarthMarker) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(EarthMarker) end) - + asset.export(EarthMarker) diff --git a/data/assets/scene/solarsystem/planets/earth/moon/layers/colorlayers/clemuvvis_sweden.asset b/data/assets/scene/solarsystem/planets/earth/moon/layers/colorlayers/clemuvvis_sweden.asset index baa85036c7..71b36d42a1 100644 --- a/data/assets/scene/solarsystem/planets/earth/moon/layers/colorlayers/clemuvvis_sweden.asset +++ b/data/assets/scene/solarsystem/planets/earth/moon/layers/colorlayers/clemuvvis_sweden.asset @@ -9,9 +9,9 @@ local layer = { Gamma = 1.14, Multiplier = 1.4 }, - Description = [[The Clementine Ultraviolet/Visible (UVVIS) Version 2 mosaic is a - grayscale data set representing the albedo (brightness of the lunar surface) as - measured at the 750 nanometer (nm) wavelength by the UVVIS camera (Lee, et al., 2009). + Description = [[The Clementine Ultraviolet/Visible (UVVIS) Version 2 mosaic is a + grayscale data set representing the albedo (brightness of the lunar surface) as + measured at the 750 nanometer (nm) wavelength by the UVVIS camera (Lee, et al., 2009). Resolution of this mosaic is 118 meters per pixel (m)]] } @@ -30,7 +30,7 @@ asset.export("layer", layer) asset.meta = { Name = "Clem Uvvis [Sweden]", 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 Sweden]], Author = "USGS", URL = "https://astrogeology.usgs.gov/search/map/Moon/Clementine/UVVIS/Lunar_Clementine_UVVIS_750nm_Global_Mosaic_118m_v2", diff --git a/data/assets/scene/solarsystem/planets/earth/moon/layers/colorlayers/clemuvvis_utah.asset b/data/assets/scene/solarsystem/planets/earth/moon/layers/colorlayers/clemuvvis_utah.asset index 1ac65f4c7f..3821b0d9cf 100644 --- a/data/assets/scene/solarsystem/planets/earth/moon/layers/colorlayers/clemuvvis_utah.asset +++ b/data/assets/scene/solarsystem/planets/earth/moon/layers/colorlayers/clemuvvis_utah.asset @@ -9,9 +9,9 @@ local layer = { Gamma = 1.14, Multiplier = 1.4 }, - Description = [[The Clementine Ultraviolet/Visible (UVVIS) Version 2 mosaic is a - grayscale data set representing the albedo (brightness of the lunar surface) as - measured at the 750 nanometer (nm) wavelength by the UVVIS camera (Lee, et al., 2009). + Description = [[The Clementine Ultraviolet/Visible (UVVIS) Version 2 mosaic is a + grayscale data set representing the albedo (brightness of the lunar surface) as + measured at the 750 nanometer (nm) wavelength by the UVVIS camera (Lee, et al., 2009). Resolution of this mosaic is 118 meters per pixel (m)]] } diff --git a/data/assets/scene/solarsystem/planets/earth/moon/layers/colorlayers/kaguya_sweden.asset b/data/assets/scene/solarsystem/planets/earth/moon/layers/colorlayers/kaguya_sweden.asset index bee0495f21..18685fa6f8 100644 --- a/data/assets/scene/solarsystem/planets/earth/moon/layers/colorlayers/kaguya_sweden.asset +++ b/data/assets/scene/solarsystem/planets/earth/moon/layers/colorlayers/kaguya_sweden.asset @@ -9,8 +9,8 @@ local layer = { Gamma = 1.0, Multiplier = 1.23 }, - Description = [[This near-global mosaic was generated using data from the SELenological - and Engineering Explorer (SELENE) "Kaguya" Terrain Camera (TC) instrument. TC source + Description = [[This near-global mosaic was generated using data from the SELenological + and Engineering Explorer (SELENE) "Kaguya" Terrain Camera (TC) instrument. TC source data originated as map-projected tiles at ~10 meters per pixel (m) spatial resolution]] } diff --git a/data/assets/scene/solarsystem/planets/earth/moon/layers/colorlayers/kaguya_utah.asset b/data/assets/scene/solarsystem/planets/earth/moon/layers/colorlayers/kaguya_utah.asset index 15c9fa3413..0a902859fe 100644 --- a/data/assets/scene/solarsystem/planets/earth/moon/layers/colorlayers/kaguya_utah.asset +++ b/data/assets/scene/solarsystem/planets/earth/moon/layers/colorlayers/kaguya_utah.asset @@ -9,8 +9,8 @@ local layer = { Gamma = 1.0, Multiplier = 1.23 }, - Description = [[This near-global mosaic was generated using data from the SELenological - and Engineering Explorer (SELENE) "Kaguya" Terrain Camera (TC) instrument. TC source + Description = [[This near-global mosaic was generated using data from the SELenological + and Engineering Explorer (SELENE) "Kaguya" Terrain Camera (TC) instrument. TC source data originated as map-projected tiles at ~10 meters per pixel (m) spatial resolution]] } diff --git a/data/assets/scene/solarsystem/planets/earth/moon/layers/colorlayers/lola_clr_shade_sweden.asset b/data/assets/scene/solarsystem/planets/earth/moon/layers/colorlayers/lola_clr_shade_sweden.asset index 6c0599dc0c..6abc3a7443 100644 --- a/data/assets/scene/solarsystem/planets/earth/moon/layers/colorlayers/lola_clr_shade_sweden.asset +++ b/data/assets/scene/solarsystem/planets/earth/moon/layers/colorlayers/lola_clr_shade_sweden.asset @@ -4,13 +4,13 @@ local layer = { Identifier = "Lola_Clr_Shade_Sweden", Name = "LRO LOLA Color Shaded Relief 388m v4 [Sweden]", Enabled = asset.enabled, - Description = [[This is a colorized shaded-relief of a original polar digital elevation - model (DEM) from the Lunar Orbiter Laser Altimeter (LOLA; Smith et al., 2010), an - instrument on the National Aeronautics and Space Agency (NASA) Lunar Reconnaissance - Orbiter (LRO) spacecraft (Tooley et al., 2010). The DEM is a shape map (radius) of the - Moon at a resolution 100 meters per pixel (m) based on altimetry data acquired through - September, 2011 by the LOLA instrument. The ground tracks were interpolated using the - Generic Mapping Tools programs "surface" and "grdblend". Map values are referred to a + Description = [[This is a colorized shaded-relief of a original polar digital elevation + model (DEM) from the Lunar Orbiter Laser Altimeter (LOLA; Smith et al., 2010), an + instrument on the National Aeronautics and Space Agency (NASA) Lunar Reconnaissance + Orbiter (LRO) spacecraft (Tooley et al., 2010). The DEM is a shape map (radius) of the + Moon at a resolution 100 meters per pixel (m) based on altimetry data acquired through + September, 2011 by the LOLA instrument. The ground tracks were interpolated using the + Generic Mapping Tools programs "surface" and "grdblend". Map values are referred to a radius of 1,737,400 m]], FilePath = asset.localResource("lola_clr_shade_sweden.wms") } @@ -30,7 +30,7 @@ asset.export("layer", layer) asset.meta = { Name = "Lola Color Shade [Sweden]", 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 Sweden]], Author = "USGS", URL = "https://astrogeology.usgs.gov/search/map/Moon/LMMP/LOLA-derived/Lunar_LRO_LOLA_ClrShade_Global_128ppd_v04", diff --git a/data/assets/scene/solarsystem/planets/earth/moon/layers/colorlayers/lola_clr_shade_utah.asset b/data/assets/scene/solarsystem/planets/earth/moon/layers/colorlayers/lola_clr_shade_utah.asset index 2444a38eb7..0c6c6281eb 100644 --- a/data/assets/scene/solarsystem/planets/earth/moon/layers/colorlayers/lola_clr_shade_utah.asset +++ b/data/assets/scene/solarsystem/planets/earth/moon/layers/colorlayers/lola_clr_shade_utah.asset @@ -4,13 +4,13 @@ local layer = { Identifier = "Lola_Clr_Shade_Utah", Name = "LRO LOLA Color Shaded Relief 388m v4 [Utah]", Enabled = asset.enabled, - Description = [[This is a colorized shaded-relief of a original polar digital elevation - model (DEM) from the Lunar Orbiter Laser Altimeter (LOLA; Smith et al., 2010), an - instrument on the National Aeronautics and Space Agency (NASA) Lunar Reconnaissance - Orbiter (LRO) spacecraft (Tooley et al., 2010). The DEM is a shape map (radius) of the - Moon at a resolution 100 meters per pixel (m) based on altimetry data acquired through - September, 2011 by the LOLA instrument. The ground tracks were interpolated using the - Generic Mapping Tools programs "surface" and "grdblend". Map values are referred to a + Description = [[This is a colorized shaded-relief of a original polar digital elevation + model (DEM) from the Lunar Orbiter Laser Altimeter (LOLA; Smith et al., 2010), an + instrument on the National Aeronautics and Space Agency (NASA) Lunar Reconnaissance + Orbiter (LRO) spacecraft (Tooley et al., 2010). The DEM is a shape map (radius) of the + Moon at a resolution 100 meters per pixel (m) based on altimetry data acquired through + September, 2011 by the LOLA instrument. The ground tracks were interpolated using the + Generic Mapping Tools programs "surface" and "grdblend". Map values are referred to a radius of 1,737,400 m]], FilePath = asset.localResource("lola_clr_shade_utah.wms") } diff --git a/data/assets/scene/solarsystem/planets/earth/moon/layers/colorlayers/lola_shade_sweden.asset b/data/assets/scene/solarsystem/planets/earth/moon/layers/colorlayers/lola_shade_sweden.asset index b7b44db40a..0388e805ef 100644 --- a/data/assets/scene/solarsystem/planets/earth/moon/layers/colorlayers/lola_shade_sweden.asset +++ b/data/assets/scene/solarsystem/planets/earth/moon/layers/colorlayers/lola_shade_sweden.asset @@ -4,13 +4,13 @@ local layer = { Identifier = "Lola_Shade_Sweden", Name = "Lola Shade [Sweden]", Enabled = asset.enabled, - Description = [[This is a shaded-relief of a original polar digital elevation model - (DEM) from the Lunar Orbiter Laser Altimeter (LOLA; Smith et al., 2010), an instrument - on the National Aeronautics and Space Agency (NASA) Lunar Reconnaissance Orbiter (LRO) - spacecraft (Tooley et al., 2010). The DEM is a shape map (radius) of the Moon at a - resolution 100 meters per pixel (m) based on altimetry data acquired through September, - 2011 by the LOLA instrument. The ground tracks were interpolated using the Generic - Mapping Tools programs "surface" and "grdblend". Map values are referred to a radius + Description = [[This is a shaded-relief of a original polar digital elevation model + (DEM) from the Lunar Orbiter Laser Altimeter (LOLA; Smith et al., 2010), an instrument + on the National Aeronautics and Space Agency (NASA) Lunar Reconnaissance Orbiter (LRO) + spacecraft (Tooley et al., 2010). The DEM is a shape map (radius) of the Moon at a + resolution 100 meters per pixel (m) based on altimetry data acquired through September, + 2011 by the LOLA instrument. The ground tracks were interpolated using the Generic + Mapping Tools programs "surface" and "grdblend". Map values are referred to a radius of 1,737,400 m]], FilePath = asset.localResource("lola_shade_sweden.wms") } @@ -30,7 +30,7 @@ asset.export("layer", layer) asset.meta = { Name = "Lola Shade [Sweden]", Version = "1.1", - Description = [[Moon LRO LOLA Shaded Relief 237m v4 layer for Moon globe. This + Description = [[Moon LRO LOLA Shaded Relief 237m v4 layer for Moon globe. This map is hosted on the OpenSpace server in Sweden]], Author = "USGS", URL = "https://astrogeology.usgs.gov/search/map/Moon/LMMP/LOLA-derived/Lunar_LRO_LOLA_Shade_Global_128ppd_v04", diff --git a/data/assets/scene/solarsystem/planets/earth/moon/layers/colorlayers/lola_shade_utah.asset b/data/assets/scene/solarsystem/planets/earth/moon/layers/colorlayers/lola_shade_utah.asset index a36ede57a7..4465f5069b 100644 --- a/data/assets/scene/solarsystem/planets/earth/moon/layers/colorlayers/lola_shade_utah.asset +++ b/data/assets/scene/solarsystem/planets/earth/moon/layers/colorlayers/lola_shade_utah.asset @@ -4,13 +4,13 @@ local layer = { Identifier = "Lola_Shade_Utah", Name = "Lola Shade [Utah]", Enabled = asset.enabled, - Description = [[This is a shaded-relief of a original polar digital elevation model - (DEM) from the Lunar Orbiter Laser Altimeter (LOLA; Smith et al., 2010), an instrument - on the National Aeronautics and Space Agency (NASA) Lunar Reconnaissance Orbiter (LRO) - spacecraft (Tooley et al., 2010). The DEM is a shape map (radius) of the Moon at a - resolution 100 meters per pixel (m) based on altimetry data acquired through September, - 2011 by the LOLA instrument. The ground tracks were interpolated using the Generic - Mapping Tools programs "surface" and "grdblend". Map values are referred to a radius + Description = [[This is a shaded-relief of a original polar digital elevation model + (DEM) from the Lunar Orbiter Laser Altimeter (LOLA; Smith et al., 2010), an instrument + on the National Aeronautics and Space Agency (NASA) Lunar Reconnaissance Orbiter (LRO) + spacecraft (Tooley et al., 2010). The DEM is a shape map (radius) of the Moon at a + resolution 100 meters per pixel (m) based on altimetry data acquired through September, + 2011 by the LOLA instrument. The ground tracks were interpolated using the Generic + Mapping Tools programs "surface" and "grdblend". Map values are referred to a radius of 1,737,400 m]], FilePath = asset.localResource("lola_shade_utah.wms") } @@ -31,7 +31,7 @@ asset.export("layer", layer) asset.meta = { Name = "Lola Shade [Utah]", Version = "1.1", - Description = [[Moon LRO LOLA Shaded Relief 237m v4 layer for Moon globe. This + Description = [[Moon LRO LOLA Shaded Relief 237m 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_Shade_Global_128ppd_v04", diff --git a/data/assets/scene/solarsystem/planets/earth/moon/layers/colorlayers/uvvishybrid_sweden.asset b/data/assets/scene/solarsystem/planets/earth/moon/layers/colorlayers/uvvishybrid_sweden.asset index 574a39a18a..44e94194ed 100644 --- a/data/assets/scene/solarsystem/planets/earth/moon/layers/colorlayers/uvvishybrid_sweden.asset +++ b/data/assets/scene/solarsystem/planets/earth/moon/layers/colorlayers/uvvishybrid_sweden.asset @@ -9,8 +9,8 @@ local layer = { Gamma = 0.52, Multiplier = 0.65 }, - Description = [[The is a blend (or overlay) of the U.S. Geological Survey (USGS) - Clementine Ultraviolet/Visible (UVVIS) V2 mosaic and the original USGS Lunar Orbiter + Description = [[The is a blend (or overlay) of the U.S. Geological Survey (USGS) + Clementine Ultraviolet/Visible (UVVIS) V2 mosaic and the original USGS Lunar Orbiter mosaic. The Clementine 750 nm Version 2 mosaic is a grayscale data set representing the albedo (brightness of the lunar surface) as measured at the 750 nm wavelength by the UVVIS camera. The original base map was radiometrically and geometrically diff --git a/data/assets/scene/solarsystem/planets/earth/moon/layers/colorlayers/uvvishybrid_utah.asset b/data/assets/scene/solarsystem/planets/earth/moon/layers/colorlayers/uvvishybrid_utah.asset index daab96416e..0bdb0417dd 100644 --- a/data/assets/scene/solarsystem/planets/earth/moon/layers/colorlayers/uvvishybrid_utah.asset +++ b/data/assets/scene/solarsystem/planets/earth/moon/layers/colorlayers/uvvishybrid_utah.asset @@ -9,8 +9,8 @@ local layer = { Gamma = 0.52, Multiplier = 0.65 }, - Description = [[The is a blend (or overlay) of the U.S. Geological Survey (USGS) - Clementine Ultraviolet/Visible (UVVIS) V2 mosaic and the original USGS Lunar Orbiter + Description = [[The is a blend (or overlay) of the U.S. Geological Survey (USGS) + Clementine Ultraviolet/Visible (UVVIS) V2 mosaic and the original USGS Lunar Orbiter mosaic. The Clementine 750 nm Version 2 mosaic is a grayscale data set representing the albedo (brightness of the lunar surface) as measured at the 750 nm wavelength by the UVVIS camera. The original base map was radiometrically and geometrically diff --git a/data/assets/scene/solarsystem/planets/earth/moon/layers/heightlayers/loladem_utah.asset b/data/assets/scene/solarsystem/planets/earth/moon/layers/heightlayers/loladem_utah.asset index 026c6db942..116e382fa5 100644 --- a/data/assets/scene/solarsystem/planets/earth/moon/layers/heightlayers/loladem_utah.asset +++ b/data/assets/scene/solarsystem/planets/earth/moon/layers/heightlayers/loladem_utah.asset @@ -7,11 +7,11 @@ local layer = { FilePath = asset.localResource("loladem_utah.wms"), TilePixelSize = 64, Settings = { Multiplier = 0.5 }, - Description = [[This digital elevation model (DEM) is based on data from the Lunar - Orbiter Laser Altimeter (LOLA; Smith et al., 2010), an instrument on the National - Aeronautics and Space Agency (NASA) Lunar Reconnaissance Orbiter (LRO) spacecraft - (Tooley et al., 2010). The created DEM represents more than 6.5 billion measurements - gathered between July 2009 and July 2013, adjusted for consistency in the coordinate + Description = [[This digital elevation model (DEM) is based on data from the Lunar + Orbiter Laser Altimeter (LOLA; Smith et al., 2010), an instrument on the National + Aeronautics and Space Agency (NASA) Lunar Reconnaissance Orbiter (LRO) spacecraft + (Tooley et al., 2010). The created DEM represents more than 6.5 billion measurements + gathered between July 2009 and July 2013, adjusted for consistency in the coordinate system described below, and then converted to lunar radii (Mazarico et al., 2012)]] } diff --git a/data/assets/scene/solarsystem/planets/earth/moon/moon.asset b/data/assets/scene/solarsystem/planets/earth/moon/moon.asset index 0d95c5f7d0..d199cf365b 100644 --- a/data/assets/scene/solarsystem/planets/earth/moon/moon.asset +++ b/data/assets/scene/solarsystem/planets/earth/moon/moon.asset @@ -37,7 +37,7 @@ local Moon = { Casters = { { Name = earthAsset.Earth.Identifier, Radius = 6.371E6 }, } - }, + }, Labels = { Enabled = false, FileName = labelsPath .. "moon.labels", @@ -59,11 +59,11 @@ local Moon = { asset.onInitialize(function() openspace.addSceneGraphNode(Moon) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(Moon) end) - + asset.export(Moon) diff --git a/data/assets/scene/solarsystem/planets/earth/moon/trail.asset b/data/assets/scene/solarsystem/planets/earth/moon/trail.asset index d435690511..16487f9e11 100644 --- a/data/assets/scene/solarsystem/planets/earth/moon/trail.asset +++ b/data/assets/scene/solarsystem/planets/earth/moon/trail.asset @@ -27,11 +27,11 @@ local MoonTrail = { asset.onInitialize(function() openspace.addSceneGraphNode(MoonTrail) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(MoonTrail) end) - + asset.export(MoonTrail) diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/2000_carbon_monoxide.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/2000_carbon_monoxide.asset index f4cd453598..7af26e1795 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/2000_carbon_monoxide.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/2000_carbon_monoxide.asset @@ -50,7 +50,7 @@ asset.onInitialize(function() end openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) - openspace.addScreenSpaceRenderable(colorbar); + openspace.addScreenSpaceRenderable(colorbar) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/2004_ir_hurricane.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/2004_ir_hurricane.asset index a4c5d0647c..17ded1f6a1 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/2004_ir_hurricane.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/2004_ir_hurricane.asset @@ -3,14 +3,14 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Hurricane Season - 2004" local Identifier = "noaa-sos-atmosphere-2004_ir_hurricane" -local Description = [[The 2004 hurricane season started on July 31 with Hurricane Alex -and continued all the way through to December 2 with Tropical Storm Otto. The season -featured 15 tropical storms, 9 of which became hurricanes, and 6 of those were classified -as major hurricanes. This over-active hurricane season tallied up a bill of $42 billion -in damages, which at the time was record high. Florida took the brunt of the damage with -4 major hurricanes making landfall in the state. Two of the hurricanes, Frances and -Jeanne, landed in almost the same location on the east coast of Florida only 3 weeks -apart. It is estimated that one in every five homes in Florida was damaged in the 2004 +local Description = [[The 2004 hurricane season started on July 31 with Hurricane Alex +and continued all the way through to December 2 with Tropical Storm Otto. The season +featured 15 tropical storms, 9 of which became hurricanes, and 6 of those were classified +as major hurricanes. This over-active hurricane season tallied up a bill of $42 billion +in damages, which at the time was record high. Florida took the brunt of the damage with +4 major hurricanes making landfall in the state. Two of the hurricanes, Frances and +Jeanne, landed in almost the same location on the east coast of Florida only 3 weeks +apart. It is estimated that one in every five homes in Florida was damaged in the 2004 hurricane season]] local URL = "https://sos.noaa.gov/catalog/datasets/hurricane-season-2004/" diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/2005_hurricane-grayir.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/2005_hurricane-grayir.asset index 3cada280c0..fbcb85af6f 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/2005_hurricane-grayir.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/2005_hurricane-grayir.asset @@ -3,10 +3,10 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Hurricane Season - 2005" local Identifier = "noaa-sos-atmosphere-2005_hurricane-grayir" -local Description = [["This hurricane season shattered records that have stood for -decades - most named storms, most hurricanes and most category five storms. Arguably, it -was the most devastating hurricane season the country has experienced in modern times," -said retired Navy Vice Adm. Conrad C. Lautenbacher, Jr., Ph.D., undersecretary of +local Description = [["This hurricane season shattered records that have stood for +decades - most named storms, most hurricanes and most category five storms. Arguably, it +was the most devastating hurricane season the country has experienced in modern times," +said retired Navy Vice Adm. Conrad C. Lautenbacher, Jr., Ph.D., undersecretary of commerce for oceans and atmosphere and NOAA administrator]] local URL = "https://sos.noaa.gov/catalog/datasets/hurricane-season-2005/" diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/2005_hurricane-wvsst.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/2005_hurricane-wvsst.asset index d884669b41..79c90ca903 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/2005_hurricane-wvsst.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/2005_hurricane-wvsst.asset @@ -3,10 +3,10 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Hurricane Season: Water Vapor and SST - 2005" local Identifier = "noaa-sos-atmosphere-2005_hurricane-wvsst" -local Description = [["This hurricane season shattered records that have stood for -decades - most named storms, most hurricanes and most category five storms. Arguably, it -was the most devastating hurricane season the country has experienced in modern times," -said retired Navy Vice Adm. Conrad C. Lautenbacher, Jr., Ph.D., undersecretary of +local Description = [["This hurricane season shattered records that have stood for +decades - most named storms, most hurricanes and most category five storms. Arguably, it +was the most devastating hurricane season the country has experienced in modern times," +said retired Navy Vice Adm. Conrad C. Lautenbacher, Jr., Ph.D., undersecretary of commerce for oceans and atmosphere and NOAA administrator]] local URL = "https://sos.noaa.gov/catalog/datasets/hurricane-season-water-vapor-and-sst-2005/" @@ -35,7 +35,7 @@ local layer = { Description = Description } -asset.onInitialize(function() +asset.onInitialize(function() if not openspace.directoryExists(imagesDestination) then openspace.printInfo("Extracting " .. Name) openspace.unzipFile(syncedDirectory .. "2048.zip", imagesDestination, true) diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/2012_hurricane.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/2012_hurricane.asset index d66290b22a..49f291858a 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/2012_hurricane.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/2012_hurricane.asset @@ -3,16 +3,16 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Hurricane Season - 2012" local Identifier = "noaa-sos-atmosphere-2012_hurricane" -local Description = [["It was an extremely devastating and destructive storm, hopefully -one that people will only see once in their lifetime," National Weather Service -meteorologist, Joe Pollina, said of Hurricane Sandy. The 2012 Atlantic Hurricane season -was tied with 1887, 1995, 2010 and 2011 as the third most active year in recorded -history, producing nineteen tropical cyclones and named storms, ten hurricanes and two -major hurricanes. Annual Atlantic hurricane predictions by NOAA and Colorado State -University fell short of the actual numbers despite raising their numbers after a record -active start to the season, which began on June 1st and ended on November 30th. The -Eastern Pacific season was moderately active. This dataset names all the Atlantic and -Pacific named tropical storms and hurricanes in 2012 from the Linear IR Satellite data +local Description = [["It was an extremely devastating and destructive storm, hopefully +one that people will only see once in their lifetime," National Weather Service +meteorologist, Joe Pollina, said of Hurricane Sandy. The 2012 Atlantic Hurricane season +was tied with 1887, 1995, 2010 and 2011 as the third most active year in recorded +history, producing nineteen tropical cyclones and named storms, ten hurricanes and two +major hurricanes. Annual Atlantic hurricane predictions by NOAA and Colorado State +University fell short of the actual numbers despite raising their numbers after a record +active start to the season, which began on June 1st and ended on November 30th. The +Eastern Pacific season was moderately active. This dataset names all the Atlantic and +Pacific named tropical storms and hurricanes in 2012 from the Linear IR Satellite data recorded by geostationary satellites]] local URL = "https://sos.noaa.gov/catalog/datasets/hurricane-season-2012/" @@ -46,7 +46,7 @@ local layer_sat = { -- See https://en.cppreference.com/w/cpp/io/manip/get_time for an explanation of the -- time formatting string Format = "linear_rgb_cyl_%Y%m%d_%H%M.jpg" - }, + }, Description = Description } diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/aerosol_blackcarbon.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/aerosol_blackcarbon.asset index 7d1e25c850..84389d5ae9 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/aerosol_blackcarbon.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/aerosol_blackcarbon.asset @@ -3,18 +3,18 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Aerosols: Black Carbon" local Identifier = "noaa-sos-atmosphere-aerosol-blackcarbon" -local Description = [[With so many uncertainties attached to climate change, it is -important to look at all of the factors. As early as 1896, scientists have been analyzing -the presence of black carbon in the atmosphere. This group of three datasets looks at the -presence of aerosols in the Earth's atmosphere. The first dataset contains only black -carbon optical thickness, the second has sulfate optical thickness and the third has a -combination of both black carbon and sulfate optical thickness. The data is from January -31, 2007 and extends out 120 hours through February 4, 2007. Black carbon is commonly -known as soot. It is generated from burning fossil fuels and biomass fuels. Soot is the -result of incomplete combustion, especially of coal, diesel fuels, biofuels and other -biomass burnings. Sulfate is the result of sulfur dioxide and sulfur trioxide interacting -with other compounds in the atmosphere. Sulfate aerosols in the atmosphere are associated -with the combustion of fossil fuels and also the eruption of volcanoes like Mt. +local Description = [[With so many uncertainties attached to climate change, it is +important to look at all of the factors. As early as 1896, scientists have been analyzing +the presence of black carbon in the atmosphere. This group of three datasets looks at the +presence of aerosols in the Earth's atmosphere. The first dataset contains only black +carbon optical thickness, the second has sulfate optical thickness and the third has a +combination of both black carbon and sulfate optical thickness. The data is from January +31, 2007 and extends out 120 hours through February 4, 2007. Black carbon is commonly +known as soot. It is generated from burning fossil fuels and biomass fuels. Soot is the +result of incomplete combustion, especially of coal, diesel fuels, biofuels and other +biomass burnings. Sulfate is the result of sulfur dioxide and sulfur trioxide interacting +with other compounds in the atmosphere. Sulfate aerosols in the atmosphere are associated +with the combustion of fossil fuels and also the eruption of volcanoes like Mt. Pinatubo]] local URL = "https://sos.noaa.gov/catalog/datasets/aerosols-black-carbon/" @@ -47,14 +47,14 @@ local colorbar = { CartesianPosition = { 0.0, -0.5, -2.0 } } -asset.onInitialize(function() +asset.onInitialize(function() if not openspace.directoryExists(imagesDestination) then openspace.printInfo("Extracting " .. Name) openspace.unzipFile(syncedDirectory .. "2048_png.zip", imagesDestination, true) end - + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) - openspace.addScreenSpaceRenderable(colorbar); + openspace.addScreenSpaceRenderable(colorbar) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/aerosol_blackcarbon_and_sulfate.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/aerosol_blackcarbon_and_sulfate.asset index 7c0fe7caaa..8a7ac3c32a 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/aerosol_blackcarbon_and_sulfate.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/aerosol_blackcarbon_and_sulfate.asset @@ -3,18 +3,18 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Aerosols: Black Carbon and Sulfate" local Identifier = "noaa-sos-atmosphere-aerosol-blackcarbon_and_sulfate" -local Description = [[With so many uncertainties attached to climate change, it is -important to look at all of the factors. As early as 1896, scientists have been analyzing -the presence of black carbon in the atmosphere. This group of three datasets looks at the -presence of aerosols in the Earth's atmosphere. The first dataset contains only black -carbon optical thickness, the second has sulfate optical thickness and the third has a -combination of both black carbon and sulfate optical thickness. The data is from January -31, 2007 and extends out 120 hours through February 4, 2007. Black carbon is commonly -known as soot. It is generated from burning fossil fuels and biomass fuels. Soot is the -result of incomplete combustion, especially of coal, diesel fuels, biofuels and other -biomass burnings. Sulfate is the result of sulfur dioxide and sulfur trioxide interacting -with other compounds in the atmosphere. Sulfate aerosols in the atmosphere are associated -with the combustion of fossil fuels and also the eruption of volcanoes like Mt. +local Description = [[With so many uncertainties attached to climate change, it is +important to look at all of the factors. As early as 1896, scientists have been analyzing +the presence of black carbon in the atmosphere. This group of three datasets looks at the +presence of aerosols in the Earth's atmosphere. The first dataset contains only black +carbon optical thickness, the second has sulfate optical thickness and the third has a +combination of both black carbon and sulfate optical thickness. The data is from January +31, 2007 and extends out 120 hours through February 4, 2007. Black carbon is commonly +known as soot. It is generated from burning fossil fuels and biomass fuels. Soot is the +result of incomplete combustion, especially of coal, diesel fuels, biofuels and other +biomass burnings. Sulfate is the result of sulfur dioxide and sulfur trioxide interacting +with other compounds in the atmosphere. Sulfate aerosols in the atmosphere are associated +with the combustion of fossil fuels and also the eruption of volcanoes like Mt. Pinatubo]] local URL = "https://sos.noaa.gov/catalog/datasets/aerosols-black-carbon-and-sulfate/" @@ -47,14 +47,14 @@ local colorbar = { CartesianPosition = { 0.0, -0.5, -2.0 } } -asset.onInitialize(function() +asset.onInitialize(function() if not openspace.directoryExists(imagesDestination) then openspace.printInfo("Extracting " .. Name) openspace.unzipFile(syncedDirectory .. "2048_png.zip", imagesDestination, true) end - + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) - openspace.addScreenSpaceRenderable(colorbar); + openspace.addScreenSpaceRenderable(colorbar); end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/aerosol_sulfate.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/aerosol_sulfate.asset index fca8a0b080..a9ea2b7ff8 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/aerosol_sulfate.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/aerosol_sulfate.asset @@ -3,18 +3,18 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Aerosols: Sulfate" local Identifier = "noaa-sos-atmosphere-aerosol-sulfate" -local Description = [[With so many uncertainties attached to climate change, it is -important to look at all of the factors. As early as 1896, scientists have been analyzing -the presence of black carbon in the atmosphere. This group of three datasets looks at the -presence of aerosols in the Earth's atmosphere. The first dataset contains only black -carbon optical thickness, the second has sulfate optical thickness and the third has a -combination of both black carbon and sulfate optical thickness. The data is from January -31, 2007 and extends out 120 hours through February 4, 2007. Black carbon is commonly -known as soot. It is generated from burning fossil fuels and biomass fuels. Soot is the -result of incomplete combustion, especially of coal, diesel fuels, biofuels and other -biomass burnings. Sulfate is the result of sulfur dioxide and sulfur trioxide interacting -with other compounds in the atmosphere. Sulfate aerosols in the atmosphere are associated -with the combustion of fossil fuels and also the eruption of volcanoes like Mt. +local Description = [[With so many uncertainties attached to climate change, it is +important to look at all of the factors. As early as 1896, scientists have been analyzing +the presence of black carbon in the atmosphere. This group of three datasets looks at the +presence of aerosols in the Earth's atmosphere. The first dataset contains only black +carbon optical thickness, the second has sulfate optical thickness and the third has a +combination of both black carbon and sulfate optical thickness. The data is from January +31, 2007 and extends out 120 hours through February 4, 2007. Black carbon is commonly +known as soot. It is generated from burning fossil fuels and biomass fuels. Soot is the +result of incomplete combustion, especially of coal, diesel fuels, biofuels and other +biomass burnings. Sulfate is the result of sulfur dioxide and sulfur trioxide interacting +with other compounds in the atmosphere. Sulfate aerosols in the atmosphere are associated +with the combustion of fossil fuels and also the eruption of volcanoes like Mt. Pinatubo]] local URL = "https://sos.noaa.gov/catalog/datasets/aerosols-sulfate/" @@ -47,14 +47,14 @@ local colorbar = { CartesianPosition = { 0.0, -0.5, -2.0 } } -asset.onInitialize(function() +asset.onInitialize(function() if not openspace.directoryExists(imagesDestination) then openspace.printInfo("Extracting " .. Name) openspace.unzipFile(syncedDirectory .. "2048_png.zip", imagesDestination, true) end - + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) - openspace.addScreenSpaceRenderable(colorbar); + openspace.addScreenSpaceRenderable(colorbar) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/airtraffic.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/airtraffic.asset index 2b8153bd7b..49d9debbaa 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/airtraffic.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/airtraffic.asset @@ -3,13 +3,13 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Air Traffic" local Identifier = "noaa-sos-atmosphere-air_traffic" -local Description = [["On any given day, more than 87,000 flights are in the skies in -the United States. Only one-third are commercial carriers, like American, United or -Southwest. On an average day, air traffic controllers handle 28,537 commercial flights -(major and regional airlines), 27,178 general aviation flights (private planes), 24,548 -air taxi flights (planes for hire), 5,260 military flights and 2,148 air cargo flights -(Federal Express, UPS, etc.). At any given moment, roughly 5,000 planes are in the skies -above the United States. In one year, controllers handle an average of 64 million +local Description = [["On any given day, more than 87,000 flights are in the skies in +the United States. Only one-third are commercial carriers, like American, United or +Southwest. On an average day, air traffic controllers handle 28,537 commercial flights +(major and regional airlines), 27,178 general aviation flights (private planes), 24,548 +air taxi flights (planes for hire), 5,260 military flights and 2,148 air cargo flights +(Federal Express, UPS, etc.). At any given moment, roughly 5,000 planes are in the skies +above the United States. In one year, controllers handle an average of 64 million takeoffs and landings." - From the National Air Traffic Controllers Association webpage]] local URL = "https://sos.noaa.gov/catalog/datasets/air-traffic/" @@ -32,7 +32,7 @@ local layer = { Description = Description } -asset.onInitialize(function() +asset.onInitialize(function() if not openspace.directoryExists(imagesDestination) then openspace.printInfo("Extracting " .. Name) openspace.unzipFile(syncedDirectory .. "4096-1.zip", imagesDestination, true) diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/all_sats.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/all_sats.asset index bcf4766621..301da9640a 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/all_sats.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/all_sats.asset @@ -3,18 +3,18 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Satellites: Paths and Positions" local Identifier = "noaa-sos-atmosphere-all_sats" -local Description = [[Satellites are a key tool for scientists to monitor and observe -the Earth's atmosphere from space. Geostationary satellites orbit around the Earth at the -same rate as the Earth rotates so that the satellites are over the same spot on Earth all -the time. This allows them to collect a continuous stream of data for one location so -that "movies" of the data can be made. The satellites are positioned 22,300 miles above -the Earth's surface in order to view the Earth's full disk and to maintain their -geostationary orbit. Geostationary satellites travel at about 7000mph in order to -maintain their geostationary orbit. In addition to geostationary satellites, scientists -also use polar orbiting satellites. These satellites circle the Earth, crossing the poles -on each orbit. Typically, polar orbiting satellites are about 500 miles above the Earth's -surface. The satellites travel at almost 17,000mph, allowing them to orbit the Earth in -roughly 100 minutes. A polar orbiting satellite is able to cover the whole Earth in less +local Description = [[Satellites are a key tool for scientists to monitor and observe +the Earth's atmosphere from space. Geostationary satellites orbit around the Earth at the +same rate as the Earth rotates so that the satellites are over the same spot on Earth all +the time. This allows them to collect a continuous stream of data for one location so +that "movies" of the data can be made. The satellites are positioned 22,300 miles above +the Earth's surface in order to view the Earth's full disk and to maintain their +geostationary orbit. Geostationary satellites travel at about 7000mph in order to +maintain their geostationary orbit. In addition to geostationary satellites, scientists +also use polar orbiting satellites. These satellites circle the Earth, crossing the poles +on each orbit. Typically, polar orbiting satellites are about 500 miles above the Earth's +surface. The satellites travel at almost 17,000mph, allowing them to orbit the Earth in +roughly 100 minutes. A polar orbiting satellite is able to cover the whole Earth in less than one day]] local URL = "https://sos.noaa.gov/catalog/datasets/satellites-paths-and-positions/" @@ -37,7 +37,7 @@ local layer = { Description = Description } -asset.onInitialize(function() +asset.onInitialize(function() if not openspace.directoryExists(imagesDestination) then openspace.printInfo("Extracting " .. Name) openspace.unzipFile(syncedDirectory .. "2048.zip", imagesDestination, true) diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/aqua_swath.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/aqua_swath.asset index c393395d9d..344fa32c28 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/aqua_swath.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/aqua_swath.asset @@ -3,17 +3,17 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Polar Orbiting: Aqua Satellite and MODIS Swath" local Identifier = "noaa-sos-atmosphere-aqua_swath" -local Description = [[Satellites are important to scientists because the instruments on -board can provide almost daily global coverage of the Earth that would otherwise not be -available. There are six instruments on board NASA's Aqua satellite. One of them is -MODIS, the Moderate Resolution Imaging Spectroradiometer. MODIS measures 36 spectral -frequencies of light, which provide a wealth of information about the physical properties -of the atmosphere and the biological and physical properties of the oceans and land. The -Aqua satellite with MODIS attached was launched May 4, 2002. Since then, Aqua has been -circling the Earth at an altitude of 438 miles (705 kilometers) every 99 minutes in a -polar orbit passing within 10 degrees of each pole every orbit. The orbit is +local Description = [[Satellites are important to scientists because the instruments on +board can provide almost daily global coverage of the Earth that would otherwise not be +available. There are six instruments on board NASA's Aqua satellite. One of them is +MODIS, the Moderate Resolution Imaging Spectroradiometer. MODIS measures 36 spectral +frequencies of light, which provide a wealth of information about the physical properties +of the atmosphere and the biological and physical properties of the oceans and land. The +Aqua satellite with MODIS attached was launched May 4, 2002. Since then, Aqua has been +circling the Earth at an altitude of 438 miles (705 kilometers) every 99 minutes in a +polar orbit passing within 10 degrees of each pole every orbit. The orbit is sun-synchronous, which means that the satellite passes over the same spot of the Earth at -about the same local time everyday. Aqua crosses the equator from south to north at about +about the same local time everyday. Aqua crosses the equator from south to north at about 1:30 pm local time]] local URL = "https://sos.noaa.gov/catalog/datasets/polar-orbiting-aqua-satellite-and-modis-swath/" @@ -36,7 +36,7 @@ local layer = { Description = Description } -asset.onInitialize(function() +asset.onInitialize(function() if not openspace.directoryExists(imagesDestination) then openspace.printInfo("Extracting " .. Name) openspace.unzipFile(syncedDirectory .. "4096-1.zip", imagesDestination, true) diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/carbonflux.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/carbonflux.asset index c120476979..f2ebf764d2 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/carbonflux.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/carbonflux.asset @@ -3,16 +3,16 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Carbon Flux" local Identifier = "noaa-sos-atmosphere-carbonflux" -local Description = [[The Global Monitoring Division at NOAA diligently monitors carbon -dioxide and other trace gases in the atmosphere. One of the methods they use to sample -trace gases is collecting flasks of air from around the world that can be tested. They -have several other means for collecting samples as well. In this data set, the NOAA GMD -sampling network as of 2005 is portrayed. Circles are flask sampling locations, stars are -aircraft sites (12 flasks per flight are filled) and ships, which are only visible as -they race from Australia and New Zealand to the US west coast or Japan, or from Cape Town -to the US east coast. The coloration in the dataset represents the fluxes constructed by -the ocean, biosphere, and fossil fuel modules of the NOAA ESRL data assimilation system -for CO2 and related trace gases. The data set shows daily average fluxes constructed from +local Description = [[The Global Monitoring Division at NOAA diligently monitors carbon +dioxide and other trace gases in the atmosphere. One of the methods they use to sample +trace gases is collecting flasks of air from around the world that can be tested. They +have several other means for collecting samples as well. In this data set, the NOAA GMD +sampling network as of 2005 is portrayed. Circles are flask sampling locations, stars are +aircraft sites (12 flasks per flight are filled) and ships, which are only visible as +they race from Australia and New Zealand to the US west coast or Japan, or from Cape Town +to the US east coast. The coloration in the dataset represents the fluxes constructed by +the ocean, biosphere, and fossil fuel modules of the NOAA ESRL data assimilation system +for CO2 and related trace gases. The data set shows daily average fluxes constructed from 3-hour model output]] local URL = "https://sos.noaa.gov/catalog/datasets/polar-orbiting-aqua-satellite-and-modis-swath/" @@ -35,7 +35,7 @@ local layer = { Description = Description } -asset.onInitialize(function() +asset.onInitialize(function() if not openspace.directoryExists(imagesDestination) then openspace.printInfo("Extracting " .. Name) openspace.unzipFile(syncedDirectory .. "2160.zip", imagesDestination, true) diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/carbontracker_2000_2100-fixed_scale.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/carbontracker_2000_2100-fixed_scale.asset index a8369b5677..e70e81072f 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/carbontracker_2000_2100-fixed_scale.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/carbontracker_2000_2100-fixed_scale.asset @@ -3,16 +3,16 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "CarbonTracker: Fixed Scale" local Identifier = "noaa-sos-atmosphere-carbontracker_2000_2100-fixed_scale" -local Description = [["NOAA encourages science that adds benefit to society and the -environment. CarbonTracker does both." said retired Navy Vice Admiral Conrad -Lautenbacher, Ph.D., former undersecretary of commerce for oceans and atmosphere and NOAA -administrator. CarbonTracker is a system to keep track of carbon dioxide uptake and -release at the Earth's surface over time. It was developed by the Carbon Cycle Greenhouse -Gases group at NOAA's Earth System Research Laboratory. As a scientific tool, -CarbonTracker has helped improve the understanding of carbon uptake and release from the -land and oceans, and how those sources and sinks are responding to the changing climate, -increasing levels of atmospheric CO2 (the CO2 fertilization effect), and human management -of land and oceans. CarbonTracker relies on the long-term monitoring of atmospheric CO2 +local Description = [["NOAA encourages science that adds benefit to society and the +environment. CarbonTracker does both." said retired Navy Vice Admiral Conrad +Lautenbacher, Ph.D., former undersecretary of commerce for oceans and atmosphere and NOAA +administrator. CarbonTracker is a system to keep track of carbon dioxide uptake and +release at the Earth's surface over time. It was developed by the Carbon Cycle Greenhouse +Gases group at NOAA's Earth System Research Laboratory. As a scientific tool, +CarbonTracker has helped improve the understanding of carbon uptake and release from the +land and oceans, and how those sources and sinks are responding to the changing climate, +increasing levels of atmospheric CO2 (the CO2 fertilization effect), and human management +of land and oceans. CarbonTracker relies on the long-term monitoring of atmospheric CO2 performed by the NOAA Global Monitoring Division and international partners]] local URL = "https://sos.noaa.gov/catalog/datasets/carbon-tracker-fixed-scale/" @@ -39,7 +39,7 @@ local layer_field = { -- See https://en.cppreference.com/w/cpp/io/manip/get_time for an explanation of the -- time formatting string Format = "co2wx_%Y%m%d.png" - }, + }, Description = Description } @@ -53,7 +53,7 @@ local layer_obs = { -- See https://en.cppreference.com/w/cpp/io/manip/get_time for an explanation of the -- time formatting string Format = "co2wx_%Y%m%d.obs.png" - }, + }, Description = Description } @@ -68,7 +68,7 @@ local colorbar = { CartesianPosition = { 0.0, -0.5, -2.0 } } -asset.onInitialize(function() +asset.onInitialize(function() if not openspace.directoryExists(fieldDestination) then openspace.printInfo("Extracting " .. Name) openspace.unzipFile(syncedDirectory .. "field-1.zip", fieldDestination, true) @@ -85,10 +85,10 @@ asset.onInitialize(function() openspace.printInfo("Extracting " .. Name .. " Colorbar") openspace.unzipFile(syncedDirectory .. "colorbar.zip", colorbarDestination, true) end - + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_field) openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_obs) - openspace.addScreenSpaceRenderable(colorbar); + openspace.addScreenSpaceRenderable(colorbar) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/carbontracker_2000_2100-sliding_scale.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/carbontracker_2000_2100-sliding_scale.asset index 8ce27bd93f..74868afb25 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/carbontracker_2000_2100-sliding_scale.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/carbontracker_2000_2100-sliding_scale.asset @@ -3,16 +3,16 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "CarbonTracker: Sliding Scale" local Identifier = "noaa-sos-atmosphere-carbontracker_2000_2100-sliding_scale" -local Description = [["NOAA encourages science that adds benefit to society and the -environment. CarbonTracker does both." said retired Navy Vice Admiral Conrad -Lautenbacher, Ph.D., former undersecretary of commerce for oceans and atmosphere and NOAA -administrator. CarbonTracker is a system to keep track of carbon dioxide uptake and -release at the Earth's surface over time. It was developed by the Carbon Cycle Greenhouse -Gases group at NOAA's Earth System Research Laboratory. As a scientific tool, -CarbonTracker has helped improve the understanding of carbon uptake and release from the -land and oceans, and how those sources and sinks are responding to the changing climate, -increasing levels of atmospheric CO2 (the CO2 fertilization effect), and human management -of land and oceans. CarbonTracker relies on the long-term monitoring of atmospheric CO2 +local Description = [["NOAA encourages science that adds benefit to society and the +environment. CarbonTracker does both." said retired Navy Vice Admiral Conrad +Lautenbacher, Ph.D., former undersecretary of commerce for oceans and atmosphere and NOAA +administrator. CarbonTracker is a system to keep track of carbon dioxide uptake and +release at the Earth's surface over time. It was developed by the Carbon Cycle Greenhouse +Gases group at NOAA's Earth System Research Laboratory. As a scientific tool, +CarbonTracker has helped improve the understanding of carbon uptake and release from the +land and oceans, and how those sources and sinks are responding to the changing climate, +increasing levels of atmospheric CO2 (the CO2 fertilization effect), and human management +of land and oceans. CarbonTracker relies on the long-term monitoring of atmospheric CO2 performed by the NOAA Global Monitoring Division and international partners]] local URL = "https://sos.noaa.gov/catalog/datasets/carbon-tracker-sliding-scale/" @@ -38,7 +38,7 @@ local layer_field = { -- See https://en.cppreference.com/w/cpp/io/manip/get_time for an explanation of the -- time formatting string Format = "co2wx_%Y%m%d.png" - }, + }, Description = Description } @@ -52,7 +52,7 @@ local layer_obs = { -- See https://en.cppreference.com/w/cpp/io/manip/get_time for an explanation of the -- time formatting string Format = "co2wx_%Y%m%d.obs.png" - }, + }, Description = Description } @@ -67,7 +67,7 @@ local colorbar = { CartesianPosition = { 0.0, -0.5, -2.0 } } -asset.onInitialize(function() +asset.onInitialize(function() if not openspace.directoryExists(fieldDestination) then openspace.printInfo("Extracting " .. Name) openspace.unzipFile(syncedDirectory .. "field-1.zip", fieldDestination, true) @@ -86,10 +86,10 @@ asset.onInitialize(function() openspace.printInfo("Extracting " .. Name .. " Colorbar") openspace.unzipFile(syncedDirectory .. "colorbar.zip", colorbarDestination, true) end - + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_field) openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_obs) - openspace.addScreenSpaceRenderable(colorbar); + openspace.addScreenSpaceRenderable(colorbar) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/climate_niche.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/climate_niche.asset index e6aa2736d7..0fe0bab2e6 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/climate_niche.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/climate_niche.asset @@ -3,19 +3,19 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Human Climate Niche - 2020 and 2070" local Identifier = "noaa-sos-atmosphere-climate_niche" -local Description = [[The human climate niche are areas on Earth where humans have -historically lived due to favorable climate conditions related to temperature and -precipitation. For the past 6000 years, humans have mostly lived in the same climate -conditions as they do now. In addition to humans, this climate niche is also where the -production of crops and livestock typically takes place. The optimal mean annual -temperature of this identified niche is around 52 °F to 59 °F (~11 °C to 15 °C). But as -the climate changes, the areas that fit within the human climate niche will change as -well. This dataset identifies the current human climate niche, with land shaded to show -which areas are more or less suitable for people, and then projects the future human -climate niche in 2070 based on the climate projection scenario of RCP 8.5. Also included -as an additional layer that can be turned on and off is a map that shows the areas where -the mean annual temperature is greater than 84 °F (29 °C). Currently, only 0.8% of the -global land surface has a mean annual temperature greater than 84 °F, but in 2070 that is +local Description = [[The human climate niche are areas on Earth where humans have +historically lived due to favorable climate conditions related to temperature and +precipitation. For the past 6000 years, humans have mostly lived in the same climate +conditions as they do now. In addition to humans, this climate niche is also where the +production of crops and livestock typically takes place. The optimal mean annual +temperature of this identified niche is around 52 °F to 59 °F (~11 °C to 15 °C). But as +the climate changes, the areas that fit within the human climate niche will change as +well. This dataset identifies the current human climate niche, with land shaded to show +which areas are more or less suitable for people, and then projects the future human +climate niche in 2070 based on the climate projection scenario of RCP 8.5. Also included +as an additional layer that can be turned on and off is a map that shows the areas where +the mean annual temperature is greater than 84 °F (29 °C). Currently, only 0.8% of the +global land surface has a mean annual temperature greater than 84 °F, but in 2070 that is projected to cover 19% of the global land and impact an estimated 3.5 billion people]] local URL = "https://sos.noaa.gov/catalog/datasets/human-climate-niche-2020-and-2070/" @@ -65,12 +65,12 @@ local colorbar = { } -asset.onInitialize(function() +asset.onInitialize(function() openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_precip_2020) openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_precip_2070) openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_mat_2020) openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_mat_2070) - openspace.addScreenSpaceRenderable(colorbar); + openspace.addScreenSpaceRenderable(colorbar) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/co_gmd.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/co_gmd.asset index 30504799fe..6984ab053c 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/co_gmd.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/co_gmd.asset @@ -3,17 +3,17 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Carbon Monoxide - 2008 - 2011" local Identifier = "noaa-sos-atmosphere-co_gmd" -local Description = [[Carbon Monoxide (CO) is a colorless, odorless gas existing in the -atmosphere at levels between 40 and 150 parts per billion (ppb). About 40% of that is -produced by burning (combustion) of fossil fuels (coal, oil and natural gas) and biomass -(for example, wood in forest fires). CO is the primary consumer of oxidant OH, the -"cleansing agent" of the atmosphere. For example, OH "cleanses the air" by converting -atmospheric methane (CH4) to CO2, which reduces its global warming potential because -methane is a stronger greenhouse gas. OH also breaks down a whole host of other compounds -such as benzene, isoprene and halocarbons, which would otherwise give rise to smog and -reduce air quality. Therefore, an excess of atmospheric CO leads to a reduction of OH's -cleansing capacity. Another reason for measuring CO concentrations is that it is an -indicator of combustion, such as forest fires and urban emissions. A large forest fire or +local Description = [[Carbon Monoxide (CO) is a colorless, odorless gas existing in the +atmosphere at levels between 40 and 150 parts per billion (ppb). About 40% of that is +produced by burning (combustion) of fossil fuels (coal, oil and natural gas) and biomass +(for example, wood in forest fires). CO is the primary consumer of oxidant OH, the +"cleansing agent" of the atmosphere. For example, OH "cleanses the air" by converting +atmospheric methane (CH4) to CO2, which reduces its global warming potential because +methane is a stronger greenhouse gas. OH also breaks down a whole host of other compounds +such as benzene, isoprene and halocarbons, which would otherwise give rise to smog and +reduce air quality. Therefore, an excess of atmospheric CO leads to a reduction of OH's +cleansing capacity. Another reason for measuring CO concentrations is that it is an +indicator of combustion, such as forest fires and urban emissions. A large forest fire or emissions from heavy traffic can produce CO concentrations of 200 - 5000 ppb]] local URL = "https://sos.noaa.gov/catalog/datasets/carbon-monoxide-2008-2011/" @@ -38,7 +38,7 @@ local layer = { -- See https://en.cppreference.com/w/cpp/io/manip/get_time for an explanation of the -- time formatting string Format = "co_field_extended_%Y%m%d%H%M.png" - }, + }, Description = Description } @@ -53,7 +53,7 @@ local colorbar = { CartesianPosition = { 0.0, -0.5, -2.0 } } -asset.onInitialize(function() +asset.onInitialize(function() if not openspace.directoryExists(imagesDestination) then openspace.printInfo("Extracting " .. Name) openspace.unzipFile(syncedDirectory .. "3600-1.zip", imagesDestination, true) @@ -63,9 +63,9 @@ asset.onInitialize(function() openspace.unzipFile(syncedDirectory .. "3600-5.zip", imagesDestination, true) openspace.unzipFile(syncedDirectory .. "3600-6.zip", imagesDestination, true) end - + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) - openspace.addScreenSpaceRenderable(colorbar); + openspace.addScreenSpaceRenderable(colorbar) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/fim_chem.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/fim_chem.asset index 703b3f4f64..859e72322b 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/fim_chem.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/fim_chem.asset @@ -3,13 +3,13 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Aerosols: FIM Chem Model" local Identifier = "noaa-sos-atmosphere-fim_chem" -local Description = [[The Flow Following Finite Volume Icosahedral Model (FIM) was -developed by NOAA to produce weather forecasts. In fact, weather forecasts from the FIM -model are available for SOS here. Building upon the success of the FIM model, the -FIM-Chem model was created. The FIM-Chem is the FIM model with chemistry and aerosol -modules added. Aerosols are one of the biggest uncertainties in climate models due to -their varied affects on radiation and cloud physics. The FIM-Chem allows researchers to -forecast and study the behavior of aerosols in the atmosphere, leading to the potential +local Description = [[The Flow Following Finite Volume Icosahedral Model (FIM) was +developed by NOAA to produce weather forecasts. In fact, weather forecasts from the FIM +model are available for SOS here. Building upon the success of the FIM model, the +FIM-Chem model was created. The FIM-Chem is the FIM model with chemistry and aerosol +modules added. Aerosols are one of the biggest uncertainties in climate models due to +their varied affects on radiation and cloud physics. The FIM-Chem allows researchers to +forecast and study the behavior of aerosols in the atmosphere, leading to the potential for better Earth system modeling for climate prediction]] local URL = "https://sos.noaa.gov/catalog/datasets/aerosols-fim-chem-model/" @@ -42,14 +42,14 @@ local colorbar = { CartesianPosition = { 0.0, -0.5, -2.0 } } -asset.onInitialize(function() +asset.onInitialize(function() if not openspace.directoryExists(imagesDestination) then openspace.printInfo("Extracting " .. Name) openspace.unzipFile(syncedDirectory .. "composite.zip", imagesDestination, true) end - + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) - openspace.addScreenSpaceRenderable(colorbar); + openspace.addScreenSpaceRenderable(colorbar) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/fossil_fuel.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/fossil_fuel.asset index aa7669fcbf..bbe8ef5659 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/fossil_fuel.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/fossil_fuel.asset @@ -3,20 +3,20 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Fossil Fuel: CO2 Release - 2011-2012" local Identifier = "noaa-sos-atmosphere-fossil_fuel" -local Description = [[This dataset shows the result of emitting carbon dioxide from -fossil fuel burning into the atmosphere over two years. A computer model of the -atmosphere called TM5 was used to create this powerful visualization. TM5 simulates the -movement of atmospheric gases globally, using winds and atmospheric mixing as derived -from the global weather forecast. The model has been used for the main greenhouse gases -carbon dioxide (CO2), methane (CH4), and nitrous oxide (N2O), chemically active species -such as ozone (O3), and various aerosols. Like CarbonTracker, a measurement and modeling -system to keep track of carbon sources and sinks around the world, this dataset was -developed by the Carbon Cycle Greenhouse Gases group at NOAA's Earth System Research -Laboratory. Unlike CarbonTracker, this simulation does not use information from actual -observations and instead visualizes the transport of fossil fuel emissions. -Visualizations such as this dataset and CarbonTracker, aim to improve our understanding -of atmospheric carbon and how various sources and sinks may respond to the changing -climate, increasing levels of atmospheric CO2 (via the CO2 fertilization effect), and +local Description = [[This dataset shows the result of emitting carbon dioxide from +fossil fuel burning into the atmosphere over two years. A computer model of the +atmosphere called TM5 was used to create this powerful visualization. TM5 simulates the +movement of atmospheric gases globally, using winds and atmospheric mixing as derived +from the global weather forecast. The model has been used for the main greenhouse gases +carbon dioxide (CO2), methane (CH4), and nitrous oxide (N2O), chemically active species +such as ozone (O3), and various aerosols. Like CarbonTracker, a measurement and modeling +system to keep track of carbon sources and sinks around the world, this dataset was +developed by the Carbon Cycle Greenhouse Gases group at NOAA's Earth System Research +Laboratory. Unlike CarbonTracker, this simulation does not use information from actual +observations and instead visualizes the transport of fossil fuel emissions. +Visualizations such as this dataset and CarbonTracker, aim to improve our understanding +of atmospheric carbon and how various sources and sinks may respond to the changing +climate, increasing levels of atmospheric CO2 (via the CO2 fertilization effect), and human management of global resources]] local URL = "https://sos.noaa.gov/catalog/datasets/fossil-fuel-co2-release-2011-2012/" @@ -41,7 +41,7 @@ local layer = { -- See https://en.cppreference.com/w/cpp/io/manip/get_time for an explanation of the -- time formatting string Format = "%Y%m%d_fossil.png" - }, + }, Description = Description } @@ -55,14 +55,14 @@ local colorbar = { CartesianPosition = { 0.0, -0.5, -2.0 } } -asset.onInitialize(function() +asset.onInitialize(function() if not openspace.directoryExists(imagesDestination) then openspace.printInfo("Extracting " .. Name) openspace.unzipFile(syncedDirectory .. "3100.zip", imagesDestination, true) end - + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) - openspace.addScreenSpaceRenderable(colorbar); + openspace.addScreenSpaceRenderable(colorbar) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/fukushima.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/fukushima.asset index 7d66b7defb..7ca6db9f51 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/fukushima.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/fukushima.asset @@ -3,12 +3,12 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Fukushima Radioactive Aerosol Dispersion Model" local Identifier = "noaa-sos-atmosphere-fukushima" -local Description = [[The Hybrid Single-Particle Lagrangian Integrated Trajectory -(HYSPLIT) model was developed by NOAA to follow the transport and dispersion of -pollutants in the atmosphere. In HYSPLIT, the computation is composed of four components: -transport by the mean wind, turbulent dispersion, scavenging and decay. A large number of -pollutant particles, which by convention are called "particles" but are just -computational "points" (particles or gases), are released at the source location and +local Description = [[The Hybrid Single-Particle Lagrangian Integrated Trajectory +(HYSPLIT) model was developed by NOAA to follow the transport and dispersion of +pollutants in the atmosphere. In HYSPLIT, the computation is composed of four components: +transport by the mean wind, turbulent dispersion, scavenging and decay. A large number of +pollutant particles, which by convention are called "particles" but are just +computational "points" (particles or gases), are released at the source location and passively follow the wind]] local URL = "https://sos.noaa.gov/catalog/datasets/fukushima-radioactive-aerosol-dispersion-model/" @@ -41,14 +41,14 @@ local colorbar = { CartesianPosition = { 0.0, -0.5, -2.0 } } -asset.onInitialize(function() +asset.onInitialize(function() if not openspace.directoryExists(imagesDestination) then openspace.printInfo("Extracting " .. Name) openspace.unzipFile(syncedDirectory .. "2054.zip", imagesDestination, true) end - + openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) - openspace.addScreenSpaceRenderable(colorbar); + openspace.addScreenSpaceRenderable(colorbar) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/geo_sat.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/geo_sat.asset index 106172467b..959e92104a 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/geo_sat.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/geo_sat.asset @@ -3,16 +3,16 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Geostationary Satellites" local Identifier = "noaa-sos-atmosphere-geo_sat" -local Description = [[Geostationary satellites are a key tool for scientists to monitor - and observe the Earth's atmosphere. They are called geostationary due to their movement. - Geostationary satellites orbit around the Earth at the same rate as the Earth rotates so - that the satellites are over the same spot on Earth all the time. This allows them to - collect a continuous stream of data for one location so that "movies" of the data can be - made. The satellites are positioned 22,300 miles above the Earth's surface in order to - view the Earth's full disk and to maintain their geostationary orbit. Geostationary - satellites travel at about 7000mph in order to maintain their geostationary orbit. Over - the United States there are two such satellites, the GOES (Geostationary Operational - Environmental Satellite) - East and GOES-West. There are many such satellites +local Description = [[Geostationary satellites are a key tool for scientists to monitor + and observe the Earth's atmosphere. They are called geostationary due to their movement. + Geostationary satellites orbit around the Earth at the same rate as the Earth rotates so + that the satellites are over the same spot on Earth all the time. This allows them to + collect a continuous stream of data for one location so that "movies" of the data can be + made. The satellites are positioned 22,300 miles above the Earth's surface in order to + view the Earth's full disk and to maintain their geostationary orbit. Geostationary + satellites travel at about 7000mph in order to maintain their geostationary orbit. Over + the United States there are two such satellites, the GOES (Geostationary Operational + Environmental Satellite) - East and GOES-West. There are many such satellites worldwide]] local URL = "https://sos.noaa.gov/catalog/datasets/geostationary-satellites/" @@ -35,7 +35,7 @@ local layer = { Description = Description } -asset.onInitialize(function() +asset.onInitialize(function() if not openspace.directoryExists(imagesDestination) then openspace.printInfo("Extracting " .. Name) openspace.unzipFile(syncedDirectory .. "2048.zip", imagesDestination, true) diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/geo_scan.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/geo_scan.asset index 20ef2ba553..487326c916 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/geo_scan.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/geo_scan.asset @@ -3,16 +3,16 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Geostationary Satellites: Scanning Pattern" local Identifier = "noaa-sos-atmosphere-geo_scan" -local Description = [[Geostationary satellites are a key tool for scientists to monitor -and observe the Earth's atmosphere. They are called geostationary due to their movement. -Geostationary satellites orbit around the Earth at the same rate as the Earth rotates so -that the satellites are over the same spot on Earth all the time. This allows them to -collect a continuous stream of data for one location so that "movies" of the data can be -made. The satellites are positioned 22,300 miles above the Earth's surface in order to -view the Earth's full disk and to maintain their geostationary orbit. Geostationary -satellites travel at about 7000mph in order to maintain their geostationary orbit. Over -the United States there are two such satellites, the GOES (Geostationary Operational -Environmental Satellite) - East and GOES-West. There are many such satellites +local Description = [[Geostationary satellites are a key tool for scientists to monitor +and observe the Earth's atmosphere. They are called geostationary due to their movement. +Geostationary satellites orbit around the Earth at the same rate as the Earth rotates so +that the satellites are over the same spot on Earth all the time. This allows them to +collect a continuous stream of data for one location so that "movies" of the data can be +made. The satellites are positioned 22,300 miles above the Earth's surface in order to +view the Earth's full disk and to maintain their geostationary orbit. Geostationary +satellites travel at about 7000mph in order to maintain their geostationary orbit. Over +the United States there are two such satellites, the GOES (Geostationary Operational +Environmental Satellite) - East and GOES-West. There are many such satellites worldwide]] local URL = "https://sos.noaa.gov/catalog/datasets/geostationary-satellites-scanning-pattern/" @@ -35,7 +35,7 @@ local layer = { Description = Description } -asset.onInitialize(function() +asset.onInitialize(function() if not openspace.directoryExists(imagesDestination) then openspace.printInfo("Extracting " .. Name) openspace.unzipFile(syncedDirectory .. "2048.zip", imagesDestination, true) diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/giss_temp_anom.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/giss_temp_anom.asset index b9f31c68a1..8ea792b000 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/giss_temp_anom.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/giss_temp_anom.asset @@ -3,9 +3,9 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Temperature Anomaly: (NASA) - 1884 - 2012" local Identifier = "noaa-sos-atmosphere-giss_temp_anom" -local Description = [[These maps, developed by NASA's Goddard Institute for Space -Studies (GISS), depict how much various regions of the world have warmed or cooled when -compared with a base period of 1951-1980. They show temperature anomalies, or changes, +local Description = [[These maps, developed by NASA's Goddard Institute for Space +Studies (GISS), depict how much various regions of the world have warmed or cooled when +compared with a base period of 1951-1980. They show temperature anomalies, or changes, not absolute temperature]] local URL = "https://sos.noaa.gov/catalog/datasets/temperature-anomaly-nasa-1884-2012/" @@ -38,14 +38,14 @@ local colorbar = { CartesianPosition = { 0.0, -0.5, -2.0 } } -asset.onInitialize(function() +asset.onInitialize(function() if not openspace.directoryExists(imagesDestination) then openspace.printInfo("Extracting " .. Name) openspace.unzipFile(syncedDirectory .. "2012.zip", imagesDestination, true) end openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) - openspace.addScreenSpaceRenderable(colorbar); + openspace.addScreenSpaceRenderable(colorbar) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/globe-insolation.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/globe-insolation.asset index 643337276c..e4bdbaccba 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/globe-insolation.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/globe-insolation.asset @@ -3,12 +3,12 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Solar Insolation - Monthly (NASA)" local Identifier = "noaa-sos-atmosphere-globe-insolation" -local Description = [[These maps show where and how much sunlight fell on Earth's -surface during each month in 2018. Scientists call this measure solar insolation. Knowing -how much of the Sun's energy reaches the surface helps scientists understand weather and -climate patterns as well as patterns of plant growth around our world. Solar insolation -maps are also useful to engineers who design solar panels and batteries designed to -convert energy from the Sun into electricity to power appliances in our homes and work +local Description = [[These maps show where and how much sunlight fell on Earth's +surface during each month in 2018. Scientists call this measure solar insolation. Knowing +how much of the Sun's energy reaches the surface helps scientists understand weather and +climate patterns as well as patterns of plant growth around our world. Solar insolation +maps are also useful to engineers who design solar panels and batteries designed to +convert energy from the Sun into electricity to power appliances in our homes and work places]] local URL = "https://sos.noaa.gov/catalog/datasets/solar-insolation-monthly-nasa/" @@ -33,7 +33,7 @@ local layer = { -- See https://en.cppreference.com/w/cpp/io/manip/get_time for an explanation of the -- time formatting string Format = "CERES_INSOL_M_%Y-%m.PNG" - }, + }, Description = Description } @@ -48,14 +48,14 @@ local colorbar = { CartesianPosition = { 0.0, -0.5, -2.0 } } -asset.onInitialize(function() +asset.onInitialize(function() if not openspace.directoryExists(imagesDestination) then openspace.printInfo("Extracting " .. Name) openspace.unzipFile(syncedDirectory .. "1440.zip", imagesDestination, true) end openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) - openspace.addScreenSpaceRenderable(colorbar); + openspace.addScreenSpaceRenderable(colorbar) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/globe-rainfall.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/globe-rainfall.asset index 775926289b..88c23bfea6 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/globe-rainfall.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/globe-rainfall.asset @@ -3,12 +3,12 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Solar Rainfall - Monthly (NASA)" local Identifier = "noaa-sos-atmosphere-globe-rainfall" -local Description = [[Globally, rain is the main source of fresh water for plants and -animals rainfall is essential for life across Earth's landscapes. In addition to moving -tremendous amounts of water through Earth's atmosphere, rain clouds also move tremendous -amounts of energy. When water evaporates from the surface and rises as vapor into the -atmosphere, it carries heat from the sun-warmed surface with it. Later, when the water -vapor condenses to form cloud droplets and rain, the heat is released into the +local Description = [[Globally, rain is the main source of fresh water for plants and +animals rainfall is essential for life across Earth's landscapes. In addition to moving +tremendous amounts of water through Earth's atmosphere, rain clouds also move tremendous +amounts of energy. When water evaporates from the surface and rises as vapor into the +atmosphere, it carries heat from the sun-warmed surface with it. Later, when the water +vapor condenses to form cloud droplets and rain, the heat is released into the atmosphere. This heating is a major part of Earth's energy budget and climate]] local URL = "https://sos.noaa.gov/catalog/datasets/rainfall-monthly-nasa/" @@ -33,7 +33,7 @@ local layer = { -- See https://en.cppreference.com/w/cpp/io/manip/get_time for an explanation of the -- time formatting string Format = "TRMM_3B43M_%Y-%m.PNG" - }, + }, Description = Description } @@ -48,14 +48,14 @@ local colorbar = { CartesianPosition = { 0.0, -0.5, -2.0 } } -asset.onInitialize(function() +asset.onInitialize(function() if not openspace.directoryExists(imagesDestination) then openspace.printInfo("Extracting " .. Name) openspace.unzipFile(syncedDirectory .. "1440.zip", imagesDestination, true) end openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) - openspace.addScreenSpaceRenderable(colorbar); + openspace.addScreenSpaceRenderable(colorbar) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/harvey-clouds_precip.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/harvey-clouds_precip.asset index 7e2628e16e..4c2997756a 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/harvey-clouds_precip.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/harvey-clouds_precip.asset @@ -3,12 +3,12 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Hurricane Harvey: Clouds with Precipitation - 2017" local Identifier = "noaa-sos-atmosphere-harvey-clouds_precip" -local Description = [[Hurricane Harvey was an extremely destructive Atlantic hurricane - which became the first major hurricane to make landfall in the U.S. since Wilma in 2005. - In a four-day period, many areas of eastern Texas received over 40 inches of rain as the - system meandered along the gulf coast causing catastrophic flooding. With a record of - 51.88 inches, Harvey is the wettest tropical hurricane on record in the contiguous U.S. - The resulting floods inundated hundreds of thousands of homes, displaces more than +local Description = [[Hurricane Harvey was an extremely destructive Atlantic hurricane + which became the first major hurricane to make landfall in the U.S. since Wilma in 2005. + In a four-day period, many areas of eastern Texas received over 40 inches of rain as the + system meandered along the gulf coast causing catastrophic flooding. With a record of + 51.88 inches, Harvey is the wettest tropical hurricane on record in the contiguous U.S. + The resulting floods inundated hundreds of thousands of homes, displaces more than 30,000 people, and prompted more than 17,000 rescues]] local URL = "https://sos.noaa.gov/catalog/datasets/hurricane-harvey-clouds-with-precipitation-2017/" @@ -33,7 +33,7 @@ local layer = { -- See https://en.cppreference.com/w/cpp/io/manip/get_time for an explanation of the -- time formatting string Format = "combined_image_%Y%m%d_%H%M.jpg" - }, + }, Description = Description } @@ -56,15 +56,15 @@ local colorbar_snow = { CartesianPosition = { 0.5, -0.5, -2.0 } } -asset.onInitialize(function() +asset.onInitialize(function() if not openspace.directoryExists(imagesDestination) then openspace.printInfo("Extracting " .. Name) openspace.unzipFile(syncedDirectory .. "4096.zip", imagesDestination, true) end openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) - openspace.addScreenSpaceRenderable(colorbar_rain); - openspace.addScreenSpaceRenderable(colorbar_snow); + openspace.addScreenSpaceRenderable(colorbar_rain) + openspace.addScreenSpaceRenderable(colorbar_snow) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/hurricane_season_2017.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/hurricane_season_2017.asset index ca954995a7..37a49fdc14 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/hurricane_season_2017.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/hurricane_season_2017.asset @@ -3,15 +3,15 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Hurricane Season - 2017" local Identifier = "noaa-sos-atmosphere-hurricane_season_2017" -local Description = [[After a long lull in major hurricanes striking the U.S. -(2005 - 2017), the 2017 season was an extremely destructive season, featuring 17 named -storms in just the Atlantic Ocean, tying it with 1936 as the fifth-most active season -since records began in 1851. All ten of the Atlantic hurricanes occurred in a row, the -greatest number of consecutive hurricanes in the satellite era. In addition, it is by far -the costliest season on record, with a preliminary total of over $368.66 billion (USD) in -damages, which is more than double the cost of 2005's total, and nearly all of which was -due to three of the season's major hurricanes — Harvey, Irma, and Maria. All three -occurred within one month in August - September, sending disaster aide efforts reeling +local Description = [[After a long lull in major hurricanes striking the U.S. +(2005 - 2017), the 2017 season was an extremely destructive season, featuring 17 named +storms in just the Atlantic Ocean, tying it with 1936 as the fifth-most active season +since records began in 1851. All ten of the Atlantic hurricanes occurred in a row, the +greatest number of consecutive hurricanes in the satellite era. In addition, it is by far +the costliest season on record, with a preliminary total of over $368.66 billion (USD) in +damages, which is more than double the cost of 2005's total, and nearly all of which was +due to three of the season's major hurricanes — Harvey, Irma, and Maria. All three +occurred within one month in August - September, sending disaster aide efforts reeling and calling on volunteers for help]] local URL = "https://sos.noaa.gov/catalog/datasets/hurricane-season-2017/" @@ -36,11 +36,11 @@ local layer = { -- See https://en.cppreference.com/w/cpp/io/manip/get_time for an explanation of the -- time formatting string Format = "linear_rgb_cyl_%Y%m%d_%H%M.jpg" - }, + }, Description = Description } -asset.onInitialize(function() +asset.onInitialize(function() if not openspace.directoryExists(imagesDestination) then openspace.printInfo("Extracting " .. Name) openspace.unzipFile(syncedDirectory .. "4096-1.zip", imagesDestination, true) diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/hurricane_season_2017_wvsst.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/hurricane_season_2017_wvsst.asset index ce6f66083d..c04b51bf35 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/hurricane_season_2017_wvsst.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/hurricane_season_2017_wvsst.asset @@ -3,10 +3,10 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Hurricane Season: Water Vapor and SST - 2017" local Identifier = "noaa-sos-atmosphere-hurricane_season_2017_wvsst" -local Description = [[After a long lull in major hurricanes striking the U.S. - (2005 - 2017), the 2017 season was an extremely destructive season, featuring 17 named - storms in just the Atlantic Ocean, tying it with 1936 as the fifth-most active season - since records began in 1851. All ten of the Atlantic hurricanes occurred in a row, the +local Description = [[After a long lull in major hurricanes striking the U.S. + (2005 - 2017), the 2017 season was an extremely destructive season, featuring 17 named + storms in just the Atlantic Ocean, tying it with 1936 as the fifth-most active season + since records began in 1851. All ten of the Atlantic hurricanes occurred in a row, the greatest number of consecutive hurricanes in the satellite era. In addition, it is by far the costliest season on record, with a preliminary total of over $368.66 billion (USD) in damages, which is more than double the cost of 2005's total, and nearly all of @@ -36,11 +36,11 @@ local layer = { -- See https://en.cppreference.com/w/cpp/io/manip/get_time for an explanation of the -- time formatting string Format = "wvsst-%y%j-%H.jpg" - }, + }, Description = Description } -asset.onInitialize(function() +asset.onInitialize(function() if not openspace.directoryExists(imagesDestination) then openspace.printInfo("Extracting " .. Name) openspace.unzipFile(syncedDirectory .. "2048.zip", imagesDestination, true) diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/hurricane_tracks-cumulative.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/hurricane_tracks-cumulative.asset index 08d3508ff7..359c813210 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/hurricane_tracks-cumulative.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/hurricane_tracks-cumulative.asset @@ -3,10 +3,10 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Hurricane Tracks: Cumulative - 1950 - 2020" local Identifier = "noaa-sos-atmosphere-hurricane_tracks-cumulative" -local Description = [[Tracking historical hurricanes is an important way for hurricane -researchers to learn about the paths of future hurricanes. Because of this, records of -hurricane paths are archived and studied. Not all hurricanes follow the same path, but -there are certainly noticeable trends for hurricane paths. Many computer models that have +local Description = [[Tracking historical hurricanes is an important way for hurricane +researchers to learn about the paths of future hurricanes. Because of this, records of +hurricane paths are archived and studied. Not all hurricanes follow the same path, but +there are certainly noticeable trends for hurricane paths. Many computer models that have been created to predict hurricane paths include the historical data in their models]] local URL = "https://sos.noaa.gov/catalog/datasets/hurricane-tracks-cumulative-1950-2005/" @@ -26,7 +26,7 @@ local layer = { Description = Description } -asset.onInitialize(function() +asset.onInitialize(function() openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) end) diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/isaac.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/isaac.asset index 48cff7c8c5..031f589cca 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/isaac.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/isaac.asset @@ -3,13 +3,13 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Hurricane Isaac - 2012" local Identifier = "noaa-sos-atmosphere-isaac" -local Description = [[Hurricane Isaac formed as a tropical depression east of the Lesser -Antilles on August 21 and that same day was upgraded to a tropical storm. As a tropical -storm Hurricane Isaac passed over Hispaniola and Cuba, killing many people. It them -entered the Gulf of Mexico. Shortly before making landfall near the mouth of the -Mississippi River, Tropical Storm Isaac strengthened and became Hurricane Isaac on August -28. Isaac actually made landfall twice, briefly returning offshore after its first -landfall before returning to land. Isaac was a very slow moving storm after landfall and +local Description = [[Hurricane Isaac formed as a tropical depression east of the Lesser +Antilles on August 21 and that same day was upgraded to a tropical storm. As a tropical +storm Hurricane Isaac passed over Hispaniola and Cuba, killing many people. It them +entered the Gulf of Mexico. Shortly before making landfall near the mouth of the +Mississippi River, Tropical Storm Isaac strengthened and became Hurricane Isaac on August +28. Isaac actually made landfall twice, briefly returning offshore after its first +landfall before returning to land. Isaac was a very slow moving storm after landfall and brought significant amounts of rain to the southeastern United States]] local URL = "https://sos.noaa.gov/catalog/datasets/hurricane-isaac-2012/" @@ -34,7 +34,7 @@ local layer_radar = { -- See https://en.cppreference.com/w/cpp/io/manip/get_time for an explanation of the -- time formatting string Format = "%y%j%H%M.png" - }, + }, Description = Description } @@ -48,11 +48,11 @@ local layer_sat = { -- See https://en.cppreference.com/w/cpp/io/manip/get_time for an explanation of the -- time formatting string Format = "linear_rgb_cyl_%Y%m%d_%H%M.jpg" - }, + }, Description = Description } -asset.onInitialize(function() +asset.onInitialize(function() if not openspace.directoryExists(radarDestination) then openspace.printInfo("Extracting " .. Name .. " Radar") openspace.unzipFile(syncedDirectory .. "radar.zip", radarDestination, true) diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/iss_track.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/iss_track.asset index 395ab6618c..3dfd74ee44 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/iss_track.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/iss_track.asset @@ -3,16 +3,16 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "International Space Station Track" local Identifier = "noaa-sos-atmosphere-iss_track" -local Description = [[The first piece of the International Space Station was sent into - orbit in 1998. Following two more pieces, astronauts first entered the space station in - November of 2000. Since then, the space station has been continuously inhabited by at - least 2 people. The station is currently designed to house 3 crew members. The - International Space Station is a cooperative space research facility being constructed - cooperatively by many nations. Several space organizations had planned their own space - stations and the groups decided to merge and work together. The original space station - was a combination of NASA's Space Station Freedom, Russia's Mir-2, and the European - Space Agency's Columbus. The project now involves NASA, the Russian Space agency, RKA; - the European Space Agency, ESA; the Japanese Space agency, JAXA; and the Canadian Space +local Description = [[The first piece of the International Space Station was sent into + orbit in 1998. Following two more pieces, astronauts first entered the space station in + November of 2000. Since then, the space station has been continuously inhabited by at + least 2 people. The station is currently designed to house 3 crew members. The + International Space Station is a cooperative space research facility being constructed + cooperatively by many nations. Several space organizations had planned their own space + stations and the groups decided to merge and work together. The original space station + was a combination of NASA's Space Station Freedom, Russia's Mir-2, and the European + Space Agency's Columbus. The project now involves NASA, the Russian Space agency, RKA; + the European Space Agency, ESA; the Japanese Space agency, JAXA; and the Canadian Space agency, CSA]] local URL = "https://sos.noaa.gov/catalog/datasets/international-space-station-track/" @@ -32,7 +32,7 @@ local layer = { Description = Description } -asset.onInitialize(function() +asset.onInitialize(function() openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) end) diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/land_temp.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/land_temp.asset index 9956669b42..8cbbda2744 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/land_temp.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/land_temp.asset @@ -3,12 +3,12 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Land Surface Temperature - 1950 - 1999" local Identifier = "noaa-sos-atmosphere-land_temp" -local Description = [[The temperature of the air varies dramatically in both time and -space. Because the Earth's rotational axis is at a 23° tilt, the Northern Hemisphere and -Southern Hemisphere simultaneously experience opposite seasons. This dataset displays the -gridded, monthly, historical terrestrial air temperature from 1950 - 1999. The original -data is from the Global Historical Climatology Network, which is part of NOAA's National -Climatic Data Center. The data was interpolated by the Center for Climatic Research at +local Description = [[The temperature of the air varies dramatically in both time and +space. Because the Earth's rotational axis is at a 23° tilt, the Northern Hemisphere and +Southern Hemisphere simultaneously experience opposite seasons. This dataset displays the +gridded, monthly, historical terrestrial air temperature from 1950 - 1999. The original +data is from the Global Historical Climatology Network, which is part of NOAA's National +Climatic Data Center. The data was interpolated by the Center for Climatic Research at the University of Delaware]] local URL = "https://sos.noaa.gov/catalog/datasets/international-space-station-track/" @@ -33,11 +33,11 @@ local layer = { -- See https://en.cppreference.com/w/cpp/io/manip/get_time for an explanation of the -- time formatting string Format = "cyl_%Y_%m.jpg" - }, + }, Description = Description } -asset.onInitialize(function() +asset.onInitialize(function() if not openspace.directoryExists(imagesDestination) then openspace.printInfo("Extracting " .. Name) openspace.unzipFile(syncedDirectory .. "4096.zip", imagesDestination, true) diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/lightning.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/lightning.asset index 3f7686e5f6..a211e91d4b 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/lightning.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/lightning.asset @@ -3,13 +3,13 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Lightning Flash Rate" local Identifier = "noaa-sos-atmosphere-lightning" -local Description = [[Typically, more than 2,000 thunderstorms are active throughout the -world at a given moment, producing on the order of 100 flashes per second. NASA has two -different sensors on satellites that measuring flash frequency, the Optical Transient -Detector, OTD, and the Lightning Imaging Sensor, LIS. Data from the OTD from 1995 - 2000 -and the LIS from 1998 - 2005 has been combined and averaged to create an average annual -lightning flash rate map. 11 year of data is included to remove any anomalies that might -be present in just one year. The color variations in the map display the average annual +local Description = [[Typically, more than 2,000 thunderstorms are active throughout the +world at a given moment, producing on the order of 100 flashes per second. NASA has two +different sensors on satellites that measuring flash frequency, the Optical Transient +Detector, OTD, and the Lightning Imaging Sensor, LIS. Data from the OTD from 1995 - 2000 +and the LIS from 1998 - 2005 has been combined and averaged to create an average annual +lightning flash rate map. 11 year of data is included to remove any anomalies that might +be present in just one year. The color variations in the map display the average annual number of lightning flashes per square kilometer]] local URL = "https://sos.noaa.gov/catalog/datasets/lightning-flash-rate/" @@ -40,9 +40,9 @@ local colorbar = { CartesianPosition = { 0.75, 0.0, -2.0 } } -asset.onInitialize(function() +asset.onInitialize(function() openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) - openspace.addScreenSpaceRenderable(colorbar); + openspace.addScreenSpaceRenderable(colorbar) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/ltg_vaisala.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/ltg_vaisala.asset index ce4efda86e..600921d83b 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/ltg_vaisala.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/ltg_vaisala.asset @@ -3,17 +3,17 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Lightning Detection - Jun 2011 - Aug 2012" local Identifier = "noaa-sos-atmosphere-ltg_vaisala" -local Description = [[The Global Lightning Dataset GLD360 network detects between 1 and -3 million lightning events around the world every day of the year. Lightning activity is -not uniformly distributed across the globe. About ten times as many flashes occur over -land than over the oceans, and the majority of global lightning is concentrated in the -tropics. Over the course of a year, highest flash rate regions follow the inclination of -the sun. The northern hemisphere sees more activity during June through August; the -southern hemisphere has higher flash rates in January through March. These seasonal -patterns can be clearly seen in these images, which show the total number of events -detected in each month per square kilometer. The color scale ranges from less than .01 -lightning pulses per square kilometer in the corresponding month to over 20 pulses per -square kilometer. Each color range corresponds to a factor of two of increase in the +local Description = [[The Global Lightning Dataset GLD360 network detects between 1 and +3 million lightning events around the world every day of the year. Lightning activity is +not uniformly distributed across the globe. About ten times as many flashes occur over +land than over the oceans, and the majority of global lightning is concentrated in the +tropics. Over the course of a year, highest flash rate regions follow the inclination of +the sun. The northern hemisphere sees more activity during June through August; the +southern hemisphere has higher flash rates in January through March. These seasonal +patterns can be clearly seen in these images, which show the total number of events +detected in each month per square kilometer. The color scale ranges from less than .01 +lightning pulses per square kilometer in the corresponding month to over 20 pulses per +square kilometer. Each color range corresponds to a factor of two of increase in the number of events. This dataset runs from June 2011 through August 2012]] local URL = "c" @@ -38,7 +38,7 @@ local layer = { -- See https://en.cppreference.com/w/cpp/io/manip/get_time for an explanation of the -- time formatting string Format = "%Y_%m-1.png" - }, + }, Description = Description } @@ -53,14 +53,14 @@ local colorbar = { CartesianPosition = { 0.75, 0.0, -2.0 } } -asset.onInitialize(function() +asset.onInitialize(function() if not openspace.directoryExists(imagesDestination) then openspace.printInfo("Extracting " .. Name) openspace.unzipFile(syncedDirectory .. "2160.zip", imagesDestination, true) end openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) - openspace.addScreenSpaceRenderable(colorbar); + openspace.addScreenSpaceRenderable(colorbar) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/nasa_sats.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/nasa_sats.asset index 12daaac3f5..dab84eb9cc 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/nasa_sats.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/nasa_sats.asset @@ -3,16 +3,16 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Polar Orbiting: NASA A-Train Satellites" local Identifier = "noaa-sos-atmosphere-nasa_sats" -local Description = [[In order to enable coordinated science observations, the Earth -Observations System has created the A-Train. When finally completed in 2008, the A-Train -will consist of 6 polar-orbiting satellites that travel just minutes apart in a line. -Four of the satellites are NASA satellites, one is a French Centre National d'Etudes -Spatiales (CNES) satellite, and the other is a joint satellite between NASA and CNES. The -satellites have low polar orbits 438 miles (705 km) above Earth at an inclination of 98 -degrees. Together, their overlapping science instruments give a comprehensive picture of -Earth weather and climate. The "A" in the A-Train is for "afternoon" because the lead -satellite, Aqua, crosses the equator at the mean local time of approximately 1:30pm. Five -of the satellites are currently in orbit, and the sixth satellite is scheduled to be +local Description = [[In order to enable coordinated science observations, the Earth +Observations System has created the A-Train. When finally completed in 2008, the A-Train +will consist of 6 polar-orbiting satellites that travel just minutes apart in a line. +Four of the satellites are NASA satellites, one is a French Centre National d'Etudes +Spatiales (CNES) satellite, and the other is a joint satellite between NASA and CNES. The +satellites have low polar orbits 438 miles (705 km) above Earth at an inclination of 98 +degrees. Together, their overlapping science instruments give a comprehensive picture of +Earth weather and climate. The "A" in the A-Train is for "afternoon" because the lead +satellite, Aqua, crosses the equator at the mean local time of approximately 1:30pm. Five +of the satellites are currently in orbit, and the sixth satellite is scheduled to be launched in 2008]] local URL = "https://sos.noaa.gov/catalog/datasets/polar-orbiting-nasa-a-train-satellites/" @@ -34,7 +34,7 @@ local layer = { Description = Description } -asset.onInitialize(function() +asset.onInitialize(function() if not openspace.directoryExists(imagesDestination) then openspace.printInfo("Extracting " .. Name) openspace.unzipFile(syncedDirectory .. "2048.zip", imagesDestination, true) diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/nccs_models-carbon.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/nccs_models-carbon.asset index af74d63c6b..efdf5da97f 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/nccs_models-carbon.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/nccs_models-carbon.asset @@ -3,12 +3,12 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Carbon Dioxide Concentration: GEOS-5 Model" local Identifier = "noaa-sos-atmosphere-nccs_models-carbon" -local Description = [[Models create a dynamic portrait of the Earth through numerical -experiments that simulate our current knowledge of the dynamical and physical processes -governing weather and climate variability. This new simulation of carbon dioxide in -Earth's atmosphere provides an ultra-high-resolution look at how the key greenhouse gas -moves around the globe and fluctuates in volume throughout the year. These three close-up -views show how local geography affects the transport of carbon dioxide in the +local Description = [[Models create a dynamic portrait of the Earth through numerical +experiments that simulate our current knowledge of the dynamical and physical processes +governing weather and climate variability. This new simulation of carbon dioxide in +Earth's atmosphere provides an ultra-high-resolution look at how the key greenhouse gas +moves around the globe and fluctuates in volume throughout the year. These three close-up +views show how local geography affects the transport of carbon dioxide in the atmosphere]] local URL = "https://sos.noaa.gov/catalog/datasets/carbon-dioxide-concentration-geos-5-model/" @@ -42,14 +42,14 @@ local colorbar = { CartesianPosition = { 0.0, -0.5, -2.0 } } -asset.onInitialize(function() +asset.onInitialize(function() if not openspace.directoryExists(imagesDestination) then openspace.printInfo("Extracting " .. Name) openspace.unzipFile(syncedDirectory .. "2048.zip", imagesDestination, true) end openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) - openspace.addScreenSpaceRenderable(colorbar); + openspace.addScreenSpaceRenderable(colorbar) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/nccs_models-chem.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/nccs_models-chem.asset index ba955824a1..cf60320943 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/nccs_models-chem.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/nccs_models-chem.asset @@ -3,12 +3,12 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Atmospheric Chemistry: GEOS-5 Model" local Identifier = "noaa-sos-atmosphere-nccs_models-chem" -local Description = [[Models create a dynamic portrait of the Earth through numerical -experiments that simulate our current knowledge of the dynamical and physical processes -governing weather and climate variability. The simulation visualized here captures how -winds lift up aerosols from the Earth's surface and transport them around the globe -during the period September 1, 2006 to March 17, 2007. Such simulations allow scientists -to identify the sources and pathways of these tiny particulates that influence weather +local Description = [[Models create a dynamic portrait of the Earth through numerical +experiments that simulate our current knowledge of the dynamical and physical processes +governing weather and climate variability. The simulation visualized here captures how +winds lift up aerosols from the Earth's surface and transport them around the globe +during the period September 1, 2006 to March 17, 2007. Such simulations allow scientists +to identify the sources and pathways of these tiny particulates that influence weather and climate]] local URL = "https://sos.noaa.gov/catalog/datasets/atmospheric-chemistry-geos-5-model/" @@ -33,7 +33,7 @@ local layer = { -- See https://en.cppreference.com/w/cpp/io/manip/get_time for an explanation of the -- time formatting string Format = "chem_%Y-%m-%d_%H-%M.png" - }, + }, Description = Description } @@ -47,7 +47,7 @@ local legend = { CartesianPosition = { 0.0, -0.5, -2.0 } } -asset.onInitialize(function() +asset.onInitialize(function() if not openspace.directoryExists(imagesDestination) then openspace.printInfo("Extracting " .. Name) openspace.unzipFile(syncedDirectory .. "4000-1.zip", imagesDestination, true) @@ -79,7 +79,7 @@ asset.onInitialize(function() end openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) - openspace.addScreenSpaceRenderable(legend); + openspace.addScreenSpaceRenderable(legend) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/nccs_models-winds.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/nccs_models-winds.asset index 5ccd8ba66d..dae59b5af0 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/nccs_models-winds.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/nccs_models-winds.asset @@ -3,12 +3,12 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Winds: GEOS-5 Model" local Identifier = "noaa-sos-atmosphere-nccs_models-winds" -local Description = [[Models create a dynamic portrait of the Earth through numerical -experiments that simulate our current knowledge of the dynamical and physical processes -governing weather and climate variability. The simulation visualized here captures the -speed of winds at the tropopause, about 6-9 miles above the Earth's surface during the -period September 1, 2006 to March 17, 2007. Such simulations allow scientists to view the -intensity and turbulence of the polar and sub-tropic jet streams, which carry weather +local Description = [[Models create a dynamic portrait of the Earth through numerical +experiments that simulate our current knowledge of the dynamical and physical processes +governing weather and climate variability. The simulation visualized here captures the +speed of winds at the tropopause, about 6-9 miles above the Earth's surface during the +period September 1, 2006 to March 17, 2007. Such simulations allow scientists to view the +intensity and turbulence of the polar and sub-tropic jet streams, which carry weather around the globe. Red, orange and yellow are used for the fastest moving air]] local URL = "https://sos.noaa.gov/catalog/datasets/winds-geos-5-model/" @@ -33,11 +33,11 @@ local layer = { -- See https://en.cppreference.com/w/cpp/io/manip/get_time for an explanation of the -- time formatting string Format = "winds_%Y-%m-%d_%H-%M.png" - }, + }, Description = Description } -asset.onInitialize(function() +asset.onInitialize(function() if not openspace.directoryExists(imagesDestination) then openspace.printInfo("Extracting " .. Name) openspace.unzipFile(syncedDirectory .. "4000-1.zip", imagesDestination, true) diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/no2_omsi.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/no2_omsi.asset index 4b8031fa63..41b267cacc 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/no2_omsi.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/no2_omsi.asset @@ -3,7 +3,7 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Nitrogen Dioxide" local Identifier = "noaa-sos-atmosphere-no2_omsi" -local Description = [[Nitrogen dioxide (NO2) is a key component of urban air pollution. +local Description = [[Nitrogen dioxide (NO2) is a key component of urban air pollution. The nitrogen oxides ("NOx" of which NO2 is one component) are emitted from any combustion process. Coal- and gas-fired power plants and vehicles constitute the major anthropogenic (human-produced) sources. Forest fires and lightning are natural sources @@ -34,7 +34,7 @@ local layer = { -- See https://en.cppreference.com/w/cpp/io/manip/get_time for an explanation of the -- time formatting string Format = "NO2monthlymean_%Y%m.png" - }, + }, Description = Description } @@ -48,14 +48,14 @@ local colorbar = { CartesianPosition = { 0.0, -0.5, -2.0 } } -asset.onInitialize(function() +asset.onInitialize(function() if not openspace.directoryExists(imagesDestination) then openspace.printInfo("Extracting " .. Name) openspace.unzipFile(syncedDirectory .. "2880.zip", imagesDestination, true) end openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) - openspace.addScreenSpaceRenderable(colorbar); + openspace.addScreenSpaceRenderable(colorbar) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/noaa_sat-tracks.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/noaa_sat-tracks.asset index 97c800daf7..f09a483f8f 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/noaa_sat-tracks.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/noaa_sat-tracks.asset @@ -3,17 +3,17 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Polar Orbiting: NOAA Satellite Tracks" local Identifier = "noaa-sos-atmosphere-noaa_sat-tracks" -local Description = [[NOAA has four POES, Polar Operational Environmental Satellites, -currently in orbit. The satellites are named chronologically, based on launch date. NOAA -15 was launched in 1998, NOAA 16 was launched in 2000, NOAA 17 was launched in 2002 and -NOAA 18 was launched in 2005. In May and August of 2007 two older satellites, NOAA 14 and -NOAA 12 respectively, were decommissioned. These satellites orbit the Earth in such a way -that they pass over the poles. Each orbit takes approximately 102.1 minutes, allowing the -satellites to circle the Earth about 14.1 times each day. The polar orbit enables the -satellites to collect daily global data for land, ocean, and atmospheric applications. -This data is used a large variety of environmental monitoring applications such as -weather analysis and forecasting, climate research and prediction, global sea surface -temperature measurements, ocean dynamics research, global vegetation analysis and many +local Description = [[NOAA has four POES, Polar Operational Environmental Satellites, +currently in orbit. The satellites are named chronologically, based on launch date. NOAA +15 was launched in 1998, NOAA 16 was launched in 2000, NOAA 17 was launched in 2002 and +NOAA 18 was launched in 2005. In May and August of 2007 two older satellites, NOAA 14 and +NOAA 12 respectively, were decommissioned. These satellites orbit the Earth in such a way +that they pass over the poles. Each orbit takes approximately 102.1 minutes, allowing the +satellites to circle the Earth about 14.1 times each day. The polar orbit enables the +satellites to collect daily global data for land, ocean, and atmospheric applications. +This data is used a large variety of environmental monitoring applications such as +weather analysis and forecasting, climate research and prediction, global sea surface +temperature measurements, ocean dynamics research, global vegetation analysis and many other applications]] local URL = "https://sos.noaa.gov/catalog/datasets/polar-orbiting-noaa-satellite-tracks/" @@ -33,7 +33,7 @@ local layer = { Description = Description } -asset.onInitialize(function() +asset.onInitialize(function() openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) end) diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/pclim.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/pclim.asset index cd3fcc39e3..f9e19f22e8 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/pclim.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/pclim.asset @@ -3,10 +3,10 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Temperature Anomaly: Yearly - 500 - 2006 (Paleoclimate Evidence)" local Identifier = "noaa-sos-atmosphere-pclim" -local Description = [[This animation shows annual average temperature anomalies -(departure from normal) over the globe for the past 1,500 years compared to the average -temperature (normal) from 1961-1990. This data collected from over 1,000 paleoclimate -proxies. Areas shaded red are warmer than normal while areas shaded blue are cooler than +local Description = [[This animation shows annual average temperature anomalies +(departure from normal) over the globe for the past 1,500 years compared to the average +temperature (normal) from 1961-1990. This data collected from over 1,000 paleoclimate +proxies. Areas shaded red are warmer than normal while areas shaded blue are cooler than normal]] local URL = "https://sos.noaa.gov/catalog/datasets/temperature-anomaly-yearly-500-2006-paleoclimate-evidence/" @@ -39,14 +39,14 @@ local colorbar = { CartesianPosition = { 0.0, -0.5, -2.0 } } -asset.onInitialize(function() +asset.onInitialize(function() if not openspace.directoryExists(imagesDestination) then openspace.printInfo("Extracting " .. Name) openspace.unzipFile(syncedDirectory .. "raw.zip", imagesDestination, true) end openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) - openspace.addScreenSpaceRenderable(colorbar); + openspace.addScreenSpaceRenderable(colorbar) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/poes_sat.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/poes_sat.asset index f61ee80152..aeac12056c 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/poes_sat.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/poes_sat.asset @@ -3,13 +3,13 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Polar Orbiting: NOAA-17 Satellite Coverage" local Identifier = "noaa-sos-atmosphere-poes_sat" -local Description = [[Satellites allow scientists to observe the Earth from above the -atmosphere. The National Oceanic and Atmospheric Administration, NOAA, has several -different types of satellites, including geostationary and polar orbiting satellites. -These datasets show the path of Polar-orbiting Operational Environmental Satellites, or -POES for short. NOAA has two POES in operation currently, a morning and afternoon -satellite. The morning satellite crosses the equator on the sun-light side of the Earth -in the morning, and the afternoon satellite crosses in the afternoon. Both satellites +local Description = [[Satellites allow scientists to observe the Earth from above the +atmosphere. The National Oceanic and Atmospheric Administration, NOAA, has several +different types of satellites, including geostationary and polar orbiting satellites. +These datasets show the path of Polar-orbiting Operational Environmental Satellites, or +POES for short. NOAA has two POES in operation currently, a morning and afternoon +satellite. The morning satellite crosses the equator on the sun-light side of the Earth +in the morning, and the afternoon satellite crosses in the afternoon. Both satellites orbit the Earth 14.1 times per day]] local URL = "https://sos.noaa.gov/catalog/datasets/polar-orbiting-noaa-17-satellite-coverage/" @@ -34,11 +34,11 @@ local layer = { -- See https://en.cppreference.com/w/cpp/io/manip/get_time for an explanation of the -- time formatting string Format = "poes_cover_%Y%j%H%M.jpg" - }, + }, Description = Description } -asset.onInitialize(function() +asset.onInitialize(function() if not openspace.directoryExists(imagesDestination) then openspace.printInfo("Extracting " .. Name) openspace.unzipFile(syncedDirectory .. "2048.zip", imagesDestination, true) diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/reanalysis-antarctic.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/reanalysis-antarctic.asset index 78945b5a90..133d6e668d 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/reanalysis-antarctic.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/reanalysis-antarctic.asset @@ -3,24 +3,24 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Precipitable Water - Antarctic Expedition - 1902 - 1903" local Identifier = "noaa-sos-atmosphere-reanalysis-antarctic" -local Description = [[Until 2010, the longest globally-complete estimate of the -four-dimensional atmospheric circulation was from a dataset produced jointly by NOAA's -National Centers for Environmental Prediction and the National Center for Atmospheric -Research: the NCEP-NCAR Reanalysis. This dataset of computer-generated weather map -reconstructions or "reanalyses" starts from 1948, leaving many important climate events -such as 1930's Dust Bowl drought uncovered. To expand the coverage of global gridded -reanalyses, the 20th Century Reanalysis Project is an effort led by NOAA's Earth System -Research Laboratory Physical Sciences Division and the University of Colorado CIRES -Climate Diagnostics Center to produce a reanalysis dataset spanning the entire twentieth -century, assimilating only surface observations of synoptic pressure, monthly sea surface -temperature and sea ice distribution. The pressure observations have been assembled -through international cooperation under the auspices of the Atmospheric Circulation -Reconstructions over the Earth initiative, ACRE, and working groups of the Global Climate -Observing System and World Climate Research Program. The Project uses a -recently-developed Ensemble Filter data assimilation method which directly yields each -six-hourly reanalysis field or weather map as the most likely state of the global -atmosphere, and also estimates uncertainty in that map. This dataset will provide the -first estimates of global tropospheric variability spanning 1871 to present at six-hourly +local Description = [[Until 2010, the longest globally-complete estimate of the +four-dimensional atmospheric circulation was from a dataset produced jointly by NOAA's +National Centers for Environmental Prediction and the National Center for Atmospheric +Research: the NCEP-NCAR Reanalysis. This dataset of computer-generated weather map +reconstructions or "reanalyses" starts from 1948, leaving many important climate events +such as 1930's Dust Bowl drought uncovered. To expand the coverage of global gridded +reanalyses, the 20th Century Reanalysis Project is an effort led by NOAA's Earth System +Research Laboratory Physical Sciences Division and the University of Colorado CIRES +Climate Diagnostics Center to produce a reanalysis dataset spanning the entire twentieth +century, assimilating only surface observations of synoptic pressure, monthly sea surface +temperature and sea ice distribution. The pressure observations have been assembled +through international cooperation under the auspices of the Atmospheric Circulation +Reconstructions over the Earth initiative, ACRE, and working groups of the Global Climate +Observing System and World Climate Research Program. The Project uses a +recently-developed Ensemble Filter data assimilation method which directly yields each +six-hourly reanalysis field or weather map as the most likely state of the global +atmosphere, and also estimates uncertainty in that map. This dataset will provide the +first estimates of global tropospheric variability spanning 1871 to present at six-hourly temporal resolution and 2 degree longitude by 2 degree latitude resolution]] local URL = "https://sos.noaa.gov/catalog/datasets/precipitable-water-antarctic-expedition-1902-1903/" @@ -54,14 +54,14 @@ local colorbar = { CartesianPosition = { 0.0, -0.5, -2.0 } } -asset.onInitialize(function() +asset.onInitialize(function() if not openspace.directoryExists(imagesDestination) then openspace.printInfo("Extracting " .. Name) openspace.unzipFile(syncedDirectory .. "2048.zip", imagesDestination, true) end openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) - openspace.addScreenSpaceRenderable(colorbar); + openspace.addScreenSpaceRenderable(colorbar) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/reanalysis-elnino.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/reanalysis-elnino.asset index 3e69e48467..ecbcd2b59b 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/reanalysis-elnino.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/reanalysis-elnino.asset @@ -3,24 +3,24 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Precipitable Water - El Nino - 1917 - 1919" local Identifier = "noaa-sos-atmosphere-reanalysis-elnino" -local Description = [[Until 2010, the longest globally-complete estimate of the -four-dimensional atmospheric circulation was from a dataset produced jointly by NOAA's -National Centers for Environmental Prediction and the National Center for Atmospheric -Research: the NCEP-NCAR Reanalysis. This dataset of computer-generated weather map -reconstructions or "reanalyses" starts from 1948, leaving many important climate events -such as 1930's Dust Bowl drought uncovered. To expand the coverage of global gridded -reanalyses, the 20th Century Reanalysis Project is an effort led by NOAA's Earth System -Research Laboratory Physical Sciences Division and the University of Colorado CIRES -Climate Diagnostics Center to produce a reanalysis dataset spanning the entire twentieth -century, assimilating only surface observations of synoptic pressure, monthly sea surface -temperature and sea ice distribution. The pressure observations have been assembled -through international cooperation under the auspices of the Atmospheric Circulation -Reconstructions over the Earth initiative, ACRE, and working groups of the Global Climate -Observing System and World Climate Research Program. The Project uses a -recently-developed Ensemble Filter data assimilation method which directly yields each -six-hourly reanalysis field or weather map as the most likely state of the global -atmosphere, and also estimates uncertainty in that map. This dataset will provide the -first estimates of global tropospheric variability spanning 1871 to present at six-hourly +local Description = [[Until 2010, the longest globally-complete estimate of the +four-dimensional atmospheric circulation was from a dataset produced jointly by NOAA's +National Centers for Environmental Prediction and the National Center for Atmospheric +Research: the NCEP-NCAR Reanalysis. This dataset of computer-generated weather map +reconstructions or "reanalyses" starts from 1948, leaving many important climate events +such as 1930's Dust Bowl drought uncovered. To expand the coverage of global gridded +reanalyses, the 20th Century Reanalysis Project is an effort led by NOAA's Earth System +Research Laboratory Physical Sciences Division and the University of Colorado CIRES +Climate Diagnostics Center to produce a reanalysis dataset spanning the entire twentieth +century, assimilating only surface observations of synoptic pressure, monthly sea surface +temperature and sea ice distribution. The pressure observations have been assembled +through international cooperation under the auspices of the Atmospheric Circulation +Reconstructions over the Earth initiative, ACRE, and working groups of the Global Climate +Observing System and World Climate Research Program. The Project uses a +recently-developed Ensemble Filter data assimilation method which directly yields each +six-hourly reanalysis field or weather map as the most likely state of the global +atmosphere, and also estimates uncertainty in that map. This dataset will provide the +first estimates of global tropospheric variability spanning 1871 to present at six-hourly temporal resolution and 2 degree longitude by 2 degree latitude resolution]] local URL = "https://sos.noaa.gov/catalog/datasets/precipitable-water-el-nino-1917-1919/" @@ -54,14 +54,14 @@ local colorbar = { CartesianPosition = { 0.0, -0.5, -2.0 } } -asset.onInitialize(function() +asset.onInitialize(function() if not openspace.directoryExists(imagesDestination) then openspace.printInfo("Extracting " .. Name) openspace.unzipFile(syncedDirectory .. "2048.zip", imagesDestination, true) end openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) - openspace.addScreenSpaceRenderable(colorbar); + openspace.addScreenSpaceRenderable(colorbar) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/reanalysis-hurricane.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/reanalysis-hurricane.asset index 49dc4c7579..c28b4e7658 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/reanalysis-hurricane.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/reanalysis-hurricane.asset @@ -3,24 +3,24 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Precipitable Water - Galveston Hurricane - 1900" local Identifier = "noaa-sos-atmosphere-reanalysis-hurricane" -local Description = [[Until 2010, the longest globally-complete estimate of the - four-dimensional atmospheric circulation was from a dataset produced jointly by NOAA's - National Centers for Environmental Prediction and the National Center for Atmospheric - Research: the NCEP-NCAR Reanalysis. This dataset of computer-generated weather map - reconstructions or "reanalyses" starts from 1948, leaving many important climate events - such as 1930's Dust Bowl drought uncovered. To expand the coverage of global gridded - reanalyses, the 20th Century Reanalysis Project is an effort led by NOAA's Earth System - Research Laboratory Physical Sciences Division and the University of Colorado CIRES - Climate Diagnostics Center to produce a reanalysis dataset spanning the entire twentieth +local Description = [[Until 2010, the longest globally-complete estimate of the + four-dimensional atmospheric circulation was from a dataset produced jointly by NOAA's + National Centers for Environmental Prediction and the National Center for Atmospheric + Research: the NCEP-NCAR Reanalysis. This dataset of computer-generated weather map + reconstructions or "reanalyses" starts from 1948, leaving many important climate events + such as 1930's Dust Bowl drought uncovered. To expand the coverage of global gridded + reanalyses, the 20th Century Reanalysis Project is an effort led by NOAA's Earth System + Research Laboratory Physical Sciences Division and the University of Colorado CIRES + Climate Diagnostics Center to produce a reanalysis dataset spanning the entire twentieth century, assimilating only surface observations of synoptic pressure, monthly sea surface temperature and sea ice distribution. The pressure observations have been assembled through international cooperation under the auspices of the Atmospheric Circulation Reconstructions over the Earth initiative, ACRE, and working groups of the - Global Climate Observing System and World Climate Research Program. The Project uses a - recently-developed Ensemble Filter data assimilation method which directly yields each - six-hourly reanalysis field or weather map as the most likely state of the global - atmosphere, and also estimates uncertainty in that map. This dataset will provide the - first estimates of global tropospheric variability spanning 1871 to present at six-hourly + Global Climate Observing System and World Climate Research Program. The Project uses a + recently-developed Ensemble Filter data assimilation method which directly yields each + six-hourly reanalysis field or weather map as the most likely state of the global + atmosphere, and also estimates uncertainty in that map. This dataset will provide the + first estimates of global tropospheric variability spanning 1871 to present at six-hourly temporal resolution and 2 degree longitude by 2 degree latitude resolution]] local URL = "https://sos.noaa.gov/catalog/datasets/precipitable-water-galveston-hurricane-1900/" @@ -54,14 +54,14 @@ local colorbar = { CartesianPosition = { 0.0, -0.5, -2.0 } } -asset.onInitialize(function() +asset.onInitialize(function() if not openspace.directoryExists(imagesDestination) then openspace.printInfo("Extracting " .. Name) openspace.unzipFile(syncedDirectory .. "2048_png.zip", imagesDestination, true) end openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) - openspace.addScreenSpaceRenderable(colorbar); + openspace.addScreenSpaceRenderable(colorbar) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/sandy.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/sandy.asset index bbafe02926..2a82899eac 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/sandy.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/sandy.asset @@ -3,8 +3,8 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Hurricane Sandy: Linear IR - Oct. 2012" local Identifier = "noaa-sos-atmosphere-sandy" -local Description = [[Hurricane Sandy was a memorable and disastrous storm that hit the - Caribbean islands and the Mid-Atlantic States in October of 2012.It was the second +local Description = [[Hurricane Sandy was a memorable and disastrous storm that hit the + Caribbean islands and the Mid-Atlantic States in October of 2012.It was the second costliest storm in U.S. history, after Hurricane Katrina]] local URL = "https://sos.noaa.gov/catalog/datasets/precipitable-water-galveston-hurricane-1900/" diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/sunsync_sat.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/sunsync_sat.asset index 695680d2c3..ab563ae299 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/sunsync_sat.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/sunsync_sat.asset @@ -3,13 +3,13 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Polar Orbiting: NOAA-17 and NOAA-18" local Identifier = "noaa-sos-atmosphere-sunsync_sat" -local Description = [[Satellites allow scientists to observe the Earth from above the -atmosphere. The National Oceanic and Atmospheric Administration, NOAA, has several -different types of satellites, including geostationary and polar orbiting satellites. -These datasets show the path of Polar-orbiting Operational Environmental Satellites, or -POES for short. NOAA has two POES in operation currently, a morning and afternoon -satellite. The morning satellite crosses the equator on the sun-light side of the Earth -in the morning, and the afternoon satellite crosses in the afternoon. Both satellites +local Description = [[Satellites allow scientists to observe the Earth from above the +atmosphere. The National Oceanic and Atmospheric Administration, NOAA, has several +different types of satellites, including geostationary and polar orbiting satellites. +These datasets show the path of Polar-orbiting Operational Environmental Satellites, or +POES for short. NOAA has two POES in operation currently, a morning and afternoon +satellite. The morning satellite crosses the equator on the sun-light side of the Earth +in the morning, and the afternoon satellite crosses in the afternoon. Both satellites orbit the Earth 14.1 times per day]] local URL = "https://sos.noaa.gov/catalog/datasets/polar-orbiting-noaa-17-and-noaa-18/" diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/temp_anom.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/temp_anom.asset index 45e0081c5b..66427a29ff 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/temp_anom.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/temp_anom.asset @@ -3,16 +3,16 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Temperature Anomaly: Yearly (NOAA) - 1880 - Present" local Identifier = "noaa-sos-atmosphere-temp_anom" -local Description = [[This animation shows Earth's surface temperature from 1880 through -2019 compared to the 20th century average. Maps are based on data from NOAA's National -Climatic Data Center. In 2016, the combined land and ocean surface temperature was 1.69°F -(0.94°C) above the 20th century average, making the year the warmest since records began -in 1880. This is the third consecutive year a new global annual temperature record has -been set. The first eight months of 2016 set monthly temperatures records and the last -four months were ranked among the top five for each month's temperature records. To date, -all 16 years of the 21st century rank among the seventeen warmest on record (1998 is -currently the eighth warmest.) The five warmest years have all occurred since 2010. 2017 -was the third warmest, slightly cooler than the previous two. 2018 was the fourth +local Description = [[This animation shows Earth's surface temperature from 1880 through +2019 compared to the 20th century average. Maps are based on data from NOAA's National +Climatic Data Center. In 2016, the combined land and ocean surface temperature was 1.69°F +(0.94°C) above the 20th century average, making the year the warmest since records began +in 1880. This is the third consecutive year a new global annual temperature record has +been set. The first eight months of 2016 set monthly temperatures records and the last +four months were ranked among the top five for each month's temperature records. To date, +all 16 years of the 21st century rank among the seventeen warmest on record (1998 is +currently the eighth warmest.) The five warmest years have all occurred since 2010. 2017 +was the third warmest, slightly cooler than the previous two. 2018 was the fourth warmest]] local URL = "https://sos.noaa.gov/catalog/datasets/temperature-anomaly-yearly-noaa-1880-present/" @@ -59,7 +59,7 @@ asset.onInitialize(function() end openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) - openspace.addScreenSpaceRenderable(colorbar); + openspace.addScreenSpaceRenderable(colorbar) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/tropical_widening.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/tropical_widening.asset index 009612c011..148148c208 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/tropical_widening.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/tropical_widening.asset @@ -3,7 +3,7 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Tropical Widening" local Identifier = "noaa-sos-atmosphere-tropical_widening" -local Description = [[This dataset was developed as part of the EarthNow project, and +local Description = [[This dataset was developed as part of the EarthNow project, and shows the changes in the tropical zone boundaries over the last three decades]] local URL = "https://sos.noaa.gov/catalog/datasets/tropical-widening/" @@ -34,9 +34,9 @@ local colorbar = { CartesianPosition = { 0.0, -0.3, -2.0 } } -asset.onInitialize(function() +asset.onInitialize(function() openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) - openspace.addScreenSpaceRenderable(colorbar); + openspace.addScreenSpaceRenderable(colorbar) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/typhoon_haiyan-wvsst.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/typhoon_haiyan-wvsst.asset index fe9bd93b9d..5b2e6097ef 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/typhoon_haiyan-wvsst.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/typhoon_haiyan-wvsst.asset @@ -3,10 +3,10 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Typhoon Haiyan: Water Vapor and SST - Oct - Nov 2013" local Identifier = "noaa-sos-atmosphere-typhoon_haiyan-wvsst" -local Description = [[Typhoon Haiyan, also known in the Phillippines as Typhoon Yolanda, -may be the strongest recorded tropical cyclone to make landfall with sustained speeds up -to 195 mph. If confirmed, it would beat the previous record holder, Hurricane Camille -(1969). This dataset is taken from the Real-Time Linear IR satellite dataset and +local Description = [[Typhoon Haiyan, also known in the Phillippines as Typhoon Yolanda, +may be the strongest recorded tropical cyclone to make landfall with sustained speeds up +to 195 mph. If confirmed, it would beat the previous record holder, Hurricane Camille +(1969). This dataset is taken from the Real-Time Linear IR satellite dataset and Real-time: SST from October 30th to November 12th, 2013]] local URL = "https://sos.noaa.gov/catalog/datasets/typhoon-haiyan-water-vapor-and-sst-oct-nov-2013/" diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/typhoon_haiyan.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/typhoon_haiyan.asset index c245506c70..6f86b1b3ff 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/typhoon_haiyan.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/typhoon_haiyan.asset @@ -3,10 +3,10 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Typhoon Haiyan - Oct - Nov 2013" local Identifier = "noaa-sos-atmosphere-typhoon_haiyan" -local Description = [[Typhoon Haiyan, also known in the Phillippines as Typhoon Yolanda, -may be the strongest recorded tropical cyclone to make landfall with sustained speeds up -to 195 mph. If confirmed, it would beat the previous record holder, Hurricane Camille -(1969). This dataset is taken from the Real-Time Linear IR satellite dataset from October +local Description = [[Typhoon Haiyan, also known in the Phillippines as Typhoon Yolanda, +may be the strongest recorded tropical cyclone to make landfall with sustained speeds up +to 195 mph. If confirmed, it would beat the previous record holder, Hurricane Camille +(1969). This dataset is taken from the Real-Time Linear IR satellite dataset from October 30th to November 12th, 2013]] local URL = "https://sos.noaa.gov/catalog/datasets/typhoon-haiyan-oct-nov-2013/" diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/volcano_ash.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/volcano_ash.asset index ad2d7b716d..fe1bb42efe 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/volcano_ash.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/atmosphere/volcano_ash.asset @@ -3,16 +3,16 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Volcanic Ash Eruption: Iceland" local Identifier = "noaa-sos-atmosphere-volcano_ash" -local Description = [[Eyjafjallajokull, a glacier covered volcano in southern Iceland, -erupted explosively on April 14, 2010. The name Eyjafjallajokull is Icelandic for -island-mountain glacier. The volcano initially erupted on March 20, but this original -eruption was much smaller and only caused a brief evacuation of the local area. The April -14 event was 10 to 20 times more powerful and had international impacts. Locally, the -eruption and resulting lava melted the surrounding glacier, causing major flooding. -Internationally, air traffic was impacted for several days following the eruption. The -volcano ejected ash over 30,000ft into the atmosphere, causing significant disruptions to -the European and Trans-Atlantic air travel. Airspace over much of northern Europe was -closed from April 15 through April 23 for concerns over the abrasive volcanic ash causing +local Description = [[Eyjafjallajokull, a glacier covered volcano in southern Iceland, +erupted explosively on April 14, 2010. The name Eyjafjallajokull is Icelandic for +island-mountain glacier. The volcano initially erupted on March 20, but this original +eruption was much smaller and only caused a brief evacuation of the local area. The April +14 event was 10 to 20 times more powerful and had international impacts. Locally, the +eruption and resulting lava melted the surrounding glacier, causing major flooding. +Internationally, air traffic was impacted for several days following the eruption. The +volcano ejected ash over 30,000ft into the atmosphere, causing significant disruptions to +the European and Trans-Atlantic air travel. Airspace over much of northern Europe was +closed from April 15 through April 23 for concerns over the abrasive volcanic ash causing engine failures]] local URL = "https://sos.noaa.gov/catalog/datasets/volcanic-ash-eruption-iceland/" diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/agriculture-cropland.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/agriculture-cropland.asset index 4d91349286..b9beabdfe0 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/agriculture-cropland.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/agriculture-cropland.asset @@ -3,12 +3,12 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "NOAA Science on a Sphere. Agriculture: Cropland Intensity" local Identifier = "noaa-sos-land-agriculture-cropland" -local Description = [[These visualizations, created by the University of Minnesota's -Institute on the Environment, show the global land use intensity for pastureland and -cropland. Cropland is land devoted to growing plants for humans use for food, material, -or fuel. Pastureland is land used for raising and grazing animals. Altogether, cropland -covers about 16 million square kilometers, an area of land approximately the size of -South America. Global pastureland occupies more than 30 million square kilometers, about +local Description = [[These visualizations, created by the University of Minnesota's +Institute on the Environment, show the global land use intensity for pastureland and +cropland. Cropland is land devoted to growing plants for humans use for food, material, +or fuel. Pastureland is land used for raising and grazing animals. Altogether, cropland +covers about 16 million square kilometers, an area of land approximately the size of +South America. Global pastureland occupies more than 30 million square kilometers, about the area of Africa]] local URL = "https://sos.noaa.gov/catalog/datasets/agriculture-cropland-intensity/" @@ -46,10 +46,10 @@ local legend = { CartesianPosition = { 0.0, -0.5, -2.0 } } -asset.onInitialize(function() +asset.onInitialize(function() openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_countries) - openspace.addScreenSpaceRenderable(legend); + openspace.addScreenSpaceRenderable(legend) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/agriculture-pastureland.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/agriculture-pastureland.asset index 0ed1dbf299..a7a2d5e7c0 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/agriculture-pastureland.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/agriculture-pastureland.asset @@ -3,12 +3,12 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "NOAA Science on a Sphere. Agriculture: Pastureland Intensity" local Identifier = "noaa-sos-land-agriculture-pastureland" -local Description = [[These visualizations, created by the University of Minnesota's -Institute on the Environment, show the global land use intensity for pastureland and -cropland. Cropland is land devoted to growing plants for humans use for food, material, -or fuel. Pastureland is land used for raising and grazing animals. Altogether, cropland -covers about 16 million square kilometers, an area of land approximately the size of -South America. Global pastureland occupies more than 30 million square kilometers, about +local Description = [[These visualizations, created by the University of Minnesota's +Institute on the Environment, show the global land use intensity for pastureland and +cropland. Cropland is land devoted to growing plants for humans use for food, material, +or fuel. Pastureland is land used for raising and grazing animals. Altogether, cropland +covers about 16 million square kilometers, an area of land approximately the size of +South America. Global pastureland occupies more than 30 million square kilometers, about the area of Africa]] local URL = "https://sos.noaa.gov/catalog/datasets/agriculture-pastureland-intensity/" @@ -46,10 +46,10 @@ local legend = { CartesianPosition = { 0.0, -0.5, -2.0 } } -asset.onInitialize(function() +asset.onInitialize(function() openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_countries) - openspace.addScreenSpaceRenderable(legend); + openspace.addScreenSpaceRenderable(legend) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/birds.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/birds.asset index 1e870834ca..5329f988e4 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/birds.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/birds.asset @@ -2,11 +2,11 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "NOAA Science on a Sphere. Bird Migration Patterns - Western Hemisphere" local Identifier = "noaa-sos-land-birds" -local Description = [[This dataset shows the migration of 118 species of terrestrial -bird populations in the Western Hemisphere. Each dot represents the estimated location of -the center of each species' population for each day of the year. These estimations come -from millions of observations from the eBird citizen-science database. eBird is a -real-time, online checklist program, launched in 2002 by the Cornell Lab of Ornithology +local Description = [[This dataset shows the migration of 118 species of terrestrial +bird populations in the Western Hemisphere. Each dot represents the estimated location of +the center of each species' population for each day of the year. These estimations come +from millions of observations from the eBird citizen-science database. eBird is a +real-time, online checklist program, launched in 2002 by the Cornell Lab of Ornithology and National Audubon Society, that allows birdwatchers to enter their observations]] local URL = "https://sos.noaa.gov/catalog/datasets/bird-migration-patterns-western-hemisphere/" @@ -46,7 +46,7 @@ asset.onInitialize(function() end openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) - openspace.addScreenSpaceRenderable(colorbar); + openspace.addScreenSpaceRenderable(colorbar) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/blue_marble-blue_marble.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/blue_marble-blue_marble.asset index f5d1e19c2c..428672e213 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/blue_marble-blue_marble.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/blue_marble-blue_marble.asset @@ -3,12 +3,12 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "NOAA Science on a Sphere. Blue Marble: without Clouds" local Identifier = "noaa-sos-land-blue_marble-blue_marble" -local Description = [[The Blue Marble is an incredibly detailed, true-color depiction of -the Earth. NASA is responsible for this dataset made from a compilation of satellite -images throughout 2001. Most of the information came from NASA's MODIS, the Moderate -Resolution Imaging Spectroradiometer, which is attached to the Terra satellite 435 miles -above Earth. The background image of the land and oceans was created using data from June -through September of 2001. This could not be done in a single day or even a week because +local Description = [[The Blue Marble is an incredibly detailed, true-color depiction of +the Earth. NASA is responsible for this dataset made from a compilation of satellite +images throughout 2001. Most of the information came from NASA's MODIS, the Moderate +Resolution Imaging Spectroradiometer, which is attached to the Terra satellite 435 miles +above Earth. The background image of the land and oceans was created using data from June +through September of 2001. This could not be done in a single day or even a week because on any given day clouds are blocking a significant portion of the surface]] local URL = "https://sos.noaa.gov/catalog/datasets/blue-marble-without-clouds/" @@ -28,7 +28,7 @@ local layer = { Description = Description } -asset.onInitialize(function() +asset.onInitialize(function() openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) end) diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/blue_marble-blue_marble_topo.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/blue_marble-blue_marble_topo.asset index 2a5c8d8d0f..ab4d833181 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/blue_marble-blue_marble_topo.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/blue_marble-blue_marble_topo.asset @@ -3,9 +3,9 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Blue Marble: with Topography - Seasonal" local Identifier = "noaa-sos-land-blue_marble-next_gen-topo" -local Description = [[The Blue Marble is an incredibly detailed, true-color depiction of - the Earth. The Blue Marble Next Generation is an update on the original that has greater - detail. "The original Blue Marble was a composite of four months of MODIS observations +local Description = [[The Blue Marble is an incredibly detailed, true-color depiction of + the Earth. The Blue Marble Next Generation is an update on the original that has greater + detail. "The original Blue Marble was a composite of four months of MODIS observations with a spatial resolution (level of detail) of 1 square kilometer per pixel. Blue Marble: Next Generation offers a years worth of monthly composites at a spatial resolution of 500 meters]] diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/blue_marble-blue_marble_topo_bathy.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/blue_marble-blue_marble_topo_bathy.asset index 344f472b50..8088450677 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/blue_marble-blue_marble_topo_bathy.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/blue_marble-blue_marble_topo_bathy.asset @@ -3,11 +3,11 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Blue Marble: with Topography and Bathymetry" local Identifier = "noaa-sos-land-blue_marble-next_gen-topo_bathy" -local Description = [[The Blue Marble is an incredibly detailed, true-color depiction of - the Earth. The Blue Marble Next Generation is an update on the original that has greater - detail. "The original Blue Marble was a composite of four months of MODIS observations - with a spatial resolution (level of detail) of 1 square kilometer per pixel. Blue Marble: - Next Generation offers a years worth of monthly composites at a spatial resolution of +local Description = [[The Blue Marble is an incredibly detailed, true-color depiction of + the Earth. The Blue Marble Next Generation is an update on the original that has greater + detail. "The original Blue Marble was a composite of four months of MODIS observations + with a spatial resolution (level of detail) of 1 square kilometer per pixel. Blue Marble: + Next Generation offers a years worth of monthly composites at a spatial resolution of 500 meters]] local URL = "https://sos.noaa.gov/catalog/datasets/blue-marble-with-topography-seasonal/" diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/blue_marble-nightlights.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/blue_marble-nightlights.asset index b23bd948b5..d9cd63d453 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/blue_marble-nightlights.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/blue_marble-nightlights.asset @@ -3,17 +3,17 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Blue Marble and Nighttime Lights" local Identifier = "noaa-sos-land-bluemarble_nightlights" -local Description = [[This dataset shows the Earth with daytime and nighttime views of -the Earth, to demonstrate how only half of the Earth is illumintated at one time. The -Blue Marble is an incredibly detailed, true-color depiction of the Earth, and is shown on -the daylight side of the Earth in this dataset. NASA is responsible for The Blue Marble, -made from a compilation of satellite images throughout 2001. Most of the information came -from NASA's MODIS, the Moderate Resolution Imaging Spectroradiometer, which is attached -to the Terra satellite 435 miles above Earth. The background image of the land and oceans -was created using data from June through September of 2001. This could not be done in a -single day or even a week because on any given day clouds are blocking a significant -portion of the surface. The cloud image is a composite of three days worth of data. The -first two days of data were collected in the visible wavelength and the third day was +local Description = [[This dataset shows the Earth with daytime and nighttime views of +the Earth, to demonstrate how only half of the Earth is illumintated at one time. The +Blue Marble is an incredibly detailed, true-color depiction of the Earth, and is shown on +the daylight side of the Earth in this dataset. NASA is responsible for The Blue Marble, +made from a compilation of satellite images throughout 2001. Most of the information came +from NASA's MODIS, the Moderate Resolution Imaging Spectroradiometer, which is attached +to the Terra satellite 435 miles above Earth. The background image of the land and oceans +was created using data from June through September of 2001. This could not be done in a +single day or even a week because on any given day clouds are blocking a significant +portion of the surface. The cloud image is a composite of three days worth of data. The +first two days of data were collected in the visible wavelength and the third day was needed to get a view of the clouds over the poles using thermal infrared imagery]] local URL = "https://sos.noaa.gov/catalog/datasets/blue-marble-and-nighttime-lights/" diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/blue_marble-seasonal_blue_marble.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/blue_marble-seasonal_blue_marble.asset index 845cbb09d7..12f561159a 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/blue_marble-seasonal_blue_marble.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/blue_marble-seasonal_blue_marble.asset @@ -3,12 +3,12 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Blue Marble - Seasonal" local Identifier = "noaa-sos-land-seasonal_blue_marble" -local Description = [[The Blue Marble is an incredibly detailed, true-color depiction of -the Earth. NASA is responsible for this dataset made from a compilation of satellite -images throughout 2001. Most of the information came from NASA's MODIS, the Moderate -Resolution Imaging Spectroradiometer, which is attached to the Terra satellite 435 miles -above Earth. The background image of the land and oceans was created using data from June -through September of 2001. This could not be done in a single day or even a week because +local Description = [[The Blue Marble is an incredibly detailed, true-color depiction of +the Earth. NASA is responsible for this dataset made from a compilation of satellite +images throughout 2001. Most of the information came from NASA's MODIS, the Moderate +Resolution Imaging Spectroradiometer, which is attached to the Terra satellite 435 miles +above Earth. The background image of the land and oceans was created using data from June +through September of 2001. This could not be done in a single day or even a week because on any given day clouds are blocking a significant portion of the surface]] local URL = "https://sos.noaa.gov/catalog/datasets/blue-marble-seasonal/" diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/dams-global.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/dams-global.asset index cf385378e7..ab2a765a58 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/dams-global.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/dams-global.asset @@ -3,10 +3,10 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Dams and Reservoirs - 1800 - 2010" local Identifier = "noaa-sos-land-dams-global" -local Description = [[Humans have manipulated rivers for thousands of years, but over -the last 200 years dams on rivers have become rampant. Reservoirs and dams are -constructed for water storage, to reduce the risk of river flooding, and for the -generation of power. They are one of the major footprints of humans on Earth and change +local Description = [[Humans have manipulated rivers for thousands of years, but over +the last 200 years dams on rivers have become rampant. Reservoirs and dams are +constructed for water storage, to reduce the risk of river flooding, and for the +generation of power. They are one of the major footprints of humans on Earth and change the world's hydrological cycle]] local URL = "https://sos.noaa.gov/catalog/datasets/dams-and-reservoirs-1800-2010/" diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/dams-mississippi.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/dams-mississippi.asset index f516ecdc5d..64914979dc 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/dams-mississippi.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/dams-mississippi.asset @@ -3,10 +3,10 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Dams and Reservoirs: Mississippi River - 1800 - 2010" local Identifier = "noaa-sos-land-dams-mississippi" -local Description = [[This dataset illustrates the construction of dams in the -Mississippi River Basin from 1800 to the present. We display all dams listed in the -Global Reservoir and Dam Database (GRanD). All dams that have a reservoir with a storage -capacity of more than 0.1 cubic kilometers are included, and many smaller dams were added +local Description = [[This dataset illustrates the construction of dams in the +Mississippi River Basin from 1800 to the present. We display all dams listed in the +Global Reservoir and Dam Database (GRanD). All dams that have a reservoir with a storage +capacity of more than 0.1 cubic kilometers are included, and many smaller dams were added where data were available]] local URL = "https://sos.noaa.gov/catalog/datasets/dams-and-reservoirs-mississippi-river-1800-2010/" diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/dams-yangtze.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/dams-yangtze.asset index 93cad31040..007f0cb78d 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/dams-yangtze.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/dams-yangtze.asset @@ -3,10 +3,10 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Dams and Reservoirs: Yangtze - 1800 - 2010" local Identifier = "noaa-sos-land-dams-yangtze" -local Description = [[Humans have manipulated rivers for thousands of years, but over -the last 200 years dams on rivers have become rampant. Reservoirs and dams are -constructed for water storage, to reduce the risk of river flooding, and for the -generation of power. They are one of the major footprints of humans on Earth and change +local Description = [[Humans have manipulated rivers for thousands of years, but over +the last 200 years dams on rivers have become rampant. Reservoirs and dams are +constructed for water storage, to reduce the risk of river flooding, and for the +generation of power. They are one of the major footprints of humans on Earth and change the world's hydrological cycle]] local URL = "https://sos.noaa.gov/catalog/datasets/dams-and-reservoirs-yangtze-1800-2010/" diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/day_night-06z_only.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/day_night-06z_only.asset index ce3cebbf90..0f18bfa9da 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/day_night-06z_only.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/day_night-06z_only.asset @@ -3,12 +3,12 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Day/Night Terminator (daily)" local Identifier = "noaa-sos-land-day_night-06z_only" -local Description = [[The line that separates day and night is called the terminator. It -is also referred to as the "grey line" and the "twilight zone." It is a fuzzy line due to -our atmosphere bending sunlight. In fact, the atmosphere bends sunlight by half a degree, -which is about 37 miles (60 km). It is commonly thought that while half of the Earth is -covered in darkness, the other half is covered in sunlight. This is actually not true -because of the bending of the sunlight results in the land covered by sunlight having +local Description = [[The line that separates day and night is called the terminator. It +is also referred to as the "grey line" and the "twilight zone." It is a fuzzy line due to +our atmosphere bending sunlight. In fact, the atmosphere bends sunlight by half a degree, +which is about 37 miles (60 km). It is commonly thought that while half of the Earth is +covered in darkness, the other half is covered in sunlight. This is actually not true +because of the bending of the sunlight results in the land covered by sunlight having greater area than the land covered by darkness]] local URL = "https://sos.noaa.gov/catalog/datasets/daynight-terminator-daily/" diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/day_night-full_year.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/day_night-full_year.asset index 881af929b5..1c2c9c6b18 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/day_night-full_year.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/day_night-full_year.asset @@ -3,12 +3,12 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Day/Night Terminator (hourly)" local Identifier = "noaa-sos-land-day_night-full_year" -local Description = [[The line that separates day and night is called the terminator. It -is also referred to as the "grey line" and the "twilight zone." It is a fuzzy line due to -our atmosphere bending sunlight. In fact, the atmosphere bends sunlight by half a degree, -which is about 37 miles (60 km). It is commonly thought that while half of the Earth is -covered in darkness, the other half is covered in sunlight. This is actually not true -because of the bending of the sunlight results in the land covered by sunlight having +local Description = [[The line that separates day and night is called the terminator. It +is also referred to as the "grey line" and the "twilight zone." It is a fuzzy line due to +our atmosphere bending sunlight. In fact, the atmosphere bends sunlight by half a degree, +which is about 37 miles (60 km). It is commonly thought that while half of the Earth is +covered in darkness, the other half is covered in sunlight. This is actually not true +because of the bending of the sunlight results in the land covered by sunlight having greater area than the land covered by darkness]] local URL = "https://sos.noaa.gov/catalog/datasets/daynight-terminator-hourly/" diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/day_night-oneday.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/day_night-oneday.asset index b7a06d2286..faef9a24cb 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/day_night-oneday.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/day_night-oneday.asset @@ -3,12 +3,12 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Day/Night Terminator (single day)" local Identifier = "noaa-sos-land-day_night-oneday" -local Description = [[The line that separates day and night is called the terminator. It -is also referred to as the "grey line" and the "twilight zone." It is a fuzzy line due to -our atmosphere bending sunlight. In fact, the atmosphere bends sunlight by half a degree, -which is about 37 miles (60 km). It is commonly thought that while half of the Earth is -covered in darkness, the other half is covered in sunlight. This is actually not true -because of the bending of the sunlight results in the land covered by sunlight having +local Description = [[The line that separates day and night is called the terminator. It +is also referred to as the "grey line" and the "twilight zone." It is a fuzzy line due to +our atmosphere bending sunlight. In fact, the atmosphere bends sunlight by half a degree, +which is about 37 miles (60 km). It is commonly thought that while half of the Earth is +covered in darkness, the other half is covered in sunlight. This is actually not true +because of the bending of the sunlight results in the land covered by sunlight having greater area than the land covered by darkness]] local URL = "https://sos.noaa.gov/catalog/datasets/daynight-terminator-single-day/" diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/earth_night-1992_2002.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/earth_night-1992_2002.asset index 401add7ca7..cc5257f244 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/earth_night-1992_2002.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/earth_night-1992_2002.asset @@ -3,8 +3,8 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Nighttime Lights Comparison - 1992 and 2002" local Identifier = "noaa-sos-land-earth_night-1992_2002" -local Description = [[The data was recorded by the Defense Meteorological Satellite - Program (DMSP) in the National Geophysical Data Center (NGDC), now part of NOAA National +local Description = [[The data was recorded by the Defense Meteorological Satellite + Program (DMSP) in the National Geophysical Data Center (NGDC), now part of NOAA National Centers for Environmental Information (NCEI). The data was collected using polar orbiting satellites that provide full cover of the globe twice a day. The satellites have an Operation Linescan system which allows them to detect low levels of visible-near @@ -33,7 +33,7 @@ local layer_2002 = { Description = Description } -asset.onInitialize(function() +asset.onInitialize(function() openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_1992) openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_2002) end) diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/earth_night-1992_2008.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/earth_night-1992_2008.asset index 58a873cbc6..a5f422c4cb 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/earth_night-1992_2008.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/earth_night-1992_2008.asset @@ -3,11 +3,11 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Nighttime Lights Comparison - 1992, 2000, and 2008" local Identifier = "noaa-sos-land-earth_night-1992_2008" -local Description = [[The data was recorded by the Defense Meteorological Satellite -Program (DMSP) in the National Geophysical Data Center (NGDC), now part of NOAA National -Centers for Environmental Information (NCEI). The data was collected using polar orbiting -satellites that provide full cover of the globe twice a day. The satellites have an -Operation Linescan system which allows them to detect low levels of visible-near +local Description = [[The data was recorded by the Defense Meteorological Satellite +Program (DMSP) in the National Geophysical Data Center (NGDC), now part of NOAA National +Centers for Environmental Information (NCEI). The data was collected using polar orbiting +satellites that provide full cover of the globe twice a day. The satellites have an +Operation Linescan system which allows them to detect low levels of visible-near infrared radiance at night]] local URL = "https://sos.noaa.gov/catalog/datasets/nighttime-lights-comparison-1992-2000-and-2008/" @@ -27,7 +27,7 @@ local layer = { Description = Description } -asset.onInitialize(function() +asset.onInitialize(function() openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) end) diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/earth_night-1992_2009.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/earth_night-1992_2009.asset index a7e759c3ca..b2983346a8 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/earth_night-1992_2009.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/earth_night-1992_2009.asset @@ -3,11 +3,11 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Nighttime Lights Comparison - 1992 and 2009" local Identifier = "noaa-sos-land-earth_night-1992_2009" -local Description = [[The data was recorded by the Defense Meteorological Satellite -Program (DMSP) in the National Geophysical Data Center (NGDC), now part of NOAA National -Centers for Environmental Information (NCEI). The data was collected using polar orbiting -satellites that provide full cover of the globe twice a day. The satellites have an -Operation Linescan system which allows them to detect low levels of visible-near infrared +local Description = [[The data was recorded by the Defense Meteorological Satellite +Program (DMSP) in the National Geophysical Data Center (NGDC), now part of NOAA National +Centers for Environmental Information (NCEI). The data was collected using polar orbiting +satellites that provide full cover of the globe twice a day. The satellites have an +Operation Linescan system which allows them to detect low levels of visible-near infrared radiance at night]] local URL = "https://sos.noaa.gov/catalog/datasets/nighttime-lights-comparison-1992-and-2009/" @@ -37,9 +37,9 @@ local colorbar = { CartesianPosition = { 0.0, -0.5, -2.0 } } -asset.onInitialize(function() +asset.onInitialize(function() openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) - openspace.addScreenSpaceRenderable(colorbar); + openspace.addScreenSpaceRenderable(colorbar) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/earth_night-2012.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/earth_night-2012.asset index 0c5ae2c7b5..cf961a3357 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/earth_night-2012.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/earth_night-2012.asset @@ -3,9 +3,9 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Nighttime Lights - 2012" local Identifier = "noaa-sos-land-earth_night-2012" -local Description = [[Earth at Night has been an SOS-user favorite dataset for many -years. Black Marble 2012 is the newest version of the spectacular view of our planet from -near-Earth orbit at night, which is the result of a partnership between NOAA, NASA, and +local Description = [[Earth at Night has been an SOS-user favorite dataset for many +years. Black Marble 2012 is the newest version of the spectacular view of our planet from +near-Earth orbit at night, which is the result of a partnership between NOAA, NASA, and the Department of Defense]] local URL = "https://sos.noaa.gov/catalog/datasets/nighttime-lights-2012/" @@ -25,7 +25,7 @@ local layer = { Description = Description } -asset.onInitialize(function() +asset.onInitialize(function() openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) end) diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/earth_night-color_nightlights.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/earth_night-color_nightlights.asset index 09748e522b..b2a17b3f95 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/earth_night-color_nightlights.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/earth_night-color_nightlights.asset @@ -3,14 +3,14 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Nighttime Lights (colorized)" local Identifier = "noaa-sos-land-earth_night-color_nightlights" -local Description = [[The data was recorded by the Defense Meteorological Satellite -Program (DMSP) in the National Geophysical Data Center (NGDC), now part of NOAA National -Centers for Environmental Information (NCEI). The data was collected using polar orbiting -satellites that provide full cover of the globe twice a day. The satellites have an -Operation Linescan system which allows them to detect low levels of visible-near infrared -radiance at night. With this data, it is possible to detect clouds illuminated by -moonlight, lights from cities and towns, industrial sites, gas flares, fires, lightning, -and aurora. The Nighttime Lights of the World data set was complied from Defense +local Description = [[The data was recorded by the Defense Meteorological Satellite +Program (DMSP) in the National Geophysical Data Center (NGDC), now part of NOAA National +Centers for Environmental Information (NCEI). The data was collected using polar orbiting +satellites that provide full cover of the globe twice a day. The satellites have an +Operation Linescan system which allows them to detect low levels of visible-near infrared +radiance at night. With this data, it is possible to detect clouds illuminated by +moonlight, lights from cities and towns, industrial sites, gas flares, fires, lightning, +and aurora. The Nighttime Lights of the World data set was complied from Defense Meteorological Satellite Program (DMSP) data spanning October 1994 - March 1995]] local URL = "https://sos.noaa.gov/catalog/datasets/nighttime-lights-colorized/" @@ -30,7 +30,7 @@ local layer = { Description = Description } -asset.onInitialize(function() +asset.onInitialize(function() openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) end) diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/earth_night-nightlights.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/earth_night-nightlights.asset index ac5920388c..cf1c4bb12c 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/earth_night-nightlights.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/earth_night-nightlights.asset @@ -3,14 +3,14 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Nighttime Lights" local Identifier = "noaa-sos-land-earth_night-nightlights" -local Description = [[The data was recorded by the Defense Meteorological Satellite -Program (DMSP) in the National Geophysical Data Center (NGDC), now part of NOAA National -Centers for Environmental Information (NCEI). The data was collected using polar orbiting -satellites that provide full cover of the globe twice a day. The satellites have an -Operation Linescan system which allows them to detect low levels of visible-near infrared -radiance at night. With this data, it is possible to detect clouds illuminated by -moonlight, lights from cities and towns, industrial sites, gas flares, fires, lightning, -and aurora. The Nighttime Lights of the World data set was complied from Defense +local Description = [[The data was recorded by the Defense Meteorological Satellite +Program (DMSP) in the National Geophysical Data Center (NGDC), now part of NOAA National +Centers for Environmental Information (NCEI). The data was collected using polar orbiting +satellites that provide full cover of the globe twice a day. The satellites have an +Operation Linescan system which allows them to detect low levels of visible-near infrared +radiance at night. With this data, it is possible to detect clouds illuminated by +moonlight, lights from cities and towns, industrial sites, gas flares, fires, lightning, +and aurora. The Nighttime Lights of the World data set was complied from Defense Meteorological Satellite Program (DMSP) data spanning October 1994 - March 1995]] local URL = "https://sos.noaa.gov/catalog/datasets/nighttime-lights/" @@ -30,7 +30,7 @@ local layer = { Description = Description } -asset.onInitialize(function() +asset.onInitialize(function() openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) end) diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/earthquake-1980_1995_quakes.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/earthquake-1980_1995_quakes.asset index 7262ebd75b..6d90ee58c8 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/earthquake-1980_1995_quakes.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/earthquake-1980_1995_quakes.asset @@ -3,19 +3,19 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Earthquakes: Cumulative - 1980 - 1995" local Identifier = "noaa-sos-land-earthquake-1980_1995_quakes" -local Description = [[It is estimated that there are 500,000 detectable earthquakes in -the world each year. Of those, 100,000 can be felt and 100 of them cause damage. Anything -that causes seismic waves to radiate throughout the Earth is an earthquake. The cause of -earthquakes can be natural, such as one tectonic plate slipping below another, or -anthropogenic (cause by humans), such as drilling for fossil fuels, extraction of -minerals, huge explosions, and the collapse of large buildings. Because most natural -earthquakes occur due to slipping plates, the boundaries between tectonic plates are "hot -spots" for earthquakes. In the Pacific Ocean, the Pacific Plate is referred to as the -Ring of Fire because this is one of the most active plates where earthquakes and -volcanoes frequently occur. In order to rate the strength and magnitude of earthquakes, -the Richter magnitude scale was created. It is a base-10 logarithm scale of ground motion -100km from the epicenter. Every whole-number increase in magnitude means the amplitude of -the seismic wave is ten times greater. 4.0 - 4.9 on the scale is considered light, with +local Description = [[It is estimated that there are 500,000 detectable earthquakes in +the world each year. Of those, 100,000 can be felt and 100 of them cause damage. Anything +that causes seismic waves to radiate throughout the Earth is an earthquake. The cause of +earthquakes can be natural, such as one tectonic plate slipping below another, or +anthropogenic (cause by humans), such as drilling for fossil fuels, extraction of +minerals, huge explosions, and the collapse of large buildings. Because most natural +earthquakes occur due to slipping plates, the boundaries between tectonic plates are "hot +spots" for earthquakes. In the Pacific Ocean, the Pacific Plate is referred to as the +Ring of Fire because this is one of the most active plates where earthquakes and +volcanoes frequently occur. In order to rate the strength and magnitude of earthquakes, +the Richter magnitude scale was created. It is a base-10 logarithm scale of ground motion +100km from the epicenter. Every whole-number increase in magnitude means the amplitude of +the seismic wave is ten times greater. 4.0 - 4.9 on the scale is considered light, with some shaking of indoor items and significant damage unlikely]] local URL = "https://sos.noaa.gov/catalog/datasets/earthquakes-cumulative-1980-1995/" @@ -78,9 +78,9 @@ asset.onInitialize(function() end openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) - openspace.addScreenSpaceRenderable(legend); - openspace.addScreenSpaceRenderable(quakebar); - openspace.addScreenSpaceRenderable(quakebar_combined); + openspace.addScreenSpaceRenderable(legend) + openspace.addScreenSpaceRenderable(quakebar) + openspace.addScreenSpaceRenderable(quakebar_combined) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/earthquake-2001_2015.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/earthquake-2001_2015.asset index d874e87d7d..1289557dde 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/earthquake-2001_2015.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/earthquake-2001_2015.asset @@ -3,16 +3,16 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Earthquakes - 2001-2015" local Identifier = "noaa-sos-land-earthquake-2001_2015" -local Description = [[This animation shows every recorded earthquake in sequence as they -occurred from January 1, 2001, through December 31, 2015, at a rate of 30 days per -second. The earthquake hypocenters first appear as flashes then remain as colored circles -before shrinking with time so as not to obscure subsequent earthquakes. The size of the -circle represents the earthquake magnitude while the color represents its depth within -the earth. At the end of the animation it will first show all quakes in this 15-year -period. Next, it will show only those earthquakes greater than magnitude 6.5, the -smallest earthquake size known to make a tsunami. Finally it will only show those -earthquakes with magnitudes of magnitude 8.0 or larger, the "great" earthquakes most -likely to pose a tsunami threat when they occur under the ocean or near a coastline and +local Description = [[This animation shows every recorded earthquake in sequence as they +occurred from January 1, 2001, through December 31, 2015, at a rate of 30 days per +second. The earthquake hypocenters first appear as flashes then remain as colored circles +before shrinking with time so as not to obscure subsequent earthquakes. The size of the +circle represents the earthquake magnitude while the color represents its depth within +the earth. At the end of the animation it will first show all quakes in this 15-year +period. Next, it will show only those earthquakes greater than magnitude 6.5, the +smallest earthquake size known to make a tsunami. Finally it will only show those +earthquakes with magnitudes of magnitude 8.0 or larger, the "great" earthquakes most +likely to pose a tsunami threat when they occur under the ocean or near a coastline and when they are shallow within the earth (less than 100 km or 60 mi. deep)]] local URL = "https://sos.noaa.gov/catalog/datasets/earthquakes-2001-2015/" @@ -68,13 +68,13 @@ local legend = { CartesianPosition = { 0.0, -0.5, -2.0 } } -asset.onInitialize(function() +asset.onInitialize(function() openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_allquakes) openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_quake_basemap) openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_tsunami_basemap) openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_quakes_gte6_5) openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_quakes_gte8) - openspace.addScreenSpaceRenderable(legend); + openspace.addScreenSpaceRenderable(legend) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/earthquakes_1901_2000.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/earthquakes_1901_2000.asset index c71f5963e0..cd80f0e83c 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/earthquakes_1901_2000.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/earthquakes_1901_2000.asset @@ -3,17 +3,17 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Earthquakes of the 20th Century" local Identifier = "noaa-sos-land-earthquakes_1901_2000" -local Description = [[This animation shows every recorded earthquake in sequence as they -occurred from January 1, 1901, through December 31, 2000, at a rate of 1 year per second. -The earthquake hypocenters first appear as flashes then remain as colored circles before -shrinking with time so as not to obscure subsequent earthquakes. The size of the circle -represents the earthquake magnitude while the color represents its depth within the -earth. At the end of the animation it will first show all quakes in this 100-year period. -Next, it will show only those earthquakes greater than magnitude 6.5, the smallest -earthquake size known to make a tsunami. It will then show only those earthquakes with -magnitudes of 8.0 or larger, the "great" earthquakes most likely to pose a tsunami -threat when they occur under the ocean or near a coastline and when they are shallow -within the earth (less than 100 km or 60 mi. deep). The animation concludes by showing +local Description = [[This animation shows every recorded earthquake in sequence as they +occurred from January 1, 1901, through December 31, 2000, at a rate of 1 year per second. +The earthquake hypocenters first appear as flashes then remain as colored circles before +shrinking with time so as not to obscure subsequent earthquakes. The size of the circle +represents the earthquake magnitude while the color represents its depth within the +earth. At the end of the animation it will first show all quakes in this 100-year period. +Next, it will show only those earthquakes greater than magnitude 6.5, the smallest +earthquake size known to make a tsunami. It will then show only those earthquakes with +magnitudes of 8.0 or larger, the "great" earthquakes most likely to pose a tsunami +threat when they occur under the ocean or near a coastline and when they are shallow +within the earth (less than 100 km or 60 mi. deep). The animation concludes by showing the plate boundary faults responsible for the majority of all of these earthquakes]] local URL = "https://sos.noaa.gov/catalog/datasets/earthquakes-of-the-20th-century/" @@ -69,13 +69,13 @@ local legend = { CartesianPosition = { 0.0, -0.5, -2.0 } } -asset.onInitialize(function() +asset.onInitialize(function() openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_allquakes) openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_quake_basemap) openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_plate_boundaries) openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_quakes_gte6_5) openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_quakes_gte8) - openspace.addScreenSpaceRenderable(legend); + openspace.addScreenSpaceRenderable(legend) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/earthquakes_and_eruptions.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/earthquakes_and_eruptions.asset index 1051ac8b53..fc107e4c5c 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/earthquakes_and_eruptions.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/earthquakes_and_eruptions.asset @@ -3,12 +3,12 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Earthquakes and Eruptions - 1960 - 2010" local Identifier = "noaa-sos-land-earthquakes_and_eruptions" -local Description = [[Most of Earth's earthquakes and volcanic eruptions occur at the -boundaries of the tectonic plates. This dataset shows all earthquakes of magnitude 5.0 or -greater from 1960 through 2010. The earthquakes are illustrated with a large white dot at -the time of the event. The size of the dot is proportional to the magnitude of the -earthquake. A musical tone is generated for the larger events. The larger the earthquake, -the lower the tone. The white dots eventually turn gray and slowly shrink to single-pixel +local Description = [[Most of Earth's earthquakes and volcanic eruptions occur at the +boundaries of the tectonic plates. This dataset shows all earthquakes of magnitude 5.0 or +greater from 1960 through 2010. The earthquakes are illustrated with a large white dot at +the time of the event. The size of the dot is proportional to the magnitude of the +earthquake. A musical tone is generated for the larger events. The larger the earthquake, +the lower the tone. The white dots eventually turn gray and slowly shrink to single-pixel dots]] local URL = "https://sos.noaa.gov/catalog/datasets/earthquakes-and-eruptions-1960-2010/" @@ -48,7 +48,7 @@ asset.onInitialize(function() end openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) - openspace.addScreenSpaceRenderable(legend); + openspace.addScreenSpaceRenderable(legend) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/earths_magnetism_magnetic_lines.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/earths_magnetism_magnetic_lines.asset index 3d249f3d54..3d72539e6d 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/earths_magnetism_magnetic_lines.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/earths_magnetism_magnetic_lines.asset @@ -3,17 +3,17 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Earth's Magnetic Lines" local Identifier = "noaa-sos-land-earths_magnetism_magnetic_lines" -local Description = [[Earth is like a giant magnet with a North and South Pole. However, -the magnetic North and South Pole are not aligned with the Geographic North and South -Pole. The Geographic North Pole is defined by the latitude 90° N and is the axis of the -Earth's rotation. The Magnetic North Pole is where the Earth's magnetic field points -vertically downward. The Earth creates its own magnetic field from the electric currents -created in the liquid iron-nickel core. In order to illustrate the earth's magnetic -field, three datasets for Earth's Magnetism have been created. All of these datasets show -the changes in the magnetic field from 1590 - 2010. The first dataset shows the magnetic -field lines at the surface of the Earth. The magnetic poles are indicated by stars. The -blue lines show where the magnetic field dips into the Earth and the red lines show where -the magnetic field emerges from the Earth. Where the field lines are horizontal to the +local Description = [[Earth is like a giant magnet with a North and South Pole. However, +the magnetic North and South Pole are not aligned with the Geographic North and South +Pole. The Geographic North Pole is defined by the latitude 90° N and is the axis of the +Earth's rotation. The Magnetic North Pole is where the Earth's magnetic field points +vertically downward. The Earth creates its own magnetic field from the electric currents +created in the liquid iron-nickel core. In order to illustrate the earth's magnetic +field, three datasets for Earth's Magnetism have been created. All of these datasets show +the changes in the magnetic field from 1590 - 2010. The first dataset shows the magnetic +field lines at the surface of the Earth. The magnetic poles are indicated by stars. The +blue lines show where the magnetic field dips into the Earth and the red lines show where +the magnetic field emerges from the Earth. Where the field lines are horizontal to the Earth, between the red and blue lines, is the magnetic equator shaded yellow]] local URL = "https://sos.noaa.gov/catalog/datasets/earths-magnetic-lines/" diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/earths_magnetism_magnets.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/earths_magnetism_magnets.asset index e1c9376814..1b55868ee8 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/earths_magnetism_magnets.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/earths_magnetism_magnets.asset @@ -3,17 +3,17 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Earth's Magnetic Field (compass needles)" local Identifier = "noaa-sos-land-earths_magnetism_magnets" -local Description = [[Earth is like a giant magnet with a North and South Pole. However, -the magnetic North and South Pole are not aligned with the Geographic North and South -Pole. The Geographic North Pole is defined by the latitude 90° N and is the axis of the -Earth's rotation. The Magnetic North Pole is where the Earth's magnetic field points -vertically downward. The Earth creates its own magnetic field from the electric currents -created in the liquid iron-nickel core. In order to illustrate the earth's magnetic -field, three datasets for Earth's Magnetism have been created. All of these datasets show -the changes in the magnetic field from 1590 - 2010. The first dataset shows the magnetic -field lines at the surface of the Earth. The magnetic poles are indicated by stars. The -blue lines show where the magnetic field dips into the Earth and the red lines show where -the magnetic field emerges from the Earth. Where the field lines are horizontal to the +local Description = [[Earth is like a giant magnet with a North and South Pole. However, +the magnetic North and South Pole are not aligned with the Geographic North and South +Pole. The Geographic North Pole is defined by the latitude 90° N and is the axis of the +Earth's rotation. The Magnetic North Pole is where the Earth's magnetic field points +vertically downward. The Earth creates its own magnetic field from the electric currents +created in the liquid iron-nickel core. In order to illustrate the earth's magnetic +field, three datasets for Earth's Magnetism have been created. All of these datasets show +the changes in the magnetic field from 1590 - 2010. The first dataset shows the magnetic +field lines at the surface of the Earth. The magnetic poles are indicated by stars. The +blue lines show where the magnetic field dips into the Earth and the red lines show where +the magnetic field emerges from the Earth. Where the field lines are horizontal to the Earth, between the red and blue lines, is the magnetic equator shaded yellow]] local URL = "https://sos.noaa.gov/catalog/datasets/earths-magnetic-field-compass-needles/" diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/etopo1.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/etopo1.asset index 9ae059be9b..5093ade3f9 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/etopo1.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/etopo1.asset @@ -3,14 +3,14 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "ETOPO1: Topography and Bathymetry" local Identifier = "noaa-sos-land-etopo1" -local Description = [[ETOPO1 is a 1 arc-minute global relief model of Earth's surface -that integrates land topography and ocean bathymetry. It was built from numerous global -and regional data sets, and is available in "Ice Surface" (top of Antarctic and Greenland -ice sheets) and "Bedrock" (base of the ice sheets) versions. The "Ice Surface" version is -available for Science On a Sphere. This dataset is a higher resolution version of -ETOPO2, which is a 2 arc-minute global relief model of Earth's surface. An arc-minute is -1/60 of a degree. Scientists use high resolution maps like ETOPO1 to improve accuracy in -tsunami forecasting, modeling, and warnings, and also to enhance ocean circulation +local Description = [[ETOPO1 is a 1 arc-minute global relief model of Earth's surface +that integrates land topography and ocean bathymetry. It was built from numerous global +and regional data sets, and is available in "Ice Surface" (top of Antarctic and Greenland +ice sheets) and "Bedrock" (base of the ice sheets) versions. The "Ice Surface" version is +available for Science On a Sphere. This dataset is a higher resolution version of +ETOPO2, which is a 2 arc-minute global relief model of Earth's surface. An arc-minute is +1/60 of a degree. Scientists use high resolution maps like ETOPO1 to improve accuracy in +tsunami forecasting, modeling, and warnings, and also to enhance ocean circulation modeling and Earth visualization]] local URL = "https://sos.noaa.gov/catalog/datasets/etopo1-topography-and-bathymetry/" @@ -41,9 +41,9 @@ local colorbar = { CartesianPosition = { 0.5, 0.0, -2.0 } } -asset.onInitialize(function() +asset.onInitialize(function() openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) - openspace.addScreenSpaceRenderable(colorbar); + openspace.addScreenSpaceRenderable(colorbar) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/etopo2-earth_bright.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/etopo2-earth_bright.asset index 9b2d706e8c..83ade362bd 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/etopo2-earth_bright.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/etopo2-earth_bright.asset @@ -3,12 +3,12 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "ETOPO2: Topography and Bathymetry (bright colors)" local Identifier = "noaa-sos-land-etopo2-earth_bright" -local Description = [[Many datasets have been created by utilizing the ETOPO2 dataset, -which was generated from digital databases of seafloor and land elevations on a 2-minute -latitude/longitude grid (1 minute of latitude = 1 nautical mile, or 1.15 statute miles). -The ETOPO2 is a combination of satellite altimetry observations, shipboard echo-sounding -measurements, data from the Digital Bathymetric Data Base Variable Resolution and data -from the GLOBE project which has a global digital elevation model. Earth Color Enhanced +local Description = [[Many datasets have been created by utilizing the ETOPO2 dataset, +which was generated from digital databases of seafloor and land elevations on a 2-minute +latitude/longitude grid (1 minute of latitude = 1 nautical mile, or 1.15 statute miles). +The ETOPO2 is a combination of satellite altimetry observations, shipboard echo-sounding +measurements, data from the Digital Bathymetric Data Base Variable Resolution and data +from the GLOBE project which has a global digital elevation model. Earth Color Enhanced uses green, yellow, orange, red and white to denote increasing elevation of the land]] local URL = "https://sos.noaa.gov/catalog/datasets/etopo2-topography-and-bathymetry-bright-colors/" @@ -28,7 +28,7 @@ local layer = { Description = Description } -asset.onInitialize(function() +asset.onInitialize(function() openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) end) diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/etopo2-earth_color.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/etopo2-earth_color.asset index ed16fca0bd..4e027a1538 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/etopo2-earth_color.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/etopo2-earth_color.asset @@ -3,12 +3,12 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "ETOPO2: Topography and Bathymetry (color enhanced)" local Identifier = "noaa-sos-land-etopo2-earth_color" -local Description = [[Many datasets have been created by utilizing the ETOPO2 dataset, -which was generated from digital data bases of seafloor and land elevations on a 2-minute -latitude/longitude grid (1 minute of latitude = 1 nautical mile, or 1.15 statute mile). -The ETOPO2 is a combination of satellite altimetry observations, shipboard echo-sounding -measurements, data from the Digital Bathymetric Data Base Variable Resolution and data -from the GLOBE project which has a global digital elevation model. This dataset uses +local Description = [[Many datasets have been created by utilizing the ETOPO2 dataset, +which was generated from digital data bases of seafloor and land elevations on a 2-minute +latitude/longitude grid (1 minute of latitude = 1 nautical mile, or 1.15 statute mile). +The ETOPO2 is a combination of satellite altimetry observations, shipboard echo-sounding +measurements, data from the Digital Bathymetric Data Base Variable Resolution and data +from the GLOBE project which has a global digital elevation model. This dataset uses green, yellow, orange, red and white to denote increasing elevation of the land]] local URL = "https://sos.noaa.gov/catalog/datasets/etopo2-topography-and-bathymetry-color-enhanced/" @@ -28,7 +28,7 @@ local layer = { Description = Description } -asset.onInitialize(function() +asset.onInitialize(function() openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) end) diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/etopo2-earth_shaded.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/etopo2-earth_shaded.asset index 5e1af3f262..c0efa4e8d6 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/etopo2-earth_shaded.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/etopo2-earth_shaded.asset @@ -3,12 +3,12 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "ETOPO2: Topography and Bathymetry (shaded colors)" local Identifier = "noaa-sos-land-etopo2-earth_shaded" -local Description = [[Many datasets have been created by utilizing the ETOPO2 dataset. -This dataset was generated from digital data bases of seafloor and land elevations on a -2-minute latitude/longitude grid (1 minute of latitude = 1 nautical mile, or 1.15 statute -mile). ETOPO2 is a combination of satellite altimetry observations, shipboard -echo-sounding measurements, data from the Digital Bathymetric Data Base Variable -Resolution and data from the GLOBE project which has a global digital elevation +local Description = [[Many datasets have been created by utilizing the ETOPO2 dataset. +This dataset was generated from digital data bases of seafloor and land elevations on a +2-minute latitude/longitude grid (1 minute of latitude = 1 nautical mile, or 1.15 statute +mile). ETOPO2 is a combination of satellite altimetry observations, shipboard +echo-sounding measurements, data from the Digital Bathymetric Data Base Variable +Resolution and data from the GLOBE project which has a global digital elevation model]] local URL = "https://sos.noaa.gov/catalog/datasets/etopo2-topography-and-bathymetry-shaded-colors/" @@ -28,7 +28,7 @@ local layer = { Description = Description } -asset.onInitialize(function() +asset.onInitialize(function() openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) end) diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/etopo2-earth_topo.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/etopo2-earth_topo.asset index 79482b7b42..a7d2dc27d5 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/etopo2-earth_topo.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/etopo2-earth_topo.asset @@ -3,15 +3,15 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "ETOPO2: Topography and Bathymetry (natural colors)" local Identifier = "noaa-sos-land-etopo2-earth_topo" -local Description = [[Many datasets have been created by utilizing the ETOPO2 dataset, -which was generated from digital data bases of seafloor and land elevations on a 2-minute -latitude/longitude grid (1 minute of latitude = 1 nautical mile, or 1.15 statute mile). -The ETOPO2 is a combination of satellite altimetry observations, shipboard echo-sounding -measurements, data from the Digital Bathymetric Data Base Variable Resolution and data -from the GLOBE project which has a global digital elevation model. The topography and -bathymetry side of the Hot Topo dataset was created with this digital data base, as well -as the datasets EarthLiteColor, EarthOne, and Earth Land/Bathymetry. EarthOne and Earth -Land/Bathymetry are shaded in relatively true color, while Hot Topo and EarthLiteColor +local Description = [[Many datasets have been created by utilizing the ETOPO2 dataset, +which was generated from digital data bases of seafloor and land elevations on a 2-minute +latitude/longitude grid (1 minute of latitude = 1 nautical mile, or 1.15 statute mile). +The ETOPO2 is a combination of satellite altimetry observations, shipboard echo-sounding +measurements, data from the Digital Bathymetric Data Base Variable Resolution and data +from the GLOBE project which has a global digital elevation model. The topography and +bathymetry side of the Hot Topo dataset was created with this digital data base, as well +as the datasets EarthLiteColor, EarthOne, and Earth Land/Bathymetry. EarthOne and Earth +Land/Bathymetry are shaded in relatively true color, while Hot Topo and EarthLiteColor use green, yellow, orange, red and white to denote increasing elevation of the land]] local URL = "https://sos.noaa.gov/catalog/datasets/etopo2-topography-and-bathymetry-natural-colors/" @@ -31,7 +31,7 @@ local layer = { Description = Description } -asset.onInitialize(function() +asset.onInitialize(function() openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) end) diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/etopo2-landsat.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/etopo2-landsat.asset index 3dc50bd429..36d1410091 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/etopo2-landsat.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/etopo2-landsat.asset @@ -3,11 +3,11 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "ETOPO2: Bathymetry" local Identifier = "noaa-sos-land-etopo2-landsat" -local Description = [[Many datasets have been created by utilizing the ETOPO2 dataset, -which was generated from digital data bases of seafloor and land elevations on a 2-minute -latitude/longitude grid (1 minute of latitude = 1 nautical mile, or 1.15 statute mile). -The ETOPO2 is a combination of satellite altimetry observations, shipboard echo-sounding -measurements, data from the Digital Bathymetric Data Base Variable Resolution and data +local Description = [[Many datasets have been created by utilizing the ETOPO2 dataset, +which was generated from digital data bases of seafloor and land elevations on a 2-minute +latitude/longitude grid (1 minute of latitude = 1 nautical mile, or 1.15 statute mile). +The ETOPO2 is a combination of satellite altimetry observations, shipboard echo-sounding +measurements, data from the Digital Bathymetric Data Base Variable Resolution and data from the GLOBE project which has a global digital elevation model]] local URL = "https://sos.noaa.gov/catalog/datasets/etopo2-bathymetry/" @@ -27,7 +27,7 @@ local layer = { Description = Description } -asset.onInitialize(function() +asset.onInitialize(function() openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) end) diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/fire.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/fire.asset index d7254f485b..632e29d266 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/fire.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/fire.asset @@ -3,15 +3,15 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Fires - 2009" local Identifier = "noaa-sos-land-fire" -local Description = [[In order to monitor the fires occurring globally, a special sensor -has been mounted on the Terra and Aqua satellites. The sensor, named the Moderate -Resolution Imaging Spectroradiometer (MODIS), is able to provide daily satellite images -of the Earth's landmasses in near real-time using the MODIS Rapid Response System. There -are many uses for the data collected from MODIS, such as monitoring global fires by -detecting the abnormally high temperature anomalies at the surface. When a location is -much warmer than the surrounding area, it suggests the presence of a fire or a lava flow. -It is important to know the size, location and intensity of fires because of the damage -that they can cause, and also to help scientists understand the emissions from the fires +local Description = [[In order to monitor the fires occurring globally, a special sensor +has been mounted on the Terra and Aqua satellites. The sensor, named the Moderate +Resolution Imaging Spectroradiometer (MODIS), is able to provide daily satellite images +of the Earth's landmasses in near real-time using the MODIS Rapid Response System. There +are many uses for the data collected from MODIS, such as monitoring global fires by +detecting the abnormally high temperature anomalies at the surface. When a location is +much warmer than the surrounding area, it suggests the presence of a fire or a lava flow. +It is important to know the size, location and intensity of fires because of the damage +that they can cause, and also to help scientists understand the emissions from the fires and their short- and long-term effects on ecosystems]] local URL = "https://sos.noaa.gov/catalog/datasets/fires-2009/" diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/fire_veg.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/fire_veg.asset index 3ee2971e98..b2ab9d82f2 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/fire_veg.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/fire_veg.asset @@ -3,13 +3,13 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Fire Observations and Vegetation - 2002 - 2011" local Identifier = "noaa-sos-land-fire_veg" -local Description = [[This dataset leads viewers on a narrated global tour of fire - detections beginning in July 2002 and ending July 2011. The dataset also includes - vegetation and snow cover data to show how fires respond to seasonal changes. The tour - begins in Australia in 2002 by showing a network of massive grassland fires spreading - across interior Australia as well as the greener Eucalyptus forests in the northern and - eastern part of the continent. The tour then shifts to Asia where large numbers of - agricultural fires are visible first in China in June 2004, then across a huge swath of +local Description = [[This dataset leads viewers on a narrated global tour of fire + detections beginning in July 2002 and ending July 2011. The dataset also includes + vegetation and snow cover data to show how fires respond to seasonal changes. The tour + begins in Australia in 2002 by showing a network of massive grassland fires spreading + across interior Australia as well as the greener Eucalyptus forests in the northern and + eastern part of the continent. The tour then shifts to Asia where large numbers of + agricultural fires are visible first in China in June 2004, then across a huge swath of Europe and western Russia in August, and then across India and Southeast Asia through the early part of 2005]] local URL = "https://sos.noaa.gov/catalog/datasets/fire-observations-and-vegetation-2002-2011/" @@ -60,8 +60,8 @@ asset.onInitialize(function() end openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) - openspace.addScreenSpaceRenderable(colorbar_fire); - openspace.addScreenSpaceRenderable(colorbar_veg); + openspace.addScreenSpaceRenderable(colorbar_fire) + openspace.addScreenSpaceRenderable(colorbar_veg) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/flooding-displaced_250.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/flooding-displaced_250.asset index 007cdf7d39..bbdd9a2e02 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/flooding-displaced_250.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/flooding-displaced_250.asset @@ -3,15 +3,15 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Flood Events: Displaced 250 or More People - 2000 - 2009" local Identifier = "noaa-sos-land-flooding-displaced_250" -local Description = [[Flooding is the nation's most common, costly and deadly natural -hazard. Heavy rain is the most frequent cause of floods, but there are many other natural -triggers, including hurricanes, tidal surges, ice jams and snow melt. Floods and flash -floods have happened in all 50 states in the USA. Flooding in river basins is a natural -part of the river's processes, serving to improve water quality and provide essential -habitat to species, among other benefits. Flooding is a matter of scientific interest, as -well as cultural significance, and is critical to land-use planning and policy. It is -also a vital concern to the safety and welfare of communities in flood prone areas -including those who live along waterways and coasts. People from all walks of life are +local Description = [[Flooding is the nation's most common, costly and deadly natural +hazard. Heavy rain is the most frequent cause of floods, but there are many other natural +triggers, including hurricanes, tidal surges, ice jams and snow melt. Floods and flash +floods have happened in all 50 states in the USA. Flooding in river basins is a natural +part of the river's processes, serving to improve water quality and provide essential +habitat to species, among other benefits. Flooding is a matter of scientific interest, as +well as cultural significance, and is critical to land-use planning and policy. It is +also a vital concern to the safety and welfare of communities in flood prone areas +including those who live along waterways and coasts. People from all walks of life are vulnerable to the effects of flooding]] local URL = "https://sos.noaa.gov/catalog/datasets/flood-events-displaced-250-or-more-people-2000-2009/" @@ -39,7 +39,7 @@ local layer_night = { Description = Description } -asset.onInitialize(function() +asset.onInitialize(function() openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_night) end) diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/flooding-fatal.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/flooding-fatal.asset index d244f84bf2..6550aae8ca 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/flooding-fatal.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/flooding-fatal.asset @@ -3,15 +3,15 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Flood Events: 50 or More Fatalities - 2000 - 2009" local Identifier = "noaa-sos-land-flooding-fatal" -local Description = [[Flooding is the nation's most common, costly and deadly natural -hazard. Heavy rain is the most frequent cause of floods, but there are many other natural -triggers, including hurricanes, tidal surges, ice jams and snow melt. Floods and flash -floods have happened in all 50 states in the USA. Flooding in river basins is a natural -part of the river's processes, serving to improve water quality and provide essential -habitat to species, among other benefits. Flooding is a matter of scientific interest, -as well as cultural significance, and is critical to land-use planning and policy. It is -also a vital concern to the safety and welfare of communities in flood prone areas -including those who live along waterways and coasts. People from all walks of life are +local Description = [[Flooding is the nation's most common, costly and deadly natural +hazard. Heavy rain is the most frequent cause of floods, but there are many other natural +triggers, including hurricanes, tidal surges, ice jams and snow melt. Floods and flash +floods have happened in all 50 states in the USA. Flooding in river basins is a natural +part of the river's processes, serving to improve water quality and provide essential +habitat to species, among other benefits. Flooding is a matter of scientific interest, +as well as cultural significance, and is critical to land-use planning and policy. It is +also a vital concern to the safety and welfare of communities in flood prone areas +including those who live along waterways and coasts. People from all walks of life are vulnerable to the effects of flooding]] local URL = "https://sos.noaa.gov/catalog/datasets/flood-events-50-or-more-fatalities-2000-2009/" @@ -39,7 +39,7 @@ local layer_night = { Description = Description } -asset.onInitialize(function() +asset.onInitialize(function() openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_night) end) diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/flooding-heavy_rain.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/flooding-heavy_rain.asset index 6ccf077ac6..1d2fdc2c00 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/flooding-heavy_rain.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/flooding-heavy_rain.asset @@ -3,15 +3,15 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Flood Events: Due to Heavy Rain - 2000 - 2009" local Identifier = "noaa-sos-land-flooding-heavy_rain" -local Description = [[Flooding is the nation's most common, costly and deadly natural -hazard. Heavy rain is the most frequent cause of floods, but there are many other natural -triggers, including hurricanes, tidal surges, ice jams and snow melt. Floods and flash -floods have happened in all 50 states in the USA. Flooding in river basins is a natural -part of the river's processes, serving to improve water quality and provide essential -habitat to species, among other benefits. Flooding is a matter of scientific interest, as -well as cultural significance, and is critical to land-use planning and policy. It is -also a vital concern to the safety and welfare of communities in flood prone areas -including those who live along waterways and coasts. People from all walks of life are +local Description = [[Flooding is the nation's most common, costly and deadly natural +hazard. Heavy rain is the most frequent cause of floods, but there are many other natural +triggers, including hurricanes, tidal surges, ice jams and snow melt. Floods and flash +floods have happened in all 50 states in the USA. Flooding in river basins is a natural +part of the river's processes, serving to improve water quality and provide essential +habitat to species, among other benefits. Flooding is a matter of scientific interest, as +well as cultural significance, and is critical to land-use planning and policy. It is +also a vital concern to the safety and welfare of communities in flood prone areas +including those who live along waterways and coasts. People from all walks of life are vulnerable to the effects of flooding]] local URL = "https://sos.noaa.gov/catalog/datasets/flood-events-due-to-heavy-rain-2000-2009/" @@ -39,7 +39,7 @@ local layer_night = { Description = Description } -asset.onInitialize(function() +asset.onInitialize(function() openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_night) end) diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/flooding-major_floods.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/flooding-major_floods.asset index 2e695501c3..4e5eedd902 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/flooding-major_floods.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/flooding-major_floods.asset @@ -3,15 +3,15 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Flood Events - 2000 - 2009" local Identifier = "noaa-sos-land-flooding-major_floods" -local Description = [[Flooding is the nation's most common, costly and deadly natural -hazard. Heavy rain is the most frequent cause of floods, but there are many other natural -triggers, including hurricanes, tidal surges, ice jams and snow melt. Floods and flash -floods have happened in all 50 states in the USA. Flooding in river basins is a natural -part of the river's processes, serving to improve water quality and provide essential -habitat to species, among other benefits. Flooding is a matter of scientific interest, as -well as cultural significance, and is critical to land-use planning and policy. It is -also a vital concern to the safety and welfare of communities in flood prone areas -including those who live along waterways and coasts. People from all walks of life are +local Description = [[Flooding is the nation's most common, costly and deadly natural +hazard. Heavy rain is the most frequent cause of floods, but there are many other natural +triggers, including hurricanes, tidal surges, ice jams and snow melt. Floods and flash +floods have happened in all 50 states in the USA. Flooding in river basins is a natural +part of the river's processes, serving to improve water quality and provide essential +habitat to species, among other benefits. Flooding is a matter of scientific interest, as +well as cultural significance, and is critical to land-use planning and policy. It is +also a vital concern to the safety and welfare of communities in flood prone areas +including those who live along waterways and coasts. People from all walks of life are vulnerable to the effects of flooding]] local URL = "https://sos.noaa.gov/catalog/datasets/flood-events-2000-2009/" @@ -39,7 +39,7 @@ local layer_floods = { Description = Description } -asset.onInitialize(function() +asset.onInitialize(function() openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_floods) end) diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/food_v_feed.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/food_v_feed.asset index 2b98146f2c..e661d99554 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/food_v_feed.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/food_v_feed.asset @@ -3,10 +3,10 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Agriculture: Food vs. Feed" local Identifier = "noaa-sos-land-food_v_feed" -local Description = [[Not all cropland is used for producing food directly for people. A -lot of the food crops grown are actually used as feed for animals. This map shows which -regions produce crops that are mostly consumed directly by humans (in green), which -regions produce about the same amount of human food and animal feed (in orange), and +local Description = [[Not all cropland is used for producing food directly for people. A +lot of the food crops grown are actually used as feed for animals. This map shows which +regions produce crops that are mostly consumed directly by humans (in green), which +regions produce about the same amount of human food and animal feed (in orange), and where most of the crops are used as animal feed (in red)]] local URL = "https://sos.noaa.gov/catalog/datasets/agriculture-food-vs-feed/" @@ -44,10 +44,10 @@ local label = { CartesianPosition = { 0.0, -0.5, -2.0 } } -asset.onInitialize(function() +asset.onInitialize(function() openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_countries) - openspace.addScreenSpaceRenderable(label); + openspace.addScreenSpaceRenderable(label) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/forests.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/forests.asset index 64b2c5b25c..e6c6a23453 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/forests.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/forests.asset @@ -3,11 +3,11 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Forest Change (Extent, Gain, and Loss) - 2000 - 2014" local Identifier = "noaa-sos-land-forests" -local Description = [[This dataset shows annual tree cover extent,gain, and loss from -the year 2001 to 2014, at 30 meter resolution, as colored layers that can be seen -together or one at a time as individual layers that can be toggled on and off. Green is -used to represent tree cover in 2000, red shows tree cover loss between 2001-2014, -blue shows tree cover gain between 2001-2014, and purple is gain and loss together due to +local Description = [[This dataset shows annual tree cover extent,gain, and loss from +the year 2001 to 2014, at 30 meter resolution, as colored layers that can be seen +together or one at a time as individual layers that can be toggled on and off. Green is +used to represent tree cover in 2000, red shows tree cover loss between 2001-2014, +blue shows tree cover gain between 2001-2014, and purple is gain and loss together due to replanting after loss has occurred]] local URL = "https://sos.noaa.gov/catalog/datasets/forest-change-extent-gain-and-loss-2000-2014/" @@ -75,14 +75,14 @@ local label1 = { CartesianPosition = { 0.5, 0.0, -2.0 } } -asset.onInitialize(function() +asset.onInitialize(function() openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_combined) openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_extent) openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_gain) openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_loss) openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_map) - openspace.addScreenSpaceRenderable(label); - openspace.addScreenSpaceRenderable(label1); + openspace.addScreenSpaceRenderable(label) + openspace.addScreenSpaceRenderable(label1) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/geomag_tracklines.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/geomag_tracklines.asset index 77bcac07d2..c93f5395ad 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/geomag_tracklines.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/geomag_tracklines.asset @@ -3,11 +3,11 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Geomagnetic Tracklines" local Identifier = "noaa-sos-land-geomag_tracklines" -local Description = [[Earth is like a giant magnet with a North and South Pole. However, -the magnetic North and South Pole are not aligned with the Geographic North and South -Pole. The Geographic North Pole is defined by the latitude 90° N and is the axis of the -Earth's rotation. The Magnetic North Pole is where the Earth's magnetic field points -vertically downward. The Earth creates its own magnetic field from the electric currents +local Description = [[Earth is like a giant magnet with a North and South Pole. However, +the magnetic North and South Pole are not aligned with the Geographic North and South +Pole. The Geographic North Pole is defined by the latitude 90° N and is the axis of the +Earth's rotation. The Magnetic North Pole is where the Earth's magnetic field points +vertically downward. The Earth creates its own magnetic field from the electric currents created in the liquid iron-nickel core]] local URL = "https://sos.noaa.gov/catalog/datasets/geomagnetic-tracklines/" @@ -38,9 +38,9 @@ local legend = { CartesianPosition = { 0.75, 0.0, -2.0 } } -asset.onInitialize(function() +asset.onInitialize(function() openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) - openspace.addScreenSpaceRenderable(legend); + openspace.addScreenSpaceRenderable(legend) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/global_vegetation.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/global_vegetation.asset index 38717c9492..288a8105b3 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/global_vegetation.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/global_vegetation.asset @@ -3,11 +3,11 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Vegetation: Seasonal Changes - Apr 2012 - Apr 2013" local Identifier = "noaa-sos-land-global_vegetation" -local Description = [[Although 75% of the planet is a relatively unchanging ocean of -blue, the remaining 25% of Earth's surface is a dynamic green. Data from the NASA/NOAA -Suomi NPP satellite is able to show these subtle differences in greenness using the -Visible-Infrared Imager/Radiometer Suite (VIIRS) instrument on board the satellite. This -dataset highlights our ever-changing planet, using a highly detailed vegetation index +local Description = [[Although 75% of the planet is a relatively unchanging ocean of +blue, the remaining 25% of Earth's surface is a dynamic green. Data from the NASA/NOAA +Suomi NPP satellite is able to show these subtle differences in greenness using the +Visible-Infrared Imager/Radiometer Suite (VIIRS) instrument on board the satellite. This +dataset highlights our ever-changing planet, using a highly detailed vegetation index data from the satellite, developed by scientists at NOAA]] local URL = "https://sos.noaa.gov/catalog/datasets/vegetation-seasonal-changes-apr-2012-apr-2013/" @@ -78,7 +78,7 @@ asset.onInitialize(function() openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", background1layer) openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", background2layer) openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) - openspace.addScreenSpaceRenderable(colorbar); + openspace.addScreenSpaceRenderable(colorbar) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/gray_earth.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/gray_earth.asset index 32a0dd7948..41abecdde6 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/gray_earth.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/gray_earth.asset @@ -3,8 +3,8 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Gray Earth" local Identifier = "noaa-sos-land-gray_earth" -local Description = [[This dataset provides a view of the topography and bathymetry of -Earth by shading the continents and sea floor. Gray Earth also shows major continental +local Description = [[This dataset provides a view of the topography and bathymetry of +Earth by shading the continents and sea floor. Gray Earth also shows major continental river systems and drainages. Longest Rivers in the world on each continent: @@ -13,12 +13,12 @@ Longest Rivers in the world on each continent: Asia - Yangtze - 3,915 miles(6,300 km) North America - Missouri - 2,540 miles (4,088 km) Australia - Murray - 1,558 miles (2,508 km) - Europe - Volga - 2,266 miles (3,645) + Europe - Volga - 2,266 miles (3,645) -According to the dataset source, Natural Earth Data, the relief shading and hypsography -(study of Earth's topography; measurement and mapping of land elevations) are derived -from the modified SRTM - Shuttle Radar Topography Mission - Plus elevation data at 1km -resolution. Daniel Huffman, University of Wisconsin, Madison created the regionally +According to the dataset source, Natural Earth Data, the relief shading and hypsography +(study of Earth's topography; measurement and mapping of land elevations) are derived +from the modified SRTM - Shuttle Radar Topography Mission - Plus elevation data at 1km +resolution. Daniel Huffman, University of Wisconsin, Madison created the regionally equalized hypsography that forms the foundation of the Gray Earth imagery]] local URL = "https://sos.noaa.gov/catalog/datasets/gray-earth/" @@ -38,7 +38,7 @@ local layer = { Description = Description } -asset.onInitialize(function() +asset.onInitialize(function() openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) end) diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/hot_topo.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/hot_topo.asset index 3697515f87..0ef301c115 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/hot_topo.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/hot_topo.asset @@ -3,18 +3,18 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Topography and Bathymetry with Nighttime Lights" local Identifier = "noaa-sos-land-hot_topo" -local Description = [[This planet Earth visualization shows a rotating planet in order -to display both a nighttime and daytime view. The daytime side of the visualization shows -the bathymetry and topography of the globe. Color coding is used to distinguish between -the elevations. Red and gray represent the highest terrain on the land, green and yellow -represent the lowest. In the ocean, the darker colors are the deeper ocean floors while -the lighter colors indicate shallower areas as well as mountain ranges on the sea floor. -The very light blue shading in the ocean, near the land forms, is generally the shallow -continental shelf. Some interesting features that can be seen are the mountain ranges in -the oceans, such as the mid-Atlantic Ridge in the middle of the Atlantic Ocean, which is -spreading. Also in the ocean is the Marianas Trench, which is south of Japan. This trench -is the deepest location in the ocean with an amazing depth of 36,201 feet, almost 7 -miles. On land, the Himalayas are a noteworthy feature, as they are the home of Mount +local Description = [[This planet Earth visualization shows a rotating planet in order +to display both a nighttime and daytime view. The daytime side of the visualization shows +the bathymetry and topography of the globe. Color coding is used to distinguish between +the elevations. Red and gray represent the highest terrain on the land, green and yellow +represent the lowest. In the ocean, the darker colors are the deeper ocean floors while +the lighter colors indicate shallower areas as well as mountain ranges on the sea floor. +The very light blue shading in the ocean, near the land forms, is generally the shallow +continental shelf. Some interesting features that can be seen are the mountain ranges in +the oceans, such as the mid-Atlantic Ridge in the middle of the Atlantic Ocean, which is +spreading. Also in the ocean is the Marianas Trench, which is south of Japan. This trench +is the deepest location in the ocean with an amazing depth of 36,201 feet, almost 7 +miles. On land, the Himalayas are a noteworthy feature, as they are the home of Mount Everest, the tallest point on earth at a height of 29,035 feet, almost 5.5 miles]] local URL = "https://sos.noaa.gov/catalog/datasets/topography-and-bathymetry-with-nighttime-lights/" diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/irsat_nightlights.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/irsat_nightlights.asset index ee1909240d..3e6a9ba483 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/irsat_nightlights.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/irsat_nightlights.asset @@ -3,12 +3,12 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Day/Night Terminator (with clouds)" local Identifier = "noaa-sos-land-irsat_nightlights" -local Description = [[The line that separates day and night is called the terminator. It -is also referred to as the "grey line" and the "twilight zone." It is a fuzzy line due to -our atmosphere bending sunlight. In fact, the atmosphere bends sunlight by half a degree, -which is about 37 miles (60 km). It is commonly thought that while half of the Earth is -covered in darkness, the other half is covered in sunlight. This is actually not true -because of the bending of the sunlight results in the land covered by sunlight having +local Description = [[The line that separates day and night is called the terminator. It +is also referred to as the "grey line" and the "twilight zone." It is a fuzzy line due to +our atmosphere bending sunlight. In fact, the atmosphere bends sunlight by half a degree, +which is about 37 miles (60 km). It is commonly thought that while half of the Earth is +covered in darkness, the other half is covered in sunlight. This is actually not true +because of the bending of the sunlight results in the land covered by sunlight having greater area than the land covered by darkness]] local URL = "https://sos.noaa.gov/catalog/datasets/daynight-terminator-with-clouds/" diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/japan_quake.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/japan_quake.asset index f6aacb10b1..b7b754190d 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/japan_quake.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/japan_quake.asset @@ -3,12 +3,12 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Japan Earthquake - March 2011" local Identifier = "noaa-sos-land-japan_quake" -local Description = [[On March 11, 2011 at 2:45 local time, a 9.0 magnitude earthquake -occurred 81 miles (130 km) off the east coast of Sendai, Japan, triggering a massive -tsunami. It is estimated that the initial tsunami wave took 10 to 30 minutes to make its -first landfall. Forecasted wave heights were up to 33 ft (10 m) and there were many -reports of tsunami waves three stories high in parts of Japan. Across the Pacific Ocean, -many countries issued evacuations along the coasts because of the predicted tsunami +local Description = [[On March 11, 2011 at 2:45 local time, a 9.0 magnitude earthquake +occurred 81 miles (130 km) off the east coast of Sendai, Japan, triggering a massive +tsunami. It is estimated that the initial tsunami wave took 10 to 30 minutes to make its +first landfall. Forecasted wave heights were up to 33 ft (10 m) and there were many +reports of tsunami waves three stories high in parts of Japan. Across the Pacific Ocean, +many countries issued evacuations along the coasts because of the predicted tsunami waves]] local URL = "https://sos.noaa.gov/catalog/datasets/japan-earthquake-march-2011/" @@ -48,7 +48,7 @@ asset.onInitialize(function() end openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) - openspace.addScreenSpaceRenderable(legend); + openspace.addScreenSpaceRenderable(legend) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/koppen_climate-koppen_1901_2100.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/koppen_climate-koppen_1901_2100.asset index e53554cbe8..5bd6447901 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/koppen_climate-koppen_1901_2100.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/koppen_climate-koppen_1901_2100.asset @@ -3,12 +3,12 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Koppen-Geiger Climate Changes - 1901 - 2100" local Identifier = "noaa-sos-land-koppen_climate-koppen_1901_2100" -local Description = [[Köppen climate classification is a widely used vegetation-based -empirical climate classification system developed by German botanist-climatologist -Wladimir Köppen. It's based on the idea that climate is best defined by native -vegetation. The formulas used in the classification correspond to those of the vegetation -zones (biomes) that were being mapped for the first time in the late 19th century. It was -first published in 1884 and was revised until 1940 with collaboration by German +local Description = [[Köppen climate classification is a widely used vegetation-based +empirical climate classification system developed by German botanist-climatologist +Wladimir Köppen. It's based on the idea that climate is best defined by native +vegetation. The formulas used in the classification correspond to those of the vegetation +zones (biomes) that were being mapped for the first time in the late 19th century. It was +first published in 1884 and was revised until 1940 with collaboration by German climatologist Rudolf Geiger]] local URL = "https://sos.noaa.gov/catalog/datasets/koppen-geiger-climate-changes-1901-2100/" @@ -59,8 +59,8 @@ asset.onInitialize(function() end openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) - openspace.addScreenSpaceRenderable(legend); - openspace.addScreenSpaceRenderable(legend1); + openspace.addScreenSpaceRenderable(legend) + openspace.addScreenSpaceRenderable(legend1) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/koppen_climate-koppen_2007.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/koppen_climate-koppen_2007.asset index 2efba4a1d1..5aa7491aa4 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/koppen_climate-koppen_2007.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/koppen_climate-koppen_2007.asset @@ -3,12 +3,12 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Koppen-Geiger Climate Classification - 2007" local Identifier = "noaa-sos-land-koppen_climate-koppen_2007" -local Description = [[Köppen climate classification is a widely used vegetation-based -empirical climate classification system developed by German botanist-climatologist -Wladimir Köppen. It's based on the idea that climate is best defined by native -vegetation. The formulas used in the classification correspond to those of the vegetation -zones (biomes) that were being mapped for the first time in the late 19th century. It was -first published in 1884 and was revised until 1940 with collaboration by German +local Description = [[Köppen climate classification is a widely used vegetation-based +empirical climate classification system developed by German botanist-climatologist +Wladimir Köppen. It's based on the idea that climate is best defined by native +vegetation. The formulas used in the classification correspond to those of the vegetation +zones (biomes) that were being mapped for the first time in the late 19th century. It was +first published in 1884 and was revised until 1940 with collaboration by German climatologist Rudolf Geiger.This particular revision is from 2007]] local URL = "https://sos.noaa.gov/catalog/datasets/koppen-geiger-climate-classification-2007/" @@ -49,10 +49,10 @@ local legend1 = { CartesianPosition = { 0.75, -0.5, -2.0 } } -asset.onInitialize(function() +asset.onInitialize(function() openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) - openspace.addScreenSpaceRenderable(legend); - openspace.addScreenSpaceRenderable(legend1); + openspace.addScreenSpaceRenderable(legend) + openspace.addScreenSpaceRenderable(legend1) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/land_cover-animation.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/land_cover-animation.asset index 6f673dfa43..b057b71768 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/land_cover-animation.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/land_cover-animation.asset @@ -3,17 +3,17 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Land Cover (animation)" local Identifier = "noaa-sos-land-land_cover-animation" -local Description = [[The Moderate Resolution Imaging Spectroradiometer (MODIS) -instrument on NASA's Terra satellite provides scientists with a new view of the Earth. -Using data collected by MODIS, researchers at Boston University were able to create these -land cover maps. Understanding the land cover of Earth aids policy makers involved in -natural resource management. The maps are also critical for scientists as they study -changes in the Earth system and as they model the Earth system. For example, in order to -calculate the carbon budget for the Earth system, scientists can use these maps to -determine the extent of vegetation covering the land surface that is absorbing carbon -dioxide. Each of the varying land types have different impacts on the Earth system. Snow -and ice cover cool the planet by reflecting sunlight back to space, forests absorb huge -amounts of carbon dioxide, and croplands and urban areas reflect the human impact on the +local Description = [[The Moderate Resolution Imaging Spectroradiometer (MODIS) +instrument on NASA's Terra satellite provides scientists with a new view of the Earth. +Using data collected by MODIS, researchers at Boston University were able to create these +land cover maps. Understanding the land cover of Earth aids policy makers involved in +natural resource management. The maps are also critical for scientists as they study +changes in the Earth system and as they model the Earth system. For example, in order to +calculate the carbon budget for the Earth system, scientists can use these maps to +determine the extent of vegetation covering the land surface that is absorbing carbon +dioxide. Each of the varying land types have different impacts on the Earth system. Snow +and ice cover cool the planet by reflecting sunlight back to space, forests absorb huge +amounts of carbon dioxide, and croplands and urban areas reflect the human impact on the Earth]] local URL = "https://sos.noaa.gov/catalog/datasets/land-cover-animation/" @@ -54,7 +54,7 @@ asset.onInitialize(function() end openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) - openspace.addScreenSpaceRenderable(label); + openspace.addScreenSpaceRenderable(label) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/land_cover-ribbon.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/land_cover-ribbon.asset index c99300a70a..7b5ee41268 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/land_cover-ribbon.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/land_cover-ribbon.asset @@ -3,17 +3,17 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Land Cover (map with ribbon of labels)" local Identifier = "noaa-sos-land-land_cover-ribbon" -local Description = [[The Moderate Resolution Imaging Spectroradiometer (MODIS) -instrument on NASA's Terra satellite provides scientists with a new view of the Earth. -Using data collected by MODIS, researchers at Boston University were able to create these -land cover maps. Understanding the land cover of Earth aids policy makers involved in -natural resource management. The maps are also critical for scientists as they study -changes in the Earth system and as they model the Earth system. For example, in order to -calculate the carbon budget for the Earth system, scientists can use these maps to -determine the extent of vegetation covering the land surface that is absorbing carbon -dioxide. Each of the varying land types have different impacts on the Earth system. Snow -and ice cover cool the planet by reflecting sunlight back to space, forests absorb huge -amounts of carbon dioxide, and croplands and urban areas reflect the human impact on the +local Description = [[The Moderate Resolution Imaging Spectroradiometer (MODIS) +instrument on NASA's Terra satellite provides scientists with a new view of the Earth. +Using data collected by MODIS, researchers at Boston University were able to create these +land cover maps. Understanding the land cover of Earth aids policy makers involved in +natural resource management. The maps are also critical for scientists as they study +changes in the Earth system and as they model the Earth system. For example, in order to +calculate the carbon budget for the Earth system, scientists can use these maps to +determine the extent of vegetation covering the land surface that is absorbing carbon +dioxide. Each of the varying land types have different impacts on the Earth system. Snow +and ice cover cool the planet by reflecting sunlight back to space, forests absorb huge +amounts of carbon dioxide, and croplands and urban areas reflect the human impact on the Earth]] local URL = "https://sos.noaa.gov/catalog/datasets/land-cover-map-with-ribbon-of-labels/" @@ -44,9 +44,9 @@ local label = { CartesianPosition = { 0.0, -0.5, -2.0 } } -asset.onInitialize(function() +asset.onInitialize(function() openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) - openspace.addScreenSpaceRenderable(label); + openspace.addScreenSpaceRenderable(label) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/land_cover-slideshow.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/land_cover-slideshow.asset index f549ec91f1..2d0c160537 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/land_cover-slideshow.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/land_cover-slideshow.asset @@ -3,17 +3,17 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Land Cover (map with slideshow of labels)" local Identifier = "noaa-sos-land-land_cover-slideshow" -local Description = [[The Moderate Resolution Imaging Spectroradiometer (MODIS) -instrument on NASA's Terra satellite provides scientists with a new view of the Earth. -Using data collected by MODIS, researchers at Boston University were able to create these -land cover maps. Understanding the land cover of Earth aids policy makers involved in -natural resource management. The maps are also critical for scientists as they study -changes in the Earth system and as they model the Earth system. For example, in order to -calculate the carbon budget for the Earth system, scientists can use these maps to -determine the extent of vegetation covering the land surface that is absorbing carbon -dioxide. Each of the varying land types have different impacts on the Earth system. Snow -and ice cover cool the planet by reflecting sunlight back to space, forests absorb huge -amounts of carbon dioxide, and croplands and urban areas reflect the human impact on the +local Description = [[The Moderate Resolution Imaging Spectroradiometer (MODIS) +instrument on NASA's Terra satellite provides scientists with a new view of the Earth. +Using data collected by MODIS, researchers at Boston University were able to create these +land cover maps. Understanding the land cover of Earth aids policy makers involved in +natural resource management. The maps are also critical for scientists as they study +changes in the Earth system and as they model the Earth system. For example, in order to +calculate the carbon budget for the Earth system, scientists can use these maps to +determine the extent of vegetation covering the land surface that is absorbing carbon +dioxide. Each of the varying land types have different impacts on the Earth system. Snow +and ice cover cool the planet by reflecting sunlight back to space, forests absorb huge +amounts of carbon dioxide, and croplands and urban areas reflect the human impact on the Earth]] local URL = "https://sos.noaa.gov/catalog/datasets/land-cover-map-with-slideshow-of-labels/" @@ -70,7 +70,7 @@ local labels = { label_09, label_10, label_11, label_12, label_13, label_14, label_15, label_16 } -asset.onInitialize(function() +asset.onInitialize(function() if not openspace.directoryExists(labelsDestination) then openspace.printInfo("Extracting " .. Name) openspace.unzipFile(syncedDirectory .. "labels.zip", labelsDestination, true) diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/land_production-cropland_current.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/land_production-cropland_current.asset index b4f7355899..fe9085c411 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/land_production-cropland_current.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/land_production-cropland_current.asset @@ -3,12 +3,12 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Agriculture: Cropland Yield (current)" local Identifier = "noaa-sos-land-land_production-cropland_current" -local Description = [[A major component of the 2 Billion More Coming to Dinner film, -this dataset shows the current yield for the three top global crops, corn, wheat and -rice, measured in tons per hectare. Similarly, Cropland Yield - Potential, illustrates -the potential yield for a given area, determined by using the productivity of another -region with analogous environmental conditions and optimized water and nutrient input as -a benchmark. For both maps, darker areas show smaller yields, while bright pink areas +local Description = [[A major component of the 2 Billion More Coming to Dinner film, +this dataset shows the current yield for the three top global crops, corn, wheat and +rice, measured in tons per hectare. Similarly, Cropland Yield - Potential, illustrates +the potential yield for a given area, determined by using the productivity of another +region with analogous environmental conditions and optimized water and nutrient input as +a benchmark. For both maps, darker areas show smaller yields, while bright pink areas indicate higher yields]] local URL = "https://sos.noaa.gov/catalog/datasets/agriculture-cropland-yield-current/" @@ -46,10 +46,10 @@ local legend = { CartesianPosition = { 0.0, -0.5, -2.0 } } -asset.onInitialize(function() +asset.onInitialize(function() openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_countries) - openspace.addScreenSpaceRenderable(legend); + openspace.addScreenSpaceRenderable(legend) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/land_production-cropland_potential.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/land_production-cropland_potential.asset index 56b8a9084e..ebb0caf956 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/land_production-cropland_potential.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/land_production-cropland_potential.asset @@ -3,11 +3,11 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Agriculture: Cropland Yield (potential)" local Identifier = "noaa-sos-land-land_production-cropland_potential" -local Description = [[A major component of the 2 Billion More Coming to Dinner film, -these datasets show current and potential yields for the three top crops, corn, wheat and -rice, measured in tons per hectare. Potential yield for a given area is determined by -using the productivity of another region with analogous environmental conditions and -optimized water and nutrient input as a benchmark. In this map, darker areas show smaller +local Description = [[A major component of the 2 Billion More Coming to Dinner film, +these datasets show current and potential yields for the three top crops, corn, wheat and +rice, measured in tons per hectare. Potential yield for a given area is determined by +using the productivity of another region with analogous environmental conditions and +optimized water and nutrient input as a benchmark. In this map, darker areas show smaller yields, while bright pink areas indicate higher yields]] local URL = "https://sos.noaa.gov/catalog/datasets/agriculture-cropland-yield-potential/" @@ -45,10 +45,10 @@ local legend = { CartesianPosition = { 0.0, -0.5, -2.0 } } -asset.onInitialize(function() +asset.onInitialize(function() openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_countries) - openspace.addScreenSpaceRenderable(legend); + openspace.addScreenSpaceRenderable(legend) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/land_production-production_gap.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/land_production-production_gap.asset index 451349aa74..47e35a1723 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/land_production-production_gap.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/land_production-production_gap.asset @@ -3,11 +3,11 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Agriculture: Cropland Production Gap" local Identifier = "noaa-sos-land-land_production-production_gap" -local Description = [[A major component of the 2 Billion More Coming to Dinner film, - these datasets show current and potential yields for the three top global crops, corn, - wheat and rice, measured in tons per hectare. Potential yield for a given area is - determined by using the productivity of another region with analogous environmental - conditions and optimized water and nutrient input as a benchmark. In both maps, darker +local Description = [[A major component of the 2 Billion More Coming to Dinner film, + these datasets show current and potential yields for the three top global crops, corn, + wheat and rice, measured in tons per hectare. Potential yield for a given area is + determined by using the productivity of another region with analogous environmental + conditions and optimized water and nutrient input as a benchmark. In both maps, darker areas show smaller yields, while bright pink areas indicate higher yields]] local URL = "https://sos.noaa.gov/catalog/datasets/agriculture-cropland-yield-potential/" @@ -45,10 +45,10 @@ local legend = { CartesianPosition = { 0.0, -0.5, -2.0 } } -asset.onInitialize(function() +asset.onInitialize(function() openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_countries) - openspace.addScreenSpaceRenderable(legend); + openspace.addScreenSpaceRenderable(legend) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/land_ratio.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/land_ratio.asset index f3c834490c..2018d1c049 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/land_ratio.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/land_ratio.asset @@ -3,7 +3,7 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Land to Sea Ratio" local Identifier = "noaa-sos-land-land_ratio" -local Description = [[In this dataset, we witness the world map transform into a graph +local Description = [[In this dataset, we witness the world map transform into a graph that shows the ratio of land and sea at different latitudes]] local URL = "https://sos.noaa.gov/catalog/datasets/land-to-sea-ratio/" diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/latitude_longitude.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/latitude_longitude.asset index d20b4f30cf..9b2370d325 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/latitude_longitude.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/latitude_longitude.asset @@ -3,8 +3,8 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Latitude Longitude Layers" local Identifier = "noaa-sos-land-latitude_longitude" -local Description = [[Showing the relationship of latitude and longitude lines on Earth, -this dataset is useful when talking about geographical features or areas, GPS and the +local Description = [[Showing the relationship of latitude and longitude lines on Earth, +this dataset is useful when talking about geographical features or areas, GPS and the introduction of map reading and exploration]] local URL = "https://sos.noaa.gov/catalog/datasets/latitude-longitude-layers/" @@ -44,7 +44,7 @@ local layer_longitude = { Description = Description } -asset.onInitialize(function() +asset.onInitialize(function() openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_base) openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_combined) openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_latitude) diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/magnetic_declination.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/magnetic_declination.asset index b62392164f..d6e8cf82d3 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/magnetic_declination.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/magnetic_declination.asset @@ -3,11 +3,11 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Earth's Magnetic Declination" local Identifier = "noaa-sos-land-magnetic_declination" -local Description = [[Earth is like a giant magnet with a North and South Pole. However, -the magnetic North and South Pole are not aligned with the Geographic North and South -Pole. The Geographic North Pole is defined by the latitude 90° N and is the axis of the -Earth's rotation. The Magnetic North Pole is where the Earth's magnetic field points -vertically downward. The Earth creates its own magnetic field from the electric currents +local Description = [[Earth is like a giant magnet with a North and South Pole. However, +the magnetic North and South Pole are not aligned with the Geographic North and South +Pole. The Geographic North Pole is defined by the latitude 90° N and is the axis of the +Earth's rotation. The Magnetic North Pole is where the Earth's magnetic field points +vertically downward. The Earth creates its own magnetic field from the electric currents created in the liquid iron-nickel core]] local URL = "https://sos.noaa.gov/catalog/datasets/earths-magnetic-declination/" diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/nightsky.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/nightsky.asset index 1cffbbfa4f..fb70ccda16 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/nightsky.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/nightsky.asset @@ -3,8 +3,8 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Light Pollution - Artificial Sky Brightness" local Identifier = "noaa-sos-land-nightsky" -local Description = [[Light pollution in urban centers creates a sky glow that can blot -out the stars. The brighter the area in this map the harder it is to see stars and +local Description = [[Light pollution in urban centers creates a sky glow that can blot +out the stars. The brighter the area in this map the harder it is to see stars and constellations in the night sky]] local URL = "https://sos.noaa.gov/catalog/datasets/light-pollution-artificial-sky-brightness/" @@ -34,9 +34,9 @@ local legend = { CartesianPosition = { 0.75, 0.0, -2.0 } } -asset.onInitialize(function() +asset.onInitialize(function() openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) - openspace.addScreenSpaceRenderable(legend); + openspace.addScreenSpaceRenderable(legend) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/nuclear_earthquake.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/nuclear_earthquake.asset index bedf5a684e..8f3f29dca9 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/nuclear_earthquake.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/nuclear_earthquake.asset @@ -3,17 +3,17 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Earthquakes and Nuclear Power Plants" local Identifier = "noaa-sos-land-nuclear_earthquake" -local Description = [[Earthquakes have been occurring on Earth since its formation. They -occur when tectonic plates that are sliding against or past each other build up enough -tension to slip, causing the rock to settle into a new position and the ground to shake. -The United States Geological Survey predicts that 500,000 earthquakes happen every year, -although most go undetected because they are so small or so far away from populated -areas. 10,000 of them can be felt by humans and 100 of them cause damage. Unfortunately, -scientists have not yet discovered a reliably precise way to predict earthquakes, and -there is debate over whether such a thing is even possible. Current prediction methods -involve measuring the tension that has been bled off by past earthquakes and how often -earthquakes have occurred at that location before. Due to the fact that the instruments -that can measure tension and accurate seismographs are a recent invention, earthquake +local Description = [[Earthquakes have been occurring on Earth since its formation. They +occur when tectonic plates that are sliding against or past each other build up enough +tension to slip, causing the rock to settle into a new position and the ground to shake. +The United States Geological Survey predicts that 500,000 earthquakes happen every year, +although most go undetected because they are so small or so far away from populated +areas. 10,000 of them can be felt by humans and 100 of them cause damage. Unfortunately, +scientists have not yet discovered a reliably precise way to predict earthquakes, and +there is debate over whether such a thing is even possible. Current prediction methods +involve measuring the tension that has been bled off by past earthquakes and how often +earthquakes have occurred at that location before. Due to the fact that the instruments +that can measure tension and accurate seismographs are a recent invention, earthquake prediction continues to be inaccurate and imprecise]] local URL = "https://sos.noaa.gov/catalog/datasets/earthquakes-and-nuclear-power-plants/" @@ -73,12 +73,12 @@ local legend = { CartesianPosition = { 1.0, 0.0, -2.0 } } -asset.onInitialize(function() +asset.onInitialize(function() openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_base) openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_all) openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_new) openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_nuclear) - openspace.addScreenSpaceRenderable(legend); + openspace.addScreenSpaceRenderable(legend) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/paleo_map.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/paleo_map.asset index 07da707b21..94065a393a 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/paleo_map.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/paleo_map.asset @@ -3,13 +3,13 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "PALEOMAP PaleoAtlas 0 - 750 Million Years Ago" local Identifier = "noaa-sos-land-paleomap" -local Description = [[The PALEOMAP PaleoAtlas for GPlates consists of 91 paleogeographic - maps spanning the Phanerozoic and late Neoproterozoic. The PaleoAtlas can be directly - loaded into GPlates as a Time Dependent Raster file. The paleogeographic maps in the - PaleoAtlas illustrate the ancient configuration of the ocean basins and continents, as - well as important topographic and bathymetric features such as mountains, lowlands, - shallow sea, continental shelves, and deep oceans. This tutorial also describes how the - maps in the PaleoAtlas were made, documents the sources of information used to make the +local Description = [[The PALEOMAP PaleoAtlas for GPlates consists of 91 paleogeographic + maps spanning the Phanerozoic and late Neoproterozoic. The PaleoAtlas can be directly + loaded into GPlates as a Time Dependent Raster file. The paleogeographic maps in the + PaleoAtlas illustrate the ancient configuration of the ocean basins and continents, as + well as important topographic and bathymetric features such as mountains, lowlands, + shallow sea, continental shelves, and deep oceans. This tutorial also describes how the + maps in the PaleoAtlas were made, documents the sources of information used to make the paleogeographic maps, and provides instructions how to plot user-defined paleodata on the paleogeographic maps using the program PaleoDataPlotter. @@ -153,7 +153,7 @@ asset.onInitialize(function() openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", v) end - openspace.addScreenSpaceRenderable(legend); + openspace.addScreenSpaceRenderable(legend) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/paleo_overlays.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/paleo_overlays.asset index f937407ff8..45c01ae3aa 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/paleo_overlays.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/paleo_overlays.asset @@ -3,16 +3,16 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Paleoclimate Proxies" local Identifier = "noaa-sos-land-paleo_overlays" -local Description = [[Every year, particles eroding from the continents are transported -to the oceans by the wind as dust and by rivers as sands and gravels. Once they get to -the ocean, they mix with billions of tons of dead plankton shells, sink, and settle on -the seafloor. There, they accumulate vertically in layers on top of previous years' -material. Similarly, this year's snow accumulates on top of the previous years' snow at -the polar regions in places like Greenland and Antarctica. Over time, this process forms -new layers of ice. Trees, much the same way, add yearly layers of new cells in concentric -circles just below their bark - called tree rings. And, in many caves around the world, -the strength of the seasonal cycle of a wet monsoon followed by a dry season is recorded -in the chemistry of stalagmites rising up from the cave floor, formed by drips of +local Description = [[Every year, particles eroding from the continents are transported +to the oceans by the wind as dust and by rivers as sands and gravels. Once they get to +the ocean, they mix with billions of tons of dead plankton shells, sink, and settle on +the seafloor. There, they accumulate vertically in layers on top of previous years' +material. Similarly, this year's snow accumulates on top of the previous years' snow at +the polar regions in places like Greenland and Antarctica. Over time, this process forms +new layers of ice. Trees, much the same way, add yearly layers of new cells in concentric +circles just below their bark - called tree rings. And, in many caves around the world, +the strength of the seasonal cycle of a wet monsoon followed by a dry season is recorded +in the chemistry of stalagmites rising up from the cave floor, formed by drips of mineral-rich water from the roof of the cave]] local URL = "https://sos.noaa.gov/catalog/datasets/paleoclimate-proxies/" @@ -84,7 +84,7 @@ asset.onInitialize(function () openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_ocean) openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_speleothem) openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_tree_rings) - openspace.addScreenSpaceRenderable(legend); + openspace.addScreenSpaceRenderable(legend) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/pantropical_biomass.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/pantropical_biomass.asset index 13135d9495..31a7427c59 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/pantropical_biomass.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/pantropical_biomass.asset @@ -3,10 +3,10 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Land Cover: Woody Biomass in Pan-tropics" local Identifier = "noaa-sos-land-pantropical_biomass" -local Description = [[Tropical deforestation and forest degradation account for an -estimated 20% of the world's anthropogenic emissions of carbon dioxide, a significant -greenhouse gas contributor. Despite the important services that tropical forests provide, -there is incomplete data and knowledge of their condition and coverage, and thus no +local Description = [[Tropical deforestation and forest degradation account for an +estimated 20% of the world's anthropogenic emissions of carbon dioxide, a significant +greenhouse gas contributor. Despite the important services that tropical forests provide, +there is incomplete data and knowledge of their condition and coverage, and thus no accurate baseline for evaluating and monitoring future changes]] local URL = "https://sos.noaa.gov/catalog/datasets/land-cover-woody-biomass-in-pan-tropics/" @@ -39,7 +39,7 @@ local legend = { asset.onInitialize(function () openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) - openspace.addScreenSpaceRenderable(legend); + openspace.addScreenSpaceRenderable(legend) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/plate_movement.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/plate_movement.asset index e56e2e7e15..2d34fc16bc 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/plate_movement.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/plate_movement.asset @@ -3,19 +3,19 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Plate Movement - 200 Million Years Ago to Today" local Identifier = "noaa-sos-land-plate_movement" -local Description = [[Our planet's surface has been shaped and re-shaped by plate -tectonics through cycles of supercontinent amalgamation and breakup. We can study the -motion of the tectonic plates, and the continents that they carry, by measuring the -magnetic signatures recorded in rocks that form the seafloor. As plates move apart at mid -oceanic ridges (also known as seafloor spreading centers), lava from the Earth's mantle -fills the void that is being created and solidifies as basalt, which can capture the -magnetic polarity of the planet at the time. As the magnetic polarity reverses -irregularly over time, we can use this barcode pattern to determine the age of the -oceanic crust across all the world's oceans. Teams of geologists, geophysicists and -marine scientists use ocean-going scientific vessels to criss-cross the oceans in order -to reveal the entire "barcode" of seafloor spreading histories. This data enables the -creation of "plate tectonic reconstructions" where the seafloor spreading history can be -unwound to restore the past position of continents as they are pushed and pulled by the +local Description = [[Our planet's surface has been shaped and re-shaped by plate +tectonics through cycles of supercontinent amalgamation and breakup. We can study the +motion of the tectonic plates, and the continents that they carry, by measuring the +magnetic signatures recorded in rocks that form the seafloor. As plates move apart at mid +oceanic ridges (also known as seafloor spreading centers), lava from the Earth's mantle +fills the void that is being created and solidifies as basalt, which can capture the +magnetic polarity of the planet at the time. As the magnetic polarity reverses +irregularly over time, we can use this barcode pattern to determine the age of the +oceanic crust across all the world's oceans. Teams of geologists, geophysicists and +marine scientists use ocean-going scientific vessels to criss-cross the oceans in order +to reveal the entire "barcode" of seafloor spreading histories. This data enables the +creation of "plate tectonic reconstructions" where the seafloor spreading history can be +unwound to restore the past position of continents as they are pushed and pulled by the motion of the oceanic plates]] local URL = "https://sos.noaa.gov/catalog/datasets/plate-movement-200-million-years-ago-to-today/" @@ -57,7 +57,7 @@ asset.onInitialize(function () end openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) - openspace.addScreenSpaceRenderable(age_scale); + openspace.addScreenSpaceRenderable(age_scale) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/river_discharge_2010.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/river_discharge_2010.asset index 23f02823f1..16705873b9 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/river_discharge_2010.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/river_discharge_2010.asset @@ -3,10 +3,10 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Rivers: Daily Discharge - 2010" local Identifier = "noaa-sos-land-river_discharge_2010" -local Description = [[This dataset illustrates hydrological conditions worldwide for the -year 2010. The data originates from a computational model, the Water Balance Model (WBM). -WBM takes daily rainfall and temperature data, maps of vegetation, land-use, irrigation -and soil properties, and then calculates the hydrological balance for each of its grid +local Description = [[This dataset illustrates hydrological conditions worldwide for the +year 2010. The data originates from a computational model, the Water Balance Model (WBM). +WBM takes daily rainfall and temperature data, maps of vegetation, land-use, irrigation +and soil properties, and then calculates the hydrological balance for each of its grid cells]] local URL = "https://sos.noaa.gov/catalog/datasets/rivers-daily-discharge-2010/" @@ -47,7 +47,7 @@ asset.onInitialize(function () end openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) - openspace.addScreenSpaceRenderable(colorbar); + openspace.addScreenSpaceRenderable(colorbar) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/sea_floor_age-iso_lines_yellow.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/sea_floor_age-iso_lines_yellow.asset index 1d04393e83..ff047ea7d3 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/sea_floor_age-iso_lines_yellow.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/sea_floor_age-iso_lines_yellow.asset @@ -3,16 +3,16 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Age of the Seafloor Contour Lines" local Identifier = "noaa-sos-land-sea_floor_age-iso_lines_yellow" -local Description = [[The surface of the Earth is composed of a mosaic tectonic plates -moving with respect to each other. The Earth is made of seven major plates and several -smaller plates. As the plates move, new sea floor can be created. The plates form three -different kinds of boundaries: convergent, divergent, and transform. Convergent -boundaries are also called collision boundaries because they are areas where two plates -collide. At transform boundaries, the plates slide and grind past one another. The -divergent boundaries are the areas where plates are moving apart from one another. Where -plates move apart, new crustal material is formed from molten magma from below the -Earth's surface. Because of this, the youngest sea floor can be found along divergent -boundaries, such as the Mid-Atlantic Ocean Ridge. The spreading, however, is generally +local Description = [[The surface of the Earth is composed of a mosaic tectonic plates +moving with respect to each other. The Earth is made of seven major plates and several +smaller plates. As the plates move, new sea floor can be created. The plates form three +different kinds of boundaries: convergent, divergent, and transform. Convergent +boundaries are also called collision boundaries because they are areas where two plates +collide. At transform boundaries, the plates slide and grind past one another. The +divergent boundaries are the areas where plates are moving apart from one another. Where +plates move apart, new crustal material is formed from molten magma from below the +Earth's surface. Because of this, the youngest sea floor can be found along divergent +boundaries, such as the Mid-Atlantic Ocean Ridge. The spreading, however, is generally not uniform causing linear features perpendicular to the divergent boundaries]] local URL = "https://sos.noaa.gov/catalog/datasets/age-of-the-seafloor-contour-lines/" @@ -46,7 +46,7 @@ local colorbar = { asset.onInitialize(function () openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) - openspace.addScreenSpaceRenderable(colorbar); + openspace.addScreenSpaceRenderable(colorbar) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/sea_floor_age-shaded_veg.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/sea_floor_age-shaded_veg.asset index d3c2ddce50..6b0ec74ad8 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/sea_floor_age-shaded_veg.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/sea_floor_age-shaded_veg.asset @@ -3,16 +3,16 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Age of the Seafloor (vegetation)" local Identifier = "noaa-sos-land-sea_floor_age-shaded_veg" -local Description = [[The surface of the Earth is composed of a mosaic tectonic plates -moving with respect to each other. The Earth is made of seven major plates and several -smaller plates. As the plates move, new sea floor can be created. The plates form three -different kinds of boundaries: convergent, divergent, and transform. Convergent -boundaries are also called collision boundaries because they are areas where two plates -collide. At transform boundaries, the plates slide and grind past one another. The -divergent boundaries are the areas where plates are moving apart from one another. Where -plates move apart, new crustal material is formed from molten magma from below the -Earth's surface. Because of this, the youngest sea floor can be found along divergent -boundaries, such as the Mid-Atlantic Ocean Ridge. The spreading, however, is generally +local Description = [[The surface of the Earth is composed of a mosaic tectonic plates +moving with respect to each other. The Earth is made of seven major plates and several +smaller plates. As the plates move, new sea floor can be created. The plates form three +different kinds of boundaries: convergent, divergent, and transform. Convergent +boundaries are also called collision boundaries because they are areas where two plates +collide. At transform boundaries, the plates slide and grind past one another. The +divergent boundaries are the areas where plates are moving apart from one another. Where +plates move apart, new crustal material is formed from molten magma from below the +Earth's surface. Because of this, the youngest sea floor can be found along divergent +boundaries, such as the Mid-Atlantic Ocean Ridge. The spreading, however, is generally not uniform causing linear features perpendicular to the divergent boundaries]] local URL = "https://sos.noaa.gov/catalog/datasets/age-of-the-seafloor-vegetation/" @@ -68,7 +68,7 @@ asset.onInitialize(function () openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_aol) openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_no_labels) openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_trans) - openspace.addScreenSpaceRenderable(colorbar); + openspace.addScreenSpaceRenderable(colorbar) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/sea_floor_age-topo.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/sea_floor_age-topo.asset index d55a14cc24..791f795c28 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/sea_floor_age-topo.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/sea_floor_age-topo.asset @@ -3,16 +3,16 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Age of the Seafloor (topography)" local Identifier = "noaa-sos-land-sea_floor_age-topo" -local Description = [[The surface of the Earth is composed of a mosaic tectonic plates -moving with respect to each other. The Earth is made of seven major plates and several -smaller plates. As the plates move, new sea floor can be created. The plates form three -different kinds of boundaries: convergent, divergent, and transform. Convergent -boundaries are also called collision boundaries because they are areas where two plates -collide. At transform boundaries, the plates slide and grind past one another. The -divergent boundaries are the areas where plates are moving apart from one another. Where -plates move apart, new crustal material is formed from molten magma from below the -Earth's surface. Because of this, the youngest sea floor can be found along divergent -boundaries, such as the Mid-Atlantic Ocean Ridge. The spreading, however, is generally +local Description = [[The surface of the Earth is composed of a mosaic tectonic plates +moving with respect to each other. The Earth is made of seven major plates and several +smaller plates. As the plates move, new sea floor can be created. The plates form three +different kinds of boundaries: convergent, divergent, and transform. Convergent +boundaries are also called collision boundaries because they are areas where two plates +collide. At transform boundaries, the plates slide and grind past one another. The +divergent boundaries are the areas where plates are moving apart from one another. Where +plates move apart, new crustal material is formed from molten magma from below the +Earth's surface. Because of this, the youngest sea floor can be found along divergent +boundaries, such as the Mid-Atlantic Ocean Ridge. The spreading, however, is generally not uniform causing linear features perpendicular to the divergent boundaries]] local URL = "https://sos.noaa.gov/catalog/datasets/age-of-the-seafloor-topography/" @@ -60,7 +60,7 @@ asset.onInitialize(function () openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_base) openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_aol) openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_orig) - openspace.addScreenSpaceRenderable(colorbar); + openspace.addScreenSpaceRenderable(colorbar) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/seismic_waves-1994northridge.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/seismic_waves-1994northridge.asset index 00d027d0d3..c5b9847191 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/seismic_waves-1994northridge.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/seismic_waves-1994northridge.asset @@ -3,13 +3,13 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Seismic Waves: Northridge Earthquake - 1994" local Identifier = "noaa-sos-land-seismic_waves-1994northride" -local Description = [[At 4:30 a.m. on January 17, 1994, the shaking of an earthquake -awakened 10 million people in the Los Angeles region of Southern California. The -earthquake's epicenter was in Northridge, CA, and it was a magnitude 6.7 shock that -proved to be the most costly earthquake in United States history. The shaking heavily -damaged communities throughout the San Fernando Valley and Simi Valley, and the -surrounding mountains north and west of Los Angeles, causing estimated losses of $20 -billion. Fifty-seven people died, more than 9,000 were injured, and more than 20,000 were +local Description = [[At 4:30 a.m. on January 17, 1994, the shaking of an earthquake +awakened 10 million people in the Los Angeles region of Southern California. The +earthquake's epicenter was in Northridge, CA, and it was a magnitude 6.7 shock that +proved to be the most costly earthquake in United States history. The shaking heavily +damaged communities throughout the San Fernando Valley and Simi Valley, and the +surrounding mountains north and west of Los Angeles, causing estimated losses of $20 +billion. Fifty-seven people died, more than 9,000 were injured, and more than 20,000 were displaced from their homes by the effects of the quake]] local URL = "https://sos.noaa.gov/catalog/datasets/seismic-waves-northridge-earthquake-1994/" @@ -71,7 +71,7 @@ asset.onInitialize(function () openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_base) openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_stations) openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_images) - openspace.addScreenSpaceRenderable(pips); + openspace.addScreenSpaceRenderable(pips) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/species_richness-amphibians.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/species_richness-amphibians.asset index cea57c8df9..471a3560a7 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/species_richness-amphibians.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/species_richness-amphibians.asset @@ -3,13 +3,13 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Species Richness - Amphibians" local Identifier = "noaa-sos-land-species_richness-amphibians" -local Description = [[Understanding the biodiversity of our planet is critical for -developing conservation strategies. This series of datasets shows the biodiversity of -birds, mammals, and amphibians. Said simply, these maps show how many kinds of birds or -mammals or amphibians live in each area around the world. These maps look at just the -animals on land and don't include any marine animals. Also included are corresponding -maps of where the threatened species live, the ones at greatest risk of extinction. -Knowing where these threatened species live can help direct conservation efforts to +local Description = [[Understanding the biodiversity of our planet is critical for +developing conservation strategies. This series of datasets shows the biodiversity of +birds, mammals, and amphibians. Said simply, these maps show how many kinds of birds or +mammals or amphibians live in each area around the world. These maps look at just the +animals on land and don't include any marine animals. Also included are corresponding +maps of where the threatened species live, the ones at greatest risk of extinction. +Knowing where these threatened species live can help direct conservation efforts to ensure that the places with the most vulnerable species are being protected]] local URL = "https://sos.noaa.gov/catalog/datasets/species-richness-amphibians/" @@ -47,13 +47,13 @@ local labels = { asset.onInitialize(function () openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_8192) openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_with_background) - openspace.addScreenSpaceRenderable(labels); + openspace.addScreenSpaceRenderable(labels) end) asset.onDeinitialize(function() openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer_8192) openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer_with_background) - openspace.removeScreenSpaceRenderable(labels); + openspace.removeScreenSpaceRenderable(labels) end) asset.export(layer_8192) diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/species_richness-amphibians_threatened.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/species_richness-amphibians_threatened.asset index 5fba43e402..b656f41d64 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/species_richness-amphibians_threatened.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/species_richness-amphibians_threatened.asset @@ -3,13 +3,13 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Species Richness - Amphibians Threatened" local Identifier = "noaa-sos-land-species_richness-amphibians_threatened" -local Description = [[Understanding the biodiversity of our planet is critical for -developing conservation strategies. This series of datasets shows the biodiversity of -birds, mammals, and amphibians. Said simply, these maps show how many kinds of birds or -mammals or amphibians live in each area around the world. These maps look at just the -animals on land and don't include any marine animals. Also included are corresponding -maps of where the threatened species live, the ones at greatest risk of extinction. -Knowing where these threatened species live can help direct conservation efforts to +local Description = [[Understanding the biodiversity of our planet is critical for +developing conservation strategies. This series of datasets shows the biodiversity of +birds, mammals, and amphibians. Said simply, these maps show how many kinds of birds or +mammals or amphibians live in each area around the world. These maps look at just the +animals on land and don't include any marine animals. Also included are corresponding +maps of where the threatened species live, the ones at greatest risk of extinction. +Knowing where these threatened species live can help direct conservation efforts to ensure that the places with the most vulnerable species are being protected]] local URL = "https://sos.noaa.gov/catalog/datasets/species-richness-amphibians-threatened/" @@ -48,7 +48,7 @@ local labels = { asset.onInitialize(function () openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_4096) openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_with_background) - openspace.addScreenSpaceRenderable(labels); + openspace.addScreenSpaceRenderable(labels) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/species_richness-birds.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/species_richness-birds.asset index 6bcbb5866b..9362f2e284 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/species_richness-birds.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/species_richness-birds.asset @@ -3,13 +3,13 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Species Richness - Birds" local Identifier = "noaa-sos-land-species_richness-birds" -local Description = [[Understanding the biodiversity of our planet is critical for -developing conservation strategies. This series of datasets shows the biodiversity of -birds, mammals, and amphibians. Said simply, these maps show how many kinds of birds or -mammals or amphibians live in each area around the world. These maps look at just the -animals on land and don't include any marine animals. Also included are corresponding -maps of where the threatened species live, the ones at greatest risk of extinction. -Knowing where these threatened species live can help direct conservation efforts to +local Description = [[Understanding the biodiversity of our planet is critical for +developing conservation strategies. This series of datasets shows the biodiversity of +birds, mammals, and amphibians. Said simply, these maps show how many kinds of birds or +mammals or amphibians live in each area around the world. These maps look at just the +animals on land and don't include any marine animals. Also included are corresponding +maps of where the threatened species live, the ones at greatest risk of extinction. +Knowing where these threatened species live can help direct conservation efforts to ensure that the places with the most vulnerable species are being protected]] local URL = "https://sos.noaa.gov/catalog/datasets/species-richness-birds/" diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/species_richness-birds_threatened.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/species_richness-birds_threatened.asset index 32f0e732f7..0a53354813 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/species_richness-birds_threatened.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/species_richness-birds_threatened.asset @@ -3,13 +3,13 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Species Richness - Birds Threatened" local Identifier = "noaa-sos-land-species_richness-birds_threatened" -local Description = [[Understanding the biodiversity of our planet is critical for -developing conservation strategies. This series of datasets shows the biodiversity of -birds, mammals, and amphibians. Said simply, these maps show how many kinds of birds or -mammals or amphibians live in each area around the world. These maps look at just the -animals on land and don't include any marine animals. Also included are corresponding -maps of where the threatened species live, the ones at greatest risk of extinction. -Knowing where these threatened species live can help direct conservation efforts to +local Description = [[Understanding the biodiversity of our planet is critical for +developing conservation strategies. This series of datasets shows the biodiversity of +birds, mammals, and amphibians. Said simply, these maps show how many kinds of birds or +mammals or amphibians live in each area around the world. These maps look at just the +animals on land and don't include any marine animals. Also included are corresponding +maps of where the threatened species live, the ones at greatest risk of extinction. +Knowing where these threatened species live can help direct conservation efforts to ensure that the places with the most vulnerable species are being protected]] local URL = "https://sos.noaa.gov/catalog/datasets/species-richness-birds-threatened/" @@ -48,13 +48,13 @@ local labels = { asset.onInitialize(function () openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_4096) openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_with_background) - openspace.addScreenSpaceRenderable(labels); + openspace.addScreenSpaceRenderable(labels) end) asset.onDeinitialize(function() openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer_4096) openspace.globebrowsing.deleteLayer(globeIdentifier, "ColorLayers", layer_with_background) - openspace.removeScreenSpaceRenderable(labels); + openspace.removeScreenSpaceRenderable(labels) end) asset.export(layer_4096) diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/species_richness-mammals.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/species_richness-mammals.asset index f29cc36a02..217961e1bc 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/species_richness-mammals.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/species_richness-mammals.asset @@ -3,13 +3,13 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Species Richness - Mammals" local Identifier = "noaa-sos-land-species_richness-mammals" -local Description = [[Understanding the biodiversity of our planet is critical for -developing conservation strategies. This series of datasets shows the biodiversity of -birds, mammals, and amphibians. Said simply, these maps show how many kinds of birds or -mammals or amphibians live in each area around the world. These maps look at just the -animals on land and don't include any marine animals. Also included are corresponding -maps of where the threatened species live, the ones at greatest risk of extinction. -Knowing where these threatened species live can help direct conservation efforts to +local Description = [[Understanding the biodiversity of our planet is critical for +developing conservation strategies. This series of datasets shows the biodiversity of +birds, mammals, and amphibians. Said simply, these maps show how many kinds of birds or +mammals or amphibians live in each area around the world. These maps look at just the +animals on land and don't include any marine animals. Also included are corresponding +maps of where the threatened species live, the ones at greatest risk of extinction. +Knowing where these threatened species live can help direct conservation efforts to ensure that the places with the most vulnerable species are being protected]] local URL = "https://sos.noaa.gov/catalog/datasets/species-richness-mammals/" diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/species_richness-mammals_threatened.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/species_richness-mammals_threatened.asset index 0faee78153..7f8e2d6aec 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/species_richness-mammals_threatened.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/species_richness-mammals_threatened.asset @@ -3,13 +3,13 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Species Richness - Mammals Threatened" local Identifier = "noaa-sos-land-species_richness-mammals_threatened" -local Description = [[Understanding the biodiversity of our planet is critical for -developing conservation strategies. This series of datasets shows the biodiversity of -birds, mammals, and amphibians. Said simply, these maps show how many kinds of birds or -mammals or amphibians live in each area around the world. These maps look at just the -animals on land and don't include any marine animals. Also included are corresponding -maps of where the threatened species live, the ones at greatest risk of extinction. -Knowing where these threatened species live can help direct conservation efforts to +local Description = [[Understanding the biodiversity of our planet is critical for +developing conservation strategies. This series of datasets shows the biodiversity of +birds, mammals, and amphibians. Said simply, these maps show how many kinds of birds or +mammals or amphibians live in each area around the world. These maps look at just the +animals on land and don't include any marine animals. Also included are corresponding +maps of where the threatened species live, the ones at greatest risk of extinction. +Knowing where these threatened species live can help direct conservation efforts to ensure that the places with the most vulnerable species are being protected]] local URL = "https://sos.noaa.gov/catalog/datasets/species-richness-mammals-threatened/" diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/surface_temperature.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/surface_temperature.asset index 63d320fd11..65367f7370 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/surface_temperature.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/surface_temperature.asset @@ -3,13 +3,13 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Surface Temperature" local Identifier = "noaa-sos-land-surface_temperature" -local Description = [[These maps combine high-resolution daytime surface temperatures -derived from satellite observations for both land and sea and display them with a common -color scale. Displaying these high-resolution data with a common color scale makes -evident the large difference between surface heating on land versus the sea. It also -shows the relatively small seasonal variation in sea surface temperature over the globe -relative to land temperatures. The larger seasonal variation in average temperature of -the northern hemisphere relative to the southern hemisphere, a result of the larger land +local Description = [[These maps combine high-resolution daytime surface temperatures +derived from satellite observations for both land and sea and display them with a common +color scale. Displaying these high-resolution data with a common color scale makes +evident the large difference between surface heating on land versus the sea. It also +shows the relatively small seasonal variation in sea surface temperature over the globe +relative to land temperatures. The larger seasonal variation in average temperature of +the northern hemisphere relative to the southern hemisphere, a result of the larger land area in the northern hemisphere, is also evident]] local URL = "https://sos.noaa.gov/catalog/datasets/surface-temperature/" @@ -61,8 +61,8 @@ asset.onInitialize(function () end openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) - openspace.addScreenSpaceRenderable(colorbar); - openspace.addScreenSpaceRenderable(colorbar2); + openspace.addScreenSpaceRenderable(colorbar) + openspace.addScreenSpaceRenderable(colorbar2) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/top_quakes.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/top_quakes.asset index e18e6b8355..396ddaed1e 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/top_quakes.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/top_quakes.asset @@ -3,19 +3,19 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Earthquakes: Historical Top 10 - through 2011" local Identifier = "noaa-sos-land-top_quakes" -local Description = [[It is estimated that there are 500,000 detectable earthquakes in -the world each year. Of those, 100,000 can be felt and 100 of them cause damage. Anything -that causes seismic waves to radiate throughout the Earth is an earthquake. The cause of -earthquakes can be natural, such as one tectonic plate slipping below another, or -anthropogenic (cause by humans), such as drilling for fossil fuels, extraction of -minerals, huge explosions, and the collapse of large buildings. The surface of the Earth -is composed of a mosaic of tectonic plates moving with respect to each other. When two -plates glide past one another, a stress builds up at the boundary. When that stress -reaches a critical level, the boundary slips and the result is an earthquake. Because -most natural earthquakes occur due to slipping plates, the boundaries between tectonic -plates are "hot spots" for earthquakes. The magnitude of earthquakes is measured by the -Richter magnitude scale. It is a base-10 logarithm scale of the ground motion caused by -the earthquake. Each increase of 1 in magnitude represents 10 times more ground +local Description = [[It is estimated that there are 500,000 detectable earthquakes in +the world each year. Of those, 100,000 can be felt and 100 of them cause damage. Anything +that causes seismic waves to radiate throughout the Earth is an earthquake. The cause of +earthquakes can be natural, such as one tectonic plate slipping below another, or +anthropogenic (cause by humans), such as drilling for fossil fuels, extraction of +minerals, huge explosions, and the collapse of large buildings. The surface of the Earth +is composed of a mosaic of tectonic plates moving with respect to each other. When two +plates glide past one another, a stress builds up at the boundary. When that stress +reaches a critical level, the boundary slips and the result is an earthquake. Because +most natural earthquakes occur due to slipping plates, the boundaries between tectonic +plates are "hot spots" for earthquakes. The magnitude of earthquakes is measured by the +Richter magnitude scale. It is a base-10 logarithm scale of the ground motion caused by +the earthquake. Each increase of 1 in magnitude represents 10 times more ground motion]] local URL = "https://sos.noaa.gov/catalog/datasets/earthquakes-historical-top-10-through-2011/" diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/volcanoes-eruptions.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/volcanoes-eruptions.asset index 717cf4157c..ca3ddbad41 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/volcanoes-eruptions.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/volcanoes-eruptions.asset @@ -3,17 +3,17 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Volcano Eruptions - through 2010" local Identifier = "noaa-sos-land-volcanoes-eruptions" -local Description = [[According to the Smithsonian Institute's Global Volcanism Program, -there are probably about 20 volcanoes erupting right now, and about 550 volcanoes have -had historically documented eruptions. A volcano is an opening, or rupture, in the -Earth's crust through which molten lava, ash, and gases are ejected. Volcanoes typically -form in three different settings. The first is divergent plate boundaries, where tectonic -plates are pulling apart from one another, such as the Mid-Atlantic Ocean Ridge. Most of -these volcanoes are on the bottom of the ocean floor and are responsible for creating new -sea floor. The second location is convergent plate boundaries, where two plates, -typically an oceanic and continental plate, are colliding. The volcanoes along the -Pacific Ring of Fire are from convergent plate boundaries. The third location is over -hotspots, which are typically in the middle of tectonic plates and caused by hot magma +local Description = [[According to the Smithsonian Institute's Global Volcanism Program, +there are probably about 20 volcanoes erupting right now, and about 550 volcanoes have +had historically documented eruptions. A volcano is an opening, or rupture, in the +Earth's crust through which molten lava, ash, and gases are ejected. Volcanoes typically +form in three different settings. The first is divergent plate boundaries, where tectonic +plates are pulling apart from one another, such as the Mid-Atlantic Ocean Ridge. Most of +these volcanoes are on the bottom of the ocean floor and are responsible for creating new +sea floor. The second location is convergent plate boundaries, where two plates, +typically an oceanic and continental plate, are colliding. The volcanoes along the +Pacific Ring of Fire are from convergent plate boundaries. The third location is over +hotspots, which are typically in the middle of tectonic plates and caused by hot magma rising to the surface. The volcanoes on Hawaii are the result of hotspots]] local URL = "https://sos.noaa.gov/catalog/datasets/volcano-eruptions-through-2010/" diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/volcanoes-global_volcanoes.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/volcanoes-global_volcanoes.asset index 0e8e953c66..6dc9777c32 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/volcanoes-global_volcanoes.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/volcanoes-global_volcanoes.asset @@ -3,17 +3,17 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Volcano Locations" local Identifier = "noaa-sos-land-volcanoes-global_volcanoes" -local Description = [[According to the Smithsonian Institute's Global Volcanism Program, -there are probably about 20 volcanoes erupting right now, and about 550 volcanoes have -had historically documented eruptions. A volcano is an opening, or rupture, in the -Earth's crust through which molten lava, ash, and gases are ejected. Volcanoes typically -form in three different settings. The first is divergent plate boundaries, where tectonic -plates are pulling apart from one another, such as the Mid-Atlantic Ocean Ridge. Most of -these volcanoes are on the bottom of the ocean floor and are responsible for creating new -sea floor. The second location is convergent plate boundaries, where two plates, -typically an oceanic and continental plate, are colliding. The volcanoes along the -Pacific Ring of Fire are from convergent plate boundaries. The third location is over -hotspots, which are typically in the middle of tectonic plates and caused by hot magma +local Description = [[According to the Smithsonian Institute's Global Volcanism Program, +there are probably about 20 volcanoes erupting right now, and about 550 volcanoes have +had historically documented eruptions. A volcano is an opening, or rupture, in the +Earth's crust through which molten lava, ash, and gases are ejected. Volcanoes typically +form in three different settings. The first is divergent plate boundaries, where tectonic +plates are pulling apart from one another, such as the Mid-Atlantic Ocean Ridge. Most of +these volcanoes are on the bottom of the ocean floor and are responsible for creating new +sea floor. The second location is convergent plate boundaries, where two plates, +typically an oceanic and continental plate, are colliding. The volcanoes along the +Pacific Ring of Fire are from convergent plate boundaries. The third location is over +hotspots, which are typically in the middle of tectonic plates and caused by hot magma rising to the surface. The volcanoes on Hawaii are the result of hotspots]] local URL = "https://sos.noaa.gov/catalog/datasets/volcano-locations/" diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/volcanoes-tsunami.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/volcanoes-tsunami.asset index 449e7287a9..0ed2ef79c9 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/volcanoes-tsunami.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/land/volcanoes-tsunami.asset @@ -3,17 +3,17 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Volcano Eruptions: Causing Tsunamis - through 2010" local Identifier = "noaa-sos-land-volcanoes-tsunami" -local Description = [[According to the Smithsonian Institute's Global Volcanism Program, -there are probably about 20 volcanoes erupting right now, and about 550 volcanoes have -had historically documented eruptions. A volcano is an opening, or rupture, in the -Earth's crust through which molten lava, ash, and gases are ejected. Volcanoes typically -form in three different settings. The first is divergent plate boundaries, where tectonic -plates are pulling apart from one another, such as the Mid-Atlantic Ocean Ridge. Most of -these volcanoes are on the bottom of the ocean floor and are responsible for creating new -sea floor. The second location is convergent plate boundaries, where two plates, -typically an oceanic and continental plate, are colliding. The volcanoes along the -Pacific Ring of Fire are from convergent plate boundaries. The third location is over -hotspots, which are typically in the middle of tectonic plates and caused by hot magma +local Description = [[According to the Smithsonian Institute's Global Volcanism Program, +there are probably about 20 volcanoes erupting right now, and about 550 volcanoes have +had historically documented eruptions. A volcano is an opening, or rupture, in the +Earth's crust through which molten lava, ash, and gases are ejected. Volcanoes typically +form in three different settings. The first is divergent plate boundaries, where tectonic +plates are pulling apart from one another, such as the Mid-Atlantic Ocean Ridge. Most of +these volcanoes are on the bottom of the ocean floor and are responsible for creating new +sea floor. The second location is convergent plate boundaries, where two plates, +typically an oceanic and continental plate, are colliding. The volcanoes along the +Pacific Ring of Fire are from convergent plate boundaries. The third location is over +hotspots, which are typically in the middle of tectonic plates and caused by hot magma rising to the surface. The volcanoes on Hawaii are the result of hotspots]] local URL = "https://sos.noaa.gov/catalog/datasets/volcano-eruptions-causing-tsunamis-through-2010/" diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/models/bm10000.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/models/bm10000.asset index 8214e65cc9..26122d2887 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/models/bm10000.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/models/bm10000.asset @@ -3,35 +3,35 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Blue Marble: Sea Level, Ice and Vegetation Changes - 19,000BC - 10,000AD" local Identifier = "noaa-sos-models-bm10000" -local Description = [[The Earth has been through many changes and continues to change -today. To better understand these changes, the Zürich University of Applied Sciences -created a simulation using past climate data, observations, and computer models. The -simulation starts 21,000 years ago and ends 8,000 years in the future, showing the -changes in ice concentration, sea level, and vegetation. 19,000BC was chosen as the start -date because this was the last glacial maximum, when the Earth's ice sheets were at their -maximum extension. As seen in the animation, much of northern Europe and North America -were covered in ice in 19,000BC. The labels for the animation include information about -carbon dioxide concentration, average temperature, sea level and population. The red line -indicates the current levels. The yellow borders on the map represent the current -coastlines. The data from 19,000BC to 2,000AD includes the most up-to-date paleoclimate -data that is available. A list of sources can be found here. Some notable events in the +local Description = [[The Earth has been through many changes and continues to change +today. To better understand these changes, the Zürich University of Applied Sciences +created a simulation using past climate data, observations, and computer models. The +simulation starts 21,000 years ago and ends 8,000 years in the future, showing the +changes in ice concentration, sea level, and vegetation. 19,000BC was chosen as the start +date because this was the last glacial maximum, when the Earth's ice sheets were at their +maximum extension. As seen in the animation, much of northern Europe and North America +were covered in ice in 19,000BC. The labels for the animation include information about +carbon dioxide concentration, average temperature, sea level and population. The red line +indicates the current levels. The yellow borders on the map represent the current +coastlines. The data from 19,000BC to 2,000AD includes the most up-to-date paleoclimate +data that is available. A list of sources can be found here. Some notable events in the past simulation include: The North Sea quickly forms around 8,000BC, creating the British Isles -"Mega-Lake Chad" forms in the present-day Saraha Desert and is surrounded by lush +"Mega-Lake Chad" forms in the present-day Saraha Desert and is surrounded by lush landscapes around 7,000BC The ice pulls back and North America and Europe are largely ice free, starting in 6,500BC The lush vegetation across Northern Africa and the Arabian peninsula retreats in 2,000BC -For the time frame from 2,000AD to 3,000AD, a computer model based on the IPCC A2 -scenario was used. This scenario assumes a complete cessation of carbon dioxide emissions -in 2100. More details on the model used can be found here. In this part of the simulation -the time steps change from a frame every 500 years as used in the first part of the -animation, to a frame every 50 years to show the rapid changes that are modeled. The -northern ice cap quickly disappears and the ice on Greenland and Antarctica begins to -melt steadily. By the year 3,000AD, there is predicted 6m (19ft) sea level rise. The -simulation continues from 3,000AD to 10,000 AD in 500 year time steps in a fictional -scenario of worldwide glacier meltdown and shows the impacts this would have on the +For the time frame from 2,000AD to 3,000AD, a computer model based on the IPCC A2 +scenario was used. This scenario assumes a complete cessation of carbon dioxide emissions +in 2100. More details on the model used can be found here. In this part of the simulation +the time steps change from a frame every 500 years as used in the first part of the +animation, to a frame every 50 years to show the rapid changes that are modeled. The +northern ice cap quickly disappears and the ice on Greenland and Antarctica begins to +melt steadily. By the year 3,000AD, there is predicted 6m (19ft) sea level rise. The +simulation continues from 3,000AD to 10,000 AD in 500 year time steps in a fictional +scenario of worldwide glacier meltdown and shows the impacts this would have on the coasts]] local URL = "https://sos.noaa.gov/catalog/datasets/blue-marble-sea-level-ice-and-vegetation-changes-19000bc-10000ad/" diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/models/gfdl_seaice.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/models/gfdl_seaice.asset index fc678550fe..fe9dcb5ff9 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/models/gfdl_seaice.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/models/gfdl_seaice.asset @@ -3,18 +3,18 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Climate Model: Sea Ice Change (GFDL a1b) 1861 - 2100" local Identifier = "noaa-sos-models-gfdl_seaice" -local Description = [[In the coming decades, the Arctic region is projected to warm at -about twice the rate of the global average according to the scientists at NOAA's -Geophysical Fluid Dynamics Laboratory. This is not good news for the Arctic sea ice. In -fact, the concentration of sea ice in the northern latitudes has been decreasing over the -past 30 years and this trend is expected to continue as the climate changes. The -disappearance of sea ice can have a major impact globally. Melting sea ice can disturb -the global ocean conveyor belt, impact sea life and the fishing industry, and change the -Earth energy budget. Sea ice cools the climate because it is reflective and so returns -much of the sun's warming back to space. As the ice melts, more of this energy is -absorbed in the darker ocean water. The temperature increases as more sunlight is -absorbed rather than reflected. This is a positive feedback loop because as temperature -rises, more sea ice melts causing increased absorption which leads to rising +local Description = [[In the coming decades, the Arctic region is projected to warm at +about twice the rate of the global average according to the scientists at NOAA's +Geophysical Fluid Dynamics Laboratory. This is not good news for the Arctic sea ice. In +fact, the concentration of sea ice in the northern latitudes has been decreasing over the +past 30 years and this trend is expected to continue as the climate changes. The +disappearance of sea ice can have a major impact globally. Melting sea ice can disturb +the global ocean conveyor belt, impact sea life and the fishing industry, and change the +Earth energy budget. Sea ice cools the climate because it is reflective and so returns +much of the sun's warming back to space. As the ice melts, more of this energy is +absorbed in the darker ocean water. The temperature increases as more sunlight is +absorbed rather than reflected. This is a positive feedback loop because as temperature +rises, more sea ice melts causing increased absorption which leads to rising temperatures]] local URL = "https://sos.noaa.gov/catalog/datasets/climate-model-sea-ice-change-gfdl-a1b-1861-2100/" @@ -56,7 +56,7 @@ asset.onInitialize(function() end openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) - openspace.addScreenSpaceRenderable(colorbar); + openspace.addScreenSpaceRenderable(colorbar) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/models/ipcc_temp-ccsm-a1b.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/models/ipcc_temp-ccsm-a1b.asset index 3276c2838e..cc9848d9c3 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/models/ipcc_temp-ccsm-a1b.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/models/ipcc_temp-ccsm-a1b.asset @@ -3,15 +3,15 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Climate Model: Temperature Change (CCSM a1b) - 1870 - 2100" local Identifier = "noaa-sos-models-ipcc_temp-ccsm-a1b" -local Description = [["The Intergovernmental Panel on Climate Change (IPCC) was -established by WMO and UNEP to assess scientific, technical and socio- economic -information relevant for the understanding of climate change, its potential impacts and -options for adaptation and mitigation. It is open to all members of the UN and of WMO." -- from www.ipcc.ch. In an effort to better visualize the future of climate change, the -IPCC releases assessment reports on the current state of the atmosphere and what the -future could hold. Models from various atmospheric and oceanic organizations are included -in these reports in order to establish a broad understanding of the science. Data from -three of the IPCC models following temperature change from 1870 - 2100 have been +local Description = [["The Intergovernmental Panel on Climate Change (IPCC) was +established by WMO and UNEP to assess scientific, technical and socio- economic +information relevant for the understanding of climate change, its potential impacts and +options for adaptation and mitigation. It is open to all members of the UN and of WMO." +- from www.ipcc.ch. In an effort to better visualize the future of climate change, the +IPCC releases assessment reports on the current state of the atmosphere and what the +future could hold. Models from various atmospheric and oceanic organizations are included +in these reports in order to establish a broad understanding of the science. Data from +three of the IPCC models following temperature change from 1870 - 2100 have been formatted for Science On a Sphere]] local URL = "https://sos.noaa.gov/catalog/datasets/climate-model-temperature-change-ccsm-a1b-1870-2100/" @@ -53,7 +53,7 @@ asset.onInitialize(function() end openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) - openspace.addScreenSpaceRenderable(colorbar); + openspace.addScreenSpaceRenderable(colorbar) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/models/ipcc_temp-ccsm-b1.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/models/ipcc_temp-ccsm-b1.asset index cc056fa2df..dcc1ed6590 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/models/ipcc_temp-ccsm-b1.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/models/ipcc_temp-ccsm-b1.asset @@ -3,15 +3,15 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Climate Model: Temperature Change (CCSM b1) - 1870 - 2100" local Identifier = "noaa-sos-models-ipcc_temp-ccsm-b1" -local Description = [["The Intergovernmental Panel on Climate Change (IPCC) was -established by WMO and UNEP to assess scientific, technical and socio- economic -information relevant for the understanding of climate change, its potential impacts and -options for adaptation and mitigation. It is open to all members of the UN and of WMO." -- from www.ipcc.ch. In an effort to better visualize the future of climate change, the -IPCC releases assessment reports on the current state of the atmosphere and what the -future could hold. Models from various atmospheric and oceanic organizations are included -in these reports in order to establish a broad understanding of the science. Data from -three of the IPCC models following temperature change from 1870 - 2100 have been +local Description = [["The Intergovernmental Panel on Climate Change (IPCC) was +established by WMO and UNEP to assess scientific, technical and socio- economic +information relevant for the understanding of climate change, its potential impacts and +options for adaptation and mitigation. It is open to all members of the UN and of WMO." +- from www.ipcc.ch. In an effort to better visualize the future of climate change, the +IPCC releases assessment reports on the current state of the atmosphere and what the +future could hold. Models from various atmospheric and oceanic organizations are included +in these reports in order to establish a broad understanding of the science. Data from +three of the IPCC models following temperature change from 1870 - 2100 have been formatted for Science On a Sphere]] local URL = "https://sos.noaa.gov/catalog/datasets/climate-model-temperature-change-ccsm-b1-1870-2100/" @@ -53,7 +53,7 @@ asset.onInitialize(function() end openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) - openspace.addScreenSpaceRenderable(colorbar); + openspace.addScreenSpaceRenderable(colorbar) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/models/ipcc_temp-compare.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/models/ipcc_temp-compare.asset index c9e9a86d6a..3c20f2b025 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/models/ipcc_temp-compare.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/models/ipcc_temp-compare.asset @@ -3,15 +3,15 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Climate Model: Temperature Change Comparison (GFDL a1b and b1)" local Identifier = "noaa-sos-models-ipcc_temp-compare" -local Description = [["The Intergovernmental Panel on Climate Change (IPCC) was -established by WMO and UNEP to assess scientific, technical and socio- economic -information relevant for the understanding of climate change, its potential impacts and -options for adaptation and mitigation. It is open to all members of the UN and of WMO." -- from www.ipcc.ch. In an effort to better visualize the future of climate change, the -IPCC releases assessment reports on the current state of the atmosphere and what the -future could hold. Models from various atmospheric and oceanic organizations are included -in these reports in order to establish a broad understanding of the science. Data from -three of the IPCC models following temperature change from 1870 - 2100 have been +local Description = [["The Intergovernmental Panel on Climate Change (IPCC) was +established by WMO and UNEP to assess scientific, technical and socio- economic +information relevant for the understanding of climate change, its potential impacts and +options for adaptation and mitigation. It is open to all members of the UN and of WMO." +- from www.ipcc.ch. In an effort to better visualize the future of climate change, the +IPCC releases assessment reports on the current state of the atmosphere and what the +future could hold. Models from various atmospheric and oceanic organizations are included +in these reports in order to establish a broad understanding of the science. Data from +three of the IPCC models following temperature change from 1870 - 2100 have been formatted for Science On a Sphere]] local URL = "https://sos.noaa.gov/catalog/datasets/climate-model-temperature-change-comparison-gfdl-a1b-and-b1/" @@ -64,7 +64,7 @@ asset.onInitialize(function () for i,v in ipairs(layers) do openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", v) end - openspace.addScreenSpaceRenderable(colorbar); + openspace.addScreenSpaceRenderable(colorbar) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/models/ipcc_temp-gfdl-a1b.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/models/ipcc_temp-gfdl-a1b.asset index 746c32ff22..d8c9be216e 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/models/ipcc_temp-gfdl-a1b.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/models/ipcc_temp-gfdl-a1b.asset @@ -3,15 +3,15 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Climate Model: Temperature Change (GFDL a1b) - 1870 - 2100" local Identifier = "noaa-sos-models-ipcc_temp-gfdl-a1b" -local Description = [["The Intergovernmental Panel on Climate Change (IPCC) was -established by WMO and UNEP to assess scientific, technical and socio- economic -information relevant for the understanding of climate change, its potential impacts and -options for adaptation and mitigation. It is open to all members of the UN and of WMO." -- from www.ipcc.ch. In an effort to better visualize the future of climate change, the -IPCC releases assessment reports on the current state of the atmosphere and what the -future could hold. Models from various atmospheric and oceanic organizations are included -in these reports in order to establish a broad understanding of the science. Data from -three of the IPCC models following temperature change from 1870 - 2100 have been +local Description = [["The Intergovernmental Panel on Climate Change (IPCC) was +established by WMO and UNEP to assess scientific, technical and socio- economic +information relevant for the understanding of climate change, its potential impacts and +options for adaptation and mitigation. It is open to all members of the UN and of WMO." +- from www.ipcc.ch. In an effort to better visualize the future of climate change, the +IPCC releases assessment reports on the current state of the atmosphere and what the +future could hold. Models from various atmospheric and oceanic organizations are included +in these reports in order to establish a broad understanding of the science. Data from +three of the IPCC models following temperature change from 1870 - 2100 have been formatted for Science On a Sphere]] local URL = "https://sos.noaa.gov/catalog/datasets/climate-model-temperature-change-gfdl-a1b-1870-2100/" @@ -53,7 +53,7 @@ asset.onInitialize(function() end openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) - openspace.addScreenSpaceRenderable(colorbar); + openspace.addScreenSpaceRenderable(colorbar) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/models/ipcc_temp-gfdl-b1.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/models/ipcc_temp-gfdl-b1.asset index 6aba18d12f..8177afaf90 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/models/ipcc_temp-gfdl-b1.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/models/ipcc_temp-gfdl-b1.asset @@ -3,15 +3,15 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Climate Model: Temperature Change (GFDL b1) - 1870 - 2100" local Identifier = "noaa-sos-models-ipcc_temp-gfdl-b1" -local Description = [["The Intergovernmental Panel on Climate Change (IPCC) was -established by WMO and UNEP to assess scientific, technical and socio-economic -information relevant for the understanding of climate change, its potential impacts and -options for adaptation and mitigation. It is open to all members of the UN and of WMO." -- from www.ipcc.ch. In an effort to better visualize the future of climate change, the -IPCC releases assessment reports on the current state of the atmosphere and what the -future could hold. Models from various atmospheric and oceanic organizations are included -in these reports in order to establish a broad understanding of the science. Data from -three of the IPCC models following temperature change from 1870 - 2100 have been +local Description = [["The Intergovernmental Panel on Climate Change (IPCC) was +established by WMO and UNEP to assess scientific, technical and socio-economic +information relevant for the understanding of climate change, its potential impacts and +options for adaptation and mitigation. It is open to all members of the UN and of WMO." +- from www.ipcc.ch. In an effort to better visualize the future of climate change, the +IPCC releases assessment reports on the current state of the atmosphere and what the +future could hold. Models from various atmospheric and oceanic organizations are included +in these reports in order to establish a broad understanding of the science. Data from +three of the IPCC models following temperature change from 1870 - 2100 have been formatted for Science On a Sphere]] local URL = "https://sos.noaa.gov/catalog/datasets/climate-model-temperature-change-gfdl-b1-1870-2100/" @@ -53,7 +53,7 @@ asset.onInitialize(function() end openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) - openspace.addScreenSpaceRenderable(colorbar); + openspace.addScreenSpaceRenderable(colorbar) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/models/ipcc_temp-had-a1b.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/models/ipcc_temp-had-a1b.asset index 8924cc5630..df194e5d5b 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/models/ipcc_temp-had-a1b.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/models/ipcc_temp-had-a1b.asset @@ -3,15 +3,15 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Climate Model: Temperature Change (Hadley a1b) - 1870 - 2100" local Identifier = "noaa-sos-models-ipcc_temp-had-a1b" -local Description = [["The Intergovernmental Panel on Climate Change (IPCC) was -established by WMO and UNEP to assess scientific, technical and socio- economic -information relevant for the understanding of climate change, its potential impacts and -options for adaptation and mitigation. It is open to all members of the UN and of WMO." -- from www.ipcc.ch . In an effort to better visualize the future of climate change, the -IPCC releases assessment reports on the current state of the atmosphere and what the -future could hold. Models from various atmospheric and oceanic organizations are included -in these reports in order to establish a broad understanding of the science. Data from -three of the IPCC models following temperature change from 1870 - 2100 have been +local Description = [["The Intergovernmental Panel on Climate Change (IPCC) was +established by WMO and UNEP to assess scientific, technical and socio- economic +information relevant for the understanding of climate change, its potential impacts and +options for adaptation and mitigation. It is open to all members of the UN and of WMO." +- from www.ipcc.ch . In an effort to better visualize the future of climate change, the +IPCC releases assessment reports on the current state of the atmosphere and what the +future could hold. Models from various atmospheric and oceanic organizations are included +in these reports in order to establish a broad understanding of the science. Data from +three of the IPCC models following temperature change from 1870 - 2100 have been formatted for Science On a Sphere]] local URL = "https://sos.noaa.gov/catalog/datasets/climate-model-temperature-change-hadley-a1b-1870-2100/" @@ -53,7 +53,7 @@ asset.onInitialize(function() end openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) - openspace.addScreenSpaceRenderable(colorbar); + openspace.addScreenSpaceRenderable(colorbar) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/models/ipcc_temp-had-b1.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/models/ipcc_temp-had-b1.asset index dfd338c7da..623bfcd31e 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/models/ipcc_temp-had-b1.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/models/ipcc_temp-had-b1.asset @@ -3,15 +3,15 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Climate Model: Temperature Change (Hadley b1) - 1870 - 2100" local Identifier = "noaa-sos-models-ipcc_temp-had-b1" -local Description = [["The Intergovernmental Panel on Climate Change (IPCC) was -established by WMO and UNEP to assess scientific, technical and socio- economic -information relevant for the understanding of climate change, its potential impacts and -options for adaptation and mitigation. It is open to all members of the UN and of WMO." -- from www.ipcc.ch. In an effort to better visualize the future of climate change, the -IPCC releases assessment reports on the current state of the atmosphere and what the -future could hold. Models from various atmospheric and oceanic organizations are included -in these reports in order to establish a broad understanding of the science. Data from -three of the IPCC models following temperature change from 1870 - 2100 have been +local Description = [["The Intergovernmental Panel on Climate Change (IPCC) was +established by WMO and UNEP to assess scientific, technical and socio- economic +information relevant for the understanding of climate change, its potential impacts and +options for adaptation and mitigation. It is open to all members of the UN and of WMO." +- from www.ipcc.ch. In an effort to better visualize the future of climate change, the +IPCC releases assessment reports on the current state of the atmosphere and what the +future could hold. Models from various atmospheric and oceanic organizations are included +in these reports in order to establish a broad understanding of the science. Data from +three of the IPCC models following temperature change from 1870 - 2100 have been formatted for Science On a Sphere]] local URL = "https://sos.noaa.gov/catalog/datasets/climate-model-temperature-change-hadley-b1-1870-2100/" @@ -53,7 +53,7 @@ asset.onInitialize(function() end openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) - openspace.addScreenSpaceRenderable(colorbar); + openspace.addScreenSpaceRenderable(colorbar) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/models/rcp-ga26.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/models/rcp-ga26.asset index d6bbcf82d1..ebec3e4f25 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/models/rcp-ga26.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/models/rcp-ga26.asset @@ -3,7 +3,7 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Climate Model: Temperature Change (RCP 2.6) - 2006 - 2100" local Identifier = "noaa-sos-models-rcp-ga26" -local Description = [[Climate models are used for a variety of purposes from the study +local Description = [[Climate models are used for a variety of purposes from the study of dynamics of the weather and climate system to projections of future climate]] local URL = "https://sos.noaa.gov/catalog/datasets/climate-model-temperature-change-rcp-26-2006-2100/" @@ -50,7 +50,7 @@ asset.onInitialize(function() end openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) - openspace.addScreenSpaceRenderable(colorbar); + openspace.addScreenSpaceRenderable(colorbar) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/models/rcp-ga45.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/models/rcp-ga45.asset index c842401552..4f9068f7d7 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/models/rcp-ga45.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/models/rcp-ga45.asset @@ -3,7 +3,7 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Climate Model: Temperature Change (RCP 4.5) - 2006 - 2100" local Identifier = "noaa-sos-models-rcp-ga45" -local Description = [[Climate models are used for a variety of purposes from the study +local Description = [[Climate models are used for a variety of purposes from the study of dynamics of the weather and climate system to projections of future climate]] local URL = "https://sos.noaa.gov/catalog/datasets/climate-model-temperature-change-rcp-45-2006-2100/" @@ -50,7 +50,7 @@ asset.onInitialize(function() end openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) - openspace.addScreenSpaceRenderable(colorbar); + openspace.addScreenSpaceRenderable(colorbar) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/models/rcp-ga60.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/models/rcp-ga60.asset index 725f337156..af36426261 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/models/rcp-ga60.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/models/rcp-ga60.asset @@ -3,7 +3,7 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Climate Model: Temperature Change (RCP 6.0) - 2006 - 2100" local Identifier = "noaa-sos-models-rcp-ga60" -local Description = [[Climate models are used for a variety of purposes from the study +local Description = [[Climate models are used for a variety of purposes from the study of dynamics of the weather and climate system to projections of future climate]] local URL = "https://sos.noaa.gov/catalog/datasets/climate-model-temperature-change-rcp-60-2006-2100/" @@ -50,7 +50,7 @@ asset.onInitialize(function() end openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) - openspace.addScreenSpaceRenderable(colorbar); + openspace.addScreenSpaceRenderable(colorbar) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/models/rcp-ga85.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/models/rcp-ga85.asset index 45340f72c6..4ed7ed7a82 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/models/rcp-ga85.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/models/rcp-ga85.asset @@ -3,7 +3,7 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Climate Model: Temperature Change (RCP 8.5) - 2006 - 2100" local Identifier = "noaa-sos-models-rcp-ga85" -local Description = [[Climate models are used for a variety of purposes from the study +local Description = [[Climate models are used for a variety of purposes from the study of dynamics of the weather and climate system to projections of future climate]] local URL = "https://sos.noaa.gov/catalog/datasets/climate-model-temperature-change-rcp-85-2006-2100/" @@ -50,7 +50,7 @@ asset.onInitialize(function() end openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) - openspace.addScreenSpaceRenderable(colorbar); + openspace.addScreenSpaceRenderable(colorbar) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/models/ukmet-a1b.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/models/ukmet-a1b.asset index 02971b6858..438aa10e9c 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/models/ukmet-a1b.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/models/ukmet-a1b.asset @@ -3,14 +3,14 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Climate Model: Temperature Change (Hadley a1b) - 1860 - 2099" local Identifier = "noaa-sos-models-ukmet-a1b" -local Description = [[Scientists use computer climate models as a way to understand how - the climate has behaved in the past and how it is likely to change in the future. - Scientists use different scenarios to allow them to evaluate all the different future - possibilities for the climate. The United Kingdom Met Office Hadley Centre has created - two datasets for Science On a Sphere, using two different scenarios. The first scenario, - A1B-IMAGE, assumes a "business-as-usual" path forward in the future with continually - increasing carbon dioxide rates. In this scenario, CO2 rises to 774ppm by 2099 and the - global mean temperature increases by 4.41°C. The second scenario, E1, is an aggressive +local Description = [[Scientists use computer climate models as a way to understand how + the climate has behaved in the past and how it is likely to change in the future. + Scientists use different scenarios to allow them to evaluate all the different future + possibilities for the climate. The United Kingdom Met Office Hadley Centre has created + two datasets for Science On a Sphere, using two different scenarios. The first scenario, + A1B-IMAGE, assumes a "business-as-usual" path forward in the future with continually + increasing carbon dioxide rates. In this scenario, CO2 rises to 774ppm by 2099 and the + global mean temperature increases by 4.41°C. The second scenario, E1, is an aggressive mitigation scenario that includes reduced fossil fuel use with the goal of keeping global mean warming below 2°C. In the E1 scenario, carbon dioxide increases to 435ppm by 2050 and then drops to 421ppm by 2099, with a global mean temperature increase of @@ -59,7 +59,7 @@ asset.onInitialize(function() end openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) - openspace.addScreenSpaceRenderable(colorbar); + openspace.addScreenSpaceRenderable(colorbar) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/models/ukmet-e1.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/models/ukmet-e1.asset index 205bd62b28..96fc5cb29c 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/models/ukmet-e1.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/models/ukmet-e1.asset @@ -3,16 +3,16 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Climate Model: Temperature Change (Hadley e1) - 1860 - 2099" local Identifier = "noaa-sos-models-ukmet-e1" -local Description = [[Scientists use computer climate models as a way to understand how -the climate has behaved in the past and how it is likely to change in the future. -Scientists use different scenarios to allow them to evaluate all the different future -possibilities for the climate. The United Kingdom Met Office Hadley Centre has created -two datasets for Science On a Sphere, using two different scenarios. The first scenario, -A1B-IMAGE, assumes a "business-as-usual" path forward in the future with continually -increasing carbon dioxide rates. In this scenario, CO2 rises to 774ppm by 2099 and the -global mean temperature increases by 4.41°C. The second scenario, E1, is an aggressive -mitigation scenario that includes reduced fossil fuel use with the goal of keeping global -mean warming below 2°C. In the E1 scenario, carbon dioxide increases to 435ppm by 2050 +local Description = [[Scientists use computer climate models as a way to understand how +the climate has behaved in the past and how it is likely to change in the future. +Scientists use different scenarios to allow them to evaluate all the different future +possibilities for the climate. The United Kingdom Met Office Hadley Centre has created +two datasets for Science On a Sphere, using two different scenarios. The first scenario, +A1B-IMAGE, assumes a "business-as-usual" path forward in the future with continually +increasing carbon dioxide rates. In this scenario, CO2 rises to 774ppm by 2099 and the +global mean temperature increases by 4.41°C. The second scenario, E1, is an aggressive +mitigation scenario that includes reduced fossil fuel use with the goal of keeping global +mean warming below 2°C. In the E1 scenario, carbon dioxide increases to 435ppm by 2050 and then drops to 421ppm by 2099, with a global mean temperature increase of 2.12°C]] local URL = "https://sos.noaa.gov/catalog/datasets/climate-model-temperature-change-hadley-e1-1860-2099/" @@ -58,7 +58,7 @@ asset.onInitialize(function() end openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) - openspace.addScreenSpaceRenderable(colorbar); + openspace.addScreenSpaceRenderable(colorbar) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/2009_ice_animation.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/2009_ice_animation.asset index 59b08cbbf0..21aba0f031 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/2009_ice_animation.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/2009_ice_animation.asset @@ -3,16 +3,16 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Sea Ice Animation - 2009" local Identifier = "noaa-sos-oceans-2009_ice_animation" -local Description = [[Sea ice is simply ocean water that has frozen. At least 15% of the -ocean is covered by sea ice some part of the year. This means that on average, sea ice -covers almost 10 million square miles (about 25 million square kilometers) of the Earth. -Sea ice concentrations are monitored closely by scientists because changing sea ice -concentrations can have a huge impact on the rest of the globe. Global warming is -amplified in polar regions. Because of this, monitoring changes in sea ice can be a good -indicator of climate change. The Global Snow and Ice Cover Map that is used in this -dataset is created from a combination of observations from NOAA Advanced Very High -Resolution Radiometer, Meteosat Second Generation Satellite Spectral Response -Characterisation, GOES Imager and Defense Meteorological Satellite Program Special Sensor +local Description = [[Sea ice is simply ocean water that has frozen. At least 15% of the +ocean is covered by sea ice some part of the year. This means that on average, sea ice +covers almost 10 million square miles (about 25 million square kilometers) of the Earth. +Sea ice concentrations are monitored closely by scientists because changing sea ice +concentrations can have a huge impact on the rest of the globe. Global warming is +amplified in polar regions. Because of this, monitoring changes in sea ice can be a good +indicator of climate change. The Global Snow and Ice Cover Map that is used in this +dataset is created from a combination of observations from NOAA Advanced Very High +Resolution Radiometer, Meteosat Second Generation Satellite Spectral Response +Characterisation, GOES Imager and Defense Meteorological Satellite Program Special Sensor Microwave/Imager. The resolution is 2 km]] local URL = "https://sos.noaa.gov/catalog/datasets/sea-ice-animation-2009/" @@ -72,9 +72,9 @@ asset.onInitialize(function() end openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) - openspace.addScreenSpaceRenderable(colorbar_2007_2009); - openspace.addScreenSpaceRenderable(colorbar_2008_minimum); - openspace.addScreenSpaceRenderable(colorbar_2009_iceconcentration); + openspace.addScreenSpaceRenderable(colorbar_2007_2009) + openspace.addScreenSpaceRenderable(colorbar_2008_minimum) + openspace.addScreenSpaceRenderable(colorbar_2009_iceconcentration) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/6m_sea_level_rise-black.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/6m_sea_level_rise-black.asset index e03e9d09cd..949c3b61c3 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/6m_sea_level_rise-black.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/6m_sea_level_rise-black.asset @@ -3,19 +3,19 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Sea Level Rise: Impact of 6 meter (black)" local Identifier = "noaa-sos-oceans-6m_sea_level_rise-black" -local Description = [[There are many questions surrounding climate change. One big -question is how the changing climate will affect the oceans. The sea level has been -steadily rising since 1900 at a rate of 1 to 2.5 millimeters per year. In fact, since -1992 new methods of satellite altimetry using the TOPEX/Poseidon satellite indicate a -rate of rise of 3 millimeters per year. The Fourth Assessment Report from the IPCC states -that "there is strong evidence that global sea level gradually rose in the 20th century -and is currently rising at an increased rate, after a period of little change between AD -0 and AD 1900. Sea level is projected to rise at an even greater rate in this century. " -- Fourth Assessment Report on Sea Level Rise Sea level can rise by two different -mechanisms with respect to climate change. The first is the expansion of the sea water as -the oceans warm due to an increasing global temperature. The second mechanism is the -melting of ice over land, which then adds water to the ocean. The IPCC Fourth Assessment -Report predicts that total global-average sea level rise from 1990 - 2100 will be 7 - 15 +local Description = [[There are many questions surrounding climate change. One big +question is how the changing climate will affect the oceans. The sea level has been +steadily rising since 1900 at a rate of 1 to 2.5 millimeters per year. In fact, since +1992 new methods of satellite altimetry using the TOPEX/Poseidon satellite indicate a +rate of rise of 3 millimeters per year. The Fourth Assessment Report from the IPCC states +that "there is strong evidence that global sea level gradually rose in the 20th century +and is currently rising at an increased rate, after a period of little change between AD +0 and AD 1900. Sea level is projected to rise at an even greater rate in this century. " +- Fourth Assessment Report on Sea Level Rise Sea level can rise by two different +mechanisms with respect to climate change. The first is the expansion of the sea water as +the oceans warm due to an increasing global temperature. The second mechanism is the +melting of ice over land, which then adds water to the ocean. The IPCC Fourth Assessment +Report predicts that total global-average sea level rise from 1990 - 2100 will be 7 - 15 inches for low emission scenarios and 10 - 23 inches for high emission scenarios]] local URL = "https://sos.noaa.gov/catalog/datasets/sea-level-rise-impact-of-6-meter-black/" @@ -76,7 +76,7 @@ local layer_6m = { Description = Description } -asset.onInitialize(function() +asset.onInitialize(function() openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_0m) openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_1m) openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_2m) diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/6m_sea_level_rise-red.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/6m_sea_level_rise-red.asset index 95af9b4ab4..7bf26d5935 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/6m_sea_level_rise-red.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/6m_sea_level_rise-red.asset @@ -3,19 +3,19 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Sea Level Rise: Impact of 6 meter (red)" local Identifier = "noaa-sos-oceans-6m_sea_level_rise-red" -local Description = [[There are many questions surrounding climate change. One big -question is how the changing climate will affect the oceans. The sea level has been -steadily rising since 1900 at a rate of 1 to 2.5 millimeters per year. In fact, since -1992 new methods of satellite altimetry using the TOPEX/Poseidon satellite indicate a -rate of rise of 3 millimeters per year. The Fourth Assessment Report from the IPCC states -that "there is strong evidence that global sea level gradually rose in the 20th century -and is currently rising at an increased rate, after a period of little change between AD -0 and AD 1900. Sea level is projected to rise at an even greater rate in this century. " -- Fourth Assessment Report on Sea Level Rise Sea level can rise by two different -mechanisms with respect to climate change. The first is the expansion of the sea water as -the oceans warm due to an increasing global temperature. The second mechanism is the -melting of ice over land, which then adds water to the ocean. The IPCC Fourth Assessment -Report predicts that total global-average sea level rise from 1990 - 2100 will be 7 - +local Description = [[There are many questions surrounding climate change. One big +question is how the changing climate will affect the oceans. The sea level has been +steadily rising since 1900 at a rate of 1 to 2.5 millimeters per year. In fact, since +1992 new methods of satellite altimetry using the TOPEX/Poseidon satellite indicate a +rate of rise of 3 millimeters per year. The Fourth Assessment Report from the IPCC states +that "there is strong evidence that global sea level gradually rose in the 20th century +and is currently rising at an increased rate, after a period of little change between AD +0 and AD 1900. Sea level is projected to rise at an even greater rate in this century. " +- Fourth Assessment Report on Sea Level Rise Sea level can rise by two different +mechanisms with respect to climate change. The first is the expansion of the sea water as +the oceans warm due to an increasing global temperature. The second mechanism is the +melting of ice over land, which then adds water to the ocean. The IPCC Fourth Assessment +Report predicts that total global-average sea level rise from 1990 - 2100 will be 7 - 15 inches for low emission scenarios and 10 - 23 inches for high emission scenarios]] local URL = "https://sos.noaa.gov/catalog/datasets/sea-level-rise-impact-of-6-meter-red/" @@ -76,7 +76,7 @@ local layer_6m = { Description = Description } -asset.onInitialize(function() +asset.onInitialize(function() openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_0m) openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_1m) openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_2m) diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/animal_tracking.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/animal_tracking.asset index 1bb37b5601..5f6f49541e 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/animal_tracking.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/animal_tracking.asset @@ -3,8 +3,8 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Seal and Seabird Tracks: Pacific Ocean" local Identifier = "noaa-sos-oceans-animal_tracking" -local Description = [["TOPP, Tagging of the Pacific Predators, began in 2000 as one of - 17 projects of the Census of Marine Life, an ambitios 10-year, 80-nation endeavor to +local Description = [["TOPP, Tagging of the Pacific Predators, began in 2000 as one of + 17 projects of the Census of Marine Life, an ambitios 10-year, 80-nation endeavor to assess and explain the diversity and abundance of life in the oceans, and where that life has lived, is living, and will live." - From TOPP website . Out of this came the Tagging of the Pacific Pelagics Project. Pelagaics are open ocean species such as sea @@ -55,7 +55,7 @@ asset.onInitialize(function() end openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) - openspace.addScreenSpaceRenderable(colorbar); + openspace.addScreenSpaceRenderable(colorbar) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/argo_buoy_tracks.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/argo_buoy_tracks.asset index 5abce25b15..63a38c129c 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/argo_buoy_tracks.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/argo_buoy_tracks.asset @@ -3,15 +3,15 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Float Tracks: Argo (buoy surface animation)" local Identifier = "noaa-sos-oceans-argo_buoy_tracks" -local Description = [["Argo is a global array of 3,000 free-drifting profiling floats -that measures the temperature and salinity of the upper 2000 m of the ocean. This allows, -for the first time, continuous monitoring of the temperature, salinity, and velocity of -the upper ocean, with all data being relayed and made publicly available within hours -after collection." - from the Argo website. In Greek mythology, Jason sailed on the ship -Argo to capture a golden fleece. In the world of oceanography, Jason is a satellite -altimeter that allows scientists to measure the heights of the ocean surfaces. This -worldwide buoy program was named Argo because the data from the Jason project and from -this buoy project will be used together in computer models to help forecast ocean +local Description = [["Argo is a global array of 3,000 free-drifting profiling floats +that measures the temperature and salinity of the upper 2000 m of the ocean. This allows, +for the first time, continuous monitoring of the temperature, salinity, and velocity of +the upper ocean, with all data being relayed and made publicly available within hours +after collection." - from the Argo website. In Greek mythology, Jason sailed on the ship +Argo to capture a golden fleece. In the world of oceanography, Jason is a satellite +altimeter that allows scientists to measure the heights of the ocean surfaces. This +worldwide buoy program was named Argo because the data from the Jason project and from +this buoy project will be used together in computer models to help forecast ocean climate]] local URL = "https://sos.noaa.gov/catalog/datasets/float-tracks-argo-buoy-surface-animation/" @@ -51,7 +51,7 @@ asset.onInitialize(function() end openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) - openspace.addScreenSpaceRenderable(buoy); + openspace.addScreenSpaceRenderable(buoy) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/argo_buoy_waterfall.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/argo_buoy_waterfall.asset index 120af93456..202540b1dc 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/argo_buoy_waterfall.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/argo_buoy_waterfall.asset @@ -3,15 +3,15 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Float Tracks: Argo (buoy depths animation)" local Identifier = "noaa-sos-oceans-argo_buoy_waterfall" -local Description = [["Argo is a global array of 3,000 free-drifting profiling floats -that measures the temperature and salinity of the upper 2000 m of the ocean. This allows, -for the first time, continuous monitoring of the temperature, salinity, and velocity of -the upper ocean, with all data being relayed and made publicly available within hours -after collection." - from the Argo website. In Greek mythology, Jason sailed on the ship -Argo to capture a golden fleece. In the world of oceanography, Jason is a satellite -altimeter that allows scientists to measure the heights of the ocean surfaces. This -worldwide buoy program was named Argo because the data from the Jason project and from -this buoy project will be used together in computer models to help forecast ocean +local Description = [["Argo is a global array of 3,000 free-drifting profiling floats +that measures the temperature and salinity of the upper 2000 m of the ocean. This allows, +for the first time, continuous monitoring of the temperature, salinity, and velocity of +the upper ocean, with all data being relayed and made publicly available within hours +after collection." - from the Argo website. In Greek mythology, Jason sailed on the ship +Argo to capture a golden fleece. In the world of oceanography, Jason is a satellite +altimeter that allows scientists to measure the heights of the ocean surfaces. This +worldwide buoy program was named Argo because the data from the Jason project and from +this buoy project will be used together in computer models to help forecast ocean climate]] local URL = "https://sos.noaa.gov/catalog/datasets/float-tracks-argo-buoy-depths-animation/" diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/atl_turtle.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/atl_turtle.asset index 827a965fbd..70e3d2ec52 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/atl_turtle.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/atl_turtle.asset @@ -3,15 +3,15 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Sea Turtle Track: Atlantic Ocean" local Identifier = "noaa-sos-oceans-atl_turtle" -local Description = [[The Virginia Institute of Marine Science found a sub-adult -juvenile loggerhead (Caretta caretta) sea turtle stranded off of Deltaville, Virginia -along the western Chesapeake Bay in July 2004. The sea turtle, appropriately named Delta -for the location where s/he was found stranded, had a broken left flipper and a severe -head injury most likely from a collision with a boat propeller. Delta was transferred to -the Virginia Aquarium Stranding Program for rehabilitation. After many months of recovery -and head surgery, Delta was ready for release in November of 2004. Before release, Delta -was outfitted with a satellite tag by Kate Mansfield, then a Ph.D. student at the - Virginia Institute of Marine Science (College of William and Mary). This was done in +local Description = [[The Virginia Institute of Marine Science found a sub-adult +juvenile loggerhead (Caretta caretta) sea turtle stranded off of Deltaville, Virginia +along the western Chesapeake Bay in July 2004. The sea turtle, appropriately named Delta +for the location where s/he was found stranded, had a broken left flipper and a severe +head injury most likely from a collision with a boat propeller. Delta was transferred to +the Virginia Aquarium Stranding Program for rehabilitation. After many months of recovery +and head surgery, Delta was ready for release in November of 2004. Before release, Delta +was outfitted with a satellite tag by Kate Mansfield, then a Ph.D. student at the + Virginia Institute of Marine Science (College of William and Mary). This was done in order to track Delta's movements and determine the success of the recovery]] local URL = "https://sos.noaa.gov/catalog/datasets/sea-turtle-track-atlantic-ocean/" diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/buoy_locations.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/buoy_locations.asset index 71fc8f0422..b8edf30c5b 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/buoy_locations.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/buoy_locations.asset @@ -3,12 +3,12 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Buoy and Float Locations" local Identifier = "noaa-sos-oceans-buoy_locations" -local Description = [[Buoys and floats with the ability to collect data are scattered -through out the world's oceans in order to gain a better understanding of how the oceans -work and how they are changing. The data is being used for monitoring chemical levels in -the oceans, garnering accurate ocean temperatures and change in temperature, and many -other endless uses. Each dot on this visualization represents a buoy or float, and each -color indicates the use of the instrument. The buoy network is still expanding past what +local Description = [[Buoys and floats with the ability to collect data are scattered +through out the world's oceans in order to gain a better understanding of how the oceans +work and how they are changing. The data is being used for monitoring chemical levels in +the oceans, garnering accurate ocean temperatures and change in temperature, and many +other endless uses. Each dot on this visualization represents a buoy or float, and each +color indicates the use of the instrument. The buoy network is still expanding past what can be seen on this visualization]] local URL = "https://sos.noaa.gov/catalog/datasets/buoy-and-float-locations/" @@ -38,9 +38,9 @@ local colorbar = { CartesianPosition = { 0.85, 0.0, -2.0 } } -asset.onInitialize(function() +asset.onInitialize(function() openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) - openspace.addScreenSpaceRenderable(colorbar); + openspace.addScreenSpaceRenderable(colorbar) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/catch_model.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/catch_model.asset index c272dfafde..db36a5adf2 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/catch_model.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/catch_model.asset @@ -3,16 +3,16 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Fisheries Catch Model - 2005 vs 2050" local Identifier = "noaa-sos-oceans-catch_model" -local Description = [[Climate change may pose a significant threat to fisheries -resources globally. This dataset shows percent change in global fisheries catch projected -to occur by 2050 due to climate change. Comparison is made with fisheries catch levels -reported in 2005. This study suggests that the distribution of major fish stocks will -shift because of climate change as ocean temperature changes. Areas in orange experience -reduced fisheries catch while areas in blue experience higher fisheries catch. The -general pattern is a poleward shift in potential fisheries catches - that is fish -distributions will shift to higher latitude areas (towards poles) and cooler waters as -ocean temperatures increase. The study also predicts species extinction to occur in areas -where species are most sensitive to temperature changes, resulting in reduced fisheries +local Description = [[Climate change may pose a significant threat to fisheries +resources globally. This dataset shows percent change in global fisheries catch projected +to occur by 2050 due to climate change. Comparison is made with fisheries catch levels +reported in 2005. This study suggests that the distribution of major fish stocks will +shift because of climate change as ocean temperature changes. Areas in orange experience +reduced fisheries catch while areas in blue experience higher fisheries catch. The +general pattern is a poleward shift in potential fisheries catches - that is fish +distributions will shift to higher latitude areas (towards poles) and cooler waters as +ocean temperatures increase. The study also predicts species extinction to occur in areas +where species are most sensitive to temperature changes, resulting in reduced fisheries catch in these areas]] local URL = "https://sos.noaa.gov/catalog/datasets/fisheries-catch-model-2005-vs-2050/" @@ -42,9 +42,9 @@ local colorbar = { CartesianPosition = { 0.0, -0.5, -2.0 } } -asset.onInitialize(function() +asset.onInitialize(function() openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) - openspace.addScreenSpaceRenderable(colorbar); + openspace.addScreenSpaceRenderable(colorbar) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/chlorophyll_model.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/chlorophyll_model.asset index 8c4d5ad4fa..b27f5cca80 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/chlorophyll_model.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/chlorophyll_model.asset @@ -3,15 +3,15 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Biosphere: Marine Chlorophyll Concentration Model" local Identifier = "noaa-sos-oceans-chlorophyll_model" -local Description = [[This animation shows the daily concentration of ocean surface -chlorophyll as simulated by the Parallel Ocean Program (POP) with an embedded marine -ecosystem model. While POP calculates the ocean currents, temperature and salinity, the -ecosystem model simulates the complex interaction of microscopic marine plants -(chlorophyll-containing phytoplankton), animals (zooplankton) and nutrients (such as -nitrogen, phosphorus and iron). In addition to constituting a major part of the global -food web, phytoplankton remove carbon dioxide from the atmosphere via photosynthesis much -like their counterparts on land. As conditions in the ocean and atmosphere change due to -increased carbon emissions, it is important to be able to use these kinds of models to +local Description = [[This animation shows the daily concentration of ocean surface +chlorophyll as simulated by the Parallel Ocean Program (POP) with an embedded marine +ecosystem model. While POP calculates the ocean currents, temperature and salinity, the +ecosystem model simulates the complex interaction of microscopic marine plants +(chlorophyll-containing phytoplankton), animals (zooplankton) and nutrients (such as +nitrogen, phosphorus and iron). In addition to constituting a major part of the global +food web, phytoplankton remove carbon dioxide from the atmosphere via photosynthesis much +like their counterparts on land. As conditions in the ocean and atmosphere change due to +increased carbon emissions, it is important to be able to use these kinds of models to understand the possible effects on life in the ocean and the global carbon cycle]] local URL = "https://sos.noaa.gov/catalog/datasets/biosphere-marine-chlorophyll-concentration-model/" @@ -53,7 +53,7 @@ asset.onInitialize(function() end openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) - openspace.addScreenSpaceRenderable(colorbar); + openspace.addScreenSpaceRenderable(colorbar) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/currents.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/currents.asset index a28def6b43..30505c1e00 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/currents.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/currents.asset @@ -3,19 +3,19 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Ocean Circulation (labeled currents)" local Identifier = "noaa-sos-oceans-currents" -local Description = [[The ocean is not a still body of water. There is constant motion -in the ocean in the form of a global ocean conveyor belt due to thermohaline currents. -These currents are density driven, which are affected by both temperature and salinity. -Cold, salty water is dense and sinks to the bottom of the ocean while warm water is less -dense and rises to the surface. The "start" of the ocean conveyor belt is in the -Norwegian Sea. Warm water is transported to the Norwegian Sea by the Gulf Stream. The -warm water provides heat for the atmosphere in the northern latitudes that gets -particularly cold during the winter. This loss of heat to the atmosphere makes the water -cooler and denser, causing it to sink to the bottom of the ocean. As more warm water is -transported north, the cooler water sinks and moves south to make room for the incoming -warm water. This cold bottom water flows south of the equator all the way down to -Antarctica. Eventually, the cold bottom waters are able to warm and rise to the surface, -continuing the conveyor belt that encircles the global. It takes water almost 1000 years +local Description = [[The ocean is not a still body of water. There is constant motion +in the ocean in the form of a global ocean conveyor belt due to thermohaline currents. +These currents are density driven, which are affected by both temperature and salinity. +Cold, salty water is dense and sinks to the bottom of the ocean while warm water is less +dense and rises to the surface. The "start" of the ocean conveyor belt is in the +Norwegian Sea. Warm water is transported to the Norwegian Sea by the Gulf Stream. The +warm water provides heat for the atmosphere in the northern latitudes that gets +particularly cold during the winter. This loss of heat to the atmosphere makes the water +cooler and denser, causing it to sink to the bottom of the ocean. As more warm water is +transported north, the cooler water sinks and moves south to make room for the incoming +warm water. This cold bottom water flows south of the equator all the way down to +Antarctica. Eventually, the cold bottom waters are able to warm and rise to the surface, +continuing the conveyor belt that encircles the global. It takes water almost 1000 years to move through the whole conveyor belt]] local URL = "https://sos.noaa.gov/catalog/datasets/ocean-circulation-labeled-currents/" @@ -45,9 +45,9 @@ local legend = { CartesianPosition = { 0.0, -0.5, -2.0 } } -asset.onInitialize(function() +asset.onInitialize(function() openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) - openspace.addScreenSpaceRenderable(legend); + openspace.addScreenSpaceRenderable(legend) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/dart_buoy.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/dart_buoy.asset index 376e8b3b9e..b2aea8fabe 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/dart_buoy.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/dart_buoy.asset @@ -3,14 +3,14 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Buoy Locations (DART only)" local Identifier = "noaa-sos-oceans-dart_buoy" -local Description = [[After the horrific events of the Indian Ocean Tsunami on December -26, 2004, the need for a tsunami warning system was apparent. As part of the U.S. -National Tsunami Hazard Mitigation Program (NTHMP), the Deep Ocean Assessment and -Reporting of Tsunamis (DART) Project is an ongoing effort to maintain and improve the -capability for the early detection and real-time reporting of tsunamis in the open ocean. -Developed by NOAA's Pacific Marine Environmental Laboratory (PMEL) and operated by NOAA's -National Data Buoy Center (NDBC), DART is essential to fulfilling NOAA's national -responsibility for tsunami hazard mitigation and warnings. When completed in mid2007, the +local Description = [[After the horrific events of the Indian Ocean Tsunami on December +26, 2004, the need for a tsunami warning system was apparent. As part of the U.S. +National Tsunami Hazard Mitigation Program (NTHMP), the Deep Ocean Assessment and +Reporting of Tsunamis (DART) Project is an ongoing effort to maintain and improve the +capability for the early detection and real-time reporting of tsunamis in the open ocean. +Developed by NOAA's Pacific Marine Environmental Laboratory (PMEL) and operated by NOAA's +National Data Buoy Center (NDBC), DART is essential to fulfilling NOAA's national +responsibility for tsunami hazard mitigation and warnings. When completed in mid2007, the DART Project will consist of 32 DART buoys]] local URL = "https://sos.noaa.gov/catalog/datasets/buoy-locations-dart-only/" @@ -30,7 +30,7 @@ local layer = { Description = Description } -asset.onInitialize(function() +asset.onInitialize(function() openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) end) diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/ecco2_sst-gray_land.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/ecco2_sst-gray_land.asset index dd0919de92..9e88eb4d52 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/ecco2_sst-gray_land.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/ecco2_sst-gray_land.asset @@ -3,17 +3,17 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Sea Surface Currents and Temperature (gray land)" local Identifier = "noaa-sos-oceans-ecco2_sst-gray_land" -local Description = [[To increase understanding and predictive capability for the -ocean's role in future climate change scenarios, the NASA Modeling, Analysis, and -Prediction (MAP) program has created a project called Estimating the Circulation and -Climate of the Ocean, Phase II (ECCO2): High-Resolution Global-Ocean and Sea-Ice Data -Synthesis. ECCO2 produces increasingly accurate syntheses of all available global-scale -ocean and sea-ice data at resolutions that start to resolve ocean eddies and other narrow -current systems, which transport heat, and other properties within the ocean. ECCO2 data -syntheses are created by using the available satellite and in-situ data in the -Massachusetts Institute of Technology General Circulation Model (MIT GCM). ECCO2 -simulates ocean flows at all depths, but only surface flows are used in this -visualization. The global sea surface current flows are colored by corresponding sea +local Description = [[To increase understanding and predictive capability for the +ocean's role in future climate change scenarios, the NASA Modeling, Analysis, and +Prediction (MAP) program has created a project called Estimating the Circulation and +Climate of the Ocean, Phase II (ECCO2): High-Resolution Global-Ocean and Sea-Ice Data +Synthesis. ECCO2 produces increasingly accurate syntheses of all available global-scale +ocean and sea-ice data at resolutions that start to resolve ocean eddies and other narrow +current systems, which transport heat, and other properties within the ocean. ECCO2 data +syntheses are created by using the available satellite and in-situ data in the +Massachusetts Institute of Technology General Circulation Model (MIT GCM). ECCO2 +simulates ocean flows at all depths, but only surface flows are used in this +visualization. The global sea surface current flows are colored by corresponding sea surface temperatures. The sea surface temperature data is also from the ECCO2 model]] local URL = "https://sos.noaa.gov/catalog/datasets/sea-surface-currents-and-temperature-gray-land/" @@ -49,17 +49,17 @@ local colorbar = { asset.onInitialize(function() if not openspace.directoryExists(imagesDestination) then openspace.printInfo("Extracting " .. Name) - openspace.unzipFile(syncedDirectory .. "4096-1.zip", imagesDestination, true) - openspace.unzipFile(syncedDirectory .. "4096-2.zip", imagesDestination, true) - openspace.unzipFile(syncedDirectory .. "4096-3.zip", imagesDestination, true) - openspace.unzipFile(syncedDirectory .. "4096-4.zip", imagesDestination, true) - openspace.unzipFile(syncedDirectory .. "4096-5.zip", imagesDestination, true) - openspace.unzipFile(syncedDirectory .. "4096-6.zip", imagesDestination, true) - openspace.unzipFile(syncedDirectory .. "4096-7.zip", imagesDestination, true) + openspace.unzipFile(syncedDirectory .. "4096-1.zip", imagesDestination, true) + openspace.unzipFile(syncedDirectory .. "4096-2.zip", imagesDestination, true) + openspace.unzipFile(syncedDirectory .. "4096-3.zip", imagesDestination, true) + openspace.unzipFile(syncedDirectory .. "4096-4.zip", imagesDestination, true) + openspace.unzipFile(syncedDirectory .. "4096-5.zip", imagesDestination, true) + openspace.unzipFile(syncedDirectory .. "4096-6.zip", imagesDestination, true) + openspace.unzipFile(syncedDirectory .. "4096-7.zip", imagesDestination, true) end openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) - openspace.addScreenSpaceRenderable(colorbar); + openspace.addScreenSpaceRenderable(colorbar) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/ecco2_sst-veg_land.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/ecco2_sst-veg_land.asset index 391a6ea099..810642faba 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/ecco2_sst-veg_land.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/ecco2_sst-veg_land.asset @@ -3,17 +3,17 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Sea Surface Currents and Temperature (vegetation on land)" local Identifier = "noaa-sos-oceans-ecco2_sst-veg_land" -local Description = [[To increase understanding and predictive capability for the -ocean's role in future climate change scenarios, the NASA Modeling, Analysis, and -Prediction (MAP) program has created a project called Estimating the Circulation and -Climate of the Ocean, Phase II (ECCO2): High-Resolution Global-Ocean and Sea-Ice Data -Synthesis. ECCO2 produces increasingly accurate syntheses of all available global-scale -ocean and sea-ice data at resolutions that start to resolve ocean eddies and other narrow -current systems, which transport heat, and other properties within the ocean. ECCO2 data -syntheses are created by using the available satellite and in-situ data in the -Massachusetts Institute of Technology General Circulation Model (MIT GCM). ECCO2 -simulates ocean flows at all depths, but only surface flows are used in this -visualization. The global sea surface current flows are colored by corresponding sea +local Description = [[To increase understanding and predictive capability for the +ocean's role in future climate change scenarios, the NASA Modeling, Analysis, and +Prediction (MAP) program has created a project called Estimating the Circulation and +Climate of the Ocean, Phase II (ECCO2): High-Resolution Global-Ocean and Sea-Ice Data +Synthesis. ECCO2 produces increasingly accurate syntheses of all available global-scale +ocean and sea-ice data at resolutions that start to resolve ocean eddies and other narrow +current systems, which transport heat, and other properties within the ocean. ECCO2 data +syntheses are created by using the available satellite and in-situ data in the +Massachusetts Institute of Technology General Circulation Model (MIT GCM). ECCO2 +simulates ocean flows at all depths, but only surface flows are used in this +visualization. The global sea surface current flows are colored by corresponding sea surface temperatures. The sea surface temperature data is also from the ECCO2 model]] local URL = "https://sos.noaa.gov/catalog/datasets/sea-surface-currents-and-temperature-vegetation-on-land/" @@ -49,19 +49,19 @@ local colorbar = { asset.onInitialize(function() if not openspace.directoryExists(imagesDestination) then openspace.printInfo("Extracting " .. Name) - openspace.unzipFile(syncedDirectory .. "4096-1.zip", imagesDestination, true) - openspace.unzipFile(syncedDirectory .. "4096-2.zip", imagesDestination, true) - openspace.unzipFile(syncedDirectory .. "4096-3.zip", imagesDestination, true) - openspace.unzipFile(syncedDirectory .. "4096-4.zip", imagesDestination, true) - openspace.unzipFile(syncedDirectory .. "4096-5.zip", imagesDestination, true) - openspace.unzipFile(syncedDirectory .. "4096-6.zip", imagesDestination, true) - openspace.unzipFile(syncedDirectory .. "4096-7.zip", imagesDestination, true) - openspace.unzipFile(syncedDirectory .. "4096-8.zip", imagesDestination, true) - openspace.unzipFile(syncedDirectory .. "4096-9.zip", imagesDestination, true) + openspace.unzipFile(syncedDirectory .. "4096-1.zip", imagesDestination, true) + openspace.unzipFile(syncedDirectory .. "4096-2.zip", imagesDestination, true) + openspace.unzipFile(syncedDirectory .. "4096-3.zip", imagesDestination, true) + openspace.unzipFile(syncedDirectory .. "4096-4.zip", imagesDestination, true) + openspace.unzipFile(syncedDirectory .. "4096-5.zip", imagesDestination, true) + openspace.unzipFile(syncedDirectory .. "4096-6.zip", imagesDestination, true) + openspace.unzipFile(syncedDirectory .. "4096-7.zip", imagesDestination, true) + openspace.unzipFile(syncedDirectory .. "4096-8.zip", imagesDestination, true) + openspace.unzipFile(syncedDirectory .. "4096-9.zip", imagesDestination, true) end openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) - openspace.addScreenSpaceRenderable(colorbar); + openspace.addScreenSpaceRenderable(colorbar) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/elnino.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/elnino.asset index 9979ec633a..5ebde85c13 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/elnino.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/elnino.asset @@ -3,14 +3,14 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "El Nino and La Nina Seasonal Impacts" local Identifier = "noaa-sos-oceans-elnino" -local Description = [[El Nino is the warming of the Pacific Ocean off of the western -coast of South America near Ecuador and Peru. It is called El Nino, or little boy in -Spanish, referring to the Christ child because the phenomena was originally noticed near -Christmas time. The opposite of El Nino is La Nina, or little girl in Spanish, which is a -cooling of the Pacific Ocean. Because the Earth system is interconnected, changes in the -ocean cause changes in the atmosphere. El Nino and La Nina events not only impact ocean -temperatures in the tropical Pacific, but also global weather. The occurrence of El Nino -and La Nina is not predictable, but on average occurs once every four year and usually +local Description = [[El Nino is the warming of the Pacific Ocean off of the western +coast of South America near Ecuador and Peru. It is called El Nino, or little boy in +Spanish, referring to the Christ child because the phenomena was originally noticed near +Christmas time. The opposite of El Nino is La Nina, or little girl in Spanish, which is a +cooling of the Pacific Ocean. Because the Earth system is interconnected, changes in the +ocean cause changes in the atmosphere. El Nino and La Nina events not only impact ocean +temperatures in the tropical Pacific, but also global weather. The occurrence of El Nino +and La Nina is not predictable, but on average occurs once every four year and usually lasts for about 18 months]] local URL = "https://sos.noaa.gov/catalog/datasets/el-nino-and-la-nina-seasonal-impacts/" @@ -50,7 +50,7 @@ local layer_lanina_winter = { Description = Description } -asset.onInitialize(function() +asset.onInitialize(function() openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_elnino_summer) openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_elnino_winter) openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_lanina_summer) diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/gfdl_sst-black_background.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/gfdl_sst-black_background.asset index d40b72e6a2..304b2298a0 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/gfdl_sst-black_background.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/gfdl_sst-black_background.asset @@ -3,11 +3,11 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Sea Surface Temperature NOAA Model (black land)" local Identifier = "noaa-sos-oceans-gfdl_sst-black_background" -local Description = [[This dataset shows how the global ocean's surface water -temperatures vary over the course of few years. In addition to seeing the effects of the -seasonal cycle, the viewer can see how surface ocean currents and eddies transport heat -and water around the globe. The images were generated not from observations, but from a -state-of-the-art computer model of Earth's climate created at NOAA's Geophysical Fluid +local Description = [[This dataset shows how the global ocean's surface water +temperatures vary over the course of few years. In addition to seeing the effects of the +seasonal cycle, the viewer can see how surface ocean currents and eddies transport heat +and water around the globe. The images were generated not from observations, but from a +state-of-the-art computer model of Earth's climate created at NOAA's Geophysical Fluid Dynamics Laboratory (GFDL)]] local URL = "https://sos.noaa.gov/catalog/datasets/sea-surface-temperature-noaa-model-black-land/" @@ -55,7 +55,7 @@ asset.onInitialize(function() end openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) - openspace.addScreenSpaceRenderable(colorbar); + openspace.addScreenSpaceRenderable(colorbar) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/gfdl_sst-land_background.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/gfdl_sst-land_background.asset index adb19a3283..b432810438 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/gfdl_sst-land_background.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/gfdl_sst-land_background.asset @@ -3,11 +3,11 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Sea Surface Temperature NOAA Model (with vegetation)" local Identifier = "noaa-sos-oceans-gfdl_sst-land_background" -local Description = [[This dataset shows how the global ocean's surface water -temperatures vary over the course of few years. In addition to seeing the effects of the -seasonal cycle, the viewer can see how surface ocean currents and eddies transport heat -and water around the globe. The images were generated not from observations, but from a -state-of-the-art computer model of Earth's climate created at NOAA's Geophysical Fluid +local Description = [[This dataset shows how the global ocean's surface water +temperatures vary over the course of few years. In addition to seeing the effects of the +seasonal cycle, the viewer can see how surface ocean currents and eddies transport heat +and water around the globe. The images were generated not from observations, but from a +state-of-the-art computer model of Earth's climate created at NOAA's Geophysical Fluid Dynamics Laboratory (GFDL)]] local URL = "https://sos.noaa.gov/catalog/datasets/sea-surface-temperature-noaa-model-with-vegetation/" @@ -57,7 +57,7 @@ asset.onInitialize(function() end openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) - openspace.addScreenSpaceRenderable(colorbar); + openspace.addScreenSpaceRenderable(colorbar) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/greenland_melt.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/greenland_melt.asset index 8d1c093f30..1e8ca9a876 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/greenland_melt.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/greenland_melt.asset @@ -3,15 +3,15 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Greenland Melting Trends" local Identifier = "noaa-sos-oceans-greenland_melt" -local Description = [[Changes in the climate around Greenland can have a world-wide -effect. According to Dr. Konrad Steffen, professor of geography at the University of -Colorado and director of the NOAA joint institute CIRES, "For every degree (F) increase -in the mean annual temperature near Greenland, the rate of sea level rise increases by -about 10 percent." As Greenland warms, the ice that covers it melts and flows into the -oceans. In order to study melting trends on Greenland, researchers at NASA developed a -"melt index" which is the number of days that melting occurred multiplied by the melting -area. There is a steady increase in the melt index from 1988 through present. In fact, -in 2006 Greenland experienced more days of melting snow and at higher altitudes than the +local Description = [[Changes in the climate around Greenland can have a world-wide +effect. According to Dr. Konrad Steffen, professor of geography at the University of +Colorado and director of the NOAA joint institute CIRES, "For every degree (F) increase +in the mean annual temperature near Greenland, the rate of sea level rise increases by +about 10 percent." As Greenland warms, the ice that covers it melts and flows into the +oceans. In order to study melting trends on Greenland, researchers at NASA developed a +"melt index" which is the number of days that melting occurred multiplied by the melting +area. There is a steady increase in the melt index from 1988 through present. In fact, +in 2006 Greenland experienced more days of melting snow and at higher altitudes than the average over the past 18 years that have been studied]] local URL = "https://sos.noaa.gov/catalog/datasets/greenland-melting-trends/" diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/japan_tsunami.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/japan_tsunami.asset index bc0c7c5e03..477a2895b0 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/japan_tsunami.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/japan_tsunami.asset @@ -3,12 +3,12 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Japan Tsunami: Wave Heights - March 11, 2011" local Identifier = "noaa-sos-oceans-japan_tsunami" -local Description = [[On March 11, 2011 at 2:45 local time, a 9.0 magnitude earthquake -occurred 81 miles (130 km) off the east coast of Sendai, Japan, triggering a massive -tsunami. It is estimated that the initial tsunami wave took 10 to 30 minutes to make its -first landfall. Forecasted wave heights were up to 33 ft (10 m) and there were many -reports of tsunami waves three stories high in parts of Japan. Across the Pacific Ocean, -many countries issued evacuations along the coasts because of the predicted tsunami +local Description = [[On March 11, 2011 at 2:45 local time, a 9.0 magnitude earthquake +occurred 81 miles (130 km) off the east coast of Sendai, Japan, triggering a massive +tsunami. It is estimated that the initial tsunami wave took 10 to 30 minutes to make its +first landfall. Forecasted wave heights were up to 33 ft (10 m) and there were many +reports of tsunami waves three stories high in parts of Japan. Across the Pacific Ocean, +many countries issued evacuations along the coasts because of the predicted tsunami waves]] local URL = "https://sos.noaa.gov/catalog/datasets/japan-tsunami-wave-heights-march-11-2011/" @@ -28,7 +28,7 @@ local layer = { Description = Description } -asset.onInitialize(function() +asset.onInitialize(function() openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) end) diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/japan_tsunami_waves.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/japan_tsunami_waves.asset index 58b85ed828..6e134e579e 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/japan_tsunami_waves.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/japan_tsunami_waves.asset @@ -3,18 +3,18 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Japan Tsunami: Wave Propagation - March 11, 2011" local Identifier = "noaa-sos-oceans-japan_tsunami_waves" -local Description = [[On March 11, 2011 at 2:45 p.m. local time, a 9.0 magnitude -earthquake occurred 81 miles (130 km) off the east coast of Sendai, Honshu, Japan, -triggering a massive tsunami. A tsunami is a series of ocean waves generated by sudden -displacements in the sea floor, landslides, or volcanic activity. In the deep ocean, the -tsunami wave may only be a few inches high. The tsunami wave may come gently ashore or -may increase in height to become a fast moving wall of turbulent water several meters -high. Forecasted wave heights in Japan were up to 66 ft (20 m) and there were many -reports of tsunami waves three stories high in parts of Japan. Across the Pacific Ocean, -many countries issued evacuations along the coasts because of the predicted tsunami -waves. Propagation of the tsunami was computed with the NOAA forecast method using the -MOST (Method of Splitting Tsunami) model with the tsunami source inferred from DART. -Approximately 25 minutes after the earthquake, the tsunami was first recorded by one of +local Description = [[On March 11, 2011 at 2:45 p.m. local time, a 9.0 magnitude +earthquake occurred 81 miles (130 km) off the east coast of Sendai, Honshu, Japan, +triggering a massive tsunami. A tsunami is a series of ocean waves generated by sudden +displacements in the sea floor, landslides, or volcanic activity. In the deep ocean, the +tsunami wave may only be a few inches high. The tsunami wave may come gently ashore or +may increase in height to become a fast moving wall of turbulent water several meters +high. Forecasted wave heights in Japan were up to 66 ft (20 m) and there were many +reports of tsunami waves three stories high in parts of Japan. Across the Pacific Ocean, +many countries issued evacuations along the coasts because of the predicted tsunami +waves. Propagation of the tsunami was computed with the NOAA forecast method using the +MOST (Method of Splitting Tsunami) model with the tsunami source inferred from DART. +Approximately 25 minutes after the earthquake, the tsunami was first recorded by one of the DART buoys]] local URL = "https://sos.noaa.gov/catalog/datasets/japan-tsunami-wave-propagation-march-11-2011/" diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/loggerheadseaturtletracks.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/loggerheadseaturtletracks.asset index 4ad03faa9b..43f99a0d21 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/loggerheadseaturtletracks.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/loggerheadseaturtletracks.asset @@ -3,15 +3,15 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Loggerhead Sea Turtle Tracks" local Identifier = "noaa-sos-oceans-loggerheadseaturtletracks" -local Description = [[Using satellite transmitting tags on wildlife allows scientists to -monitor the behaviors of the wildlife in their natural habitats. This dataset contains -the tracks of juvenile loggerhead sea turtles that were tagged and monitored. Some of the -turtles were caught on commercial fishing vessels north of Hawaii and the other turtles -were raised in the hatchery at the Port of Nagoya Aquarium in Japan. After being tagged -the turtles were released at various at-sea locations. The data used in this dataset is -from 1997 through 2006. The animation represents a daily climatology showing the turtle -daily movement, independent of the year. The background is a daily climatology of -satellite remotely-sensed sea surface temperature. The size of the turtle graphic is +local Description = [[Using satellite transmitting tags on wildlife allows scientists to +monitor the behaviors of the wildlife in their natural habitats. This dataset contains +the tracks of juvenile loggerhead sea turtles that were tagged and monitored. Some of the +turtles were caught on commercial fishing vessels north of Hawaii and the other turtles +were raised in the hatchery at the Port of Nagoya Aquarium in Japan. After being tagged +the turtles were released at various at-sea locations. The data used in this dataset is +from 1997 through 2006. The animation represents a daily climatology showing the turtle +daily movement, independent of the year. The background is a daily climatology of +satellite remotely-sensed sea surface temperature. The size of the turtle graphic is proportional to the turtle length]] local URL = "https://sos.noaa.gov/catalog/datasets/loggerhead-sea-turtle-tracks/" diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/marine_impacts.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/marine_impacts.asset index ac1d4db1da..b166bd5fc2 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/marine_impacts.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/marine_impacts.asset @@ -3,15 +3,15 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Human Influences on Marine Ecosystems" local Identifier = "noaa-sos-oceans-marine_impacts" -local Description = [[The ocean has an impact on the lives of everyone on Earth, even -those who don't live on the coasts. It has been estimated that one in every six jobs in -the United States is marine-related and that 50% of all species on Earth are supported by -the ocean. Because of this, it is important to protect and preserve the oceans. Humans -however have been shown to have a negative impact on the oceans. A report issued in -February 2008 found that 40% of the world's oceans are heavily impacted by human -activities, such as overfishing and pollution. In all 17 different human activities were -examined in the report, including fertilizer run-off, commercial shipping, and indirect -activities such as changes in sea surface temperature, UV radiation, and ocean +local Description = [[The ocean has an impact on the lives of everyone on Earth, even +those who don't live on the coasts. It has been estimated that one in every six jobs in +the United States is marine-related and that 50% of all species on Earth are supported by +the ocean. Because of this, it is important to protect and preserve the oceans. Humans +however have been shown to have a negative impact on the oceans. A report issued in +February 2008 found that 40% of the world's oceans are heavily impacted by human +activities, such as overfishing and pollution. In all 17 different human activities were +examined in the report, including fertilizer run-off, commercial shipping, and indirect +activities such as changes in sea surface temperature, UV radiation, and ocean acidification]] local URL = "https://sos.noaa.gov/catalog/datasets/human-influences-on-marine-ecosystems/" @@ -52,10 +52,10 @@ local colorbar_human_impact = { CartesianPosition = { 0.0, -0.5, -2.0 } } -asset.onInitialize(function() +asset.onInitialize(function() openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) - openspace.addScreenSpaceRenderable(colorbar); - openspace.addScreenSpaceRenderable(colorbar_human_impact); + openspace.addScreenSpaceRenderable(colorbar) + openspace.addScreenSpaceRenderable(colorbar_human_impact) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/marine_life_tracking.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/marine_life_tracking.asset index bf93138b4c..85db807b6c 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/marine_life_tracking.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/marine_life_tracking.asset @@ -3,12 +3,12 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Marine Life Tracks: Pacific Ocean" local Identifier = "noaa-sos-oceans-marine_life_tracking" -local Description = [[This dataset contains the locations of a leatherback turtle, a -northern elephant seal, and two white sharks for each day over the course of several -months. The data used was taken from topp.org (TOPP stands for Tagging of Pelagic -Predators), a site that tracks marine animals in an attempt to learn more about them. -TOPP's goal is to protect marine wildlife from overfishing, climate change, and various -other threats. The purpose of this dataset is to serve as an example of a hand-made +local Description = [[This dataset contains the locations of a leatherback turtle, a +northern elephant seal, and two white sharks for each day over the course of several +months. The data used was taken from topp.org (TOPP stands for Tagging of Pelagic +Predators), a site that tracks marine animals in an attempt to learn more about them. +TOPP's goal is to protect marine wildlife from overfishing, climate change, and various +other threats. The purpose of this dataset is to serve as an example of a hand-made animal tracking dataset. For a more extensive dataset using data from TOPP, go here]] local URL = "https://sos.noaa.gov/catalog/datasets/marine-life-tracks-pacific-ocean/" @@ -38,9 +38,9 @@ local legend = { CartesianPosition = { 0.0, -0.5, -2.0 } } -asset.onInitialize(function() +asset.onInitialize(function() openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) - openspace.addScreenSpaceRenderable(legend); + openspace.addScreenSpaceRenderable(legend) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/mexico_turtles_947293.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/mexico_turtles_947293.asset index eeb8aaa6c1..6186d46d25 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/mexico_turtles_947293.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/mexico_turtles_947293.asset @@ -3,14 +3,14 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Sea Turtle Track: Gulf of Mexico (94-7293)" local Identifier = "noaa-sos-oceans-mexico_turtles_947293" -local Description = [[Three Kemp's ridley sea turtles were captured near the Calcasieu -Pass jetties at Cameron, Louisiana and tracked by National Oceanographic and Atmospheric -Administration's (NOAA) National Marine Fisheries Service Galveston Laboratory. Two adult -females (94-7293 and 94-7295) were captured on 11 August 1994 in a turtle entanglement -net by Texas A&M University biologists. Turtle 94-7293's shell measured 65.6 cm in length -and 64.9 cm in width, and weighed 84.4 pounds (38.3 kg). Turtle 94-7295's shell measured -65.8 cm in length and 64.9 cm in width, and weighed 93.9 pounds (42.6 kg). Both were -fitted with Telonics ST-10 satellite transmitters and released within 2 days at the +local Description = [[Three Kemp's ridley sea turtles were captured near the Calcasieu +Pass jetties at Cameron, Louisiana and tracked by National Oceanographic and Atmospheric +Administration's (NOAA) National Marine Fisheries Service Galveston Laboratory. Two adult +females (94-7293 and 94-7295) were captured on 11 August 1994 in a turtle entanglement +net by Texas A&M University biologists. Turtle 94-7293's shell measured 65.6 cm in length +and 64.9 cm in width, and weighed 84.4 pounds (38.3 kg). Turtle 94-7295's shell measured +65.8 cm in length and 64.9 cm in width, and weighed 93.9 pounds (42.6 kg). Both were +fitted with Telonics ST-10 satellite transmitters and released within 2 days at the capture site]] local URL = "https://sos.noaa.gov/catalog/datasets/sea-turtle-track-gulf-of-mexico-94-7293/" diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/mexico_turtles_958002.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/mexico_turtles_958002.asset index 408a853d4e..5c0aeb1f1f 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/mexico_turtles_958002.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/mexico_turtles_958002.asset @@ -3,14 +3,14 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Sea Turtle Track: Gulf of Mexico (94-8002)" local Identifier = "noaa-sos-oceans-mexico_turtles_958002" -local Description = [[These three Kemp's ridley sea turtles were captured near the -Calcasieu Pass jetties at Cameron, Louisiana and tracked by National Oceanographic and -Atmospheric Administration's (NOAA) National Marine Fisheries Service Galveston -Laboratory. Two adult females (94-7293 and 94-7295) were captured on 11 August 1994 in a -turtle entanglement net by Texas A&M University biologists. Turtle 94-7293's shell -measured 65.6 cm in length and 64.9 cm in width, and weighed 84.4 pounds (38.3 kg). -Turtle 94-7295's shell measured 65.8 cm in length and 64.9 cm in width, and weighed 93.9 -pounds (42.6 kg). Both were fitted with Telonics ST-10 satellite transmitters and +local Description = [[These three Kemp's ridley sea turtles were captured near the +Calcasieu Pass jetties at Cameron, Louisiana and tracked by National Oceanographic and +Atmospheric Administration's (NOAA) National Marine Fisheries Service Galveston +Laboratory. Two adult females (94-7293 and 94-7295) were captured on 11 August 1994 in a +turtle entanglement net by Texas A&M University biologists. Turtle 94-7293's shell +measured 65.6 cm in length and 64.9 cm in width, and weighed 84.4 pounds (38.3 kg). +Turtle 94-7295's shell measured 65.8 cm in length and 64.9 cm in width, and weighed 93.9 +pounds (42.6 kg). Both were fitted with Telonics ST-10 satellite transmitters and released within 2 days at the capture site]] local URL = "https://sos.noaa.gov/catalog/datasets/sea-turtle-track-gulf-of-mexico-94-8002/" diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/modis_sst.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/modis_sst.asset index ee35a7e02a..b5d890a9a0 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/modis_sst.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/modis_sst.asset @@ -3,13 +3,13 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Sea Surface Temperature Observations - 2002 - 2006" local Identifier = "noaa-sos-oceans-modis_sst" -local Description = [[Sea surface temperature, much like the atmosphere's temperature, -is constantly changing. The interaction between the ocean and the atmosphere is one that -scientists are constantly researching, especially in light of climate change. Water warms -up and cools down at a slower rate than air, so diurnal variations (heating during the -day and cooling during the night) seen in the atmosphere are hard to observe in the -ocean. The seasons, however, can be seen as the warmest water near the equator expands -toward the United States during the summer months and withdraws again during the winter +local Description = [[Sea surface temperature, much like the atmosphere's temperature, +is constantly changing. The interaction between the ocean and the atmosphere is one that +scientists are constantly researching, especially in light of climate change. Water warms +up and cools down at a slower rate than air, so diurnal variations (heating during the +day and cooling during the night) seen in the atmosphere are hard to observe in the +ocean. The seasons, however, can be seen as the warmest water near the equator expands +toward the United States during the summer months and withdraws again during the winter months]] local URL = "https://sos.noaa.gov/catalog/datasets/sea-surface-temperature-observations-2002-2006/" diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/nasa_speed.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/nasa_speed.asset index fcece31e49..91e7c5012b 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/nasa_speed.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/nasa_speed.asset @@ -3,13 +3,13 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Sea Surface Currents" local Identifier = "noaa-sos-oceans-nasa_speed" -local Description = [[The water in the ocean is constantly moving. Ocean currents are -typically driven by surface wind and can have a huge impact on climate. Northwest Europe -is moderately temperate considering its latitude because the Gulf Stream off of the -eastern coast of the United States transports warm water north to those areas. In fact, -the Atlantic Ocean along the U.S. coast is much warmer than the Pacific Ocean along the -U.S. coast because of the warm water transported in the Gulf Stream. In this -visualization, a model created by NASA, the color variations denote speed. The lighter +local Description = [[The water in the ocean is constantly moving. Ocean currents are +typically driven by surface wind and can have a huge impact on climate. Northwest Europe +is moderately temperate considering its latitude because the Gulf Stream off of the +eastern coast of the United States transports warm water north to those areas. In fact, +the Atlantic Ocean along the U.S. coast is much warmer than the Pacific Ocean along the +U.S. coast because of the warm water transported in the Gulf Stream. In this +visualization, a model created by NASA, the color variations denote speed. The lighter green areas are moving faster than the blue areas]] local URL = "https://sos.noaa.gov/catalog/datasets/sea-surface-currents/" diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/nasa_sst.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/nasa_sst.asset index 2331a633f7..d82b4d5e4e 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/nasa_sst.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/nasa_sst.asset @@ -3,11 +3,11 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Sea Surface Temperature Model" local Identifier = "noaa-sos-oceans-nasa_sst" -local Description = [["Sea surface temperature plays a vital role in the behavior of -the Earth's climate and weather. It is both a causal factor and a resulting effect of -complex interactions of natural forces on Earth. NASA not only measures sea surface -temperature from space using powerful scientific instruments, but it also studies -temperature processes in advanced computer models." -Gretchen Cook-Anderson, Goddard +local Description = [["Sea surface temperature plays a vital role in the behavior of +the Earth's climate and weather. It is both a causal factor and a resulting effect of +complex interactions of natural forces on Earth. NASA not only measures sea surface +temperature from space using powerful scientific instruments, but it also studies +temperature processes in advanced computer models." -Gretchen Cook-Anderson, Goddard Space Flight Center]] local URL = "https://sos.noaa.gov/catalog/datasets/sea-surface-temperature-model/" diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/ocean_acid-co2_flux.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/ocean_acid-co2_flux.asset index 3b34001e8a..8fca9fb50e 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/ocean_acid-co2_flux.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/ocean_acid-co2_flux.asset @@ -3,10 +3,10 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Ocean-Atmosphere CO2 Exchange" local Identifier = "noaa-sos-oceans-ocean_acid-co2_flux" -local Description = [[When carbon dioxide CO2 is released into the atmosphere from the -burning of fossil fuels, approximately 50% remains in the atmosphere, while 25% is -absorbed by land plants and trees, and the other 25% is absorbed into certain areas of -the ocean. In other areas of the ocean, where the concentration of CO2 is higher in the +local Description = [[When carbon dioxide CO2 is released into the atmosphere from the +burning of fossil fuels, approximately 50% remains in the atmosphere, while 25% is +absorbed by land plants and trees, and the other 25% is absorbed into certain areas of +the ocean. In other areas of the ocean, where the concentration of CO2 is higher in the water than in atmosphere above, CO2 is released to the atmosphere]] local URL = "https://sos.noaa.gov/catalog/datasets/ocean-atmosphere-co2-exchange/" @@ -46,14 +46,14 @@ local colorbar = { CartesianPosition = { 0.0, -0.5, -2.0 } } -asset.onInitialize(function() +asset.onInitialize(function() if not openspace.directoryExists(imagesDestination) then openspace.printInfo("Extracting " .. Name) openspace.unzipFile(syncedDirectory .. "images.zip", imagesDestination, true) end openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) - openspace.addScreenSpaceRenderable(colorbar); + openspace.addScreenSpaceRenderable(colorbar) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/ocean_acid-ph.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/ocean_acid-ph.asset index a2b51cb235..97c28ec6de 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/ocean_acid-ph.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/ocean_acid-ph.asset @@ -3,13 +3,13 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Ocean Acidification: Surface pH" local Identifier = "noaa-sos-oceans-ocean_acid-ph" -local Description = [[Ranging from 0 to 14, pH is a scale that describes the acid and -base properties of a solution. The ocean's surface has an average pH of around 8.1, which -is slightly basic. The pH of the open ocean is relatively stable in both time and space; -however, the uptake of CO2 by the ocean has caused measurable changes in seawater. The -imagery here shows the output of a computer model that makes predictions of how the pH -will change over time based on best estimates of likely CO2 emissions (RCP 8.5) used in -the United Nations Intergovernmental Panel on Climate Change's AR5 assessment. The +local Description = [[Ranging from 0 to 14, pH is a scale that describes the acid and +base properties of a solution. The ocean's surface has an average pH of around 8.1, which +is slightly basic. The pH of the open ocean is relatively stable in both time and space; +however, the uptake of CO2 by the ocean has caused measurable changes in seawater. The +imagery here shows the output of a computer model that makes predictions of how the pH +will change over time based on best estimates of likely CO2 emissions (RCP 8.5) used in +the United Nations Intergovernmental Panel on Climate Change's AR5 assessment. The dataset starts in 1861 and runs through 2100]] local URL = "https://sos.noaa.gov/catalog/datasets/ocean-acidification-surface-ph/" @@ -55,7 +55,7 @@ asset.onInitialize(function() end openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) - openspace.addScreenSpaceRenderable(colorbar); + openspace.addScreenSpaceRenderable(colorbar) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/ocean_acid-saturation.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/ocean_acid-saturation.asset index 3d71be5ce3..d97a124c31 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/ocean_acid-saturation.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/ocean_acid-saturation.asset @@ -3,18 +3,18 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Ocean Acidification: Saturation State" local Identifier = "noaa-sos-oceans-ocean_acid-saturation" -local Description = [[Ocean acidification is an often overlooked consequence of -humankind's release of carbon dioxide emissions into the atmosphere from fossil fuel -burning. Excess carbon dioxide enters the ocean and reacts with water to form carbonic -acid, which decreases ocean pH (i.e., makes seawater less basic), and lowers carbonate -ion concentrations. Organisms such as corals, clams, oysters, and some plankton use -carbonate ions to create their shells and skeletons. Decreases in carbonate ion -concentration will make it difficult for these creatures to form hard structures, -particularly for juveniles. Ocean acidification may cause some organisms to die, -reproduce less successfully, or leave an area. Other organisms such as seagrass and some -plankton species may do better in oceans affected by ocean acidification because they use -carbon dioxide to photosynthesize, but do not require carbonate ions to survive. Ocean -ecosystem diversity and ecosystem services may therefore change dramatically from ocean +local Description = [[Ocean acidification is an often overlooked consequence of +humankind's release of carbon dioxide emissions into the atmosphere from fossil fuel +burning. Excess carbon dioxide enters the ocean and reacts with water to form carbonic +acid, which decreases ocean pH (i.e., makes seawater less basic), and lowers carbonate +ion concentrations. Organisms such as corals, clams, oysters, and some plankton use +carbonate ions to create their shells and skeletons. Decreases in carbonate ion +concentration will make it difficult for these creatures to form hard structures, +particularly for juveniles. Ocean acidification may cause some organisms to die, +reproduce less successfully, or leave an area. Other organisms such as seagrass and some +plankton species may do better in oceans affected by ocean acidification because they use +carbon dioxide to photosynthesize, but do not require carbonate ions to survive. Ocean +ecosystem diversity and ecosystem services may therefore change dramatically from ocean acidification]] local URL = "https://sos.noaa.gov/catalog/datasets/ocean-acidification-saturation-state/" @@ -69,7 +69,7 @@ asset.onInitialize(function() openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", reefs) - openspace.addScreenSpaceRenderable(colorbar); + openspace.addScreenSpaceRenderable(colorbar) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/ocean_depths_temp.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/ocean_depths_temp.asset index f0c5d3532b..2697673efb 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/ocean_depths_temp.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/ocean_depths_temp.asset @@ -3,13 +3,13 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Ocean Temperature at Depth - Seasonal" local Identifier = "noaa-sos-oceans-ocean_depths_temp" -local Description = [[Though satellites provide highly detailed analyses of the -temperature of the ocean surface, they cannot measure temperatures below the first 1 mm -of water. For that deeper understanding, NOAA relies on thousands of buoys, ships, -undersea gliders and other devices to measure temperatures at depth. The measurements are -consolidated every few years by the National Oceanographic Data Center into a product -known as the World Ocean Atlas. The measurements shown here go as deep as 5,000 m — far -deeper than many places in the ocean — which is why there is a lack of data (black areas) +local Description = [[Though satellites provide highly detailed analyses of the +temperature of the ocean surface, they cannot measure temperatures below the first 1 mm +of water. For that deeper understanding, NOAA relies on thousands of buoys, ships, +undersea gliders and other devices to measure temperatures at depth. The measurements are +consolidated every few years by the National Oceanographic Data Center into a product +known as the World Ocean Atlas. The measurements shown here go as deep as 5,000 m — far +deeper than many places in the ocean — which is why there is a lack of data (black areas) in some of the deeper imagery]] local URL = "https://sos.noaa.gov/catalog/datasets/ocean-temperature-at-depth-seasonal/" @@ -64,7 +64,7 @@ asset.onInitialize(function() end openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) - openspace.addScreenSpaceRenderable(colorbar); + openspace.addScreenSpaceRenderable(colorbar) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/ocean_drain-gray.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/ocean_drain-gray.asset index 2b6a9638de..d261ebaf04 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/ocean_drain-gray.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/ocean_drain-gray.asset @@ -3,11 +3,11 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Ocean Drain (with gray bathymetry)" local Identifier = "noaa-sos-oceans-ocean_drain-gray" -local Description = [[Beneath the sea surface is an amazing sea floor that contains -mountain ranges, trenches and plains. The ocean covers 71% of the Earth's surface, has an -area of 139,400,000 square miles and an average depth of 2.3 miles. Due to this vast -size, only a few percent the sea floor has been mapped by ships. Maps of the sea floor -are created by combining soundings from ships, sonar scans from ships, and gravity +local Description = [[Beneath the sea surface is an amazing sea floor that contains +mountain ranges, trenches and plains. The ocean covers 71% of the Earth's surface, has an +area of 139,400,000 square miles and an average depth of 2.3 miles. Due to this vast +size, only a few percent the sea floor has been mapped by ships. Maps of the sea floor +are created by combining soundings from ships, sonar scans from ships, and gravity anomalies in the sea surface detected by satellites]] local URL = "https://sos.noaa.gov/catalog/datasets/ocean-drain-with-gray-bathymetry/" diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/pac_turtle.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/pac_turtle.asset index ea2f7adb8b..435ad94e1c 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/pac_turtle.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/pac_turtle.asset @@ -3,13 +3,13 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Sea Turtle Track: Pacific Ocean" local Identifier = "noaa-sos-oceans-pac_turtle" -local Description = [[It is common for scientists to tag animals and release them into -their natural environment in order to study their behaviors and migration. Adelita, a -loggerhead (Caretta caretta) sea turtle, was originally captured off of Baja, Mexico as -an 8-pound juvenile. After being raised in captivity, Adelita was released on August 10, -1996 from Santa Rosaliita, a small town in Mexico on the Baja Peninsula. Adelita weighed -223 pounds when she was released. Before she was released, Wallace J. Nichols, then a -Ph.D. student at the University of Arizona, outfitted Adelita with a satellite tag. The +local Description = [[It is common for scientists to tag animals and release them into +their natural environment in order to study their behaviors and migration. Adelita, a +loggerhead (Caretta caretta) sea turtle, was originally captured off of Baja, Mexico as +an 8-pound juvenile. After being raised in captivity, Adelita was released on August 10, +1996 from Santa Rosaliita, a small town in Mexico on the Baja Peninsula. Adelita weighed +223 pounds when she was released. Before she was released, Wallace J. Nichols, then a +Ph.D. student at the University of Arizona, outfitted Adelita with a satellite tag. The tag transmitted a signal that allowed Adelita's track to be monitored post-release]] local URL = "https://sos.noaa.gov/catalog/datasets/sea-turtle-track-pacific-ocean/" diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/phytoplankton.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/phytoplankton.asset index 0496e8e346..6ae998bea9 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/phytoplankton.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/phytoplankton.asset @@ -3,17 +3,17 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Phytoplankton Model" local Identifier = "noaa-sos-oceans-phytoplankton" -local Description = [[Phytoplankton are the base of the marine food web and are crucial -players in the Earth's carbon cycle. They are also incredibly diverse. This visualization -shows dominant phytoplankton types from 1994-1998 generated by the Darwin Project using a -high-resolution ocean and ecosystem model. The model contains flow fields from 1994-1999 -(generated by the ECCO2 model), inorganic nutrients, 78 species of phytoplankton, -zooplankton, as well as particulate and dissolved organic matter. Colors represent the -most dominant type of phytoplankton at a given location based on their size and ability -to uptake nutrients. Red represents diatoms (big phytoplankton, which need silica), -yellow represents flagellates (other big phytoplankton), green represents prochlorococcus -(small phytoplankton that cannot use nitrate), and cyan represents synechococcus (other -small phytoplankton). Opacity indicates concentration of the phytoplankton as carbon +local Description = [[Phytoplankton are the base of the marine food web and are crucial +players in the Earth's carbon cycle. They are also incredibly diverse. This visualization +shows dominant phytoplankton types from 1994-1998 generated by the Darwin Project using a +high-resolution ocean and ecosystem model. The model contains flow fields from 1994-1999 +(generated by the ECCO2 model), inorganic nutrients, 78 species of phytoplankton, +zooplankton, as well as particulate and dissolved organic matter. Colors represent the +most dominant type of phytoplankton at a given location based on their size and ability +to uptake nutrients. Red represents diatoms (big phytoplankton, which need silica), +yellow represents flagellates (other big phytoplankton), green represents prochlorococcus +(small phytoplankton that cannot use nitrate), and cyan represents synechococcus (other +small phytoplankton). Opacity indicates concentration of the phytoplankton as carbon biomass]] local URL = "https://sos.noaa.gov/catalog/datasets/phytoplankton-model/" @@ -59,7 +59,7 @@ asset.onInitialize(function() end openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) - openspace.addScreenSpaceRenderable(colorbar); + openspace.addScreenSpaceRenderable(colorbar) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/pr_tsunami.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/pr_tsunami.asset index b0a883bc9c..8e4d61a4c4 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/pr_tsunami.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/pr_tsunami.asset @@ -3,14 +3,14 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Puerto Rico Hypothetical Tsunami" local Identifier = "noaa-sos-oceans-pr_tsunami" -local Description = [[After the devastation of the Indian Ocean Tsunami on December 26, -2004, much attention has been given to tsunami research. The National Center for Tsunami -Research, which is part of the Pacific Marine Environmental Laboratory, spearheaded the -research efforts in the United States. A tsunami is a series of waves generated when a -body of water, such as the ocean, is rapidly displaced on a massive scale. This is most -likely to happen where the tectonic plates meet and create trenches. An earthquake in -these regions can cause one plate to subduct under another and displace huge amounts of -water. One location that has garnered much attention from scientists is the Puerto Rico +local Description = [[After the devastation of the Indian Ocean Tsunami on December 26, +2004, much attention has been given to tsunami research. The National Center for Tsunami +Research, which is part of the Pacific Marine Environmental Laboratory, spearheaded the +research efforts in the United States. A tsunami is a series of waves generated when a +body of water, such as the ocean, is rapidly displaced on a massive scale. This is most +likely to happen where the tectonic plates meet and create trenches. An earthquake in +these regions can cause one plate to subduct under another and displace huge amounts of +water. One location that has garnered much attention from scientists is the Puerto Rico Trench, the deepest location in the Atlantic Ocean]] local URL = "https://sos.noaa.gov/catalog/datasets/puerto-rico-hypothetical-tsunami/" diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/reefs_risk.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/reefs_risk.asset index 5c9c6213a2..6ca46f124b 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/reefs_risk.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/reefs_risk.asset @@ -3,22 +3,22 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Coral Reef Risk Outlook" local Identifier = "noaa-sos-oceans-reefs_risk" -local Description = [[From tourism to disease prevention, it's clear that reefs offer -much more than recreation. According to the newly released Reefs at Risk Revisited +local Description = [[From tourism to disease prevention, it's clear that reefs offer +much more than recreation. According to the newly released Reefs at Risk Revisited report, coral reefs: Support more than 275 million people worldwide. Protect coastlines in more than 100 countries - helping defend against storms and erosion. Accounts for 15% of gross domestic product in more than 20 countries. -Hold the potential to fight disease - including treatments for cancer, HIV, malaria, and +Hold the potential to fight disease - including treatments for cancer, HIV, malaria, and other diseases. -Yet coral reefs today face serious threats. The new report finds that approximately 75% -of world's coral reefs are currently threatened by local and global pressures. Local -pressures pose the most immediate threat - especially from overfishing and destructive -fishing, which is particularly widespread in Southeast Asia. Global threats from climate -change and alterations in ocean chemistry (i.e. ocean acidification) are compounding the -pressures on reefs. Climate change is causing ocean temperatures to rise, which, in turn, +Yet coral reefs today face serious threats. The new report finds that approximately 75% +of world's coral reefs are currently threatened by local and global pressures. Local +pressures pose the most immediate threat - especially from overfishing and destructive +fishing, which is particularly widespread in Southeast Asia. Global threats from climate +change and alterations in ocean chemistry (i.e. ocean acidification) are compounding the +pressures on reefs. Climate change is causing ocean temperatures to rise, which, in turn, is leading to wide-spread coral bleaching]] local URL = "https://sos.noaa.gov/catalog/datasets/coral-reef-risk-outlook/" @@ -61,11 +61,11 @@ local legend = { CartesianPosition = { 0.0, -0.5, -2.0 } } -asset.onInitialize(function() +asset.onInitialize(function() openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_2012) openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_2030) openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_2050) - openspace.addScreenSpaceRenderable(legend); + openspace.addScreenSpaceRenderable(legend) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/sea_level.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/sea_level.asset index 2eb9d36443..f01ce6ea49 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/sea_level.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/sea_level.asset @@ -3,19 +3,19 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Sea Level Rise: 10m Increments" local Identifier = "noaa-sos-oceans-sea_level" -local Description = [[There are many questions surrounding climate change. One big -question is how the changing climate will affect the oceans. The sea level has been -steadily rising since 1900 at a rate of 1 to 2.5 millimeters per year. In fact, since -1992 new methods of satellite altimetry using the TOPEX/Poseidon satellite indicate a -rate of rise of 3 millimeters per year. The Fourth Assessment Report from the IPCC states -that "there is strong evidence that global sea level gradually rose in the 20th century -and is currently rising at an increased rate, after a period of little change between AD -0 and AD 1900. Sea level is projected to rise at an even greater rate in this century. " -- Fourth Assessment Report on Sea Level Rise Sea level can rise by two different -mechanisms with respect to climate change. The first is the expansion of the sea water as -the oceans warm due to an increasing global temperature. The second mechanism is the -melting of ice over land, which then adds water to the ocean. The IPCC Fourth Assessment -Report predicts that total global-average sea level rise from 1990 - 2100 will be 7 - 15 +local Description = [[There are many questions surrounding climate change. One big +question is how the changing climate will affect the oceans. The sea level has been +steadily rising since 1900 at a rate of 1 to 2.5 millimeters per year. In fact, since +1992 new methods of satellite altimetry using the TOPEX/Poseidon satellite indicate a +rate of rise of 3 millimeters per year. The Fourth Assessment Report from the IPCC states +that "there is strong evidence that global sea level gradually rose in the 20th century +and is currently rising at an increased rate, after a period of little change between AD +0 and AD 1900. Sea level is projected to rise at an even greater rate in this century. " +- Fourth Assessment Report on Sea Level Rise Sea level can rise by two different +mechanisms with respect to climate change. The first is the expansion of the sea water as +the oceans warm due to an increasing global temperature. The second mechanism is the +melting of ice over land, which then adds water to the ocean. The IPCC Fourth Assessment +Report predicts that total global-average sea level rise from 1990 - 2100 will be 7 - 15 inches for low emission scenarios and 10 - 23 inches for high emission scenarios]] local URL = "https://sos.noaa.gov/catalog/datasets/sea-level-rise-10m-increments/" diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/sea_level_trends.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/sea_level_trends.asset index 1f386c4229..aefc22bddc 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/sea_level_trends.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/sea_level_trends.asset @@ -3,20 +3,20 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Sea Level Trends - 1993 - 2012" local Identifier = "noaa-sos-oceans-sea_level_trends" -local Description = [[There are many questions surrounding climate change. One big -question is how the changing climate will affect the oceans. The sea level has been -steadily rising since 1900 at a rate of 1 to 2.5 millimeters per year. In fact, since -1992 new methods of satellite altimetry using the TOPEX/Poseidon satellite indicate a -rate of rise of 3 millimeters per year. The Fourth Assessment Report from the IPCC states -that "there is strong evidence that global sea level gradually rose in the 20th century -and is currently rising at an increased rate, after a period of little change between AD -0 and AD 1900. Sea level is projected to rise at an even greater rate in this century. " -- Fourth Assessment Report on Sea Level Rise Sea level can rise by two different -mechanisms with respect to climate change. The first is the expansion of the sea water as -the oceans warm due to an increasing global temperature. The second mechanism is the -melting of ice over land, which then adds water to the ocean. The IPCC Fourth Assessment -Report predicts that total global-average sea level rise from 1990 - 2100 will be 7 - 15 -inches (177 - 381 mm) for low emission scenarios and 10 - 23 inches (254 - 584 mm) for +local Description = [[There are many questions surrounding climate change. One big +question is how the changing climate will affect the oceans. The sea level has been +steadily rising since 1900 at a rate of 1 to 2.5 millimeters per year. In fact, since +1992 new methods of satellite altimetry using the TOPEX/Poseidon satellite indicate a +rate of rise of 3 millimeters per year. The Fourth Assessment Report from the IPCC states +that "there is strong evidence that global sea level gradually rose in the 20th century +and is currently rising at an increased rate, after a period of little change between AD +0 and AD 1900. Sea level is projected to rise at an even greater rate in this century. " +- Fourth Assessment Report on Sea Level Rise Sea level can rise by two different +mechanisms with respect to climate change. The first is the expansion of the sea water as +the oceans warm due to an increasing global temperature. The second mechanism is the +melting of ice over land, which then adds water to the ocean. The IPCC Fourth Assessment +Report predicts that total global-average sea level rise from 1990 - 2100 will be 7 - 15 +inches (177 - 381 mm) for low emission scenarios and 10 - 23 inches (254 - 584 mm) for high emission scenarios]] local URL = "https://sos.noaa.gov/catalog/datasets/sea-level-trends-1993-2012/" @@ -47,9 +47,9 @@ local colorbar = { CartesianPosition = { 0.0, -0.5, -2.0 } } -asset.onInitialize(function() +asset.onInitialize(function() openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) - openspace.addScreenSpaceRenderable(colorbar); + openspace.addScreenSpaceRenderable(colorbar) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/sea_surface_height_anomaly.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/sea_surface_height_anomaly.asset index 1992a53cab..4db3e77319 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/sea_surface_height_anomaly.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/sea_surface_height_anomaly.asset @@ -3,14 +3,14 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Sea Surface Height Anomaly" local Identifier = "noaa-sos-oceans-sea_surface_height_anomaly" -local Description = [[To gather long-term information about the world's oceans and -currents, satellite instruments make extremely precise measurements of the height of the -ocean surface above the center of the Earth, a measurement commonly called sea level. -These data are combined to reveal the ocean surface topography (not to be confused with -bathymetry, which is the relief on the bottom of the ocean). Sea surface height is of -interest to scientists because it reveals information about how much heat is stored in -the ocean. Warm water is less dense than cold water, so higher areas tend to be warmer -than lower areas. Radar altimeter instruments onboard spacecraft have been continuously +local Description = [[To gather long-term information about the world's oceans and +currents, satellite instruments make extremely precise measurements of the height of the +ocean surface above the center of the Earth, a measurement commonly called sea level. +These data are combined to reveal the ocean surface topography (not to be confused with +bathymetry, which is the relief on the bottom of the ocean). Sea surface height is of +interest to scientists because it reveals information about how much heat is stored in +the ocean. Warm water is less dense than cold water, so higher areas tend to be warmer +than lower areas. Radar altimeter instruments onboard spacecraft have been continuously collecting sea surface height data over the global ocean for almost two decades]] local URL = "https://sos.noaa.gov/catalog/datasets/sea-surface-height-anomaly/" @@ -53,7 +53,7 @@ asset.onInitialize(function() end openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) - openspace.addScreenSpaceRenderable(colorbar); + openspace.addScreenSpaceRenderable(colorbar) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/seaice_monthly.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/seaice_monthly.asset index 7bc1d850da..5fd156abd1 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/seaice_monthly.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/seaice_monthly.asset @@ -3,13 +3,13 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Sea Ice Extent (Arctic only) - 1850 - Present" local Identifier = "noaa-sos-oceans-seaice_monthly" -local Description = [[Arctic sea ice extent is declining at a rapid rate; the extent in -September, 2019 was about 30% lower than the average September extent over 1980-2010. Sea -ice in both hemispheres can be easily monitored now, with data from a series of -satellites that have been operating since the late 1970s. Every year, NOAA publishes the -Arctic Report Card. In it, scientists summarize how sea ice, along with snow cover, -tundra greenness, marine algae, caribou, and other indicators of change are responding to -warming that is taking place about two times faster in the Arctic than elsewhere on the +local Description = [[Arctic sea ice extent is declining at a rapid rate; the extent in +September, 2019 was about 30% lower than the average September extent over 1980-2010. Sea +ice in both hemispheres can be easily monitored now, with data from a series of +satellites that have been operating since the late 1970s. Every year, NOAA publishes the +Arctic Report Card. In it, scientists summarize how sea ice, along with snow cover, +tundra greenness, marine algae, caribou, and other indicators of change are responding to +warming that is taking place about two times faster in the Arctic than elsewhere on the planet]] local URL = "https://sos.noaa.gov/catalog/datasets/sea-ice-extent-arctic-only-1850-present/" diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/seaice_radiation.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/seaice_radiation.asset index 2cd8e3dc98..242f1f054b 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/seaice_radiation.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/seaice_radiation.asset @@ -3,11 +3,11 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Sea Ice: Fraction and Solar Radiation Absorption" local Identifier = "noaa-sos-oceans-seaice_radiation" -local Description = [[While sea ice is mostly white and reflects the sun's rays, ocean -water is dark and absorbs the sun's energy at a higher rate. A decline in the region's -albedo - its reflectivity, in effect - has been a key concern among scientists since the -summer Arctic sea ice cover began shrinking in recent decades. As more of the sun's -energy is absorbed by the climate system, it enhances ongoing warming in the region, +local Description = [[While sea ice is mostly white and reflects the sun's rays, ocean +water is dark and absorbs the sun's energy at a higher rate. A decline in the region's +albedo - its reflectivity, in effect - has been a key concern among scientists since the +summer Arctic sea ice cover began shrinking in recent decades. As more of the sun's +energy is absorbed by the climate system, it enhances ongoing warming in the region, which is more pronounced than anywhere else on the planet]] local URL = "https://sos.noaa.gov/catalog/datasets/sea-ice-fraction-and-solar-radiation-absorption/" @@ -33,7 +33,7 @@ local layer_solar = { Description = Description } -asset.onInitialize(function() +asset.onInitialize(function() openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_fraction) openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_solar) end) diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/seawifs-land_background.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/seawifs-land_background.asset index 62e73fcd30..109122f344 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/seawifs-land_background.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/seawifs-land_background.asset @@ -3,8 +3,8 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Biosphere: Marine Chlorophyll Concentration" local Identifier = "noaa-sos-oceans-seawifs-land_background" -local Description = [[The term biosphere refers to the regions of the surface, -atmosphere, and hydrosphere of the earth occupied by living organisms.This dataset shows +local Description = [[The term biosphere refers to the regions of the surface, +atmosphere, and hydrosphere of the earth occupied by living organisms.This dataset shows quantity of marine plant-life as it changes throughout the seasons of the year]] local URL = "https://sos.noaa.gov/catalog/datasets/biosphere-marine-chlorophyll-concentration/" @@ -44,7 +44,7 @@ asset.onInitialize(function() end openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) - openspace.addScreenSpaceRenderable(colorbar); + openspace.addScreenSpaceRenderable(colorbar) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/seawifs-no_holes.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/seawifs-no_holes.asset index a92b6ddbe8..3a5d47d741 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/seawifs-no_holes.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/seawifs-no_holes.asset @@ -3,9 +3,9 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Biosphere: Marine Chlorophyll Concentration and Land Vegetation (with CO2 labels)" local Identifier = "noaa-sos-oceans-seawifs-no_holes" -local Description = [[The term biosphere refers to the regions of the surface, -atmosphere, and hydrosphere of the earth occupied by living organisms.This dataset shows -quantity of marine and land-based plant-life as it changes throughout the seasons of the +local Description = [[The term biosphere refers to the regions of the surface, +atmosphere, and hydrosphere of the earth occupied by living organisms.This dataset shows +quantity of marine and land-based plant-life as it changes throughout the seasons of the year]] local URL = "https://sos.noaa.gov/catalog/datasets/biosphere-marine-chlorophyll-concentration-and-land-vegetation-with-co2-labels/" @@ -45,7 +45,7 @@ asset.onInitialize(function() end openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) - openspace.addScreenSpaceRenderable(colorbar); + openspace.addScreenSpaceRenderable(colorbar) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/seawifs-polar_holes.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/seawifs-polar_holes.asset index 6c71a326df..2401d7cbb9 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/seawifs-polar_holes.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/seawifs-polar_holes.asset @@ -3,9 +3,9 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Biosphere: Marine Chlorophyll Concentration and Land Vegetation" local Identifier = "noaa-sos-oceans-seawifs-polar_holes" -local Description = [[The term biosphere refers to the regions of the surface, -atmosphere, and hydrosphere of the earth occupied by living organisms.This dataset shows -quantity of marine and land-based plant-life as it changes throughout the seasons of the +local Description = [[The term biosphere refers to the regions of the surface, +atmosphere, and hydrosphere of the earth occupied by living organisms.This dataset shows +quantity of marine and land-based plant-life as it changes throughout the seasons of the year]] local URL = "https://sos.noaa.gov/catalog/datasets/biosphere-marine-chlorophyll-concentration-and-land-vegetation/" @@ -45,7 +45,7 @@ asset.onInitialize(function() end openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) - openspace.addScreenSpaceRenderable(colorbar); + openspace.addScreenSpaceRenderable(colorbar) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/shark.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/shark.asset index 01723a6791..9a67e649bc 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/shark.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/shark.asset @@ -3,14 +3,14 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Great White Shark Track" local Identifier = "noaa-sos-oceans-shark" -local Description = [[Before satellite tagging technology became feasible, it was -thought that great white sharks (Carcharodon carcharias), spent most of their time close -to the coasts feeding on seals and sea lions. With the advent of satellite tagging -technology, many new behaviors of the great white shark have been discovered. By tagging -a shark with a satellite transmitter, scientists are able to track the movement of the -shark for extended periods. In 2001, a shark tagged off of the coast of California was -tracked all the way to Hawaii, 3,800 km (2,280 miles) away. The shark spent the winter -there before returning to waters closer to California. Several other sharks tagged off +local Description = [[Before satellite tagging technology became feasible, it was +thought that great white sharks (Carcharodon carcharias), spent most of their time close +to the coasts feeding on seals and sea lions. With the advent of satellite tagging +technology, many new behaviors of the great white shark have been discovered. By tagging +a shark with a satellite transmitter, scientists are able to track the movement of the +shark for extended periods. In 2001, a shark tagged off of the coast of California was +tracked all the way to Hawaii, 3,800 km (2,280 miles) away. The shark spent the winter +there before returning to waters closer to California. Several other sharks tagged off the coast of California also were tracked traveling great distances from California]] local URL = "https://sos.noaa.gov/catalog/datasets/great-white-shark-track/" diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/ship_tracks-mosaic.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/ship_tracks-mosaic.asset index f4474a2ada..7d9ac05a6a 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/ship_tracks-mosaic.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/ship_tracks-mosaic.asset @@ -3,20 +3,20 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Ship Multibeam Bathymetric Surveys Mosaic" local Identifier = "noaa-sos-oceans-ship_tracks-mosaic" -local Description = [[Beneath the sea surface is an amazing sea floor that contains -mountain ranges, trenches and plains. The ocean covers 71% of the Earth's surface, has an -area of 139,400,000 square miles and an average depth of 2.3 miles. The first -measurements of the sea floor were made with weighted lines that were lowered until they -hit the bottom. Vast improvements have been made since that time, yet the majority of the -sea floor remains unmapped. It's important to know the bathymetry, or the sea floor -terrain, of the ocean for navigation and exploration purposes. Today, bathymetric maps -are created using data from multibeam echosounders. A multibeam echosounder is a device -that is mounted to the hull of a ship to determine the depth of water and the nature of -the seabed. The system emits a broad acoustic pulse from under a ship and then records -how long it takes the beams to return to the ship after bouncing off the sea floor. If -the speed of sound in water is known for the full water column, then the depth of the sea -floor can be calculated from the travel time. Multiple beams are sent out in a fan shape -to collect depth information in a swath beneath the boat as it travels through the +local Description = [[Beneath the sea surface is an amazing sea floor that contains +mountain ranges, trenches and plains. The ocean covers 71% of the Earth's surface, has an +area of 139,400,000 square miles and an average depth of 2.3 miles. The first +measurements of the sea floor were made with weighted lines that were lowered until they +hit the bottom. Vast improvements have been made since that time, yet the majority of the +sea floor remains unmapped. It's important to know the bathymetry, or the sea floor +terrain, of the ocean for navigation and exploration purposes. Today, bathymetric maps +are created using data from multibeam echosounders. A multibeam echosounder is a device +that is mounted to the hull of a ship to determine the depth of water and the nature of +the seabed. The system emits a broad acoustic pulse from under a ship and then records +how long it takes the beams to return to the ship after bouncing off the sea floor. If +the speed of sound in water is known for the full water column, then the depth of the sea +floor can be calculated from the travel time. Multiple beams are sent out in a fan shape +to collect depth information in a swath beneath the boat as it travels through the ocean]] local URL = "https://sos.noaa.gov/catalog/datasets/ship-multibeam-bathymetric-surveys-mosaic/" @@ -46,9 +46,9 @@ local legend = { CartesianPosition = { 0.85, 0.0, -2.0 } } -asset.onInitialize(function() +asset.onInitialize(function() openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) - openspace.addScreenSpaceRenderable(legend); + openspace.addScreenSpaceRenderable(legend) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/ship_tracks-tracks.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/ship_tracks-tracks.asset index d0c7c921b7..694a26bbe4 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/ship_tracks-tracks.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/ship_tracks-tracks.asset @@ -3,20 +3,20 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Ship Tracklines of Multibeam Bathymetric Surveys" local Identifier = "noaa-sos-oceans-ship_tracks-tracks" -local Description = [[Beneath the sea surface is an amazing sea floor that contains -mountain ranges, trenches and plains. The ocean covers 71% of the Earth's surface, has an -area of 139,400,000 square miles and an average depth of 2.3 miles. The first -measurements of the sea floor were made with weighted lines that were lowered until they -hit the bottom. Vast improvements have been made since that time, yet the majority of the -sea floor remains unmapped. It's important to know the bathymetry, or the sea floor -terrain, of the ocean for navigation and exploration purposes. Today, bathymetric maps -are created using data from multibeam echosounders. A multibeam echosounder is a device -that is mounted to the hull of a ship to determine the depth of water and the nature of -the seabed. The system emits a broad acoustic pulse from under a ship and then records -how long it takes the beams to return to the ship after bouncing off the sea floor. If -the speed of sound in water is known for the full water column, then the depth of the sea -floor can be calculated from the travel time. Multiple beams are sent out in a fan -shape to collect depth information in a swath beneath the boat as it travels through the +local Description = [[Beneath the sea surface is an amazing sea floor that contains +mountain ranges, trenches and plains. The ocean covers 71% of the Earth's surface, has an +area of 139,400,000 square miles and an average depth of 2.3 miles. The first +measurements of the sea floor were made with weighted lines that were lowered until they +hit the bottom. Vast improvements have been made since that time, yet the majority of the +sea floor remains unmapped. It's important to know the bathymetry, or the sea floor +terrain, of the ocean for navigation and exploration purposes. Today, bathymetric maps +are created using data from multibeam echosounders. A multibeam echosounder is a device +that is mounted to the hull of a ship to determine the depth of water and the nature of +the seabed. The system emits a broad acoustic pulse from under a ship and then records +how long it takes the beams to return to the ship after bouncing off the sea floor. If +the speed of sound in water is known for the full water column, then the depth of the sea +floor can be calculated from the travel time. Multiple beams are sent out in a fan +shape to collect depth information in a swath beneath the boat as it travels through the ocean]] local URL = "https://sos.noaa.gov/catalog/datasets/ship-tracklines-of-multibeam-bathymetric-surveys/" @@ -46,9 +46,9 @@ local legend = { CartesianPosition = { 0.85, 0.0, -2.0 } } -asset.onInitialize(function() +asset.onInitialize(function() openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) - openspace.addScreenSpaceRenderable(legend); + openspace.addScreenSpaceRenderable(legend) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/shipping.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/shipping.asset index 8c466c31cb..295363143d 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/shipping.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/shipping.asset @@ -3,15 +3,15 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Shipping Routes (with labels) - One Year" local Identifier = "noaa-sos-oceans-shipping" -local Description = [[There were more than 30,000 merchant ships greater than 1000 gross -tonnage at sea in 2005. The World Meteorological Organization has a Voluntary Observing -Ships Scheme that equips ships with weather instruments in order to provide observations -for weather models and forecasters. In addition to observing the weather, the location of -the ships is also recorded through GPS. From October 2004 through October of 2005 -1,189,127 mobile ship data points were collected from 3,374 commercial and research -vessels, which is about 11% of all ships at sea in 2005. By connecting the data points -for each vessel, shipping routes over the course of one year were plotted. The National -Center for Ecological Analysis and Synthesis compiled this data to include in their +local Description = [[There were more than 30,000 merchant ships greater than 1000 gross +tonnage at sea in 2005. The World Meteorological Organization has a Voluntary Observing +Ships Scheme that equips ships with weather instruments in order to provide observations +for weather models and forecasters. In addition to observing the weather, the location of +the ships is also recorded through GPS. From October 2004 through October of 2005 +1,189,127 mobile ship data points were collected from 3,374 commercial and research +vessels, which is about 11% of all ships at sea in 2005. By connecting the data points +for each vessel, shipping routes over the course of one year were plotted. The National +Center for Ecological Analysis and Synthesis compiled this data to include in their Global Map of Human Impacts to Marine Ecosystems]] local URL = "https://sos.noaa.gov/catalog/datasets/shipping-routes-with-labels-one-year/" @@ -31,7 +31,7 @@ local layer = { Description = Description } -asset.onInitialize(function() +asset.onInitialize(function() openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) end) diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/species_richness.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/species_richness.asset index 3f4196b566..db13b18e01 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/species_richness.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/species_richness.asset @@ -3,18 +3,18 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Fisheries Species Richness" local Identifier = "noaa-sos-oceans-species_richness" -local Description = [[Species richness is a count of the number of different species in -an ecological community, landscape or region. Species richness is one of several -measurements used by scientists to help determine how biologically rich and diverse a -given area is. This map shows the predicted global distribution of 1066 commercially -harvested marine fish and invertebrates. Areas on the map with brighter colors -(orange/yellow) highlight areas with greater number of different species (higher species -richness), while cooler colors (purple) areas with lower number of species (lower species -richness). The map shows the highest number of different species is concentrated along -the coasts. These coastal areas are also where we find our largest marine ecosystems, -such as coral reefs, mangroves and marshes, which provide food and shelter for -economically, culturally, and ecologically important marine species. This stresses the -importance of protecting critical habitat along our coasts for marine life and +local Description = [[Species richness is a count of the number of different species in +an ecological community, landscape or region. Species richness is one of several +measurements used by scientists to help determine how biologically rich and diverse a +given area is. This map shows the predicted global distribution of 1066 commercially +harvested marine fish and invertebrates. Areas on the map with brighter colors +(orange/yellow) highlight areas with greater number of different species (higher species +richness), while cooler colors (purple) areas with lower number of species (lower species +richness). The map shows the highest number of different species is concentrated along +the coasts. These coastal areas are also where we find our largest marine ecosystems, +such as coral reefs, mangroves and marshes, which provide food and shelter for +economically, culturally, and ecologically important marine species. This stresses the +importance of protecting critical habitat along our coasts for marine life and fisheries]] local URL = "https://sos.noaa.gov/catalog/datasets/fisheries-species-richness/" @@ -45,9 +45,9 @@ local colorbar = { CartesianPosition = { 0.0, -0.5, -2.0 } } -asset.onInitialize(function() +asset.onInitialize(function() openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) - openspace.addScreenSpaceRenderable(colorbar); + openspace.addScreenSpaceRenderable(colorbar) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/sss.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/sss.asset index a6a7f0165d..5778b346dc 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/sss.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/sss.asset @@ -3,12 +3,12 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Sea Surface Salinity" local Identifier = "noaa-sos-oceans-sss" -local Description = [[Processes that took place through Earth's history, such as the -weathering of rocks, evaporation of ocean water, and the formation of sea ice, have made -the ocean salty. Those are still at work today and are counterbalanced by processes that -decrease the salt in the ocean, like freshwater input from rivers, precipitation, and the -melting of ice. The result is an ocean surface where the salinity - the concentration of -salt - changes and these changes, small as they may be, have large-scale effects on +local Description = [[Processes that took place through Earth's history, such as the +weathering of rocks, evaporation of ocean water, and the formation of sea ice, have made +the ocean salty. Those are still at work today and are counterbalanced by processes that +decrease the salt in the ocean, like freshwater input from rivers, precipitation, and the +melting of ice. The result is an ocean surface where the salinity - the concentration of +salt - changes and these changes, small as they may be, have large-scale effects on Earth's water cycle and ocean circulation]] local URL = "https://sos.noaa.gov/catalog/datasets/sea-surface-salinity/" @@ -48,7 +48,7 @@ asset.onInitialize(function() end openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) - openspace.addScreenSpaceRenderable(colorbar); + openspace.addScreenSpaceRenderable(colorbar) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/sst_1980_1999.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/sst_1980_1999.asset index dbd1416c99..8e030e7386 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/sst_1980_1999.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/sst_1980_1999.asset @@ -3,14 +3,14 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Sea Surface Temperature Anomalies - 1980 - 1999" local Identifier = "noaa-sos-oceans-sst_1980_1999" -local Description = [[Rather than plotting sea surface temperatures, sea surface -temperature anomalies have been plotted here to show the dramatic departures from normal -that are associated with El Nino and La Nina from 1980 - 1999. El Nino is the warming of -the Pacific Ocean off of the western coast of South America near Ecuador and Peru. It is -called El Nino, or little boy in Spanish, referring to the Christ child because the -phenomena usually occurs near Christmas time. The opposite of El Nino is La Nina, or -little girl in Spanish, which is a cooling of the Pacific Ocean. The red shading -signifies a warming of the ocean by 5-10°F, the green shading is normal and the blue +local Description = [[Rather than plotting sea surface temperatures, sea surface +temperature anomalies have been plotted here to show the dramatic departures from normal +that are associated with El Nino and La Nina from 1980 - 1999. El Nino is the warming of +the Pacific Ocean off of the western coast of South America near Ecuador and Peru. It is +called El Nino, or little boy in Spanish, referring to the Christ child because the +phenomena usually occurs near Christmas time. The opposite of El Nino is La Nina, or +little girl in Spanish, which is a cooling of the Pacific Ocean. The red shading +signifies a warming of the ocean by 5-10°F, the green shading is normal and the blue shading is a cooling of the ocean by 5-10°F]] local URL = "https://sos.noaa.gov/catalog/datasets/sea-surface-temperature-anomalies-1980-1999/" diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/tsunami_historical_series-alaska.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/tsunami_historical_series-alaska.asset index e659b6b5dd..8ceb171ddb 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/tsunami_historical_series-alaska.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/tsunami_historical_series-alaska.asset @@ -3,24 +3,24 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Tsunami Historical Series: Alaska - 1964" local Identifier = "noaa-sos-oceans-tsunami_historical_series-alaska" -local Description = [[At 5:36 pm on Friday, March 27, 1964 (28 March, 03:36Z UTC) the -largest earthquake ever measured in North America, and the second-largest recorded -anywhere, struck 40 miles west of Valdez, Alaska in Prince William Sound with a moment -magnitude we now know to be 9.2. Almost an hour and a half later the Honolulu Magnetic -and Seismic Observatory (later renamed the Pacific Tsunami Warning Center, or PTWC) was -able to issue its first "tidal wave advisory" that noted that a tsunami was possible and -that it could arrive in the Hawaiian Islands five hours later. Upon learning of a tsunami -observation in Kodiak Island, Alaska, an hour and a half later the Honolulu Observatory -issued a formal "tidal wave/seismic sea-wave warning" cautioning that damage was possible -in Hawaii and throughout the Pacific Ocean but that it was not possible to predict the -intensity of the tsunami. The earthquake did in fact generate a tsunami that killed 124 -people (106 in Alaska, 13 in California, and 5 in Oregon) and caused about $2.3 billion -(2016 dollars) in property loss all along the Pacific coast of North America from Alaska -to southern California and in Hawaii. The greatest wave heights were in Alaska at over -67 m or 220 ft. and waves almost 10 m or 32 ft high struck British Columbia, Canada. In -the "lower 48" waves as high as 4.5 m or 15 ft. struck Washington, as high as 3.7 m or -12 ft. struck Oregon, and as high as 4.8 m or over 15 ft. struck California. Waves of -similar size struck Hawaii at nearly 5 m or over 16 ft. high. Waves over 1 m or 3 ft. +local Description = [[At 5:36 pm on Friday, March 27, 1964 (28 March, 03:36Z UTC) the +largest earthquake ever measured in North America, and the second-largest recorded +anywhere, struck 40 miles west of Valdez, Alaska in Prince William Sound with a moment +magnitude we now know to be 9.2. Almost an hour and a half later the Honolulu Magnetic +and Seismic Observatory (later renamed the Pacific Tsunami Warning Center, or PTWC) was +able to issue its first "tidal wave advisory" that noted that a tsunami was possible and +that it could arrive in the Hawaiian Islands five hours later. Upon learning of a tsunami +observation in Kodiak Island, Alaska, an hour and a half later the Honolulu Observatory +issued a formal "tidal wave/seismic sea-wave warning" cautioning that damage was possible +in Hawaii and throughout the Pacific Ocean but that it was not possible to predict the +intensity of the tsunami. The earthquake did in fact generate a tsunami that killed 124 +people (106 in Alaska, 13 in California, and 5 in Oregon) and caused about $2.3 billion +(2016 dollars) in property loss all along the Pacific coast of North America from Alaska +to southern California and in Hawaii. The greatest wave heights were in Alaska at over +67 m or 220 ft. and waves almost 10 m or 32 ft high struck British Columbia, Canada. In +the "lower 48" waves as high as 4.5 m or 15 ft. struck Washington, as high as 3.7 m or +12 ft. struck Oregon, and as high as 4.8 m or over 15 ft. struck California. Waves of +similar size struck Hawaii at nearly 5 m or over 16 ft. high. Waves over 1 m or 3 ft. high also struck Mexico, Chile, and even New Zealand]] local URL = "https://sos.noaa.gov/catalog/datasets/tsunami-historical-series-alaska-1964/" @@ -61,7 +61,7 @@ local layer_null = { } -asset.onInitialize(function() +asset.onInitialize(function() openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_coastal) openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_energy_coastal) openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_energy) diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/tsunami_historical_series-aleutians.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/tsunami_historical_series-aleutians.asset index 362108fa59..3994301d28 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/tsunami_historical_series-aleutians.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/tsunami_historical_series-aleutians.asset @@ -3,21 +3,21 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Tsunami Historical Series: Aleutian Islands - 1946" local Identifier = "noaa-sos-oceans-tsunami_historical_series-aleutians" -local Description = [[On April 1, 1946 at 4:28 am (12:28 UTC), an 8.6 moment magnitude -earthquake struck off the coast of Unimak Island in Alaska's Aleutian Islands, -generating a tsunami that caused the greatest damage and number of deaths in Hawaii's -history, leading to the creation of the United States' first tsunami warning system. As -is typical for dangerous tsunamis the greatest wave heights were nearest the epicenter. -The waves reached as high as 42 m or about 138 ft. on Unimak Island and destroyed its -lighthouse and killed the five people there. Elsewhere this tsunami caused the greatest -damage and number of deaths on inhabited Pacific islands. In Hawaii the waves reached -about 17 m or 55 ft. high and killed 158 people, most in the town of Hilo, while in the -Marquesas Islands in French Polynesia the waves reached even higher to 20 m or 65 ft but -killed only two people. Chile's Easter Island also got nearly 9 m or 28 ft.while its Juan -Fernandez Islands got nearly 3 m or 9 ft. high waves. Pitcairn Island also had 5 m or 16 -ft. high waves, New Zealand had over 2 m or 8 ft. high waves, and Samoa had over 1 m or -about 4 ft. high waves. In North America the highest waves were in California at over 2 m -or over 8 ft. and killed one person there and in South America it killed one more person +local Description = [[On April 1, 1946 at 4:28 am (12:28 UTC), an 8.6 moment magnitude +earthquake struck off the coast of Unimak Island in Alaska's Aleutian Islands, +generating a tsunami that caused the greatest damage and number of deaths in Hawaii's +history, leading to the creation of the United States' first tsunami warning system. As +is typical for dangerous tsunamis the greatest wave heights were nearest the epicenter. +The waves reached as high as 42 m or about 138 ft. on Unimak Island and destroyed its +lighthouse and killed the five people there. Elsewhere this tsunami caused the greatest +damage and number of deaths on inhabited Pacific islands. In Hawaii the waves reached +about 17 m or 55 ft. high and killed 158 people, most in the town of Hilo, while in the +Marquesas Islands in French Polynesia the waves reached even higher to 20 m or 65 ft but +killed only two people. Chile's Easter Island also got nearly 9 m or 28 ft.while its Juan +Fernandez Islands got nearly 3 m or 9 ft. high waves. Pitcairn Island also had 5 m or 16 +ft. high waves, New Zealand had over 2 m or 8 ft. high waves, and Samoa had over 1 m or +about 4 ft. high waves. In North America the highest waves were in California at over 2 m +or over 8 ft. and killed one person there and in South America it killed one more person in Peru]] local URL = "https://sos.noaa.gov/catalog/datasets/tsunami-historical-series-aleutian-islands-1946/" @@ -58,7 +58,7 @@ local layer_null = { } -asset.onInitialize(function() +asset.onInitialize(function() openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_coastal) openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_energy_coastal) openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_energy) diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/tsunami_historical_series-aleutians_1957.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/tsunami_historical_series-aleutians_1957.asset index 10ef41ea40..c29ee7f54f 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/tsunami_historical_series-aleutians_1957.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/tsunami_historical_series-aleutians_1957.asset @@ -3,22 +3,22 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Tsunami Historical Series: Aleutian Islands - 1957" local Identifier = "noaa-sos-oceans-tsunami_historical_series-aleutians_1957" -local Description = [[At 4:22 am on Saturday, March 9, 1957 (9 March, 14:22 Z UTC) the -second great earthquake in 11 years struck Alaska's Aleutian Islands. This earthquake had -the same magnitude of the earlier earthquake--8.6 on the moment magnitude scale (Johnson -et al. 1994)--but was to the west of the 1946 earthquake, near the Andreanof Islands. As -with the earlier event it also caused a dangerous tsunami that caused significant damage -in the Aleutian Islands and in Hawaii and was observed as far away as Chile. The greatest -wave heights were in Alaska's Aleutian Islands, with waves nearly 23 m or 75 ft. high -coming ashore on Unimak Island. The tsunami would reach Hawaii a little over four hours -later, with the largest waves striking the island of Kauai at over 11 m or 38 ft. high -and would cause $5.3 million in damage statewide ($46 million in 2017), including the -destruction of more than 80 homes. Elsewhere around the Pacific Ocean the tsunami waves -would reach heights of 6 m or 20 ft. in the Marquesas Islands (French Polynesia), 3 m or -10 ft. in Japan, 1.5 m or 5 ft. in American Samoa, and over 1 m or 3 ft. in Mexico and -Chile. Unlike the earlier event, however, it did not kill any people thanks to effective -tsunami alerts from to the Honolulu Observatory and the Seismic Sea Wave Warning System. -These efforts, established in 1948, would later become the Pacific Tsunami Warning Center +local Description = [[At 4:22 am on Saturday, March 9, 1957 (9 March, 14:22 Z UTC) the +second great earthquake in 11 years struck Alaska's Aleutian Islands. This earthquake had +the same magnitude of the earlier earthquake--8.6 on the moment magnitude scale (Johnson +et al. 1994)--but was to the west of the 1946 earthquake, near the Andreanof Islands. As +with the earlier event it also caused a dangerous tsunami that caused significant damage +in the Aleutian Islands and in Hawaii and was observed as far away as Chile. The greatest +wave heights were in Alaska's Aleutian Islands, with waves nearly 23 m or 75 ft. high +coming ashore on Unimak Island. The tsunami would reach Hawaii a little over four hours +later, with the largest waves striking the island of Kauai at over 11 m or 38 ft. high +and would cause $5.3 million in damage statewide ($46 million in 2017), including the +destruction of more than 80 homes. Elsewhere around the Pacific Ocean the tsunami waves +would reach heights of 6 m or 20 ft. in the Marquesas Islands (French Polynesia), 3 m or +10 ft. in Japan, 1.5 m or 5 ft. in American Samoa, and over 1 m or 3 ft. in Mexico and +Chile. Unlike the earlier event, however, it did not kill any people thanks to effective +tsunami alerts from to the Honolulu Observatory and the Seismic Sea Wave Warning System. +These efforts, established in 1948, would later become the Pacific Tsunami Warning Center (PTWC) and Pacific Tsunami Warning System]] local URL = "https://sos.noaa.gov/catalog/datasets/tsunami-historical-series-aleutian-islands-1957/" @@ -60,7 +60,7 @@ local layer_null = { } -asset.onInitialize(function() +asset.onInitialize(function() openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_coastal) openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_energy_coastal) openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_energy) diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/tsunami_historical_series-cascadia.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/tsunami_historical_series-cascadia.asset index 578adc305e..2fbd18e0db 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/tsunami_historical_series-cascadia.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/tsunami_historical_series-cascadia.asset @@ -3,24 +3,24 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Tsunami Historical Series: Cascadia - 1700" local Identifier = "noaa-sos-oceans-tsunami_historical_series-cascadia" -local Description = [[Just before midnight on January 27, 1700 a tsunami struck the -coasts of Japan without warning since no one in Japan felt the earthquake that must have -caused it. Nearly 300 years later scientists and historians in Japan and the United -States solved the mystery of what caused this "orphan tsunami" through careful analysis -of historical records in Japan as well as oral histories of Native Americans, sediment -deposits, and ghost forests of drowned trees in the Pacific Northwest of North America, -a region also known as Cascadia. They learned that this geologically active region, the -Cascadia Subduction Zone, not only hosts erupting volcanoes but also produces megathrust -earthquakes capable of generating devastating, ocean-crossing tsunamis. By comparing the -tree rings of dead trees with those still living they could tell when the last of these -great earthquakes struck the region. The trees all died in the winter of 1699 - 1700 when -the coasts of northern California, Oregon, and Washington suddenly dropped 1- 2 m (3.3 - -6.6 ft.), flooding them with seawater. That much motion over such a large area requires a -very large earthquake to explain it - perhaps as large as 9.2 magnitude, comparable to -the Great Alaska Earthquake of 1964. Such an earthquake would have ruptured the earth -along the entire length of the 1000 km (~600 mi) long fault of the Cascadia Subduction -Zone and severe shaking could have lasted for 5 minutes or longer. Its tsunami would -cross the Pacific Ocean and reach Japan in about 9 hours, so the earthquake must have +local Description = [[Just before midnight on January 27, 1700 a tsunami struck the +coasts of Japan without warning since no one in Japan felt the earthquake that must have +caused it. Nearly 300 years later scientists and historians in Japan and the United +States solved the mystery of what caused this "orphan tsunami" through careful analysis +of historical records in Japan as well as oral histories of Native Americans, sediment +deposits, and ghost forests of drowned trees in the Pacific Northwest of North America, +a region also known as Cascadia. They learned that this geologically active region, the +Cascadia Subduction Zone, not only hosts erupting volcanoes but also produces megathrust +earthquakes capable of generating devastating, ocean-crossing tsunamis. By comparing the +tree rings of dead trees with those still living they could tell when the last of these +great earthquakes struck the region. The trees all died in the winter of 1699 - 1700 when +the coasts of northern California, Oregon, and Washington suddenly dropped 1- 2 m (3.3 - +6.6 ft.), flooding them with seawater. That much motion over such a large area requires a +very large earthquake to explain it - perhaps as large as 9.2 magnitude, comparable to +the Great Alaska Earthquake of 1964. Such an earthquake would have ruptured the earth +along the entire length of the 1000 km (~600 mi) long fault of the Cascadia Subduction +Zone and severe shaking could have lasted for 5 minutes or longer. Its tsunami would +cross the Pacific Ocean and reach Japan in about 9 hours, so the earthquake must have occurred around 9:00 at night in Cascadia on January 26, 1700 (05:00 January 27 UTC)]] local URL = "https://sos.noaa.gov/catalog/datasets/tsunami-historical-series-cascadia-1700/" @@ -61,7 +61,7 @@ local layer_null = { } -asset.onInitialize(function() +asset.onInitialize(function() openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_coastal) openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_energy_coastal) openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_energy) diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/tsunami_historical_series-chile.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/tsunami_historical_series-chile.asset index 41e45bd71f..1c0f374eab 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/tsunami_historical_series-chile.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/tsunami_historical_series-chile.asset @@ -3,26 +3,26 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Tsunami Historical Series: Chile - 2010" local Identifier = "noaa-sos-oceans-tsunami_historical_series-chile" -local Description = [[At 3:34 on the morning of February 27, 2010 (06:34 UTC), an 8.8 -moment magnitude earthquake struck near the coastline of central Chile. The Pacific -Tsunami Warning Center (PTWC) quickly determined that the large magnitude of this -earthquake, its location near the coastline, its relatively shallow depth within the -earth, and a history of megathrust earthquakes in the region meant that it could have -moved the seafloor and thus posed a significant tsunami risk and PTWC issued their first -tsunami warning several minutes later for Chile and Peru. The earthquake did in fact -cause a tsunami, and over the following hours as PTWC learned more about the earthquake -(confirming it was a megathrust and upgrading its magnitude) and its tsunami through -forecast models and direct observation with DART sensors and coastal sea-level gauges -PTWC would eventually issue tsunami warnings to the State of Hawaii and all 43 countries -and territories participating the Pacific Tsunami Warning System, keeping warnings in -some areas in effect for more than a day. PTWC's sister office, the West Coast and Alaska -Tsunami Warning Center (now known as the National Tsunami Warning Center), also issued -tsunami advisories for Alaska and the Pacific coasts of the United States and Canada. The -tsunami caused the greatest devastation and 124 deaths in Chile, where waves reached as -high as 29 m or 95 ft. on the mainland, over 18 m or 60 ft. in its Juan Fernandez -Islands, and over 4 m or 14 ft. at Rapa Nui (Easter Island). Outside of Chile tsunami -wave heights exceeded 1 m or 3 ft. in the Marquesas Islands (French Polynesia), New -Zealand, the Kuril Islands (Russia), and in the United States in California and Hawaii, +local Description = [[At 3:34 on the morning of February 27, 2010 (06:34 UTC), an 8.8 +moment magnitude earthquake struck near the coastline of central Chile. The Pacific +Tsunami Warning Center (PTWC) quickly determined that the large magnitude of this +earthquake, its location near the coastline, its relatively shallow depth within the +earth, and a history of megathrust earthquakes in the region meant that it could have +moved the seafloor and thus posed a significant tsunami risk and PTWC issued their first +tsunami warning several minutes later for Chile and Peru. The earthquake did in fact +cause a tsunami, and over the following hours as PTWC learned more about the earthquake +(confirming it was a megathrust and upgrading its magnitude) and its tsunami through +forecast models and direct observation with DART sensors and coastal sea-level gauges +PTWC would eventually issue tsunami warnings to the State of Hawaii and all 43 countries +and territories participating the Pacific Tsunami Warning System, keeping warnings in +some areas in effect for more than a day. PTWC's sister office, the West Coast and Alaska +Tsunami Warning Center (now known as the National Tsunami Warning Center), also issued +tsunami advisories for Alaska and the Pacific coasts of the United States and Canada. The +tsunami caused the greatest devastation and 124 deaths in Chile, where waves reached as +high as 29 m or 95 ft. on the mainland, over 18 m or 60 ft. in its Juan Fernandez +Islands, and over 4 m or 14 ft. at Rapa Nui (Easter Island). Outside of Chile tsunami +wave heights exceeded 1 m or 3 ft. in the Marquesas Islands (French Polynesia), New +Zealand, the Kuril Islands (Russia), and in the United States in California and Hawaii, and caused minor damage in San Diego, California and in Japan]] local URL = "https://sos.noaa.gov/catalog/datasets/tsunami-historical-series-chile-2010/" @@ -63,7 +63,7 @@ local layer_null = { } -asset.onInitialize(function() +asset.onInitialize(function() openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_coastal) openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_energy_coastal) openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_energy) diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/tsunami_historical_series-japan.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/tsunami_historical_series-japan.asset index 7c3f652865..9916750682 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/tsunami_historical_series-japan.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/tsunami_historical_series-japan.asset @@ -3,31 +3,31 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Tsunami Historical Series: Japan - 2011" local Identifier = "noaa-sos-oceans-tsunami_historical_series-japan" -local Description = [[At 14:46 in the afternoon of March 11, 2011 (05:46 UTC), a 9.0 -moment magnitude earthquake struck near the coastline of Honshu, Japan. The Pacific -Tsunami Warning Center (PTWC) quickly determined that the very large magnitude of this -earthquake, its offshore location, its relatively shallow depth within the earth, and a -history of megathrust earthquakes in the region meant that it likely moved the seafloor -and thus posed a significant tsunami risk. As per international agreements Japanese -authorities issued tsunami warnings for their own coastlines while PTWC began issuing -warnings to other countries and territories in the western Pacific Ocean. The earthquake -did in fact cause a tsunami, and over the following hours as PTWC learned more about the -earthquake (confirming it was a megathrust and upgrading its magnitude) and its tsunami -through forecast models and direct observation with DART sensors and coastal sea-level -gauges PTWC would eventually issue tsunami warnings to the State of Hawaii and all -remaining countries and territories participating the Pacific Tsunami Warning System, -keeping warnings in some areas in effect for more than a day. PTWC's sister office, the -West Coast and Alaska Tsunami Warning Center (now known as the National Tsunami Warning -Center), also issued tsunami warnings for Alaska and the Pacific coasts of the United -States and Canada. The tsunami caused the greatest devastation and over 17,000 deaths in -Japan, where waves reached over 40 m or 130 ft. high. Outside of Japan the tsunami also -killed one person in Papua, Indonesia and rose to greater than 5 m or 16 ft. in the -Galapagos Islands (Ecuador), greater than 2m or 6.5 ft. in Indonesia, Russia's Kuril -Islands, and in Chile, and rose to greater than 1 m or 3 ft. in Costa Rica, the Marquesas -Islands (French Polynesia), Mexico, Papua New Guinea, and Peru. In the United States the -tsunami rose to more than 5 m or 16 ft. in Hawaii, more than 2 m or 6.5 ft in California -and Oregon, and more than 1 m or 3 ft. in the U.S. island territories of Midway and -Saipan (Northern Mariana Islands). The tsunami also killed one person in Crescent City, +local Description = [[At 14:46 in the afternoon of March 11, 2011 (05:46 UTC), a 9.0 +moment magnitude earthquake struck near the coastline of Honshu, Japan. The Pacific +Tsunami Warning Center (PTWC) quickly determined that the very large magnitude of this +earthquake, its offshore location, its relatively shallow depth within the earth, and a +history of megathrust earthquakes in the region meant that it likely moved the seafloor +and thus posed a significant tsunami risk. As per international agreements Japanese +authorities issued tsunami warnings for their own coastlines while PTWC began issuing +warnings to other countries and territories in the western Pacific Ocean. The earthquake +did in fact cause a tsunami, and over the following hours as PTWC learned more about the +earthquake (confirming it was a megathrust and upgrading its magnitude) and its tsunami +through forecast models and direct observation with DART sensors and coastal sea-level +gauges PTWC would eventually issue tsunami warnings to the State of Hawaii and all +remaining countries and territories participating the Pacific Tsunami Warning System, +keeping warnings in some areas in effect for more than a day. PTWC's sister office, the +West Coast and Alaska Tsunami Warning Center (now known as the National Tsunami Warning +Center), also issued tsunami warnings for Alaska and the Pacific coasts of the United +States and Canada. The tsunami caused the greatest devastation and over 17,000 deaths in +Japan, where waves reached over 40 m or 130 ft. high. Outside of Japan the tsunami also +killed one person in Papua, Indonesia and rose to greater than 5 m or 16 ft. in the +Galapagos Islands (Ecuador), greater than 2m or 6.5 ft. in Indonesia, Russia's Kuril +Islands, and in Chile, and rose to greater than 1 m or 3 ft. in Costa Rica, the Marquesas +Islands (French Polynesia), Mexico, Papua New Guinea, and Peru. In the United States the +tsunami rose to more than 5 m or 16 ft. in Hawaii, more than 2 m or 6.5 ft in California +and Oregon, and more than 1 m or 3 ft. in the U.S. island territories of Midway and +Saipan (Northern Mariana Islands). The tsunami also killed one person in Crescent City, California]] local URL = "https://sos.noaa.gov/catalog/datasets/tsunami-historical-series-japan-2011/" @@ -68,7 +68,7 @@ local layer_null = { } -asset.onInitialize(function() +asset.onInitialize(function() openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_coastal) openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_energy_coastal) openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_energy) diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/tsunami_historical_series-lisbon.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/tsunami_historical_series-lisbon.asset index 34808ea567..bba2409396 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/tsunami_historical_series-lisbon.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/tsunami_historical_series-lisbon.asset @@ -3,14 +3,14 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Tsunami Historical Series: Lisbon - 1755" local Identifier = "noaa-sos-oceans-tsunami_historical_series-lisbon" -local Description = [[On the morning of November 1, 1755, a great earthquake shook -Portugal's capital city of Lisbon as worshipers filled churches and cathedrals for the -All Saints' Day Mass. In seconds it left the city in ruins and in minutes those ruins -were on fire. The earthquake probably killed about 30,000 people, though some estimates -double that figure. Many of the survivors fled to the wharves and keys of Lisbon's port, -but they would find no safety there. The first tsunami wave surged up the Tagus estuary -about an hour after the earthquake, reached a maximum runup of 12 meters (40 feet), and -killed another 1000 people. At least two more tsunami waves surged into the city, +local Description = [[On the morning of November 1, 1755, a great earthquake shook +Portugal's capital city of Lisbon as worshipers filled churches and cathedrals for the +All Saints' Day Mass. In seconds it left the city in ruins and in minutes those ruins +were on fire. The earthquake probably killed about 30,000 people, though some estimates +double that figure. Many of the survivors fled to the wharves and keys of Lisbon's port, +but they would find no safety there. The first tsunami wave surged up the Tagus estuary +about an hour after the earthquake, reached a maximum runup of 12 meters (40 feet), and +killed another 1000 people. At least two more tsunami waves surged into the city, completing the earthquake's destruction]] local URL = "https://sos.noaa.gov/catalog/datasets/tsunami-historical-series-lisbon-1755/" @@ -51,7 +51,7 @@ local layer_null = { } -asset.onInitialize(function() +asset.onInitialize(function() openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_coastal) openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_energy_coastal) openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_energy) diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/tsunami_historical_series-samoa.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/tsunami_historical_series-samoa.asset index 624cc30b31..2bdc26cc5e 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/tsunami_historical_series-samoa.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/tsunami_historical_series-samoa.asset @@ -3,16 +3,16 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Tsunami Historical Series: Samoa - 2009" local Identifier = "noaa-sos-oceans-tsunami_historical_series-samoa" -local Description = [[At 6:48 on the morning of September 29, 2009 (17:48 UTC), an 8.1 -moment magnitude earthquake struck near the Samoan Islands in the southwest Pacific -Ocean. The Pacific Tsunami Warning Center (PTWC) quickly determined that the large -magnitude of this earthquake, its location under the sea floor, its relatively shallow -depth within the earth, and a history of tsunami-causing earthquakes in the region meant -that it could have moved the seafloor and thus posed a significant tsunami risk. PTWC -issued its first tsunami warning several minutes later for Samoa, American Samoa, Tonga, -and other nearby island groups. The earthquake did in fact cause a dangerous tsunami, and -over the following hours PTWC tracked it through the Pacific Ocean and updated its alerts -with measured tsunami wave heights and recommended that additional areas consider coastal +local Description = [[At 6:48 on the morning of September 29, 2009 (17:48 UTC), an 8.1 +moment magnitude earthquake struck near the Samoan Islands in the southwest Pacific +Ocean. The Pacific Tsunami Warning Center (PTWC) quickly determined that the large +magnitude of this earthquake, its location under the sea floor, its relatively shallow +depth within the earth, and a history of tsunami-causing earthquakes in the region meant +that it could have moved the seafloor and thus posed a significant tsunami risk. PTWC +issued its first tsunami warning several minutes later for Samoa, American Samoa, Tonga, +and other nearby island groups. The earthquake did in fact cause a dangerous tsunami, and +over the following hours PTWC tracked it through the Pacific Ocean and updated its alerts +with measured tsunami wave heights and recommended that additional areas consider coastal evacuation. PTWC canceled all tsunami alerts about four hours after the earthquake]] local URL = "https://sos.noaa.gov/catalog/datasets/tsunami-historical-series-samoa-2009/" @@ -53,7 +53,7 @@ local layer_null = { } -asset.onInitialize(function() +asset.onInitialize(function() openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_coastal) openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_energy_coastal) openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_energy) diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/tsunami_historical_series-sumatra.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/tsunami_historical_series-sumatra.asset index 31aee63d59..f619fd2faa 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/tsunami_historical_series-sumatra.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/tsunami_historical_series-sumatra.asset @@ -3,10 +3,10 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Tsunami Historical Series: Sumatra - 2004" local Identifier = "noaa-sos-oceans-tsunami_historical_series-sumatra" -local Description = [[The magnitude 9.1 Great Sumatra-Andaman Earthquake of December 26, -2004, spawned the deadliest tsunami in history, killing more than 230,000 people in 14 -countries around the Indian Ocean. More than half of those killed had lived in Acheh -Province, Sumatra, where the tsunami rose as high as 30 m (100 ft.) and traveled more than +local Description = [[The magnitude 9.1 Great Sumatra-Andaman Earthquake of December 26, +2004, spawned the deadliest tsunami in history, killing more than 230,000 people in 14 +countries around the Indian Ocean. More than half of those killed had lived in Acheh +Province, Sumatra, where the tsunami rose as high as 30 m (100 ft.) and traveled more than 4 km (2.5 mi.) inland in this low-lying region]] local URL = "https://sos.noaa.gov/catalog/datasets/tsunami-historical-series-sumatra-2004//" @@ -47,7 +47,7 @@ local layer_null = { } -asset.onInitialize(function() +asset.onInitialize(function() openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_coastal) openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_energy_coastal) openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_energy) diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/tsunami_locations.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/tsunami_locations.asset index 84c4b55b30..19afae4379 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/tsunami_locations.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/tsunami_locations.asset @@ -3,19 +3,19 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Tsunami Locations - 2000 BCE - 2014" local Identifier = "noaa-sos-oceans-tsunami_locations" -local Description = [[Earthquakes, landslides, volcanoes, explosions, and atmospheric -processes - all of these disasters have caused tsunamis in the past. But by far, the most -common generator of tsunamis is earthquakes, as has recently been seen in Sumatra, Chile, -and Japan. The NOAA National Geophysical Data Center archives academic and historical -reports from around the world of where tsunamis are estimated to have originated, and -have compiled a database of over 2,500 events from 2,000 B.C. through 2014t. This image -plots about half of those events - tsunamis that are classified as a "definite tsunami" -or "probable tsunami." The icons are shaded according to the devastation of the event by -the number of fatalities caused where white = none, yellow = 1-50, orange = 51-100, and -red = >101. Since earthquakes are the most common tsunami generator, the highest density -of event origins are located around the Pacific "Ring of Fire" known for its prevalence -of volcanic and tectonic activity. The points are overlaid on top of a map of ocean -bathymetry (Natural Earth 2 from the Natural Earth project), which indicates many of the +local Description = [[Earthquakes, landslides, volcanoes, explosions, and atmospheric +processes - all of these disasters have caused tsunamis in the past. But by far, the most +common generator of tsunamis is earthquakes, as has recently been seen in Sumatra, Chile, +and Japan. The NOAA National Geophysical Data Center archives academic and historical +reports from around the world of where tsunamis are estimated to have originated, and +have compiled a database of over 2,500 events from 2,000 B.C. through 2014t. This image +plots about half of those events - tsunamis that are classified as a "definite tsunami" +or "probable tsunami." The icons are shaded according to the devastation of the event by +the number of fatalities caused where white = none, yellow = 1-50, orange = 51-100, and +red = >101. Since earthquakes are the most common tsunami generator, the highest density +of event origins are located around the Pacific "Ring of Fire" known for its prevalence +of volcanic and tectonic activity. The points are overlaid on top of a map of ocean +bathymetry (Natural Earth 2 from the Natural Earth project), which indicates many of the pronounced ocean features, such as volcanic islands, rift zones, and plate boundaries that are often associated with generating tsunamis]] local URL = "https://sos.noaa.gov/catalog/datasets/tsunami-locations-2000-bce-2014/" @@ -66,12 +66,12 @@ local legend = { } -asset.onInitialize(function() +asset.onInitialize(function() openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_base) openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_gray) openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_neutral) openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer_events) - openspace.addScreenSpaceRenderable(legend); + openspace.addScreenSpaceRenderable(legend) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/vector_winds.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/vector_winds.asset index f62853cada..8d5ad10920 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/vector_winds.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/vector_winds.asset @@ -3,14 +3,14 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Ocean Surface Winds" local Identifier = "noaa-sos-oceans-vector_winds" -local Description = [[The SeaWinds scatterometer, carried aboard NASA's QuikSCAT -satellite, is a microwave radar designed to measure the backscatter related to -near-surface wind speed and direction over the oceans. A rougher ocean surface returns a -stronger signal because the waves reflect more of the radar energy back toward the -scatterometer antenna (backscatter), and a smoother ocean surface returns a weaker signal -because less of the energy is reflected. Given the known relationship between the -roughness of the surface and the strength of the wind, it is possible to compute the wind -speed and direction - the wind vector - from multiple observations of the signal returned +local Description = [[The SeaWinds scatterometer, carried aboard NASA's QuikSCAT +satellite, is a microwave radar designed to measure the backscatter related to +near-surface wind speed and direction over the oceans. A rougher ocean surface returns a +stronger signal because the waves reflect more of the radar energy back toward the +scatterometer antenna (backscatter), and a smoother ocean surface returns a weaker signal +because less of the energy is reflected. Given the known relationship between the +roughness of the surface and the strength of the wind, it is possible to compute the wind +speed and direction - the wind vector - from multiple observations of the signal returned from a given area on the ocean surface]] local URL = "https://sos.noaa.gov/catalog/datasets/ocean-surface-winds/" @@ -51,7 +51,7 @@ asset.onInitialize(function() end openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) - openspace.addScreenSpaceRenderable(colorbar); + openspace.addScreenSpaceRenderable(colorbar) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/vent_discoveries_animation.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/vent_discoveries_animation.asset index 7cd49e8745..82643e8ae9 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/vent_discoveries_animation.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/vent_discoveries_animation.asset @@ -3,11 +3,11 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Deep-Sea Vent Discoveries" local Identifier = "noaa-sos-oceans-vent_discoveries_animation" -local Description = [[This dataset is an animation showing the discoveries of deep-sea -hydrothermal vents from 1977-2016 (cumulative, annually). In 1977 scientists made a -stunning discovery that changed our understanding of life on Earth. On the deep seafloor -they had discovered hot springs, or hydrothermal vents, with animals that had never been -seen before. These discoveries continue today. Over 240 vent fields have been discovered +local Description = [[This dataset is an animation showing the discoveries of deep-sea +hydrothermal vents from 1977-2016 (cumulative, annually). In 1977 scientists made a +stunning discovery that changed our understanding of life on Earth. On the deep seafloor +they had discovered hot springs, or hydrothermal vents, with animals that had never been +seen before. These discoveries continue today. Over 240 vent fields have been discovered with human-occupied, remotely-operated, and autonomous vehicles]] local URL = "https://sos.noaa.gov/catalog/datasets/deep-sea-vent-discoveries/" diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/vent_locations.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/vent_locations.asset index ddaa2062a3..b58cc5414a 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/vent_locations.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/vent_locations.asset @@ -3,11 +3,11 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Deep-Sea Vent Locations" local Identifier = "noaa-sos-oceans-vent_locations" -local Description = [[This dataset shows all known locations of deep-sea hydrothermal -vents. Hydrothermal vents form in places where there is volcanic activity, such as along -Earth's plate boundaries. They occur when seawater seeps down and is heated deep beneath -the seafloor. The hot fluid rises and gushes out of vents at temperatures up to 400 deg C -(more than 750 deg F!), carrying with it chemical energy that supports life in the +local Description = [[This dataset shows all known locations of deep-sea hydrothermal +vents. Hydrothermal vents form in places where there is volcanic activity, such as along +Earth's plate boundaries. They occur when seawater seeps down and is heated deep beneath +the seafloor. The hot fluid rises and gushes out of vents at temperatures up to 400 deg C +(more than 750 deg F!), carrying with it chemical energy that supports life in the otherwise cold, dark, deep sea]] local URL = "https://sos.noaa.gov/catalog/datasets/deep-sea-vent-locations/" @@ -27,7 +27,7 @@ local layer = { Description = Description } -asset.onInitialize(function() +asset.onInitialize(function() openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) end) diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/vorticity.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/vorticity.asset index 6f02adc20f..8790ea411b 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/vorticity.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/vorticity.asset @@ -3,12 +3,12 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Ocean Surface Vorticity" local Identifier = "noaa-sos-oceans-vorticity" -local Description = [[This animation shows daily values of the ocean surface relative -vorticity as simulated by the Parallel Ocean Program (POP). Vorticity, which can be -thought of as the rate of fluid rotation, is particularly useful for visualizing ocean -turbulent flow, highlighting the presence of swirling eddies. A significant amount of the -total kinetic energy in the world ocean is attributable to these turbulent motions, -making them an important component in balances of energy, momentum, heat, salt, and +local Description = [[This animation shows daily values of the ocean surface relative +vorticity as simulated by the Parallel Ocean Program (POP). Vorticity, which can be +thought of as the rate of fluid rotation, is particularly useful for visualizing ocean +turbulent flow, highlighting the presence of swirling eddies. A significant amount of the +total kinetic energy in the world ocean is attributable to these turbulent motions, +making them an important component in balances of energy, momentum, heat, salt, and chemical constituents (such as carbon dioxide) throughout the globe]] local URL = "https://sos.noaa.gov/catalog/datasets/ocean-surface-vorticity/" @@ -48,7 +48,7 @@ asset.onInitialize(function() end openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) - openspace.addScreenSpaceRenderable(colorbar); + openspace.addScreenSpaceRenderable(colorbar) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/waves-wave_height_2012.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/waves-wave_height_2012.asset index 863ea5a1a9..b1c99ce719 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/waves-wave_height_2012.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/waves-wave_height_2012.asset @@ -3,9 +3,9 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Wave Heights 2012" local Identifier = "noaa-sos-oceans-waves-wave_height_2012" -local Description = [[Meteorological offices worldwide forecast ocean wave heights for -the shipping and fisheries industry. In the United States, NOAA's National Weather -Service provides the wave forecasts. Just like in weather forecasting, scientists run +local Description = [[Meteorological offices worldwide forecast ocean wave heights for +the shipping and fisheries industry. In the United States, NOAA's National Weather +Service provides the wave forecasts. Just like in weather forecasting, scientists run numerical models to make these predictions]] local URL = "https://sos.noaa.gov/catalog/datasets/wave-heights-2012/" @@ -45,7 +45,7 @@ asset.onInitialize(function() end openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) - openspace.addScreenSpaceRenderable(colorbar); + openspace.addScreenSpaceRenderable(colorbar) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/waves-wave_height_katrina.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/waves-wave_height_katrina.asset index 6870316965..80408cf903 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/waves-wave_height_katrina.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/waves-wave_height_katrina.asset @@ -3,11 +3,11 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Wave Heights - Hurricane Katrina 2005" local Identifier = "noaa-sos-oceans-waves-wave_height_katrina" -local Description = [[This movie shows calculations of the NOAA wave forecasting model, -called WAVEWATCH III, over the Atlantic Ocean and focuses on the time period that -Hurricane Katrina occurred. Hurricane Katrina formed near the Bahamas on August 23rd, -2005. It made landfall in Florida on Monday August 27th and then regained energy tracking -though the Gulf of Mexico. Finally it hit the southeast Louisiana coast on Monday August +local Description = [[This movie shows calculations of the NOAA wave forecasting model, +called WAVEWATCH III, over the Atlantic Ocean and focuses on the time period that +Hurricane Katrina occurred. Hurricane Katrina formed near the Bahamas on August 23rd, +2005. It made landfall in Florida on Monday August 27th and then regained energy tracking +though the Gulf of Mexico. Finally it hit the southeast Louisiana coast on Monday August 29th, 2005]] local URL = "https://sos.noaa.gov/catalog/datasets/wave-heights-hurricane-katrina-2005/" @@ -47,7 +47,7 @@ asset.onInitialize(function() end openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) - openspace.addScreenSpaceRenderable(colorbar); + openspace.addScreenSpaceRenderable(colorbar) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/waves-wave_height_sandy.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/waves-wave_height_sandy.asset index 6ab7e729fb..fededbb87b 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/waves-wave_height_sandy.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/waves-wave_height_sandy.asset @@ -3,11 +3,11 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Wave Heights - Hurricane Sandy 2012" local Identifier = "noaa-sos-oceans-waves-wave_height_sandy" -local Description = [[Meteorological offices worldwide forecast ocean wave heights for -the shipping and fisheries industry. In the United States, NOAA's National Weather -Service provides the wave forecasts. Just like in weather forecasting, scientists run -numerical models to make these predictions. This movie shows wave height calculations of -a wave model called 'WAVEWATCH III'. The movie shows 3 hourly model output over October +local Description = [[Meteorological offices worldwide forecast ocean wave heights for +the shipping and fisheries industry. In the United States, NOAA's National Weather +Service provides the wave forecasts. Just like in weather forecasting, scientists run +numerical models to make these predictions. This movie shows wave height calculations of +a wave model called 'WAVEWATCH III'. The movie shows 3 hourly model output over October 1st - October 31st, 2012]] local URL = "https://sos.noaa.gov/catalog/datasets/wave-heights-hurricane-sandy-2012/" @@ -47,7 +47,7 @@ asset.onInitialize(function() end openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) - openspace.addScreenSpaceRenderable(colorbar); + openspace.addScreenSpaceRenderable(colorbar) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/waves-wave_power_2012.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/waves-wave_power_2012.asset index 9854a6c4f2..393de3b8d7 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/waves-wave_power_2012.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/waves-wave_power_2012.asset @@ -3,9 +3,9 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Wave Power 2012" local Identifier = "noaa-sos-oceans-waves-wave_power_2012" -local Description = [[Meteorological offices worldwide forecast ocean wave heights for -the shipping and fisheries industry. In the United States, NOAA's National Weather -Service provides the wave forecasts. Just like in weather forecasting, scientists run +local Description = [[Meteorological offices worldwide forecast ocean wave heights for +the shipping and fisheries industry. In the United States, NOAA's National Weather +Service provides the wave forecasts. Just like in weather forecasting, scientists run numerical models to make these predictions]] local URL = "https://sos.noaa.gov/catalog/datasets/wave-power-2012/" @@ -45,7 +45,7 @@ asset.onInitialize(function() end openspace.globebrowsing.addLayer(globeIdentifier, "ColorLayers", layer) - openspace.addScreenSpaceRenderable(colorbar); + openspace.addScreenSpaceRenderable(colorbar) end) asset.onDeinitialize(function() diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/weeklyseaice-10day_seaice.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/weeklyseaice-10day_seaice.asset index be5df6cb54..867f64e106 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/weeklyseaice-10day_seaice.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/weeklyseaice-10day_seaice.asset @@ -3,15 +3,15 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Sea Ice Extent- 1978 - Present" local Identifier = "noaa-sos-oceans-weeklyseaice-10day_seaice" -local Description = [[Sea ice is simply ocean water that has frozen. At least 15% of the -ocean is covered by sea ice some part of the year. This means that on average, sea ice -covers almost 10 million square miles (about 25 million square kilometers) of the Earth. -Sea ice is monitored closely by scientists because changing sea ice coverage can have a -huge impact on the rest of the globe. Global warming is amplified in polar regions. -Because of this, monitoring changes in sea ice can be a good indicator of climate change. -The National Snow and Ice Data Center monitors sea ice using a passive microwave -satellite data record that begins in 1978. The Special Sensor Microwave Imager/Sounder -(SSMIS) is the current monitoring instrument. This sea ice extent dataset is on a 25km +local Description = [[Sea ice is simply ocean water that has frozen. At least 15% of the +ocean is covered by sea ice some part of the year. This means that on average, sea ice +covers almost 10 million square miles (about 25 million square kilometers) of the Earth. +Sea ice is monitored closely by scientists because changing sea ice coverage can have a +huge impact on the rest of the globe. Global warming is amplified in polar regions. +Because of this, monitoring changes in sea ice can be a good indicator of climate change. +The National Snow and Ice Data Center monitors sea ice using a passive microwave +satellite data record that begins in 1978. The Special Sensor Microwave Imager/Sounder +(SSMIS) is the current monitoring instrument. This sea ice extent dataset is on a 25km cell size grid covering both Arctic and Antarctic polar regions]] local URL = "https://sos.noaa.gov/catalog/datasets/sea-ice-extent-1978-present/" diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/weeklyseaice-sept_seaice.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/weeklyseaice-sept_seaice.asset index 40e8c9f16f..f3e75f2327 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/weeklyseaice-sept_seaice.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/oceans/weeklyseaice-sept_seaice.asset @@ -3,23 +3,23 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Sea Ice Extent: September Only" local Identifier = "noaa-sos-oceans-weeklyseaice-sept_seaice" -local Description = [[Sea ice is simply ocean water that has frozen. At least 15% of the -ocean is covered by sea ice some part of the year. This means that on average, sea ice -covers almost 10 million square miles (about 25 million square kilometers) of the Earth. -Sea ice is monitored closely by scientists because changing sea ice coverage can have a -huge impact on the rest of the globe. Global warming is amplified in polar regions. -Because of this, monitoring changes in sea ice can be a good indicator of climate change. -The National Snow and Ice Data Center monitors sea ice using a passive microwave -satellite data record that begins in 1978. The Special Sensor Microwave Imager/Sounder -(SSMIS) is the current monitoring instrument. This sea ice extent dataset is on a 25km -cell size grid covering both Arctic and Antarctic polar regions. This dataset only shows -Septembers from 1979 - 2019 for both the Arctic and Antarctic. September was chosen to -specifically highlight the change in the Arctic minimum sea ice extent through time. The -decrease in sea ice coverage for the Arctic is apparent in this dataset. Another sea ice -extent dataset that is available shows Sea Ice Extent from 1987-2013. In the Arctic, the -maximum coverage usually occurs in March and the minimum coverage occurs in September. -The opposite is true for Antarctic, where the minimum occurs in March and the maximum -occurs in September. An interesting point to note is that the extent of sea ice in the +local Description = [[Sea ice is simply ocean water that has frozen. At least 15% of the +ocean is covered by sea ice some part of the year. This means that on average, sea ice +covers almost 10 million square miles (about 25 million square kilometers) of the Earth. +Sea ice is monitored closely by scientists because changing sea ice coverage can have a +huge impact on the rest of the globe. Global warming is amplified in polar regions. +Because of this, monitoring changes in sea ice can be a good indicator of climate change. +The National Snow and Ice Data Center monitors sea ice using a passive microwave +satellite data record that begins in 1978. The Special Sensor Microwave Imager/Sounder +(SSMIS) is the current monitoring instrument. This sea ice extent dataset is on a 25km +cell size grid covering both Arctic and Antarctic polar regions. This dataset only shows +Septembers from 1979 - 2019 for both the Arctic and Antarctic. September was chosen to +specifically highlight the change in the Arctic minimum sea ice extent through time. The +decrease in sea ice coverage for the Arctic is apparent in this dataset. Another sea ice +extent dataset that is available shows Sea Ice Extent from 1987-2013. In the Arctic, the +maximum coverage usually occurs in March and the minimum coverage occurs in September. +The opposite is true for Antarctic, where the minimum occurs in March and the maximum +occurs in September. An interesting point to note is that the extent of sea ice in the Arctic is shrinking, while the Antarctic sea ice is not trending downward]] local URL = "https://sos.noaa.gov/catalog/datasets/sea-ice-extent-september-only/" diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/cables.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/cables.asset index c36d807d9f..1a950d2205 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/cables.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/cables.asset @@ -3,9 +3,9 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Undersea Communication Cables" local Identifier = "noaa-sos-overlays-cables" -local Description = [[Overlays are datasets with transparent backgrounds that contain -foreground data used to augment other SOS datasets.This particular dataset overlays -undersea communications cables onto any dataset that you are viewing. The data was found +local Description = [[Overlays are datasets with transparent backgrounds that contain +foreground data used to augment other SOS datasets.This particular dataset overlays +undersea communications cables onto any dataset that you are viewing. The data was found at Wikipedia]] local URL = "https://sos.noaa.gov/catalog/datasets/undersea-communication-cables/" @@ -25,7 +25,7 @@ local layer = { Description = Description } -asset.onInitialize(function() +asset.onInitialize(function() openspace.globebrowsing.addLayer(globeIdentifier, "Overlays", layer) end) diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/capitals.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/capitals.asset index ec81d3486c..236b65ad44 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/capitals.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/capitals.asset @@ -3,8 +3,8 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Capital City Names" local Identifier = "noaa-sos-overlays-capitals" -local Description = [[Overlays are datasets with transparent backgrounds that contain -foreground data used to augment other SOS datasets.This particular dataset overlays +local Description = [[Overlays are datasets with transparent backgrounds that contain +foreground data used to augment other SOS datasets.This particular dataset overlays country capitals onto any dataset that you are viewing]] local URL = "https://sos.noaa.gov/catalog/datasets/capital-city-names/" @@ -24,7 +24,7 @@ local layer = { Description = Description } -asset.onInitialize(function() +asset.onInitialize(function() openspace.globebrowsing.addLayer(globeIdentifier, "Overlays", layer) end) diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/city_names.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/city_names.asset index dcdc620714..e1ac452be8 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/city_names.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/city_names.asset @@ -3,9 +3,9 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "City Names" local Identifier = "noaa-sos-overlays-city_names" -local Description = [[Overlays are datasets with transparent backgrounds that contain -foreground data used to augment other SOS datasets.This particular dataset overlays city -names from Wikipedia's List of Metropolitan Areas by Population onto any dataset that you +local Description = [[Overlays are datasets with transparent backgrounds that contain +foreground data used to augment other SOS datasets.This particular dataset overlays city +names from Wikipedia's List of Metropolitan Areas by Population onto any dataset that you are viewing]] local URL = "https://sos.noaa.gov/catalog/datasets/city-names/" @@ -25,7 +25,7 @@ local layer = { Description = Description } -asset.onInitialize(function() +asset.onInitialize(function() openspace.globebrowsing.addLayer(globeIdentifier, "Overlays", layer) end) diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/continent_borders-black.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/continent_borders-black.asset index 865601c21e..b8d13dc4e8 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/continent_borders-black.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/continent_borders-black.asset @@ -3,8 +3,8 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Continent Borders (black)" local Identifier = "noaa-sos-overlays-continent_borders-black" -local Description = [[Overlays are datasets with transparent backgrounds that contain -foreground data used to augment other SOS datasets.This particular dataset overlays +local Description = [[Overlays are datasets with transparent backgrounds that contain +foreground data used to augment other SOS datasets.This particular dataset overlays continent borders in black onto any dataset that you are viewing]] local URL = "https://sos.noaa.gov/catalog/datasets/continent-borders-black/" @@ -24,7 +24,7 @@ local layer = { Description = Description } -asset.onInitialize(function() +asset.onInitialize(function() openspace.globebrowsing.addLayer(globeIdentifier, "Overlays", layer) end) diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/continent_borders-white.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/continent_borders-white.asset index 6bc48a3b2a..f9024bcb9b 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/continent_borders-white.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/continent_borders-white.asset @@ -3,8 +3,8 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Continent Borders (white)" local Identifier = "noaa-sos-overlays-continent_borders-white" -local Description = [[Overlays are datasets with transparent backgrounds that contain -foreground data used to augment other SOS datasets.This particular dataset overlays +local Description = [[Overlays are datasets with transparent backgrounds that contain +foreground data used to augment other SOS datasets.This particular dataset overlays continent borders in white onto any dataset that you are viewing]] local URL = "https://sos.noaa.gov/catalog/datasets/continent-borders-white/" @@ -24,7 +24,7 @@ local layer = { Description = Description } -asset.onInitialize(function() +asset.onInitialize(function() openspace.globebrowsing.addLayer(globeIdentifier, "Overlays", layer) end) diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/continent_names.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/continent_names.asset index b950cd9b84..b623cb3e68 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/continent_names.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/continent_names.asset @@ -3,8 +3,8 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Continent Names" local Identifier = "noaa-sos-overlays-continent_names" -local Description = [[Overlays are datasets with transparent backgrounds that contain -foreground data used to augment other SOS datasets.This particular dataset overlays +local Description = [[Overlays are datasets with transparent backgrounds that contain +foreground data used to augment other SOS datasets.This particular dataset overlays continent continent names onto any dataset that you are viewing]] local URL = "https://sos.noaa.gov/catalog/datasets/continent-names/" @@ -24,7 +24,7 @@ local layer = { Description = Description } -asset.onInitialize(function() +asset.onInitialize(function() openspace.globebrowsing.addLayer(globeIdentifier, "Overlays", layer) end) diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/country_borders-black.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/country_borders-black.asset index f81e133526..5b2e004378 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/country_borders-black.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/country_borders-black.asset @@ -3,8 +3,8 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Country Borders (black)" local Identifier = "noaa-sos-overlays-country_borders-black" -local Description = [[Overlays are datasets with transparent backgrounds that contain -foreground data used to augment other SOS datasets.This particular dataset overlays +local Description = [[Overlays are datasets with transparent backgrounds that contain +foreground data used to augment other SOS datasets.This particular dataset overlays country borders onto any dataset that you are viewing]] local URL = "https://sos.noaa.gov/catalog/datasets/country-borders-black/" @@ -24,7 +24,7 @@ local layer = { Description = Description } -asset.onInitialize(function() +asset.onInitialize(function() openspace.globebrowsing.addLayer(globeIdentifier, "Overlays", layer) end) diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/country_borders-white.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/country_borders-white.asset index b7ee77fad7..023d48c414 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/country_borders-white.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/country_borders-white.asset @@ -3,8 +3,8 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Continent Borders (white)" local Identifier = "noaa-sos-overlays-country_borders-white" -local Description = [[Overlays are datasets with transparent backgrounds that contain -foreground data used to augment other SOS datasets.This particular dataset overlays +local Description = [[Overlays are datasets with transparent backgrounds that contain +foreground data used to augment other SOS datasets.This particular dataset overlays country borders onto any dataset that you are viewing]] local URL = "https://sos.noaa.gov/catalog/datasets/country-borders-white/" @@ -24,7 +24,7 @@ local layer = { Description = Description } -asset.onInitialize(function() +asset.onInitialize(function() openspace.globebrowsing.addLayer(globeIdentifier, "Overlays", layer) end) diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/country_pop_names.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/country_pop_names.asset index b2ae4dfea9..152ee9db30 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/country_pop_names.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/country_pop_names.asset @@ -3,9 +3,9 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Country Names" local Identifier = "noaa-sos-overlays-country_pop_names" -local Description = [[Overlays are datasets with transparent backgrounds that contain -foreground data used to augment other SOS datasets.This particular dataset overlays -country names with font size according to population onto any dataset that you are +local Description = [[Overlays are datasets with transparent backgrounds that contain +foreground data used to augment other SOS datasets.This particular dataset overlays +country names with font size according to population onto any dataset that you are viewing]] local URL = "https://sos.noaa.gov/catalog/datasets/country-names/" @@ -25,7 +25,7 @@ local layer = { Description = Description } -asset.onInitialize(function() +asset.onInitialize(function() openspace.globebrowsing.addLayer(globeIdentifier, "Overlays", layer) end) diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/currents.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/currents.asset index 29a705d988..1660783df1 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/currents.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/currents.asset @@ -3,8 +3,8 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Ocean Currents" local Identifier = "noaa-sos-overlays-currents" -local Description = [[Overlays are datasets with transparent backgrounds that contain -foreground data used to augment other SOS datasets.This particular dataset is an overlay +local Description = [[Overlays are datasets with transparent backgrounds that contain +foreground data used to augment other SOS datasets.This particular dataset is an overlay of ocean currents, taken from the Ocean Circulation dataset]] local URL = "https://sos.noaa.gov/catalog/datasets/ocean-currents/" @@ -37,7 +37,7 @@ local layer_labels = { Description = Description } -asset.onInitialize(function() +asset.onInitialize(function() openspace.globebrowsing.addLayer(globeIdentifier, "Overlays", layer_combined) openspace.globebrowsing.addLayer(globeIdentifier, "Overlays", layer_currents) openspace.globebrowsing.addLayer(globeIdentifier, "Overlays", layer_labels) diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/general_circulation.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/general_circulation.asset index f4b64c3166..b234704851 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/general_circulation.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/general_circulation.asset @@ -3,10 +3,10 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Atmospheric General Circulation" local Identifier = "noaa-sos-overlays-general_circulation" -local Description = [[Overlays are datasets with transparent backgrounds that contain -foreground data used to augment other SOS datasets.This particular dataset overlays -arrows and names of the approximate prevailing wind onto any dataset that you are -viewing. General circulation overlay would be particularly useful when pointing out the +local Description = [[Overlays are datasets with transparent backgrounds that contain +foreground data used to augment other SOS datasets.This particular dataset overlays +arrows and names of the approximate prevailing wind onto any dataset that you are +viewing. General circulation overlay would be particularly useful when pointing out the rain shadow effect as well as cloud movement or when describing the coriolis effect]] local URL = "https://sos.noaa.gov/catalog/datasets/atmospheric-general-circulation/" @@ -26,7 +26,7 @@ local layer = { Description = Description } -asset.onInitialize(function() +asset.onInitialize(function() openspace.globebrowsing.addLayer(globeIdentifier, "Overlays", layer) end) diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/land_mask-black.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/land_mask-black.asset index 40fdc5f82f..5de30d0d10 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/land_mask-black.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/land_mask-black.asset @@ -3,8 +3,8 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Land Mask (black)" local Identifier = "noaa-sos-overlays-land_mask-black" -local Description = [[Overlays are datasets with transparent backgrounds that contain -foreground data used to augment other SOS datasets.This particular dataset overlays a +local Description = [[Overlays are datasets with transparent backgrounds that contain +foreground data used to augment other SOS datasets.This particular dataset overlays a black mask over all the land on any dataset that you are viewing]] local URL = "https://sos.noaa.gov/catalog/datasets/land-mask-black/" @@ -24,7 +24,7 @@ local layer = { Description = Description } -asset.onInitialize(function() +asset.onInitialize(function() openspace.globebrowsing.addLayer(globeIdentifier, "Overlays", layer) end) diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/land_mask-veg.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/land_mask-veg.asset index f86ca4e142..94695d1953 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/land_mask-veg.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/land_mask-veg.asset @@ -3,9 +3,9 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Land Mask (vegetation)" local Identifier = "noaa-sos-overlays-land_mask-veg" -local Description = [[Overlays are datasets with transparent backgrounds that contain -foreground data used to augment other SOS datasets.This particular dataset overlays a -land mask of general vegetation over all the land onto any dataset that you are +local Description = [[Overlays are datasets with transparent backgrounds that contain +foreground data used to augment other SOS datasets.This particular dataset overlays a +land mask of general vegetation over all the land onto any dataset that you are viewing]] local URL = "https://sos.noaa.gov/catalog/datasets/land-mask-vegetation/" @@ -25,7 +25,7 @@ local layer = { Description = Description } -asset.onInitialize(function() +asset.onInitialize(function() openspace.globebrowsing.addLayer(globeIdentifier, "Overlays", layer) end) diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/latlon_grid-black.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/latlon_grid-black.asset index f060ca6a7d..7728bda7a3 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/latlon_grid-black.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/latlon_grid-black.asset @@ -3,8 +3,8 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Lat/Long Grid (black)" local Identifier = "noaa-sos-overlays-latlon_grid-black" -local Description = [[Overlays are datasets with transparent backgrounds that contain -foreground data used to augment other SOS datasets.This particular dataset overlays a +local Description = [[Overlays are datasets with transparent backgrounds that contain +foreground data used to augment other SOS datasets.This particular dataset overlays a latitude and longitude grid in black onto any dataset that you are viewing]] local URL = "https://sos.noaa.gov/catalog/datasets/latlong-grid-black/" @@ -24,7 +24,7 @@ local layer = { Description = Description } -asset.onInitialize(function() +asset.onInitialize(function() openspace.globebrowsing.addLayer(globeIdentifier, "Overlays", layer) end) diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/latlon_grid-white.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/latlon_grid-white.asset index 286af64a34..178aaf8179 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/latlon_grid-white.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/latlon_grid-white.asset @@ -3,8 +3,8 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Lat/Long Grid (white)" local Identifier = "noaa-sos-overlays-latlon_grid-white" -local Description = [[Overlays are datasets with transparent backgrounds that contain -foreground data used to augment other SOS datasets.This particular dataset overlays a +local Description = [[Overlays are datasets with transparent backgrounds that contain +foreground data used to augment other SOS datasets.This particular dataset overlays a latitude and longitude grid in white onto any dataset that you are viewing]] local URL = "https://sos.noaa.gov/catalog/datasets/latlong-grid-white/" @@ -24,7 +24,7 @@ local layer = { Description = Description } -asset.onInitialize(function() +asset.onInitialize(function() openspace.globebrowsing.addLayer(globeIdentifier, "Overlays", layer) end) diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/ocean_names.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/ocean_names.asset index 70ac0cd060..33db82e521 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/ocean_names.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/ocean_names.asset @@ -3,8 +3,8 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Ocean Names" local Identifier = "noaa-sos-overlays-ocean_names" -local Description = [[Overlays are datasets with transparent backgrounds that contain -foreground data used to augment other SOS datasets.This particular dataset overlays ocean +local Description = [[Overlays are datasets with transparent backgrounds that contain +foreground data used to augment other SOS datasets.This particular dataset overlays ocean names onto any dataset that you are viewing]] local URL = "https://sos.noaa.gov/catalog/datasets/ocean-names/" @@ -24,7 +24,7 @@ local layer = { Description = Description } -asset.onInitialize(function() +asset.onInitialize(function() openspace.globebrowsing.addLayer(globeIdentifier, "Overlays", layer) end) diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/plate_boundary-color.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/plate_boundary-color.asset index 22e72662e1..ce702239e4 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/plate_boundary-color.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/plate_boundary-color.asset @@ -3,9 +3,9 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Plate Boundaries (colorized)" local Identifier = "noaa-sos-overlays-plate_boundary-color" -local Description = [[Overlays are datasets with transparent backgrounds that contain -foreground data used to augment other SOS datasets.This particular dataset overlays -tectonic plate boundaries, with types of boundaries differentiated in color, onto any +local Description = [[Overlays are datasets with transparent backgrounds that contain +foreground data used to augment other SOS datasets.This particular dataset overlays +tectonic plate boundaries, with types of boundaries differentiated in color, onto any dataset that you are viewing]] local URL = "https://sos.noaa.gov/catalog/datasets/plate-boundaries-colorized/" @@ -25,7 +25,7 @@ local layer = { Description = Description } -asset.onInitialize(function() +asset.onInitialize(function() openspace.globebrowsing.addLayer(globeIdentifier, "Overlays", layer) end) diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/plate_boundary-white.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/plate_boundary-white.asset index c8b4c51b9e..d07c566c94 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/plate_boundary-white.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/plate_boundary-white.asset @@ -3,8 +3,8 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Plate Boundaries (white)" local Identifier = "noaa-sos-overlays-plate_boundary-white" -local Description = [[Overlays are datasets with transparent backgrounds that contain -foreground data used to augment other SOS datasets.This particular dataset overlays +local Description = [[Overlays are datasets with transparent backgrounds that contain +foreground data used to augment other SOS datasets.This particular dataset overlays tectonic plate boundaries in white onto any dataset that you are viewing]] local URL = "https://sos.noaa.gov/catalog/datasets/plate-boundaries-white/" @@ -24,7 +24,7 @@ local layer = { Description = Description } -asset.onInitialize(function() +asset.onInitialize(function() openspace.globebrowsing.addLayer(globeIdentifier, "Overlays", layer) end) diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/plate_names.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/plate_names.asset index 30f5603162..dae2bb9586 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/plate_names.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/plate_names.asset @@ -3,8 +3,8 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Plate Names" local Identifier = "noaa-sos-overlays-plate_names" -local Description = [[Overlays are datasets with transparent backgrounds that contain -foreground data used to augment other SOS datasets.This particular dataset overlays +local Description = [[Overlays are datasets with transparent backgrounds that contain +foreground data used to augment other SOS datasets.This particular dataset overlays tectonic plate names onto any dataset that you are viewing]] local URL = "https://sos.noaa.gov/catalog/datasets/plate-names/" @@ -24,7 +24,7 @@ local layer = { Description = Description } -asset.onInitialize(function() +asset.onInitialize(function() openspace.globebrowsing.addLayer(globeIdentifier, "Overlays", layer) end) diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/railroad.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/railroad.asset index ef3171ad49..602a090f61 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/railroad.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/railroad.asset @@ -3,9 +3,9 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Railroads" local Identifier = "noaa-sos-overlays-railroad" -local Description = [[Overlays are datasets with transparent backgrounds that contain -foreground data used to augment other SOS datasets.This particular dataset overlays -railroads onto any dataset that you are viewing. The data was found at Natural Earth +local Description = [[Overlays are datasets with transparent backgrounds that contain +foreground data used to augment other SOS datasets.This particular dataset overlays +railroads onto any dataset that you are viewing. The data was found at Natural Earth Data]] local URL = "https://sos.noaa.gov/catalog/datasets/railroads/" @@ -25,7 +25,7 @@ local layer = { Description = Description } -asset.onInitialize(function() +asset.onInitialize(function() openspace.globebrowsing.addLayer(globeIdentifier, "Overlays", layer) end) diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/rivers.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/rivers.asset index e1177aa185..fb4f79410e 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/rivers.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/rivers.asset @@ -3,9 +3,9 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Rivers" local Identifier = "noaa-sos-overlays-rivers" -local Description = [[Overlays are datasets with transparent backgrounds that contain -foreground data used to augment other SOS datasets.This particular dataset overlays -global rivers and lakes onto any dataset that you are viewing. The river's size is +local Description = [[Overlays are datasets with transparent backgrounds that contain +foreground data used to augment other SOS datasets.This particular dataset overlays +global rivers and lakes onto any dataset that you are viewing. The river's size is indicated by the size of the lines. The data was found at Natural Earth Data]] local URL = "https://sos.noaa.gov/catalog/datasets/rivers/" @@ -25,7 +25,7 @@ local layer = { Description = Description } -asset.onInitialize(function() +asset.onInitialize(function() openspace.globebrowsing.addLayer(globeIdentifier, "Overlays", layer) end) diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/roads-black.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/roads-black.asset index 76cce4d9f5..99e6312c1a 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/roads-black.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/roads-black.asset @@ -3,9 +3,9 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Roads (black)" local Identifier = "noaa-sos-overlays-roads-black" -local Description = [[Overlays are datasets with transparent backgrounds that contain -foreground data used to augment other SOS datasets.This particular dataset overlays black -roads onto any dataset that you are viewing. The data was found at Natural Earth +local Description = [[Overlays are datasets with transparent backgrounds that contain +foreground data used to augment other SOS datasets.This particular dataset overlays black +roads onto any dataset that you are viewing. The data was found at Natural Earth Data]] local URL = "https://sos.noaa.gov/catalog/datasets/roads-black/" @@ -25,7 +25,7 @@ local layer = { Description = Description } -asset.onInitialize(function() +asset.onInitialize(function() openspace.globebrowsing.addLayer(globeIdentifier, "Overlays", layer) end) diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/roads-white.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/roads-white.asset index 272073f7e9..c354bd7cbe 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/roads-white.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/roads-white.asset @@ -3,9 +3,9 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Roads (white)" local Identifier = "noaa-sos-overlays-roads-white" -local Description = [[Overlays are datasets with transparent backgrounds that contain -foreground data used to augment other SOS datasets.This particular dataset overlays white -roads onto any dataset that you are viewing. The data was found at Natural Earth +local Description = [[Overlays are datasets with transparent backgrounds that contain +foreground data used to augment other SOS datasets.This particular dataset overlays white +roads onto any dataset that you are viewing. The data was found at Natural Earth Data]] local URL = "https://sos.noaa.gov/catalog/datasets/roads-white/" @@ -25,7 +25,7 @@ local layer = { Description = Description } -asset.onInitialize(function() +asset.onInitialize(function() openspace.globebrowsing.addLayer(globeIdentifier, "Overlays", layer) end) diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/state_borders-black.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/state_borders-black.asset index 09ae4c5d9c..273c079c89 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/state_borders-black.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/state_borders-black.asset @@ -3,8 +3,8 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Country Borders with North American States (black)" local Identifier = "noaa-sos-overlays-state_borders-black" -local Description = [[Overlays are datasets with transparent backgrounds that contain -foreground data used to augment other SOS datasets.This particular dataset overlays +local Description = [[Overlays are datasets with transparent backgrounds that contain +foreground data used to augment other SOS datasets.This particular dataset overlays country and North American state borders onto any dataset that you are viewing]] local URL = "https://sos.noaa.gov/catalog/datasets/country-borders-with-north-american-states-black/" @@ -24,7 +24,7 @@ local layer = { Description = Description } -asset.onInitialize(function() +asset.onInitialize(function() openspace.globebrowsing.addLayer(globeIdentifier, "Overlays", layer) end) diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/state_borders-white.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/state_borders-white.asset index b343704bf4..26c71584d5 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/state_borders-white.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/state_borders-white.asset @@ -3,8 +3,8 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Country Borders with North American States (white)" local Identifier = "noaa-sos-overlays-state_borders-white" -local Description = [[Overlays are datasets with transparent backgrounds that contain -foreground data used to augment other SOS datasets.This particular dataset overlays +local Description = [[Overlays are datasets with transparent backgrounds that contain +foreground data used to augment other SOS datasets.This particular dataset overlays country and North American state borders onto any dataset that you are viewing]] local URL = "https://sos.noaa.gov/catalog/datasets/country-borders-with-north-american-states-white/" @@ -24,7 +24,7 @@ local layer = { Description = Description } -asset.onInitialize(function() +asset.onInitialize(function() openspace.globebrowsing.addLayer(globeIdentifier, "Overlays", layer) end) diff --git a/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/timezones.asset b/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/timezones.asset index 1682d764fa..09d9d387dd 100644 --- a/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/timezones.asset +++ b/data/assets/scene/solarsystem/planets/earth/noaa-sos/overlays/timezones.asset @@ -3,8 +3,8 @@ local globeIdentifier = asset.require("../../earth").Earth.Identifier local Name = "Time zones" local Identifier = "noaa-sos-overlays-timezones" -local Description = [[Overlays are datasets with transparent backgrounds that contain -foreground data used to augment other SOS datasets.This particular dataset overlays +local Description = [[Overlays are datasets with transparent backgrounds that contain +foreground data used to augment other SOS datasets.This particular dataset overlays timezones onto any dataset that you are viewing]] local URL = "https://sos.noaa.gov/catalog/datasets/time-zones/" @@ -24,7 +24,7 @@ local layer = { Description = Description } -asset.onInitialize(function() +asset.onInitialize(function() openspace.globebrowsing.addLayer(globeIdentifier, "Overlays", layer) end) diff --git a/data/assets/scene/solarsystem/planets/earth/satellites/debris/volume/cartesian_volume.asset b/data/assets/scene/solarsystem/planets/earth/satellites/debris/volume/cartesian_volume.asset index 7ff3aa8fc1..14599c44b9 100644 --- a/data/assets/scene/solarsystem/planets/earth/satellites/debris/volume/cartesian_volume.asset +++ b/data/assets/scene/solarsystem/planets/earth/satellites/debris/volume/cartesian_volume.asset @@ -27,7 +27,7 @@ local volume = { }, Transform = { Scale = { - Type = "StaticScale", + Type = "StaticScale", Scale = maxApogee -- do not multiply this. That will not show real representation. } } @@ -36,11 +36,11 @@ local volume = { asset.onInitialize(function() openspace.addSceneGraphNode(volume) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(volume) end) - + asset.export(volume) diff --git a/data/assets/scene/solarsystem/planets/earth/satellites/debris/volume/spherical_volume.asset b/data/assets/scene/solarsystem/planets/earth/satellites/debris/volume/spherical_volume.asset index f7aa9ec5e2..f2837dcec6 100644 --- a/data/assets/scene/solarsystem/planets/earth/satellites/debris/volume/spherical_volume.asset +++ b/data/assets/scene/solarsystem/planets/earth/satellites/debris/volume/spherical_volume.asset @@ -27,7 +27,7 @@ local volume = { }, Transform = { Scale = { - Type = "StaticScale", + Type = "StaticScale", Scale = maxApogee --do not multiply this. That will not show real representation. } } @@ -36,11 +36,11 @@ local volume = { asset.onInitialize(function() openspace.addSceneGraphNode(volume) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(volume) end) - + asset.export(volume) diff --git a/data/assets/scene/solarsystem/planets/earth/trail.asset b/data/assets/scene/solarsystem/planets/earth/trail.asset index 4461ebc028..c244e7d85d 100644 --- a/data/assets/scene/solarsystem/planets/earth/trail.asset +++ b/data/assets/scene/solarsystem/planets/earth/trail.asset @@ -27,11 +27,11 @@ local EarthTrail = { asset.onInitialize(function() openspace.addSceneGraphNode(EarthTrail) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(EarthTrail) end) - + asset.export(EarthTrail) diff --git a/data/assets/scene/solarsystem/planets/earth/trail_barycenter.asset b/data/assets/scene/solarsystem/planets/earth/trail_barycenter.asset index 141de9ad80..6b01e450df 100644 --- a/data/assets/scene/solarsystem/planets/earth/trail_barycenter.asset +++ b/data/assets/scene/solarsystem/planets/earth/trail_barycenter.asset @@ -28,11 +28,11 @@ local EarthBarycenterTrail = { asset.onInitialize(function() openspace.addSceneGraphNode(EarthBarycenterTrail) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(EarthBarycenterTrail) end) - + asset.export(EarthBarycenterTrail) diff --git a/data/assets/scene/solarsystem/planets/jupiter/callisto/callisto.asset b/data/assets/scene/solarsystem/planets/jupiter/callisto/callisto.asset index 0f43db985b..478552b38b 100644 --- a/data/assets/scene/solarsystem/planets/jupiter/callisto/callisto.asset +++ b/data/assets/scene/solarsystem/planets/jupiter/callisto/callisto.asset @@ -55,11 +55,11 @@ local Callisto = { asset.onInitialize(function() openspace.addSceneGraphNode(Callisto) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(Callisto) end) - + asset.export(Callisto) diff --git a/data/assets/scene/solarsystem/planets/jupiter/callisto/trail.asset b/data/assets/scene/solarsystem/planets/jupiter/callisto/trail.asset index 04663f891a..4e278dd93d 100644 --- a/data/assets/scene/solarsystem/planets/jupiter/callisto/trail.asset +++ b/data/assets/scene/solarsystem/planets/jupiter/callisto/trail.asset @@ -29,11 +29,11 @@ local CallistoTrail = { asset.onInitialize(function() openspace.addSceneGraphNode(CallistoTrail) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(CallistoTrail) end) - + asset.export(CallistoTrail) diff --git a/data/assets/scene/solarsystem/planets/jupiter/europa/europa.asset b/data/assets/scene/solarsystem/planets/jupiter/europa/europa.asset index 1c251f4e82..b380c5626e 100644 --- a/data/assets/scene/solarsystem/planets/jupiter/europa/europa.asset +++ b/data/assets/scene/solarsystem/planets/jupiter/europa/europa.asset @@ -54,11 +54,11 @@ local Europa = { asset.onInitialize(function() openspace.addSceneGraphNode(Europa) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(Europa) end) - + asset.export(Europa) diff --git a/data/assets/scene/solarsystem/planets/jupiter/europa/trail.asset b/data/assets/scene/solarsystem/planets/jupiter/europa/trail.asset index 3972456a14..5a5e6e7e1b 100644 --- a/data/assets/scene/solarsystem/planets/jupiter/europa/trail.asset +++ b/data/assets/scene/solarsystem/planets/jupiter/europa/trail.asset @@ -27,11 +27,11 @@ local EuropaTrail = { asset.onInitialize(function() openspace.addSceneGraphNode(EuropaTrail) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(EuropaTrail) end) - + asset.export(EuropaTrail) diff --git a/data/assets/scene/solarsystem/planets/jupiter/ganymede/ganymede.asset b/data/assets/scene/solarsystem/planets/jupiter/ganymede/ganymede.asset index 95e9f8ee30..c10a19156b 100644 --- a/data/assets/scene/solarsystem/planets/jupiter/ganymede/ganymede.asset +++ b/data/assets/scene/solarsystem/planets/jupiter/ganymede/ganymede.asset @@ -54,11 +54,11 @@ local Ganymede = { asset.onInitialize(function() openspace.addSceneGraphNode(Ganymede) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(Ganymede) end) - + asset.export(Ganymede) diff --git a/data/assets/scene/solarsystem/planets/jupiter/ganymede/trail.asset b/data/assets/scene/solarsystem/planets/jupiter/ganymede/trail.asset index 66afd7968e..974be0f559 100644 --- a/data/assets/scene/solarsystem/planets/jupiter/ganymede/trail.asset +++ b/data/assets/scene/solarsystem/planets/jupiter/ganymede/trail.asset @@ -29,11 +29,11 @@ local GanymedeTrail = { asset.onInitialize(function() openspace.addSceneGraphNode(GanymedeTrail) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(GanymedeTrail) end) - + asset.export(GanymedeTrail) diff --git a/data/assets/scene/solarsystem/planets/jupiter/io/io.asset b/data/assets/scene/solarsystem/planets/jupiter/io/io.asset index 6e10f323e8..2818bd060d 100644 --- a/data/assets/scene/solarsystem/planets/jupiter/io/io.asset +++ b/data/assets/scene/solarsystem/planets/jupiter/io/io.asset @@ -54,11 +54,11 @@ local Io = { asset.onInitialize(function() openspace.addSceneGraphNode(Io) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(Io) end) - + asset.export(Io) diff --git a/data/assets/scene/solarsystem/planets/jupiter/io/trail.asset b/data/assets/scene/solarsystem/planets/jupiter/io/trail.asset index a697b5d2d7..3c963617bb 100644 --- a/data/assets/scene/solarsystem/planets/jupiter/io/trail.asset +++ b/data/assets/scene/solarsystem/planets/jupiter/io/trail.asset @@ -29,11 +29,11 @@ local IoTrail = { asset.onInitialize(function() openspace.addSceneGraphNode(IoTrail) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(IoTrail) end) - + asset.export(IoTrail) diff --git a/data/assets/scene/solarsystem/planets/jupiter/jupiter.asset b/data/assets/scene/solarsystem/planets/jupiter/jupiter.asset index 4ed9f02336..2a3cbb7392 100644 --- a/data/assets/scene/solarsystem/planets/jupiter/jupiter.asset +++ b/data/assets/scene/solarsystem/planets/jupiter/jupiter.asset @@ -64,12 +64,12 @@ asset.onInitialize(function() openspace.addSceneGraphNode(Jupiter) openspace.addSceneGraphNode(JupiterLabel) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(JupiterLabel) openspace.removeSceneGraphNode(Jupiter) end) - + asset.export(Jupiter) asset.export(JupiterLabel) diff --git a/data/assets/scene/solarsystem/planets/jupiter/minor/ananke_group.asset b/data/assets/scene/solarsystem/planets/jupiter/minor/ananke_group.asset index a454b28d68..bf1ad9950d 100644 --- a/data/assets/scene/solarsystem/planets/jupiter/minor/ananke_group.asset +++ b/data/assets/scene/solarsystem/planets/jupiter/minor/ananke_group.asset @@ -214,13 +214,13 @@ asset.onInitialize(function() openspace.addSceneGraphNode(node) end end) - + asset.onDeinitialize(function() for i = #nodes, 1, -1 do openspace.removeSceneGraphNode(nodes[i]) end end) - + for i, node in ipairs(nodes) do asset.export( node) end diff --git a/data/assets/scene/solarsystem/planets/jupiter/minor/carme_group.asset b/data/assets/scene/solarsystem/planets/jupiter/minor/carme_group.asset index d142429a86..99b971a635 100644 --- a/data/assets/scene/solarsystem/planets/jupiter/minor/carme_group.asset +++ b/data/assets/scene/solarsystem/planets/jupiter/minor/carme_group.asset @@ -282,13 +282,13 @@ asset.onInitialize(function() openspace.addSceneGraphNode(node) end end) - + asset.onDeinitialize(function() for i = #nodes, 1, -1 do openspace.removeSceneGraphNode(nodes[i]) end end) - + for i, node in ipairs(nodes) do asset.export(node) end diff --git a/data/assets/scene/solarsystem/planets/jupiter/minor/carpo_group.asset b/data/assets/scene/solarsystem/planets/jupiter/minor/carpo_group.asset index 9072961ae8..2be789af96 100644 --- a/data/assets/scene/solarsystem/planets/jupiter/minor/carpo_group.asset +++ b/data/assets/scene/solarsystem/planets/jupiter/minor/carpo_group.asset @@ -42,13 +42,13 @@ asset.onInitialize(function() openspace.addSceneGraphNode(node) end end) - + asset.onDeinitialize(function() for i = #nodes, 1, -1 do openspace.removeSceneGraphNode(nodes[i]) end end) - + for i, node in ipairs(nodes) do asset.export(node) end diff --git a/data/assets/scene/solarsystem/planets/jupiter/minor/himalia_group.asset b/data/assets/scene/solarsystem/planets/jupiter/minor/himalia_group.asset index a4789cf0b9..4882ede8e7 100644 --- a/data/assets/scene/solarsystem/planets/jupiter/minor/himalia_group.asset +++ b/data/assets/scene/solarsystem/planets/jupiter/minor/himalia_group.asset @@ -111,13 +111,13 @@ asset.onInitialize(function() openspace.addSceneGraphNode(node) end end) - + asset.onDeinitialize(function() for i = #nodes, 1, -1 do openspace.removeSceneGraphNode(nodes[i]) end end) - + for i, node in ipairs(nodes) do asset.export(node) end diff --git a/data/assets/scene/solarsystem/planets/jupiter/minor/inner_group.asset b/data/assets/scene/solarsystem/planets/jupiter/minor/inner_group.asset index 10859a53bf..d5029a8329 100644 --- a/data/assets/scene/solarsystem/planets/jupiter/minor/inner_group.asset +++ b/data/assets/scene/solarsystem/planets/jupiter/minor/inner_group.asset @@ -93,13 +93,13 @@ asset.onInitialize(function() openspace.addSceneGraphNode(node) end end) - + asset.onDeinitialize(function() for i = #nodes, 1, -1 do openspace.removeSceneGraphNode(nodes[i]) end end) - + for i, node in ipairs(nodes) do asset.export(node) end diff --git a/data/assets/scene/solarsystem/planets/jupiter/minor/other_groups.asset b/data/assets/scene/solarsystem/planets/jupiter/minor/other_groups.asset index 30c835ce96..8d20858b11 100644 --- a/data/assets/scene/solarsystem/planets/jupiter/minor/other_groups.asset +++ b/data/assets/scene/solarsystem/planets/jupiter/minor/other_groups.asset @@ -169,13 +169,13 @@ asset.onInitialize(function() openspace.addSceneGraphNode(node) end end) - + asset.onDeinitialize(function() for i = #nodes, 1, -1 do openspace.removeSceneGraphNode(nodes[i]) end end) - + for i, node in ipairs(nodes) do asset.export(node) end diff --git a/data/assets/scene/solarsystem/planets/jupiter/minor/pasiphae_group.asset b/data/assets/scene/solarsystem/planets/jupiter/minor/pasiphae_group.asset index ffb66840e6..450391d773 100644 --- a/data/assets/scene/solarsystem/planets/jupiter/minor/pasiphae_group.asset +++ b/data/assets/scene/solarsystem/planets/jupiter/minor/pasiphae_group.asset @@ -371,13 +371,13 @@ asset.onInitialize(function() openspace.addSceneGraphNode(node) end end) - + asset.onDeinitialize(function() for i = #nodes, 1, -1 do openspace.removeSceneGraphNode(nodes[i]) end end) - + for i, node in ipairs(nodes) do asset.export(node) end diff --git a/data/assets/scene/solarsystem/planets/jupiter/minor/themisto_group.asset b/data/assets/scene/solarsystem/planets/jupiter/minor/themisto_group.asset index 8eb6615b22..c68b1c4518 100644 --- a/data/assets/scene/solarsystem/planets/jupiter/minor/themisto_group.asset +++ b/data/assets/scene/solarsystem/planets/jupiter/minor/themisto_group.asset @@ -41,13 +41,13 @@ asset.onInitialize(function() openspace.addSceneGraphNode(node) end end) - + asset.onDeinitialize(function() for i = #nodes, 1, -1 do openspace.removeSceneGraphNode(nodes[i]) end end) - + for i, node in ipairs(nodes) do asset.export(node) end diff --git a/data/assets/scene/solarsystem/planets/jupiter/trail.asset b/data/assets/scene/solarsystem/planets/jupiter/trail.asset index 928770f8e7..5cf6cf6576 100644 --- a/data/assets/scene/solarsystem/planets/jupiter/trail.asset +++ b/data/assets/scene/solarsystem/planets/jupiter/trail.asset @@ -27,11 +27,11 @@ local JupiterTrail = { asset.onInitialize(function() openspace.addSceneGraphNode(JupiterTrail) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(JupiterTrail) end) - + asset.export(JupiterTrail) diff --git a/data/assets/scene/solarsystem/planets/jupiter/trail_barycenter.asset b/data/assets/scene/solarsystem/planets/jupiter/trail_barycenter.asset index b7cce875a3..056c8db35f 100644 --- a/data/assets/scene/solarsystem/planets/jupiter/trail_barycenter.asset +++ b/data/assets/scene/solarsystem/planets/jupiter/trail_barycenter.asset @@ -28,11 +28,11 @@ local JupiterBarycenterTrail = { asset.onInitialize(function() openspace.addSceneGraphNode(JupiterBarycenterTrail) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(JupiterBarycenterTrail) end) - + asset.export(JupiterBarycenterTrail) diff --git a/data/assets/scene/solarsystem/planets/jupiter/trail_earth.asset b/data/assets/scene/solarsystem/planets/jupiter/trail_earth.asset index d2cbde3160..b92fd59017 100644 --- a/data/assets/scene/solarsystem/planets/jupiter/trail_earth.asset +++ b/data/assets/scene/solarsystem/planets/jupiter/trail_earth.asset @@ -30,11 +30,11 @@ local JupiterTrailEarth = { asset.onInitialize(function() openspace.addSceneGraphNode(JupiterTrailEarth) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(JupiterTrailEarth) end) - + asset.export(JupiterTrailEarth) diff --git a/data/assets/scene/solarsystem/planets/jupiter/transforms.asset b/data/assets/scene/solarsystem/planets/jupiter/transforms.asset index dbcf392f46..9caddc4fce 100644 --- a/data/assets/scene/solarsystem/planets/jupiter/transforms.asset +++ b/data/assets/scene/solarsystem/planets/jupiter/transforms.asset @@ -23,11 +23,11 @@ local JupiterBarycenter = { asset.onInitialize(function() openspace.addSceneGraphNode(JupiterBarycenter) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(JupiterBarycenter) end) - + asset.export(JupiterBarycenter) diff --git a/data/assets/scene/solarsystem/planets/mars/atmosphere.asset b/data/assets/scene/solarsystem/planets/mars/atmosphere.asset index 3eefaa60cd..2b006d1669 100644 --- a/data/assets/scene/solarsystem/planets/mars/atmosphere.asset +++ b/data/assets/scene/solarsystem/planets/mars/atmosphere.asset @@ -20,7 +20,7 @@ local Atmosphere = { Wavelengths = { 680, 550, 440 }, -- Reflection coefficients are given in km^-1 Scattering = { 19.918E-3, 13.57E-3, 5.75E-3 } - -- In Rayleigh scattering, the coefficients of + -- In Rayleigh scattering, the coefficients of -- absorption and scattering are the same. }, -- Thickness of atmosphere if its density were uniform, in Km @@ -36,7 +36,7 @@ local Atmosphere = { }, -- Mie Height scale (atmosphere thickness for constant density) in Km H_M = 3.09526, - -- Mie Phase Function Value (G e [-1.0, 1.0]. + -- Mie Phase Function Value (G e [-1.0, 1.0]. -- If G = 1.0, Mie phase function = Rayleigh Phase Function) G = 0.85 }, @@ -55,11 +55,11 @@ local Atmosphere = { asset.onInitialize(function() openspace.addSceneGraphNode(Atmosphere) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(Atmosphere) end) - + asset.export(Atmosphere) diff --git a/data/assets/scene/solarsystem/planets/mars/layers/colorlayers/ctx_blended_01.asset b/data/assets/scene/solarsystem/planets/mars/layers/colorlayers/ctx_blended_01.asset index a9d45ab6d1..884991fc0b 100644 --- a/data/assets/scene/solarsystem/planets/mars/layers/colorlayers/ctx_blended_01.asset +++ b/data/assets/scene/solarsystem/planets/mars/layers/colorlayers/ctx_blended_01.asset @@ -24,7 +24,7 @@ local layer = { pixel-for-pixel spatial documentation of image seams, to prevent misinterpretation of seams as possible landforms and to provide instant access to original data. A completely seamless CTX mosaic is currently infeasible, so seam-maps are required - to prevent misinterpretation. (Description from URL)]], + to prevent misinterpretation. (Description from URL)]] } asset.onInitialize(function() diff --git a/data/assets/scene/solarsystem/planets/mars/layers/colorlayers/ctx_mosaic_sweden.asset b/data/assets/scene/solarsystem/planets/mars/layers/colorlayers/ctx_mosaic_sweden.asset index 6dc4b188a9..8955b69e09 100644 --- a/data/assets/scene/solarsystem/planets/mars/layers/colorlayers/ctx_mosaic_sweden.asset +++ b/data/assets/scene/solarsystem/planets/mars/layers/colorlayers/ctx_mosaic_sweden.asset @@ -23,7 +23,7 @@ asset.export("layer", layer) asset.meta = { Name = "CTX Mosaic [Sweden]", Version = "1.0", - Description = [[CTX Mosaic layer for Mars globe. This layer is served from the + Description = [[CTX Mosaic layer for Mars globe. This layer is served from the OpenSpace servers in Sweden]], Author = "OpenSpace Team", URL = "http://openspaceproject.com", diff --git a/data/assets/scene/solarsystem/planets/mars/layers/colorlayers/ctx_mosaic_utah.asset b/data/assets/scene/solarsystem/planets/mars/layers/colorlayers/ctx_mosaic_utah.asset index b9d31ec348..7edf090b99 100644 --- a/data/assets/scene/solarsystem/planets/mars/layers/colorlayers/ctx_mosaic_utah.asset +++ b/data/assets/scene/solarsystem/planets/mars/layers/colorlayers/ctx_mosaic_utah.asset @@ -23,7 +23,7 @@ asset.export("layer", layer) asset.meta = { Name = "CTX Mosaic [Utah]", Version = "1.0", - Description = [[CTX Mosaic layer for Mars globe. This layer is served from the + Description = [[CTX Mosaic layer for Mars globe. This layer is served from the OpenSpace servers in Utah]], Author = "OpenSpace Team", URL = "http://openspaceproject.com", diff --git a/data/assets/scene/solarsystem/planets/mars/layers/colorlayers/hirise.asset b/data/assets/scene/solarsystem/planets/mars/layers/colorlayers/hirise.asset index d425858e90..1004046395 100644 --- a/data/assets/scene/solarsystem/planets/mars/layers/colorlayers/hirise.asset +++ b/data/assets/scene/solarsystem/planets/mars/layers/colorlayers/hirise.asset @@ -20,7 +20,7 @@ local layer = { construction of this layer were produced by the team at the University of Arizona. This tiled web service, as hosted by Esri, is made available using lossy Jpeg compression using an 8 bit data range, using a linear stretch from the original - 10 bit range. (Description from URL)]], + 10 bit range. (Description from URL)]] } asset.onInitialize(function() diff --git a/data/assets/scene/solarsystem/planets/mars/layers/colorlayers/hirisels.asset b/data/assets/scene/solarsystem/planets/mars/layers/colorlayers/hirisels.asset index ad6c657fe5..b57de84b75 100644 --- a/data/assets/scene/solarsystem/planets/mars/layers/colorlayers/hirisels.asset +++ b/data/assets/scene/solarsystem/planets/mars/layers/colorlayers/hirisels.asset @@ -17,7 +17,7 @@ local layer = { may not be briny seeps. Hundreds of science papers have been published with our data. (Description from URL). This map contains a subet set of the HiRISE imagaery, only containing locations where a corresponding HiRISE digital terrain - model (DTM) was available as of 2018]], + model (DTM) was available as of 2018]] } asset.onInitialize(function() diff --git a/data/assets/scene/solarsystem/planets/mars/layers/colorlayers/moc_wa_color_sweden.asset b/data/assets/scene/solarsystem/planets/mars/layers/colorlayers/moc_wa_color_sweden.asset index 78f6213e8f..1c8ae9569a 100644 --- a/data/assets/scene/solarsystem/planets/mars/layers/colorlayers/moc_wa_color_sweden.asset +++ b/data/assets/scene/solarsystem/planets/mars/layers/colorlayers/moc_wa_color_sweden.asset @@ -8,11 +8,11 @@ local layer = { Settings = { Gamma = 1.6, Multiplier = 1.07 - }, + }, Description = [[This map is an AMNH version of the global mossaic produced by the Mars Global Surveyor Wide Angle Camera. This version has color added and the shadows subdued based on the MOLA DTM. Data Reference: - https://www.jpl.nasa.gov/spaceimages/details.php?id=PIA03467]], + https://www.jpl.nasa.gov/spaceimages/details.php?id=PIA03467]] } asset.onInitialize(function() diff --git a/data/assets/scene/solarsystem/planets/mars/layers/colorlayers/moc_wa_color_utah.asset b/data/assets/scene/solarsystem/planets/mars/layers/colorlayers/moc_wa_color_utah.asset index 6edfd2b144..559bee89b6 100644 --- a/data/assets/scene/solarsystem/planets/mars/layers/colorlayers/moc_wa_color_utah.asset +++ b/data/assets/scene/solarsystem/planets/mars/layers/colorlayers/moc_wa_color_utah.asset @@ -8,11 +8,11 @@ local layer = { Settings = { Gamma = 1.6, Multiplier = 1.07 - }, + }, Description = [[This map is an AMNH version of the global mossaic produced by the Mars Global Surveyor Wide Angle Camera. This version has color added and the shadows subdued based on the MOLA DTM. Data Reference: - https://www.jpl.nasa.gov/spaceimages/details.php?id=PIA03467]], + https://www.jpl.nasa.gov/spaceimages/details.php?id=PIA03467]] } asset.onInitialize(function() diff --git a/data/assets/scene/solarsystem/planets/mars/layers/colorlayers/mola_hrsc_sweden.asset b/data/assets/scene/solarsystem/planets/mars/layers/colorlayers/mola_hrsc_sweden.asset index 41a7e58ea4..c36564c052 100644 --- a/data/assets/scene/solarsystem/planets/mars/layers/colorlayers/mola_hrsc_sweden.asset +++ b/data/assets/scene/solarsystem/planets/mars/layers/colorlayers/mola_hrsc_sweden.asset @@ -8,7 +8,7 @@ local layer = { Description = [[This map layer is colorzied based elevation data from MOLA and HRSC. Compared to MOLA Psuedo Color, this layer has no terrain shading, which is suitable for use when combing with other layers. Data Reference: - https://astrogeology.usgs.gov/search/map/Mars/Topography/HRSC_MOLA_Blend/Mars_HRSC_MOLA_BlendDEM_Global_200mp_v2]], + https://astrogeology.usgs.gov/search/map/Mars/Topography/HRSC_MOLA_Blend/Mars_HRSC_MOLA_BlendDEM_Global_200mp_v2]] } asset.onInitialize(function() diff --git a/data/assets/scene/solarsystem/planets/mars/layers/colorlayers/mola_hrsc_utah.asset b/data/assets/scene/solarsystem/planets/mars/layers/colorlayers/mola_hrsc_utah.asset index 586fc94d53..610b7bdd89 100644 --- a/data/assets/scene/solarsystem/planets/mars/layers/colorlayers/mola_hrsc_utah.asset +++ b/data/assets/scene/solarsystem/planets/mars/layers/colorlayers/mola_hrsc_utah.asset @@ -8,7 +8,7 @@ local layer = { Description = [[This map layer is colorzied based elevation data from MOLA and HRSC. Compared to MOLA Psuedo Color, this layer has no terrain shading, which is suitable for use when combing with other layers. Data Reference: - https://astrogeology.usgs.gov/search/map/Mars/Topography/HRSC_MOLA_Blend/Mars_HRSC_MOLA_BlendDEM_Global_200mp_v2]], + https://astrogeology.usgs.gov/search/map/Mars/Topography/HRSC_MOLA_Blend/Mars_HRSC_MOLA_BlendDEM_Global_200mp_v2]] } asset.onInitialize(function() diff --git a/data/assets/scene/solarsystem/planets/mars/layers/colorlayers/mola_pseudo_color_sweden.asset b/data/assets/scene/solarsystem/planets/mars/layers/colorlayers/mola_pseudo_color_sweden.asset index f3c6fce1d3..150becf708 100644 --- a/data/assets/scene/solarsystem/planets/mars/layers/colorlayers/mola_pseudo_color_sweden.asset +++ b/data/assets/scene/solarsystem/planets/mars/layers/colorlayers/mola_pseudo_color_sweden.asset @@ -18,7 +18,7 @@ local layer = { Neumann, et al., 2003). However, the total elevation uncertainty is at least ±3 m due to the global error in the areoid (±1.8 meters; Lemoine, et al., 2001) and regional uncertainties in its shape (Neumann, 2002). Pixel resolution of this map - is 463 meters per pixel (m). (Description from URL). Data Reference: (See URL)]], + is 463 meters per pixel (m). (Description from URL). Data Reference: (See URL)]] } asset.onInitialize(function() diff --git a/data/assets/scene/solarsystem/planets/mars/layers/colorlayers/mola_pseudo_color_utah.asset b/data/assets/scene/solarsystem/planets/mars/layers/colorlayers/mola_pseudo_color_utah.asset index a77ebf805e..2918b76a81 100644 --- a/data/assets/scene/solarsystem/planets/mars/layers/colorlayers/mola_pseudo_color_utah.asset +++ b/data/assets/scene/solarsystem/planets/mars/layers/colorlayers/mola_pseudo_color_utah.asset @@ -18,7 +18,7 @@ local layer = { Neumann, et al., 2003). However, the total elevation uncertainty is at least ±3 m due to the global error in the areoid (±1.8 meters; Lemoine, et al., 2001) and regional uncertainties in its shape (Neumann, 2002). Pixel resolution of this map - is 463 meters per pixel (m). (Description from URL). Data Reference: (See URL)]], + is 463 meters per pixel (m). (Description from URL). Data Reference: (See URL)]] } asset.onInitialize(function() diff --git a/data/assets/scene/solarsystem/planets/mars/layers/colorlayers/themis_ir_day_sweden.asset b/data/assets/scene/solarsystem/planets/mars/layers/colorlayers/themis_ir_day_sweden.asset index 384d1365ef..a545e3aca3 100644 --- a/data/assets/scene/solarsystem/planets/mars/layers/colorlayers/themis_ir_day_sweden.asset +++ b/data/assets/scene/solarsystem/planets/mars/layers/colorlayers/themis_ir_day_sweden.asset @@ -15,7 +15,7 @@ local layer = { global planetary image datasets: 1. Techniques and data processing for Thermal Emission Imaging System (THEMIS) multi-spectral data, J. Geophys. Res., 116, E10008, doi:10.1029/2010JE003755. http://dx.doi.org/10.1029/2010JE003755 - (Description from URL)]], + (Description from URL)]] } asset.onInitialize(function() diff --git a/data/assets/scene/solarsystem/planets/mars/layers/colorlayers/themis_ir_day_utah.asset b/data/assets/scene/solarsystem/planets/mars/layers/colorlayers/themis_ir_day_utah.asset index 3304a6357d..97289d5bda 100644 --- a/data/assets/scene/solarsystem/planets/mars/layers/colorlayers/themis_ir_day_utah.asset +++ b/data/assets/scene/solarsystem/planets/mars/layers/colorlayers/themis_ir_day_utah.asset @@ -15,7 +15,7 @@ local layer = { global planetary image datasets: 1. Techniques and data processing for Thermal Emission Imaging System (THEMIS) multi-spectral data, J. Geophys. Res., 116, E10008, doi:10.1029/2010JE003755. http://dx.doi.org/10.1029/2010JE003755 - (Description from URL)]], + (Description from URL)]] } asset.onInitialize(function() diff --git a/data/assets/scene/solarsystem/planets/mars/layers/colorlayers/themis_ir_night_sweden.asset b/data/assets/scene/solarsystem/planets/mars/layers/colorlayers/themis_ir_night_sweden.asset index 1ea2a3d787..a69ce8891c 100644 --- a/data/assets/scene/solarsystem/planets/mars/layers/colorlayers/themis_ir_night_sweden.asset +++ b/data/assets/scene/solarsystem/planets/mars/layers/colorlayers/themis_ir_night_sweden.asset @@ -16,7 +16,7 @@ local layer = { datasets: 1. Techniques and data processing for Thermal Emission Imaging System (THEMIS) multi-spectral data, J. Geophys. Res., 116, E10008, doi:10.1029/2010JE003755. http://dx.doi.org/10.1029/2010JE003755 (Description from - URL)]], + URL)]] } asset.onInitialize(function() diff --git a/data/assets/scene/solarsystem/planets/mars/layers/colorlayers/themis_ir_night_utah.asset b/data/assets/scene/solarsystem/planets/mars/layers/colorlayers/themis_ir_night_utah.asset index b733dcda8a..30cdfc028b 100644 --- a/data/assets/scene/solarsystem/planets/mars/layers/colorlayers/themis_ir_night_utah.asset +++ b/data/assets/scene/solarsystem/planets/mars/layers/colorlayers/themis_ir_night_utah.asset @@ -16,7 +16,7 @@ local layer = { datasets: 1. Techniques and data processing for Thermal Emission Imaging System (THEMIS) multi-spectral data, J. Geophys. Res., 116, E10008, doi:10.1029/2010JE003755. http://dx.doi.org/10.1029/2010JE003755 (Description from - URL)]], + URL)]] } asset.onInitialize(function() diff --git a/data/assets/scene/solarsystem/planets/mars/layers/colorlayers/viking_mdim_sweden.asset b/data/assets/scene/solarsystem/planets/mars/layers/colorlayers/viking_mdim_sweden.asset index 0e70efbced..06f49543b9 100644 --- a/data/assets/scene/solarsystem/planets/mars/layers/colorlayers/viking_mdim_sweden.asset +++ b/data/assets/scene/solarsystem/planets/mars/layers/colorlayers/viking_mdim_sweden.asset @@ -23,7 +23,7 @@ local layer = { as an accurate basemap on which data from future missions can be plotted. (Description from URL).

References: Williams, D. R. (2018). Viking Mission to Mars. https://nssdc.gsfc.nasa.gov/planetary/viking.html Additional - references available here: http://astrogeology.usgs.gov/maps/mdim-2-1]], + references available here: http://astrogeology.usgs.gov/maps/mdim-2-1]] } asset.onInitialize(function() diff --git a/data/assets/scene/solarsystem/planets/mars/layers/colorlayers/viking_mdim_utah.asset b/data/assets/scene/solarsystem/planets/mars/layers/colorlayers/viking_mdim_utah.asset index c05d8811d9..1dcdf64327 100644 --- a/data/assets/scene/solarsystem/planets/mars/layers/colorlayers/viking_mdim_utah.asset +++ b/data/assets/scene/solarsystem/planets/mars/layers/colorlayers/viking_mdim_utah.asset @@ -23,7 +23,7 @@ local layer = { as an accurate basemap on which data from future missions can be plotted. (Description from URL).

References: Williams, D. R. (2018). Viking Mission to Mars. https://nssdc.gsfc.nasa.gov/planetary/viking.html Additional - references available here: http://astrogeology.usgs.gov/maps/mdim-2-1]], + references available here: http://astrogeology.usgs.gov/maps/mdim-2-1]] } asset.onInitialize(function() diff --git a/data/assets/scene/solarsystem/planets/mars/layers/heightlayers/MDEM200M.asset b/data/assets/scene/solarsystem/planets/mars/layers/heightlayers/MDEM200M.asset index 9167fd9081..71d2a18dda 100644 --- a/data/assets/scene/solarsystem/planets/mars/layers/heightlayers/MDEM200M.asset +++ b/data/assets/scene/solarsystem/planets/mars/layers/heightlayers/MDEM200M.asset @@ -5,13 +5,13 @@ local layer = { Name = "HRSC MOLA Blended DEM Global 200m v2", Enabled = asset.enabled, FilePath = asset.localResource("mdem200m.wms"), - Description = [[Blend of data derived from the Mars Orbiter Laser Altimeter + 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 - Agency's Mars Express spacecraft). The average accuracy is ~100 meters in horizontal + Agency's Mars Express spacecraft). The average accuracy is ~100 meters in horizontal position and the elevation uncertainty is at least ±3 m. This tiled elevation layer, hosted by ESRI, is made available using lossless LERC compression. - (Description from URL)]], + (Description from URL)]] } asset.onInitialize(function() diff --git a/data/assets/scene/solarsystem/planets/mars/layers/heightlayers/hirisels.asset b/data/assets/scene/solarsystem/planets/mars/layers/heightlayers/hirisels.asset index a79605374b..8316ddf28d 100644 --- a/data/assets/scene/solarsystem/planets/mars/layers/heightlayers/hirisels.asset +++ b/data/assets/scene/solarsystem/planets/mars/layers/heightlayers/hirisels.asset @@ -15,7 +15,7 @@ local layer = { we've also imaged avalanches in progress, and discovered dark flows that may or may not be briny seeps. Hundreds of science papers have been published with our data. (Description from URL). This map contains a subet set of the HiRISE - DEM where available as of 2018]], + DEM where available as of 2018]] } asset.onInitialize(function() diff --git a/data/assets/scene/solarsystem/planets/mars/layers/heightlayers/mola_sweden.asset b/data/assets/scene/solarsystem/planets/mars/layers/heightlayers/mola_sweden.asset index 66ba2d1c64..3f5af3afd4 100644 --- a/data/assets/scene/solarsystem/planets/mars/layers/heightlayers/mola_sweden.asset +++ b/data/assets/scene/solarsystem/planets/mars/layers/heightlayers/mola_sweden.asset @@ -19,7 +19,7 @@ local layer = { elevation uncertainty is at least ±3 m due to the global error in the areoid (±1.8 meters; Neumann et al., 2001) and regional uncertainties in its shape (Neumann, 2002). Pixel resolution is 463 meters per pixel (m). (Description from - URL). Data Reference: (See URL)]], + URL). Data Reference: (See URL)]] } asset.onInitialize(function() diff --git a/data/assets/scene/solarsystem/planets/mars/layers/heightlayers/mola_utah.asset b/data/assets/scene/solarsystem/planets/mars/layers/heightlayers/mola_utah.asset index 73aacf3fb1..3c6ff351ec 100644 --- a/data/assets/scene/solarsystem/planets/mars/layers/heightlayers/mola_utah.asset +++ b/data/assets/scene/solarsystem/planets/mars/layers/heightlayers/mola_utah.asset @@ -19,7 +19,7 @@ local layer = { elevation uncertainty is at least ±3 m due to the global error in the areoid (±1.8 meters; Neumann et al., 2001) and regional uncertainties in its shape (Neumann, 2002). Pixel resolution is 463 meters per pixel (m). (Description from - URL). Data Reference: (See URL)]], + URL). Data Reference: (See URL)]] } asset.onInitialize(function() diff --git a/data/assets/scene/solarsystem/planets/mars/mars.asset b/data/assets/scene/solarsystem/planets/mars/mars.asset index f7c65dc58e..3ddce078d8 100644 --- a/data/assets/scene/solarsystem/planets/mars/mars.asset +++ b/data/assets/scene/solarsystem/planets/mars/mars.asset @@ -84,12 +84,12 @@ asset.onInitialize(function() openspace.addSceneGraphNode(Mars) openspace.addSceneGraphNode(MarsLabel) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(MarsLabel) openspace.removeSceneGraphNode(Mars) end) - + asset.export(Mars) asset.export(MarsLabel) diff --git a/data/assets/scene/solarsystem/planets/mars/moons/deimos.asset b/data/assets/scene/solarsystem/planets/mars/moons/deimos.asset index 031336a8b3..e8606c2b28 100644 --- a/data/assets/scene/solarsystem/planets/mars/moons/deimos.asset +++ b/data/assets/scene/solarsystem/planets/mars/moons/deimos.asset @@ -80,12 +80,12 @@ asset.onInitialize(function() openspace.addSceneGraphNode(Deimos) openspace.addSceneGraphNode(DeimosTrail) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(DeimosTrail) openspace.removeSceneGraphNode(Deimos) end) - + asset.export(Deimos) asset.export(DeimosTrail) diff --git a/data/assets/scene/solarsystem/planets/mars/moons/phobos.asset b/data/assets/scene/solarsystem/planets/mars/moons/phobos.asset index 2749acc643..36ccd2ce04 100644 --- a/data/assets/scene/solarsystem/planets/mars/moons/phobos.asset +++ b/data/assets/scene/solarsystem/planets/mars/moons/phobos.asset @@ -82,12 +82,12 @@ asset.onInitialize(function() openspace.addSceneGraphNode(Phobos) openspace.addSceneGraphNode(PhobosTrail) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(PhobosTrail) openspace.removeSceneGraphNode(Phobos) end) - + asset.export(Phobos) asset.export(PhobosTrail) diff --git a/data/assets/scene/solarsystem/planets/mars/trail.asset b/data/assets/scene/solarsystem/planets/mars/trail.asset index 93a6b92063..852d10a03a 100644 --- a/data/assets/scene/solarsystem/planets/mars/trail.asset +++ b/data/assets/scene/solarsystem/planets/mars/trail.asset @@ -29,11 +29,11 @@ local MarsTrail = { asset.onInitialize(function() openspace.addSceneGraphNode(MarsTrail) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(MarsTrail) end) - + asset.export(MarsTrail) diff --git a/data/assets/scene/solarsystem/planets/mars/trail_barycenter.asset b/data/assets/scene/solarsystem/planets/mars/trail_barycenter.asset index 505c537aff..bc906a01bd 100644 --- a/data/assets/scene/solarsystem/planets/mars/trail_barycenter.asset +++ b/data/assets/scene/solarsystem/planets/mars/trail_barycenter.asset @@ -30,11 +30,11 @@ local MarsBarycenterTrail = { asset.onInitialize(function() openspace.addSceneGraphNode(MarsBarycenterTrail) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(MarsBarycenterTrail) end) - + asset.export(MarsBarycenterTrail) diff --git a/data/assets/scene/solarsystem/planets/mars/trail_earth.asset b/data/assets/scene/solarsystem/planets/mars/trail_earth.asset index e1da3b261d..bc31504e48 100644 --- a/data/assets/scene/solarsystem/planets/mars/trail_earth.asset +++ b/data/assets/scene/solarsystem/planets/mars/trail_earth.asset @@ -31,11 +31,11 @@ local MarsTrailEarth = { asset.onInitialize(function() openspace.addSceneGraphNode(MarsTrailEarth) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(MarsTrailEarth) end) - + asset.export(MarsTrailEarth) diff --git a/data/assets/scene/solarsystem/planets/mars/transforms.asset b/data/assets/scene/solarsystem/planets/mars/transforms.asset index 51a33f600f..7c332f84a4 100644 --- a/data/assets/scene/solarsystem/planets/mars/transforms.asset +++ b/data/assets/scene/solarsystem/planets/mars/transforms.asset @@ -22,11 +22,11 @@ local MarsBarycenter = { asset.onInitialize(function() openspace.addSceneGraphNode(MarsBarycenter) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(MarsBarycenter) end) - + asset.export(MarsBarycenter) diff --git a/data/assets/scene/solarsystem/planets/mercury/default_layers.asset b/data/assets/scene/solarsystem/planets/mercury/default_layers.asset index 2e144aefea..0b37e5e9f0 100644 --- a/data/assets/scene/solarsystem/planets/mercury/default_layers.asset +++ b/data/assets/scene/solarsystem/planets/mercury/default_layers.asset @@ -1,5 +1,5 @@ --mdis -asset.require("./layers/colorlayers/messenger_mdis_utah", false) +asset.require("./layers/colorlayers/messenger_mdis_utah", false) asset.require("./layers/colorlayers/messenger_mdis_sweden", false) --mossaic asset.require("./layers/colorlayers/messenger_mosaic_utah", false) diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/colorlayers/messenger_bdr_sweden.asset b/data/assets/scene/solarsystem/planets/mercury/layers/colorlayers/messenger_bdr_sweden.asset index e94e4a0f2b..b8e573261f 100644 --- a/data/assets/scene/solarsystem/planets/mercury/layers/colorlayers/messenger_bdr_sweden.asset +++ b/data/assets/scene/solarsystem/planets/mercury/layers/colorlayers/messenger_bdr_sweden.asset @@ -6,13 +6,13 @@ local layer = { Enabled = asset.enabled, FilePath = asset.localResource("messenger_bdr_sweden.wms"), TilePixelSize = 360, - Description = [[The Map Projected Basemap RDR (BDR) data set consists of a global - monochrome map of reflectance at a resolution of 256 pixels per degree (~166 m/p). - This edition, version 1, was released May 6, 2016 to the Planetary Data System (PDS) - MESSENGER archive. It is compiled using NAC or WAC 750-nm images from any campaign that - best fit the intended illumination geometry or low emission angle and incidence angle - near 74 degrees. It is controlled and projected onto a global digital elevation model. It uses - a Kasseleinin-Shkuratov photometric model, whose parameters are the same for any given + Description = [[The Map Projected Basemap RDR (BDR) data set consists of a global + monochrome map of reflectance at a resolution of 256 pixels per degree (~166 m/p). + This edition, version 1, was released May 6, 2016 to the Planetary Data System (PDS) + MESSENGER archive. It is compiled using NAC or WAC 750-nm images from any campaign that + best fit the intended illumination geometry or low emission angle and incidence angle + near 74 degrees. It is controlled and projected onto a global digital elevation model. It uses + a Kasseleinin-Shkuratov photometric model, whose parameters are the same for any given wavelength band across all MESSENGER end-of-mission map data products]] } diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/colorlayers/messenger_bdr_utah.asset b/data/assets/scene/solarsystem/planets/mercury/layers/colorlayers/messenger_bdr_utah.asset index 64736bb155..f4e66b1193 100644 --- a/data/assets/scene/solarsystem/planets/mercury/layers/colorlayers/messenger_bdr_utah.asset +++ b/data/assets/scene/solarsystem/planets/mercury/layers/colorlayers/messenger_bdr_utah.asset @@ -6,13 +6,13 @@ local layer = { Enabled = asset.enabled, FilePath = asset.localResource("messenger_bdr_utah.wms"), TilePixelSize = 360, - Description = [[The Map Projected Basemap RDR (BDR) data set consists of a global - monochrome map of reflectance at a resolution of 256 pixels per degree (~166 m/p). - This edition, version 1, was released May 6, 2016 to the Planetary Data System (PDS) - MESSENGER archive. It is compiled using NAC or WAC 750-nm images from any campaign that - best fit the intended illumination geometry or low emission angle and incidence angle - near 74 degrees. It is controlled and projected onto a global digital elevation model. It uses - a Kasseleinin-Shkuratov photometric model, whose parameters are the same for any given + Description = [[The Map Projected Basemap RDR (BDR) data set consists of a global + monochrome map of reflectance at a resolution of 256 pixels per degree (~166 m/p). + This edition, version 1, was released May 6, 2016 to the Planetary Data System (PDS) + MESSENGER archive. It is compiled using NAC or WAC 750-nm images from any campaign that + best fit the intended illumination geometry or low emission angle and incidence angle + near 74 degrees. It is controlled and projected onto a global digital elevation model. It uses + a Kasseleinin-Shkuratov photometric model, whose parameters are the same for any given wavelength band across all MESSENGER end-of-mission map data products]] } diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/colorlayers/messenger_mdis_sweden.asset b/data/assets/scene/solarsystem/planets/mercury/layers/colorlayers/messenger_mdis_sweden.asset index 4ef6c16d41..0d2112dcdb 100644 --- a/data/assets/scene/solarsystem/planets/mercury/layers/colorlayers/messenger_mdis_sweden.asset +++ b/data/assets/scene/solarsystem/planets/mercury/layers/colorlayers/messenger_mdis_sweden.asset @@ -5,15 +5,15 @@ local layer = { Name = "Messenger MDIS [Sweden]", Enabled = asset.enabled, FilePath = asset.localResource("messenger_mdis_sweden.wms"), - Description = [[This May 2013 basemap is a combination of the following mosaics; (1) - The 2013-05-10 version of the monochrome global mosaic, made from Applied Coherent - Technology (ACT) Corporation tiles, (2) An average north polar mosaic from 90N to 82.5N, - composed of images from many campaigns, made by C. Ernst, and (3) An average south - polar mosaic from 90S to 85S, composed of images from the south polar monitoring - campaign from the primary mission, made by N. Chabot. To fill minor areas of missing - data, the 2013-05-10 version of the high-incidence global mosaic was underlain. This - monochrome mosaic is composed of Mercury Dual Imaging System (MDIS) Narrow Angle - Camera (NAC) images and Wide Angle Camers (WAC) images acquired in the filter centered + Description = [[This May 2013 basemap is a combination of the following mosaics; (1) + The 2013-05-10 version of the monochrome global mosaic, made from Applied Coherent + Technology (ACT) Corporation tiles, (2) An average north polar mosaic from 90N to 82.5N, + composed of images from many campaigns, made by C. Ernst, and (3) An average south + polar mosaic from 90S to 85S, composed of images from the south polar monitoring + campaign from the primary mission, made by N. Chabot. To fill minor areas of missing + data, the 2013-05-10 version of the high-incidence global mosaic was underlain. This + monochrome mosaic is composed of Mercury Dual Imaging System (MDIS) Narrow Angle + Camera (NAC) images and Wide Angle Camers (WAC) images acquired in the filter centered at 750 nm. The resolution of this mosaic is 250 meters per pixel (m)]] } diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/colorlayers/messenger_mdis_utah.asset b/data/assets/scene/solarsystem/planets/mercury/layers/colorlayers/messenger_mdis_utah.asset index 8e728d476a..2e6603d969 100644 --- a/data/assets/scene/solarsystem/planets/mercury/layers/colorlayers/messenger_mdis_utah.asset +++ b/data/assets/scene/solarsystem/planets/mercury/layers/colorlayers/messenger_mdis_utah.asset @@ -5,15 +5,15 @@ local layer = { Name = "Messenger MDIS [Utah]", Enabled = asset.enabled, FilePath = asset.localResource("messenger_mdis_utah.wms"), - Description = [[This May 2013 basemap is a combination of the following mosaics; (1) - The 2013-05-10 version of the monochrome global mosaic, made from Applied Coherent - Technology (ACT) Corporation tiles, (2) An average north polar mosaic from 90N to 82.5N, - composed of images from many campaigns, made by C. Ernst, and (3) An average south - polar mosaic from 90S to 85S, composed of images from the south polar monitoring - campaign from the primary mission, made by N. Chabot. To fill minor areas of missing - data, the 2013-05-10 version of the high-incidence global mosaic was underlain. This - monochrome mosaic is composed of Mercury Dual Imaging System (MDIS) Narrow Angle - Camera (NAC) images and Wide Angle Camers (WAC) images acquired in the filter centered + Description = [[This May 2013 basemap is a combination of the following mosaics; (1) + The 2013-05-10 version of the monochrome global mosaic, made from Applied Coherent + Technology (ACT) Corporation tiles, (2) An average north polar mosaic from 90N to 82.5N, + composed of images from many campaigns, made by C. Ernst, and (3) An average south + polar mosaic from 90S to 85S, composed of images from the south polar monitoring + campaign from the primary mission, made by N. Chabot. To fill minor areas of missing + data, the 2013-05-10 version of the high-incidence global mosaic was underlain. This + monochrome mosaic is composed of Mercury Dual Imaging System (MDIS) Narrow Angle + Camera (NAC) images and Wide Angle Camers (WAC) images acquired in the filter centered at 750 nm. The resolution of this mosaic is 250 meters per pixel (m)]] } diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/colorlayers/messenger_shade_sweden.asset b/data/assets/scene/solarsystem/planets/mercury/layers/colorlayers/messenger_shade_sweden.asset index ed776dad23..26f86f1744 100644 --- a/data/assets/scene/solarsystem/planets/mercury/layers/colorlayers/messenger_shade_sweden.asset +++ b/data/assets/scene/solarsystem/planets/mercury/layers/colorlayers/messenger_shade_sweden.asset @@ -5,7 +5,7 @@ local layer = { Name = "Messenger SHADE [Sweden]", Enabled = asset.enabled, FilePath = asset.localResource("messenger_shade_sweden.wms"), - Settings = { + Settings = { Gamma = 1.33, Multiplier = 1.15 }, diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/colorlayers/messenger_shade_utah.asset b/data/assets/scene/solarsystem/planets/mercury/layers/colorlayers/messenger_shade_utah.asset index 4f9869c07f..4795e2e2ef 100644 --- a/data/assets/scene/solarsystem/planets/mercury/layers/colorlayers/messenger_shade_utah.asset +++ b/data/assets/scene/solarsystem/planets/mercury/layers/colorlayers/messenger_shade_utah.asset @@ -5,7 +5,7 @@ local layer = { Name = "Messenger SHADE [Utah]", Enabled = asset.enabled, FilePath = asset.localResource("messenger_shade_utah.wms"), - Settings = { + Settings = { Gamma = 1.33, Multiplier = 1.15 }, diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/colorlayers/mgsimap_02122015.asset b/data/assets/scene/solarsystem/planets/mercury/layers/colorlayers/mgsimap_02122015.asset index 7f8bd0ab54..31965838a2 100644 --- a/data/assets/scene/solarsystem/planets/mercury/layers/colorlayers/mgsimap_02122015.asset +++ b/data/assets/scene/solarsystem/planets/mercury/layers/colorlayers/mgsimap_02122015.asset @@ -12,7 +12,7 @@ local layer = { Identifier = "mgsimap_02122015", Enabled = asset.enabled, FilePath = texturesPath .. "mgsimap_02122015.png", - Settings = { + Settings = { Gamma = 1.33, Multiplier = 1.15 }, diff --git a/data/assets/scene/solarsystem/planets/mercury/layers/heightlayers/messenger_dem_utah.asset b/data/assets/scene/solarsystem/planets/mercury/layers/heightlayers/messenger_dem_utah.asset index 1827b74929..4bd91d0fbc 100644 --- a/data/assets/scene/solarsystem/planets/mercury/layers/heightlayers/messenger_dem_utah.asset +++ b/data/assets/scene/solarsystem/planets/mercury/layers/heightlayers/messenger_dem_utah.asset @@ -12,7 +12,7 @@ local layer = { TilePixelSize = 64 } -asset.onInitialize(function () +asset.onInitialize(function () openspace.globebrowsing.addLayer(globeIdentifier, "HeightLayers", layer) end) diff --git a/data/assets/scene/solarsystem/planets/mercury/mercury.asset b/data/assets/scene/solarsystem/planets/mercury/mercury.asset index 9481feb37b..63c091d29a 100644 --- a/data/assets/scene/solarsystem/planets/mercury/mercury.asset +++ b/data/assets/scene/solarsystem/planets/mercury/mercury.asset @@ -75,12 +75,12 @@ asset.onInitialize(function() openspace.addSceneGraphNode(Mercury) openspace.addSceneGraphNode(MercuryLabel) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(MercuryLabel) openspace.removeSceneGraphNode(Mercury) end) - + asset.export(Mercury) asset.export(MercuryLabel) diff --git a/data/assets/scene/solarsystem/planets/mercury/trail.asset b/data/assets/scene/solarsystem/planets/mercury/trail.asset index 238ec0662b..dbc716e3ec 100644 --- a/data/assets/scene/solarsystem/planets/mercury/trail.asset +++ b/data/assets/scene/solarsystem/planets/mercury/trail.asset @@ -28,11 +28,11 @@ local MercuryTrail = { asset.onInitialize(function() openspace.addSceneGraphNode(MercuryTrail) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(MercuryTrail) end) - + asset.export(MercuryTrail) diff --git a/data/assets/scene/solarsystem/planets/mercury/trail_barycenter.asset b/data/assets/scene/solarsystem/planets/mercury/trail_barycenter.asset index 0d4a567fbf..ec542ab50e 100644 --- a/data/assets/scene/solarsystem/planets/mercury/trail_barycenter.asset +++ b/data/assets/scene/solarsystem/planets/mercury/trail_barycenter.asset @@ -29,11 +29,11 @@ local MercuryBarycenterTrail = { asset.onInitialize(function() openspace.addSceneGraphNode(MercuryBarycenterTrail) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(MercuryBarycenterTrail) end) - + asset.export(MercuryBarycenterTrail) diff --git a/data/assets/scene/solarsystem/planets/mercury/trail_earth.asset b/data/assets/scene/solarsystem/planets/mercury/trail_earth.asset index aaebe35f01..f4531f8868 100644 --- a/data/assets/scene/solarsystem/planets/mercury/trail_earth.asset +++ b/data/assets/scene/solarsystem/planets/mercury/trail_earth.asset @@ -31,11 +31,11 @@ local MercuryTrailEarth = { asset.onInitialize(function() openspace.addSceneGraphNode(MercuryTrailEarth) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(MercuryTrailEarth) end) - + asset.export(MercuryTrailEarth) diff --git a/data/assets/scene/solarsystem/planets/mercury/transforms.asset b/data/assets/scene/solarsystem/planets/mercury/transforms.asset index a19bd84d39..1002431e7d 100644 --- a/data/assets/scene/solarsystem/planets/mercury/transforms.asset +++ b/data/assets/scene/solarsystem/planets/mercury/transforms.asset @@ -22,11 +22,11 @@ local MercuryBarycenter = { asset.onInitialize(function() openspace.addSceneGraphNode(MercuryBarycenter) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(MercuryBarycenter) end) - + asset.export(MercuryBarycenter) diff --git a/data/assets/scene/solarsystem/planets/neptune/inner_moons.asset b/data/assets/scene/solarsystem/planets/neptune/inner_moons.asset index ba4d5ad49e..43c6cac40c 100644 --- a/data/assets/scene/solarsystem/planets/neptune/inner_moons.asset +++ b/data/assets/scene/solarsystem/planets/neptune/inner_moons.asset @@ -11,7 +11,7 @@ local parentIdentifier = transforms.NeptuneBarycenter.Identifier local parentSpice = "NEPTUNE BARYCENTER" local tags = { "moon_solarSystem", "moon_giants", "moon_neptune", "moon_inner", "moon_minor" } local trailColor = { 0.2, 0.5, 0.75 } -local trailTags = { +local trailTags = { "moonTrail_solarSystem", "moonTrail_giants", "moonTrail_neptune", @@ -148,13 +148,13 @@ asset.onInitialize(function() openspace.addSceneGraphNode(node) end end) - + asset.onDeinitialize(function() for i = #nodes, 1, -1 do openspace.removeSceneGraphNode(nodes[i]) end end) - + for _, node in ipairs(nodes) do asset.export(node) end diff --git a/data/assets/scene/solarsystem/planets/neptune/irregular_prograde_moons.asset b/data/assets/scene/solarsystem/planets/neptune/irregular_prograde_moons.asset index 3b9f6572de..36f5767898 100644 --- a/data/assets/scene/solarsystem/planets/neptune/irregular_prograde_moons.asset +++ b/data/assets/scene/solarsystem/planets/neptune/irregular_prograde_moons.asset @@ -11,7 +11,7 @@ local parentIdentifier = transforms.NeptuneBarycenter.Identifier local parentSpice = "NEPTUNE BARYCENTER" local tags = { "moon_solarSystem", "moon_giants", "moon_neptune", "moon_irregular_prograde", "moon_minor" } local trailColor = { 0.2, 0.5, 0.75 } -local trailTags = { +local trailTags = { "moonTrail_solarSystem", "moonTrail_giants", "moonTrail_neptune", @@ -79,13 +79,13 @@ asset.onInitialize(function() openspace.addSceneGraphNode(node) end end) - + asset.onDeinitialize(function() for i = #nodes, 1, -1 do openspace.removeSceneGraphNode(nodes[i]) end end) - + for _, node in ipairs(nodes) do asset.export(node) end diff --git a/data/assets/scene/solarsystem/planets/neptune/irregular_retrograde_moons.asset b/data/assets/scene/solarsystem/planets/neptune/irregular_retrograde_moons.asset index 6a545c1720..7787921565 100644 --- a/data/assets/scene/solarsystem/planets/neptune/irregular_retrograde_moons.asset +++ b/data/assets/scene/solarsystem/planets/neptune/irregular_retrograde_moons.asset @@ -10,7 +10,7 @@ local parentIdentifier = transforms.NeptuneBarycenter.Identifier local parentSpice = "NEPTUNE BARYCENTER" local tags = { "moon_solarSystem", "moon_giants", "moon_neptune", "moon_irregular_retrograde", "moon_minor" } local trailColor = { 0.2, 0.5, 0.75 } -local trailTags = { +local trailTags = { "moonTrail_solarSystem", "moonTrail_giants", "moonTrail_neptune", @@ -78,13 +78,13 @@ asset.onInitialize(function() openspace.addSceneGraphNode(node) end end) - + asset.onDeinitialize(function() for i = #nodes, 1, -1 do openspace.removeSceneGraphNode(nodes[i]) end end) - + for _, node in ipairs(nodes) do asset.export(node) end diff --git a/data/assets/scene/solarsystem/planets/neptune/minor_moons.asset b/data/assets/scene/solarsystem/planets/neptune/minor_moons.asset index c4d744d769..1371d1f711 100644 --- a/data/assets/scene/solarsystem/planets/neptune/minor_moons.asset +++ b/data/assets/scene/solarsystem/planets/neptune/minor_moons.asset @@ -6,7 +6,7 @@ asset.require("./irregular_retrograde_moons") asset.meta = { Name = "Neptune Minor Moons", Version = "1.0", - Description = [[Meta asset containing 3 moon groups: inner_moons, + Description = [[Meta asset containing 3 moon groups: inner_moons, irregular_prograde_moons, and irregular_retrograde_moons]], Author = "OpenSpace Team", URL = "http://openspaceproject.com", diff --git a/data/assets/scene/solarsystem/planets/neptune/neptune.asset b/data/assets/scene/solarsystem/planets/neptune/neptune.asset index 7e5a991e51..7923ea756b 100644 --- a/data/assets/scene/solarsystem/planets/neptune/neptune.asset +++ b/data/assets/scene/solarsystem/planets/neptune/neptune.asset @@ -56,12 +56,12 @@ asset.onInitialize(function() openspace.addSceneGraphNode(Neptune) openspace.addSceneGraphNode(NeptuneLabel) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(NeptuneLabel) openspace.removeSceneGraphNode(Neptune) end) - + asset.export(Neptune) asset.export(NeptuneLabel) diff --git a/data/assets/scene/solarsystem/planets/neptune/trail.asset b/data/assets/scene/solarsystem/planets/neptune/trail.asset index bf0e729156..4af5ba2cd4 100644 --- a/data/assets/scene/solarsystem/planets/neptune/trail.asset +++ b/data/assets/scene/solarsystem/planets/neptune/trail.asset @@ -39,11 +39,11 @@ local NeptuneTrail = { asset.onInitialize(function() openspace.addSceneGraphNode(NeptuneTrail) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(NeptuneTrail) end) - + asset.export(NeptuneTrail) diff --git a/data/assets/scene/solarsystem/planets/neptune/trail_barycenter.asset b/data/assets/scene/solarsystem/planets/neptune/trail_barycenter.asset index ec1e11566f..112c4a71ed 100644 --- a/data/assets/scene/solarsystem/planets/neptune/trail_barycenter.asset +++ b/data/assets/scene/solarsystem/planets/neptune/trail_barycenter.asset @@ -29,11 +29,11 @@ local NeptuneBarycenterTrail = { asset.onInitialize(function() openspace.addSceneGraphNode(NeptuneBarycenterTrail) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(NeptuneBarycenterTrail) end) - + asset.export(NeptuneBarycenterTrail) diff --git a/data/assets/scene/solarsystem/planets/neptune/trail_earth.asset b/data/assets/scene/solarsystem/planets/neptune/trail_earth.asset index afc38367d7..b79ed5ac5c 100644 --- a/data/assets/scene/solarsystem/planets/neptune/trail_earth.asset +++ b/data/assets/scene/solarsystem/planets/neptune/trail_earth.asset @@ -31,11 +31,11 @@ local NeptuneTrailEarth = { asset.onInitialize(function() openspace.addSceneGraphNode(NeptuneTrailEarth) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(NeptuneTrailEarth) end) - + asset.export(NeptuneTrailEarth) diff --git a/data/assets/scene/solarsystem/planets/neptune/transforms.asset b/data/assets/scene/solarsystem/planets/neptune/transforms.asset index 609a53eb4d..a4c81387b8 100644 --- a/data/assets/scene/solarsystem/planets/neptune/transforms.asset +++ b/data/assets/scene/solarsystem/planets/neptune/transforms.asset @@ -22,11 +22,11 @@ local NeptuneBarycenter = { asset.onInitialize(function() openspace.addSceneGraphNode(NeptuneBarycenter) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(NeptuneBarycenter) end) - + asset.export(NeptuneBarycenter) diff --git a/data/assets/scene/solarsystem/planets/neptune/triton.asset b/data/assets/scene/solarsystem/planets/neptune/triton.asset index e27d507659..a50931e456 100644 --- a/data/assets/scene/solarsystem/planets/neptune/triton.asset +++ b/data/assets/scene/solarsystem/planets/neptune/triton.asset @@ -29,13 +29,13 @@ asset.onInitialize(function() openspace.addSceneGraphNode(node) end end) - + asset.onDeinitialize(function() for i = #nodes, 1, -1 do openspace.removeSceneGraphNode(nodes[i]) end end) - + for _, node in ipairs(nodes) do asset.export(node) end diff --git a/data/assets/scene/solarsystem/planets/saturn/dione/dione.asset b/data/assets/scene/solarsystem/planets/saturn/dione/dione.asset index 6286ffb82b..4ae53e83bd 100644 --- a/data/assets/scene/solarsystem/planets/saturn/dione/dione.asset +++ b/data/assets/scene/solarsystem/planets/saturn/dione/dione.asset @@ -24,7 +24,7 @@ local Dione = { SourceFrame = "IAU_ENCELADUS", DestinationFrame = "GALACTIC" } - }, + }, Renderable = { Type = "RenderableGlobe", Radii = 561400, @@ -52,11 +52,11 @@ local Dione = { asset.onInitialize(function() openspace.addSceneGraphNode(Dione) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(Dione) end) - + asset.export(Dione) diff --git a/data/assets/scene/solarsystem/planets/saturn/dione/trail.asset b/data/assets/scene/solarsystem/planets/saturn/dione/trail.asset index 71ec816017..0bd7895e15 100644 --- a/data/assets/scene/solarsystem/planets/saturn/dione/trail.asset +++ b/data/assets/scene/solarsystem/planets/saturn/dione/trail.asset @@ -29,11 +29,11 @@ local DioneTrail = { asset.onInitialize(function() openspace.addSceneGraphNode(DioneTrail) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(DioneTrail) end) - + asset.export(DioneTrail) diff --git a/data/assets/scene/solarsystem/planets/saturn/enceladus/enceladus.asset b/data/assets/scene/solarsystem/planets/saturn/enceladus/enceladus.asset index a9f5c3eb00..305c42fcf4 100644 --- a/data/assets/scene/solarsystem/planets/saturn/enceladus/enceladus.asset +++ b/data/assets/scene/solarsystem/planets/saturn/enceladus/enceladus.asset @@ -24,7 +24,7 @@ local Enceladus = { SourceFrame = "IAU_ENCELADUS", DestinationFrame = "GALACTIC" } - }, + }, Renderable = { Type = "RenderableGlobe", Radii = 252000, @@ -54,11 +54,11 @@ local Enceladus = { asset.onInitialize(function() openspace.addSceneGraphNode(Enceladus) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(Enceladus) end) - + asset.export(Enceladus) diff --git a/data/assets/scene/solarsystem/planets/saturn/enceladus/trail.asset b/data/assets/scene/solarsystem/planets/saturn/enceladus/trail.asset index 32ebb9c0ec..8918169f3b 100644 --- a/data/assets/scene/solarsystem/planets/saturn/enceladus/trail.asset +++ b/data/assets/scene/solarsystem/planets/saturn/enceladus/trail.asset @@ -29,11 +29,11 @@ local EnceladusTrail = { asset.onInitialize(function() openspace.addSceneGraphNode(EnceladusTrail) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(EnceladusTrail) end) - + asset.export(EnceladusTrail) diff --git a/data/assets/scene/solarsystem/planets/saturn/hyperion/hyperion.asset b/data/assets/scene/solarsystem/planets/saturn/hyperion/hyperion.asset index 5f8b1e277f..71a141f4d6 100644 --- a/data/assets/scene/solarsystem/planets/saturn/hyperion/hyperion.asset +++ b/data/assets/scene/solarsystem/planets/saturn/hyperion/hyperion.asset @@ -53,11 +53,11 @@ local Hyperion = { asset.onInitialize(function() openspace.addSceneGraphNode(Hyperion) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(Hyperion) end) - + asset.export(Hyperion) diff --git a/data/assets/scene/solarsystem/planets/saturn/hyperion/trail.asset b/data/assets/scene/solarsystem/planets/saturn/hyperion/trail.asset index 24a6fa3209..09f870b4f7 100644 --- a/data/assets/scene/solarsystem/planets/saturn/hyperion/trail.asset +++ b/data/assets/scene/solarsystem/planets/saturn/hyperion/trail.asset @@ -28,11 +28,11 @@ local HyperionTrail = { asset.onInitialize(function() openspace.addSceneGraphNode(HyperionTrail) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(HyperionTrail) end) - + asset.export(HyperionTrail) diff --git a/data/assets/scene/solarsystem/planets/saturn/iapetus/iapetus.asset b/data/assets/scene/solarsystem/planets/saturn/iapetus/iapetus.asset index 71582077b0..1a9de8c9d5 100644 --- a/data/assets/scene/solarsystem/planets/saturn/iapetus/iapetus.asset +++ b/data/assets/scene/solarsystem/planets/saturn/iapetus/iapetus.asset @@ -54,11 +54,11 @@ local Iapetus = { asset.onInitialize(function() openspace.addSceneGraphNode(Iapetus) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(Iapetus) end) - + asset.export(Iapetus) diff --git a/data/assets/scene/solarsystem/planets/saturn/iapetus/trail.asset b/data/assets/scene/solarsystem/planets/saturn/iapetus/trail.asset index dc692ad016..b9b3371148 100644 --- a/data/assets/scene/solarsystem/planets/saturn/iapetus/trail.asset +++ b/data/assets/scene/solarsystem/planets/saturn/iapetus/trail.asset @@ -29,11 +29,11 @@ local IapetusTrail = { asset.onInitialize(function() openspace.addSceneGraphNode(IapetusTrail) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(IapetusTrail) end) - + asset.export(IapetusTrail) diff --git a/data/assets/scene/solarsystem/planets/saturn/mimas/mimas.asset b/data/assets/scene/solarsystem/planets/saturn/mimas/mimas.asset index 6afc469fbf..dab85a414e 100644 --- a/data/assets/scene/solarsystem/planets/saturn/mimas/mimas.asset +++ b/data/assets/scene/solarsystem/planets/saturn/mimas/mimas.asset @@ -54,11 +54,11 @@ local Mimas = { asset.onInitialize(function() openspace.addSceneGraphNode(Mimas) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(Mimas) end) - + asset.export(Mimas) diff --git a/data/assets/scene/solarsystem/planets/saturn/mimas/trail.asset b/data/assets/scene/solarsystem/planets/saturn/mimas/trail.asset index 170286b22d..16326c78b1 100644 --- a/data/assets/scene/solarsystem/planets/saturn/mimas/trail.asset +++ b/data/assets/scene/solarsystem/planets/saturn/mimas/trail.asset @@ -29,11 +29,11 @@ local MimasTrail = { asset.onInitialize(function() openspace.addSceneGraphNode(MimasTrail) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(MimasTrail) end) - + asset.export(MimasTrail) diff --git a/data/assets/scene/solarsystem/planets/saturn/minor/gallic_group.asset b/data/assets/scene/solarsystem/planets/saturn/minor/gallic_group.asset index ecda3a9331..93e00706fb 100644 --- a/data/assets/scene/solarsystem/planets/saturn/minor/gallic_group.asset +++ b/data/assets/scene/solarsystem/planets/saturn/minor/gallic_group.asset @@ -8,7 +8,7 @@ local parentIdentifier = transforms.SaturnBarycenter.Identifier local parentSpice = "SATURN BARYCENTER" local tags = { "moon_solarSystem", "moon_giants", "moon_saturn", "moon_gallic", "moon_minor" } local trailColor = { 0.5, 0.3, 0.3 } -local trailTags = { +local trailTags = { "moonTrail_solarSystem", "moonTrail_giants", "moonTrail_saturn", @@ -93,13 +93,13 @@ asset.onInitialize(function() openspace.addSceneGraphNode(node) end end) - + asset.onDeinitialize(function() for i = #nodes, 1, -1 do openspace.removeSceneGraphNode(nodes[i]) end end) - + for _, node in ipairs(nodes) do asset.export(node) end diff --git a/data/assets/scene/solarsystem/planets/saturn/minor/inuit_group.asset b/data/assets/scene/solarsystem/planets/saturn/minor/inuit_group.asset index 51b51409dd..3ef106ffca 100644 --- a/data/assets/scene/solarsystem/planets/saturn/minor/inuit_group.asset +++ b/data/assets/scene/solarsystem/planets/saturn/minor/inuit_group.asset @@ -8,7 +8,7 @@ local parentIdentifier = transforms.SaturnBarycenter.Identifier local parentSpice = "SATURN BARYCENTER" local tags = { "moon_solarSystem", "moon_giants", "moon_saturn", "moon_inuit", "moon_minor" } local trailColor = { 0.5, 0.3, 0.3 } -local trailTags = { +local trailTags = { "moonTrail_solarSystem", "moonTrail_giants", "moonTrail_saturn", @@ -110,13 +110,13 @@ asset.onInitialize(function() openspace.addSceneGraphNode(node) end end) - + asset.onDeinitialize(function() for i = #nodes, 1, -1 do openspace.removeSceneGraphNode(nodes[i]) end end) - + for _, node in ipairs(nodes) do asset.export(node) end diff --git a/data/assets/scene/solarsystem/planets/saturn/minor/norse_group.asset b/data/assets/scene/solarsystem/planets/saturn/minor/norse_group.asset index f7ffb62ca7..8d8a19bcf4 100644 --- a/data/assets/scene/solarsystem/planets/saturn/minor/norse_group.asset +++ b/data/assets/scene/solarsystem/planets/saturn/minor/norse_group.asset @@ -10,7 +10,7 @@ local parentIdentifier = transforms.SaturnBarycenter.Identifier local parentSpice = "SATURN BARYCENTER" local tags = { "moon_solarSystem", "moon_giants", "moon_saturn", "moon_norse", "moon_minor" } local trailColor = { 0.5, 0.3, 0.3 } -local trailTags = { +local trailTags = { "moonTrail_solarSystem", "moonTrail_giants", "moonTrail_saturn", @@ -528,13 +528,13 @@ asset.onInitialize(function() openspace.addSceneGraphNode(node) end end) - + asset.onDeinitialize(function() for i = #nodes, 1, -1 do openspace.removeSceneGraphNode(nodes[i]) end end) - + for _, node in ipairs(nodes) do asset.export(node) end diff --git a/data/assets/scene/solarsystem/planets/saturn/minor/other_group.asset b/data/assets/scene/solarsystem/planets/saturn/minor/other_group.asset index 82576da913..e26228cffe 100644 --- a/data/assets/scene/solarsystem/planets/saturn/minor/other_group.asset +++ b/data/assets/scene/solarsystem/planets/saturn/minor/other_group.asset @@ -10,7 +10,7 @@ local parentIdentifier = transforms.SaturnBarycenter.Identifier local parentSpice = "SATURN BARYCENTER" local tags = { "moon_solarSystem", "moon_giants", "moon_saturn", "moon_other", "moon_minor" } local trailColor = { 0.5, 0.3, 0.3 } -local trailTags = { +local trailTags = { "moonTrail_solarSystem", "moonTrail_giants", "moonTrail_saturn", @@ -163,13 +163,13 @@ asset.onInitialize(function() openspace.addSceneGraphNode(node) end end) - + asset.onDeinitialize(function() for i = #nodes, 1, -1 do openspace.removeSceneGraphNode(nodes[i]) end end) - + for _, node in ipairs(nodes) do asset.export(node) end diff --git a/data/assets/scene/solarsystem/planets/saturn/minor/shepherd_group.asset b/data/assets/scene/solarsystem/planets/saturn/minor/shepherd_group.asset index 15d1402d0a..1a87863197 100644 --- a/data/assets/scene/solarsystem/planets/saturn/minor/shepherd_group.asset +++ b/data/assets/scene/solarsystem/planets/saturn/minor/shepherd_group.asset @@ -18,7 +18,7 @@ local parentSpice = "SATURN BARYCENTER" local guiPath = "/Solar System/Planets/Saturn/Moons/Shepherd Moons" local tags = { "moon_solarSystem", "moon_giants", "moon_saturn", "moon_shepherd", "moon_minor" } local trailColor = { 0.5, 0.3, 0.3 } -local trailTags = { +local trailTags = { "moonTrail_solarSystem", "moonTrail_giants", "moonTrail_saturn", diff --git a/data/assets/scene/solarsystem/planets/saturn/rhea/rhea.asset b/data/assets/scene/solarsystem/planets/saturn/rhea/rhea.asset index 0630f53e08..228d383dad 100644 --- a/data/assets/scene/solarsystem/planets/saturn/rhea/rhea.asset +++ b/data/assets/scene/solarsystem/planets/saturn/rhea/rhea.asset @@ -54,11 +54,11 @@ local Rhea = { asset.onInitialize(function() openspace.addSceneGraphNode(Rhea) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(Rhea) end) - + asset.export(Rhea) diff --git a/data/assets/scene/solarsystem/planets/saturn/rhea/trail.asset b/data/assets/scene/solarsystem/planets/saturn/rhea/trail.asset index a632b0928a..a985709375 100644 --- a/data/assets/scene/solarsystem/planets/saturn/rhea/trail.asset +++ b/data/assets/scene/solarsystem/planets/saturn/rhea/trail.asset @@ -29,11 +29,11 @@ local RheaTrail = { asset.onInitialize(function() openspace.addSceneGraphNode(RheaTrail) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(RheaTrail) end) - + asset.export(RheaTrail) diff --git a/data/assets/scene/solarsystem/planets/saturn/saturn.asset b/data/assets/scene/solarsystem/planets/saturn/saturn.asset index 7118460ce9..b3deadb06a 100644 --- a/data/assets/scene/solarsystem/planets/saturn/saturn.asset +++ b/data/assets/scene/solarsystem/planets/saturn/saturn.asset @@ -41,7 +41,7 @@ local Saturn = { TextureColor = texturesPath .. "color_original_single.png", TextureTransparency = texturesPath .. "trans_original_single.png", ColorFilter = 0.8, - + NightFactor = 1.0, Size = 140445000, Offset = { 74500 / 140445.100671159, 1.0 }, -- min / max extend @@ -49,7 +49,7 @@ local Saturn = { Shadows = { Enabled = true, DistanceFraction = 40.0 - } + } }, Tag = { "planet_solarSystem", "planet_giants" }, GUI = { @@ -84,12 +84,12 @@ asset.onInitialize(function() openspace.addSceneGraphNode(Saturn) openspace.addSceneGraphNode(SaturnLabel) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(SaturnLabel) openspace.removeSceneGraphNode(Saturn) end) - + asset.export(Saturn) asset.export(SaturnLabel) diff --git a/data/assets/scene/solarsystem/planets/saturn/tethys/tethys.asset b/data/assets/scene/solarsystem/planets/saturn/tethys/tethys.asset index 2ca80bdaee..49cf57b96b 100644 --- a/data/assets/scene/solarsystem/planets/saturn/tethys/tethys.asset +++ b/data/assets/scene/solarsystem/planets/saturn/tethys/tethys.asset @@ -52,11 +52,11 @@ local Tethys = { asset.onInitialize(function() openspace.addSceneGraphNode(Tethys) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(Tethys) end) - + asset.export(Tethys) diff --git a/data/assets/scene/solarsystem/planets/saturn/tethys/trail.asset b/data/assets/scene/solarsystem/planets/saturn/tethys/trail.asset index 281b5b2803..7fa5e94717 100644 --- a/data/assets/scene/solarsystem/planets/saturn/tethys/trail.asset +++ b/data/assets/scene/solarsystem/planets/saturn/tethys/trail.asset @@ -29,11 +29,11 @@ local TethysTrail = { asset.onInitialize(function() openspace.addSceneGraphNode(TethysTrail) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(TethysTrail) end) - + asset.export(TethysTrail) diff --git a/data/assets/scene/solarsystem/planets/saturn/titan/atmosphere.asset b/data/assets/scene/solarsystem/planets/saturn/titan/atmosphere.asset index 8af3a546e6..dad3403036 100644 --- a/data/assets/scene/solarsystem/planets/saturn/titan/atmosphere.asset +++ b/data/assets/scene/solarsystem/planets/saturn/titan/atmosphere.asset @@ -47,11 +47,11 @@ local Atmosphere = { asset.onInitialize(function() openspace.addSceneGraphNode(Atmosphere) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(Atmosphere) end) - + asset.export(Atmosphere) diff --git a/data/assets/scene/solarsystem/planets/saturn/titan/titan.asset b/data/assets/scene/solarsystem/planets/saturn/titan/titan.asset index 5108690898..b28dda5c94 100644 --- a/data/assets/scene/solarsystem/planets/saturn/titan/titan.asset +++ b/data/assets/scene/solarsystem/planets/saturn/titan/titan.asset @@ -54,11 +54,11 @@ local Titan = { asset.onInitialize(function() openspace.addSceneGraphNode(Titan) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(Titan) end) - + asset.export(Titan) diff --git a/data/assets/scene/solarsystem/planets/saturn/titan/trail.asset b/data/assets/scene/solarsystem/planets/saturn/titan/trail.asset index 705b7f02ad..65384fbc8d 100644 --- a/data/assets/scene/solarsystem/planets/saturn/titan/trail.asset +++ b/data/assets/scene/solarsystem/planets/saturn/titan/trail.asset @@ -29,11 +29,11 @@ local TitanTrail = { asset.onInitialize(function() openspace.addSceneGraphNode(TitanTrail) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(TitanTrail) end) - + asset.export(TitanTrail) diff --git a/data/assets/scene/solarsystem/planets/saturn/trail.asset b/data/assets/scene/solarsystem/planets/saturn/trail.asset index 9bf0bb2a6a..6e0b3f2f7a 100644 --- a/data/assets/scene/solarsystem/planets/saturn/trail.asset +++ b/data/assets/scene/solarsystem/planets/saturn/trail.asset @@ -27,11 +27,11 @@ local SaturnTrail = { asset.onInitialize(function() openspace.addSceneGraphNode(SaturnTrail) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(SaturnTrail) end) - + asset.export(SaturnTrail) diff --git a/data/assets/scene/solarsystem/planets/saturn/trail_barycenter.asset b/data/assets/scene/solarsystem/planets/saturn/trail_barycenter.asset index 9c926add1c..ad107322e6 100644 --- a/data/assets/scene/solarsystem/planets/saturn/trail_barycenter.asset +++ b/data/assets/scene/solarsystem/planets/saturn/trail_barycenter.asset @@ -28,11 +28,11 @@ local SaturnBarycenterTrail = { asset.onInitialize(function() openspace.addSceneGraphNode(SaturnBarycenterTrail) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(SaturnBarycenterTrail) end) - + asset.export(SaturnBarycenterTrail) diff --git a/data/assets/scene/solarsystem/planets/saturn/trail_earth.asset b/data/assets/scene/solarsystem/planets/saturn/trail_earth.asset index 4d088f0787..fe17f23f83 100644 --- a/data/assets/scene/solarsystem/planets/saturn/trail_earth.asset +++ b/data/assets/scene/solarsystem/planets/saturn/trail_earth.asset @@ -31,11 +31,11 @@ local SaturnTrailEarth = { asset.onInitialize(function() openspace.addSceneGraphNode(SaturnTrailEarth) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(SaturnTrailEarth) end) - + asset.export(SaturnTrailEarth) diff --git a/data/assets/scene/solarsystem/planets/saturn/transforms.asset b/data/assets/scene/solarsystem/planets/saturn/transforms.asset index 6457f1a17c..5883d58117 100644 --- a/data/assets/scene/solarsystem/planets/saturn/transforms.asset +++ b/data/assets/scene/solarsystem/planets/saturn/transforms.asset @@ -22,11 +22,11 @@ local SaturnBarycenter = { asset.onInitialize(function() openspace.addSceneGraphNode(SaturnBarycenter) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(SaturnBarycenter) end) - + asset.export(SaturnBarycenter) diff --git a/data/assets/scene/solarsystem/planets/uranus/inner_moons.asset b/data/assets/scene/solarsystem/planets/uranus/inner_moons.asset index ec89cafe3a..82d0a96fd3 100644 --- a/data/assets/scene/solarsystem/planets/uranus/inner_moons.asset +++ b/data/assets/scene/solarsystem/planets/uranus/inner_moons.asset @@ -9,7 +9,7 @@ local parentSpice = "URANUS BARYCENTER" local tags = { "moon_solarSystem", "moon_giants", "moon_uranus", "moon_inner", "moon_minor" } local trailColor = { 0.60, 0.65, 0.84 } -local trailTags = { +local trailTags = { "moonTrail_solarSystem", "moonTrail_giants", "moonTrail_uranus", @@ -248,13 +248,13 @@ asset.onInitialize(function() openspace.addSceneGraphNode(node) end end) - + asset.onDeinitialize(function() for i = #nodes, 1, -1 do openspace.removeSceneGraphNode(nodes[i]) end end) - + for _, node in ipairs(nodes) do asset.export(node) end diff --git a/data/assets/scene/solarsystem/planets/uranus/irregular_prograde_moons.asset b/data/assets/scene/solarsystem/planets/uranus/irregular_prograde_moons.asset index 7c865e7385..0d8ef7bade 100644 --- a/data/assets/scene/solarsystem/planets/uranus/irregular_prograde_moons.asset +++ b/data/assets/scene/solarsystem/planets/uranus/irregular_prograde_moons.asset @@ -8,7 +8,7 @@ local parentIdentifier = transforms.UranusBarycenter.Identifier local parentSpice = "URANUS BARYCENTER" local tags = { "moon_solarSystem", "moon_giants", "moon_uranus", "moon_irregular_prograde", "moon_minor" } local trailColor = { 0.60, 0.65, 0.84 } -local trailTags = { +local trailTags = { "moonTrail_solarSystem", "moonTrail_giants", "moonTrail_uranus", @@ -42,13 +42,13 @@ asset.onInitialize(function() openspace.addSceneGraphNode(node) end end) - + asset.onDeinitialize(function() for i = #nodes, 1, -1 do openspace.removeSceneGraphNode(nodes[i]) end end) - + for _, node in ipairs(nodes) do asset.export(node) end diff --git a/data/assets/scene/solarsystem/planets/uranus/irregular_retrograde_moons.asset b/data/assets/scene/solarsystem/planets/uranus/irregular_retrograde_moons.asset index 888821b770..05cffeb539 100644 --- a/data/assets/scene/solarsystem/planets/uranus/irregular_retrograde_moons.asset +++ b/data/assets/scene/solarsystem/planets/uranus/irregular_retrograde_moons.asset @@ -8,7 +8,7 @@ local parentIdentifier = transforms.UranusBarycenter.Identifier local parentSpice = "URANUS BARYCENTER" local tags = { "moon_solarSystem", "moon_giants", "moon_uranus", "moon_irregular_retrograde", "moon_minor" } local trailColor = { 0.60, 0.65, 0.84 } -local trailTags = { +local trailTags = { "moonTrail_solarSystem", "moonTrail_giants", "moonTrail_uranus", @@ -161,13 +161,13 @@ asset.onInitialize(function() openspace.addSceneGraphNode(node) end end) - + asset.onDeinitialize(function() for i = #nodes, 1, -1 do openspace.removeSceneGraphNode(nodes[i]) end end) - + for _, node in ipairs(nodes) do asset.export(node) end diff --git a/data/assets/scene/solarsystem/planets/uranus/major_moons.asset b/data/assets/scene/solarsystem/planets/uranus/major_moons.asset index e325ee67f9..10119fa76f 100644 --- a/data/assets/scene/solarsystem/planets/uranus/major_moons.asset +++ b/data/assets/scene/solarsystem/planets/uranus/major_moons.asset @@ -106,13 +106,13 @@ asset.onInitialize(function() openspace.addSceneGraphNode(node) end end) - + asset.onDeinitialize(function() for i = #nodes, 1, -1 do openspace.removeSceneGraphNode(nodes[i]) end end) - + for _, node in ipairs(nodes) do asset.export(node) end diff --git a/data/assets/scene/solarsystem/planets/uranus/trail.asset b/data/assets/scene/solarsystem/planets/uranus/trail.asset index 97c27a8053..f368239867 100644 --- a/data/assets/scene/solarsystem/planets/uranus/trail.asset +++ b/data/assets/scene/solarsystem/planets/uranus/trail.asset @@ -27,11 +27,11 @@ local UranusTrail = { asset.onInitialize(function() openspace.addSceneGraphNode(UranusTrail) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(UranusTrail) end) - + asset.export(UranusTrail) diff --git a/data/assets/scene/solarsystem/planets/uranus/trail_barycenter.asset b/data/assets/scene/solarsystem/planets/uranus/trail_barycenter.asset index 51cd58e5e7..05052ac3b7 100644 --- a/data/assets/scene/solarsystem/planets/uranus/trail_barycenter.asset +++ b/data/assets/scene/solarsystem/planets/uranus/trail_barycenter.asset @@ -28,11 +28,11 @@ local UranusBarycenterTrail = { asset.onInitialize(function() openspace.addSceneGraphNode(UranusBarycenterTrail) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(UranusBarycenterTrail) end) - + asset.export(UranusBarycenterTrail) diff --git a/data/assets/scene/solarsystem/planets/uranus/trail_earth.asset b/data/assets/scene/solarsystem/planets/uranus/trail_earth.asset index 43ccb1f95a..50e50024d5 100644 --- a/data/assets/scene/solarsystem/planets/uranus/trail_earth.asset +++ b/data/assets/scene/solarsystem/planets/uranus/trail_earth.asset @@ -31,11 +31,11 @@ local UranusTrailEarth = { asset.onInitialize(function() openspace.addSceneGraphNode(UranusTrailEarth) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(UranusTrailEarth) end) - + asset.export(UranusTrailEarth) diff --git a/data/assets/scene/solarsystem/planets/uranus/transforms.asset b/data/assets/scene/solarsystem/planets/uranus/transforms.asset index ea2e82e775..9ff90b5d67 100644 --- a/data/assets/scene/solarsystem/planets/uranus/transforms.asset +++ b/data/assets/scene/solarsystem/planets/uranus/transforms.asset @@ -24,11 +24,11 @@ local UranusBarycenter = { asset.onInitialize(function() openspace.addSceneGraphNode(UranusBarycenter) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(UranusBarycenter) end) - + asset.export(UranusBarycenter) diff --git a/data/assets/scene/solarsystem/planets/uranus/uranus.asset b/data/assets/scene/solarsystem/planets/uranus/uranus.asset index f1d836bc62..1256804acf 100644 --- a/data/assets/scene/solarsystem/planets/uranus/uranus.asset +++ b/data/assets/scene/solarsystem/planets/uranus/uranus.asset @@ -56,12 +56,12 @@ asset.onInitialize(function() openspace.addSceneGraphNode(Uranus) openspace.addSceneGraphNode(UranusLabel) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(UranusLabel) openspace.removeSceneGraphNode(Uranus) end) - + asset.export(Uranus) asset.export(UranusLabel) diff --git a/data/assets/scene/solarsystem/planets/venus/atmosphere.asset b/data/assets/scene/solarsystem/planets/venus/atmosphere.asset index 9a0f784386..bd5a5ad8ec 100644 --- a/data/assets/scene/solarsystem/planets/venus/atmosphere.asset +++ b/data/assets/scene/solarsystem/planets/venus/atmosphere.asset @@ -19,7 +19,7 @@ local Atmosphere = { Wavelengths = { 680, 550, 440 }, -- Reflection coefficients are given in km^-1 Scattering = { 19.518E-3, 13.83E-3, 3.65E-3 } - -- In Rayleigh scattering, the coefficients of + -- In Rayleigh scattering, the coefficients of -- absorption and scattering are the same. }, -- Thickness of atmosphere if its density were uniform, in Km @@ -36,7 +36,7 @@ local Atmosphere = { }, -- Mie Height scale (atmosphere thickness for constant density) in Km H_M = 5.42, - -- Mie Phase Function Value (G e [-1.0, 1.0]. + -- Mie Phase Function Value (G e [-1.0, 1.0]. -- If G = 1.0, Mie phase function = Rayleigh Phase Function) G = 0.85 }, @@ -55,11 +55,11 @@ local Atmosphere = { asset.onInitialize(function() openspace.addSceneGraphNode(Atmosphere) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(Atmosphere) end) - + asset.export(Atmosphere) diff --git a/data/assets/scene/solarsystem/planets/venus/trail.asset b/data/assets/scene/solarsystem/planets/venus/trail.asset index f1097c23b4..17a2b7a565 100644 --- a/data/assets/scene/solarsystem/planets/venus/trail.asset +++ b/data/assets/scene/solarsystem/planets/venus/trail.asset @@ -29,11 +29,11 @@ local VenusTrail = { asset.onInitialize(function() openspace.addSceneGraphNode(VenusTrail) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(VenusTrail) end) - + asset.export(VenusTrail) diff --git a/data/assets/scene/solarsystem/planets/venus/trail_barycenter.asset b/data/assets/scene/solarsystem/planets/venus/trail_barycenter.asset index ead7112d00..13001eacbf 100644 --- a/data/assets/scene/solarsystem/planets/venus/trail_barycenter.asset +++ b/data/assets/scene/solarsystem/planets/venus/trail_barycenter.asset @@ -28,11 +28,11 @@ local VenusBarycenterTrail = { asset.onInitialize(function() openspace.addSceneGraphNode(VenusBarycenterTrail) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(VenusBarycenterTrail) end) - + asset.export(VenusBarycenterTrail) diff --git a/data/assets/scene/solarsystem/planets/venus/trail_earth.asset b/data/assets/scene/solarsystem/planets/venus/trail_earth.asset index 2a6a6dd990..41ddf83e77 100644 --- a/data/assets/scene/solarsystem/planets/venus/trail_earth.asset +++ b/data/assets/scene/solarsystem/planets/venus/trail_earth.asset @@ -30,11 +30,11 @@ local VenusTrailEarth = { asset.onInitialize(function() openspace.addSceneGraphNode(VenusTrailEarth) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(VenusTrailEarth) end) - + asset.export(VenusTrailEarth) diff --git a/data/assets/scene/solarsystem/planets/venus/transforms.asset b/data/assets/scene/solarsystem/planets/venus/transforms.asset index 43e8daf16d..239c905652 100644 --- a/data/assets/scene/solarsystem/planets/venus/transforms.asset +++ b/data/assets/scene/solarsystem/planets/venus/transforms.asset @@ -22,11 +22,11 @@ local VenusBarycenter = { asset.onInitialize(function() openspace.addSceneGraphNode(VenusBarycenter) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(VenusBarycenter) end) - + asset.export(VenusBarycenter) diff --git a/data/assets/scene/solarsystem/planets/venus/venus.asset b/data/assets/scene/solarsystem/planets/venus/venus.asset index bc4f227572..285f6587f3 100644 --- a/data/assets/scene/solarsystem/planets/venus/venus.asset +++ b/data/assets/scene/solarsystem/planets/venus/venus.asset @@ -81,12 +81,12 @@ asset.onInitialize(function() openspace.addSceneGraphNode(Venus) openspace.addSceneGraphNode(VenusLabel) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(VenusLabel) openspace.removeSceneGraphNode(Venus) end) - + asset.export(Venus) asset.export(VenusLabel) diff --git a/data/assets/scene/solarsystem/sssb/amor_asteroid.asset b/data/assets/scene/solarsystem/sssb/amor_asteroid.asset index d8f0fb6cf7..d333ce1207 100644 --- a/data/assets/scene/solarsystem/sssb/amor_asteroid.asset +++ b/data/assets/scene/solarsystem/sssb/amor_asteroid.asset @@ -26,15 +26,15 @@ local object = { Earth's but interior to Mars'.]] } } - + asset.onInitialize(function() openspace.addSceneGraphNode(object) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(object) end) - + asset.export(object) diff --git a/data/assets/scene/solarsystem/sssb/apollo_asteroid.asset b/data/assets/scene/solarsystem/sssb/apollo_asteroid.asset index 8959b3fc01..a0afaf2538 100644 --- a/data/assets/scene/solarsystem/sssb/apollo_asteroid.asset +++ b/data/assets/scene/solarsystem/sssb/apollo_asteroid.asset @@ -30,11 +30,11 @@ local object = { asset.onInitialize(function() openspace.addSceneGraphNode(object) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(object) end) - + asset.export(object) diff --git a/data/assets/scene/solarsystem/sssb/astraea.asset b/data/assets/scene/solarsystem/sssb/astraea.asset index a6b9a9722a..cccb2f6d77 100644 --- a/data/assets/scene/solarsystem/sssb/astraea.asset +++ b/data/assets/scene/solarsystem/sssb/astraea.asset @@ -50,12 +50,12 @@ asset.onInitialize(function() openspace.addSceneGraphNode(AstraeaPosition) openspace.addSceneGraphNode(AstraeaTrail) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(AstraeaTrail) openspace.removeSceneGraphNode(AstraeaPosition) end) - + asset.export(AstraeaPosition) asset.export(AstraeaTrail) diff --git a/data/assets/scene/solarsystem/sssb/aten_asteroid.asset b/data/assets/scene/solarsystem/sssb/aten_asteroid.asset index bde6a0cd97..9afd541a71 100644 --- a/data/assets/scene/solarsystem/sssb/aten_asteroid.asset +++ b/data/assets/scene/solarsystem/sssb/aten_asteroid.asset @@ -30,11 +30,11 @@ local object = { asset.onInitialize(function() openspace.addSceneGraphNode(object) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(object) end) - + asset.export(object) diff --git a/data/assets/scene/solarsystem/sssb/atira_asteroid.asset b/data/assets/scene/solarsystem/sssb/atira_asteroid.asset index 31e6221811..440ccb83cf 100644 --- a/data/assets/scene/solarsystem/sssb/atira_asteroid.asset +++ b/data/assets/scene/solarsystem/sssb/atira_asteroid.asset @@ -30,11 +30,11 @@ local object = { asset.onInitialize(function() openspace.addSceneGraphNode(object) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(object) end) - + asset.export(object) diff --git a/data/assets/scene/solarsystem/sssb/c2019y4atlas.asset b/data/assets/scene/solarsystem/sssb/c2019y4atlas.asset index 61847df142..d9bad7a287 100644 --- a/data/assets/scene/solarsystem/sssb/c2019y4atlas.asset +++ b/data/assets/scene/solarsystem/sssb/c2019y4atlas.asset @@ -54,12 +54,12 @@ asset.onInitialize(function() openspace.addSceneGraphNode(C2019Y4AtlasPosition) openspace.addSceneGraphNode(C2019Y4AtlasTrail) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(C2019Y4AtlasTrail) openspace.removeSceneGraphNode(C2019Y4AtlasPosition) end) - + asset.export(C2019Y4AtlasPosition) asset.export(C2019Y4AtlasTrail) diff --git a/data/assets/scene/solarsystem/sssb/centaur_asteroid.asset b/data/assets/scene/solarsystem/sssb/centaur_asteroid.asset index c86a9f5ebb..4720ade3cf 100644 --- a/data/assets/scene/solarsystem/sssb/centaur_asteroid.asset +++ b/data/assets/scene/solarsystem/sssb/centaur_asteroid.asset @@ -30,13 +30,13 @@ local object = { asset.onInitialize(function() openspace.addSceneGraphNode(object) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(object) end) - + asset.export(object) - + asset.meta = { diff --git a/data/assets/scene/solarsystem/sssb/chiron-type_comet.asset b/data/assets/scene/solarsystem/sssb/chiron-type_comet.asset index 45693cd7e7..d5a55e7f24 100644 --- a/data/assets/scene/solarsystem/sssb/chiron-type_comet.asset +++ b/data/assets/scene/solarsystem/sssb/chiron-type_comet.asset @@ -30,11 +30,11 @@ local object = { asset.onInitialize(function() openspace.addSceneGraphNode(object) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(object) end) - + asset.export(object) diff --git a/data/assets/scene/solarsystem/sssb/encke-type_comet.asset b/data/assets/scene/solarsystem/sssb/encke-type_comet.asset index 011f588df5..494ff0f797 100644 --- a/data/assets/scene/solarsystem/sssb/encke-type_comet.asset +++ b/data/assets/scene/solarsystem/sssb/encke-type_comet.asset @@ -30,13 +30,13 @@ local object = { asset.onInitialize(function() openspace.addSceneGraphNode(object) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(object) end) - + asset.export(object) - + asset.meta = { diff --git a/data/assets/scene/solarsystem/sssb/halley-type_comet.asset b/data/assets/scene/solarsystem/sssb/halley-type_comet.asset index 2eb3f87ac2..347c4ede8a 100644 --- a/data/assets/scene/solarsystem/sssb/halley-type_comet.asset +++ b/data/assets/scene/solarsystem/sssb/halley-type_comet.asset @@ -29,11 +29,11 @@ local object = { asset.onInitialize(function() openspace.addSceneGraphNode(object) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(object) end) - + asset.export(object) diff --git a/data/assets/scene/solarsystem/sssb/inner_main_belt_asteroid.asset b/data/assets/scene/solarsystem/sssb/inner_main_belt_asteroid.asset index 7bd30ffefa..06310f1fe2 100644 --- a/data/assets/scene/solarsystem/sssb/inner_main_belt_asteroid.asset +++ b/data/assets/scene/solarsystem/sssb/inner_main_belt_asteroid.asset @@ -30,11 +30,11 @@ local object = { asset.onInitialize(function() openspace.addSceneGraphNode(object) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(object) end) - + asset.export(object) diff --git a/data/assets/scene/solarsystem/sssb/jupiter-family_comet.asset b/data/assets/scene/solarsystem/sssb/jupiter-family_comet.asset index 64e79450f4..3f1f5478fb 100644 --- a/data/assets/scene/solarsystem/sssb/jupiter-family_comet.asset +++ b/data/assets/scene/solarsystem/sssb/jupiter-family_comet.asset @@ -30,11 +30,11 @@ local object = { asset.onInitialize(function() openspace.addSceneGraphNode(object) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(object) end) - + asset.export(object) diff --git a/data/assets/scene/solarsystem/sssb/jupiter_trojan_asteroid.asset b/data/assets/scene/solarsystem/sssb/jupiter_trojan_asteroid.asset index 282cc1cc41..2764a497c5 100644 --- a/data/assets/scene/solarsystem/sssb/jupiter_trojan_asteroid.asset +++ b/data/assets/scene/solarsystem/sssb/jupiter_trojan_asteroid.asset @@ -30,11 +30,11 @@ local object = { asset.onInitialize(function() openspace.addSceneGraphNode(object) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(object) end) - + asset.export(object) diff --git a/data/assets/scene/solarsystem/sssb/main_belt_asteroid.asset b/data/assets/scene/solarsystem/sssb/main_belt_asteroid.asset index 442ccbf0b8..6d0cb6ed3a 100644 --- a/data/assets/scene/solarsystem/sssb/main_belt_asteroid.asset +++ b/data/assets/scene/solarsystem/sssb/main_belt_asteroid.asset @@ -31,11 +31,11 @@ local object = { asset.onInitialize(function() openspace.addSceneGraphNode(object) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(object) end) - + asset.export(object) diff --git a/data/assets/scene/solarsystem/sssb/mars-crossing_asteroid.asset b/data/assets/scene/solarsystem/sssb/mars-crossing_asteroid.asset index b840a15e07..a3d41f26ba 100644 --- a/data/assets/scene/solarsystem/sssb/mars-crossing_asteroid.asset +++ b/data/assets/scene/solarsystem/sssb/mars-crossing_asteroid.asset @@ -30,11 +30,11 @@ local object = { asset.onInitialize(function() openspace.addSceneGraphNode(object) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(object) end) - + asset.export(object) diff --git a/data/assets/scene/solarsystem/sssb/outer_main_belt_asteroid.asset b/data/assets/scene/solarsystem/sssb/outer_main_belt_asteroid.asset index 7fb79168eb..5d23b83adb 100644 --- a/data/assets/scene/solarsystem/sssb/outer_main_belt_asteroid.asset +++ b/data/assets/scene/solarsystem/sssb/outer_main_belt_asteroid.asset @@ -29,11 +29,11 @@ local object = { asset.onInitialize(function() openspace.addSceneGraphNode(object) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(object) end) - + asset.export(object) diff --git a/data/assets/scene/solarsystem/sssb/pha.asset b/data/assets/scene/solarsystem/sssb/pha.asset index e5ae832015..c0e388e988 100644 --- a/data/assets/scene/solarsystem/sssb/pha.asset +++ b/data/assets/scene/solarsystem/sssb/pha.asset @@ -32,11 +32,11 @@ local object = { asset.onInitialize(function() openspace.addSceneGraphNode(object) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(object) end) - + asset.export(object) diff --git a/data/assets/scene/solarsystem/sssb/swifttuttle.asset b/data/assets/scene/solarsystem/sssb/swifttuttle.asset index 71610aed03..5d3f81311c 100644 --- a/data/assets/scene/solarsystem/sssb/swifttuttle.asset +++ b/data/assets/scene/solarsystem/sssb/swifttuttle.asset @@ -50,12 +50,12 @@ asset.onInitialize(function() openspace.addSceneGraphNode(SwiftTuttlePosition) openspace.addSceneGraphNode(SwiftTuttleTrail) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(SwiftTuttleTrail) openspace.removeSceneGraphNode(SwiftTuttlePosition) end) - + asset.export(SwiftTuttlePosition) asset.export(SwiftTuttleTrail) diff --git a/data/assets/scene/solarsystem/sssb/tesla_roadster.asset b/data/assets/scene/solarsystem/sssb/tesla_roadster.asset index 134c86b786..f771556121 100644 --- a/data/assets/scene/solarsystem/sssb/tesla_roadster.asset +++ b/data/assets/scene/solarsystem/sssb/tesla_roadster.asset @@ -52,12 +52,12 @@ asset.onInitialize(function() openspace.addSceneGraphNode(TeslaPosition) openspace.addSceneGraphNode(TeslaRoadsterTrail) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(TeslaRoadsterTrail) openspace.removeSceneGraphNode(TeslaPosition) end) - + asset.export(TeslaPosition) asset.export(TeslaRoadsterTrail) diff --git a/data/assets/scene/solarsystem/sssb/transneptunian_object_asteroid.asset b/data/assets/scene/solarsystem/sssb/transneptunian_object_asteroid.asset index 2bf8dd14fb..d96ec0484a 100644 --- a/data/assets/scene/solarsystem/sssb/transneptunian_object_asteroid.asset +++ b/data/assets/scene/solarsystem/sssb/transneptunian_object_asteroid.asset @@ -30,11 +30,11 @@ local object = { asset.onInitialize(function() openspace.addSceneGraphNode(object) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(object) end) - + asset.export(object) diff --git a/data/assets/scene/solarsystem/sun/glare.asset b/data/assets/scene/solarsystem/sun/glare.asset index 1185d5d456..6f497ca306 100644 --- a/data/assets/scene/solarsystem/sun/glare.asset +++ b/data/assets/scene/solarsystem/sun/glare.asset @@ -32,11 +32,11 @@ local SunGlare = { asset.onInitialize(function() openspace.addSceneGraphNode(SunGlare) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(SunGlare) end) - + asset.export(SunGlare) diff --git a/data/assets/scene/solarsystem/sun/habitablezone.asset b/data/assets/scene/solarsystem/sun/habitablezone.asset index 2cf9747f1f..b6852e07d7 100644 --- a/data/assets/scene/solarsystem/sun/habitablezone.asset +++ b/data/assets/scene/solarsystem/sun/habitablezone.asset @@ -23,11 +23,11 @@ local HabitableZone = { asset.onInitialize(function() openspace.addSceneGraphNode(HabitableZone) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(HabitableZone) end) - + asset.export(HabitableZone) diff --git a/data/assets/scene/solarsystem/sun/marker.asset b/data/assets/scene/solarsystem/sun/marker.asset index d2f0ff3a3a..b293d2f82c 100644 --- a/data/assets/scene/solarsystem/sun/marker.asset +++ b/data/assets/scene/solarsystem/sun/marker.asset @@ -31,11 +31,11 @@ local SunMarker = { asset.onInitialize(function() openspace.addSceneGraphNode(SunMarker) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(SunMarker) end) - + asset.export(SunMarker) diff --git a/data/assets/scene/solarsystem/sun/transforms.asset b/data/assets/scene/solarsystem/sun/transforms.asset index cd9f61713c..aaa9949ef2 100644 --- a/data/assets/scene/solarsystem/sun/transforms.asset +++ b/data/assets/scene/solarsystem/sun/transforms.asset @@ -90,14 +90,14 @@ asset.onInitialize(function() openspace.addSceneGraphNode(SunIAU) openspace.addSceneGraphNode(SunECLIPJ2000) end) - + asset.onDeinitialize(function() openspace.removeSceneGraphNode(SunECLIPJ2000) openspace.removeSceneGraphNode(SunIAU) openspace.removeSceneGraphNode(SunCenter) openspace.removeSceneGraphNode(SolarSystemBarycenter) end) - + asset.export(SolarSystemBarycenter) asset.export(SunCenter) asset.export(SunIAU) diff --git a/data/assets/spice/base.asset b/data/assets/spice/base.asset index 16314c0c6d..87fb784bab 100644 --- a/data/assets/spice/base.asset +++ b/data/assets/spice/base.asset @@ -17,10 +17,10 @@ asset.onInitialize(function() openspace.spice.loadKernel(kernel) end end) - + asset.onDeinitialize(function() for i = #kernels, 1, -1 do - openspace.spice.unloadKernel(kernels[i]) + openspace.spice.unloadKernel(kernels[i]) end end) diff --git a/data/assets/util/asset_helper.asset b/data/assets/util/asset_helper.asset index 20ada1e52a..07b229d7e1 100644 --- a/data/assets/util/asset_helper.asset +++ b/data/assets/util/asset_helper.asset @@ -16,7 +16,7 @@ local registerSpiceKernels = function (spiceAsset, kernels) spiceAsset.onDeinitialize(function () for i = #kernels, 1, -1 do local kernel = kernels[i] - openspace.spice.unloadKernel(kernel) + openspace.spice.unloadKernel(kernel) end end) end @@ -170,7 +170,7 @@ local createModelPart = function (parent, sunLightSourceNode, models, geometry, GeometryFile = models .. "/" .. geometry .. ".obj", LightSources = lightSources, PerformShading = performShading, - DisableFaceCulling = true + DisableFaceCulling = true }, GUI = { Hidden = true diff --git a/data/assets/util/default_keybindings.asset b/data/assets/util/default_keybindings.asset index 6fd051350e..4e7026033a 100644 --- a/data/assets/util/default_keybindings.asset +++ b/data/assets/util/default_keybindings.asset @@ -83,7 +83,7 @@ local toggle_roll_friction = { Documentation = "Toggles the roll friction of the camera. If it is disabled, the camera rolls around its own axis indefinitely", GuiPath = "/Navigation", IsLocal = false, - + Key = "Ctrl+f" } @@ -100,7 +100,7 @@ local fade_to_black = { Documentation = "Toggles the fade to black within 3 seconds or shows the rendering after 3 seconds", GuiPath = "/Rendering", IsLocal = false, - + Key = "w" } @@ -111,7 +111,7 @@ local toggle_main_gui = { Documentation = "Toggles the main GUI", GuiPath = "/System/GUI", IsLocal = true, - + Key = "Tab" } @@ -127,7 +127,7 @@ openspace.setPropertyValueSingle("RenderEngine.ShowCamera", not isEnabled)]], Documentation = "Toggles the dashboard and overlays", GuiPath = "/System/GUI", IsLocal = true, - + Key = "Shift+Tab" } @@ -138,7 +138,7 @@ local toggle_master_rendering = { Documentation = "Toggles the rendering on master", GuiPath = "/System/Rendering", IsLocal = true, - + Key = "Alt+R" } @@ -149,7 +149,7 @@ local next_delta_step_interpolate = { Documentation = "Smoothly interpolates the simulation speed to the next delta time step, if one exists", GuiPath = "/Time/Simulation Speed", IsLocal = true, - + Key = "Right" } @@ -160,7 +160,7 @@ local next_delta_step_immediate = { Documentation = "Immediately set the simulation speed to the next delta time step, if one exists", GuiPath = "/Time/Simulation Speed", IsLocal = true, - + Key = "Shift+Right" } @@ -171,7 +171,7 @@ local previous_delta_step_interpolate = { Documentation = "Smoothly interpolates the simulation speed to the previous delta time step, if one exists", GuiPath = "/Time/Simulation Speed", IsLocal = true, - + Key = "Left" } @@ -182,7 +182,7 @@ local previous_delta_step_immediate = { Documentation = "Immediately set the simulation speed to the previous delta time step, if one exists", GuiPath = "/Time/Simulation Speed", IsLocal = true, - + Key = "Shift+Left" } diff --git a/data/assets/util/generate_bookmarks.asset b/data/assets/util/generate_bookmarks.asset index 989a1720ef..c1e3940f96 100644 --- a/data/assets/util/generate_bookmarks.asset +++ b/data/assets/util/generate_bookmarks.asset @@ -20,7 +20,7 @@ local getBookmarks = function (guiPath, bookmarkfile) Scale = { Type = "StaticScale", Scale = tonumber(scale); - }, + }, Rotation = { Type = "StaticRotation", Rotation = { @@ -65,7 +65,7 @@ local getBookmarks = function (guiPath, bookmarkfile) } if (altitude == nil) then sgn.Transform.Translation.UseHeightMap = true; - else + else sgn.Transform.Translation.UseHeightMap = false; sgn.Transform.Translation.Altitude = tonumber(altitude); end diff --git a/data/assets/util/script_scheduler_helper.asset b/data/assets/util/script_scheduler_helper.asset index 129732ab43..e25aebe31d 100644 --- a/data/assets/util/script_scheduler_helper.asset +++ b/data/assets/util/script_scheduler_helper.asset @@ -1,6 +1,6 @@ local renderableHelper = asset.require("./renderable_helper") --- Function that schedules scripts setting the enabled property +-- Function that schedules scripts setting the enabled property -- of to at time