mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-01-06 11:39:49 -06:00
31 lines
879 B
Lua
31 lines
879 B
Lua
local layer = {
|
|
Identifier = "ScienceOnASphere",
|
|
File = "C:/Users/ylvaselling/Documents/Work/Testmovies/4096-4.mp4",
|
|
StartTime = '2004 01 01 00:00:00',
|
|
EndTime = '2004 06 05 20:00:00',
|
|
Name = "Science On A Sphere Video",
|
|
PlaybackMode = "MapToSimulationTime",
|
|
Enabled = asset.enabled,
|
|
Type = "VideoTileLayer",
|
|
Description = [[Testing video]]
|
|
}
|
|
|
|
asset.onInitialize(function()
|
|
openspace.globebrowsing.addLayer("Earth", "ColorLayers", layer)
|
|
end)
|
|
|
|
asset.onDeinitialize(function()
|
|
openspace.globebrowsing.deleteLayer("Earth", "ColorLayers", layer)
|
|
end)
|
|
|
|
asset.export("layer", layer)
|
|
|
|
asset.meta = {
|
|
Name = "Aqua Modis (Temporal)",
|
|
Version = "1.1",
|
|
Description = "GIBS hosted layer",
|
|
Author = "NASA EOSDIS Global Imagery Browse Services",
|
|
URL = "https://earthdata.nasa.gov/eosdis/science-system-description/eosdis-components/gibs",
|
|
License = "NASA"
|
|
}
|