Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
a52fd99
loosen some dependencies and update ImagesetItem.vue to be compositio…
johnarban Jun 4, 2026
78ee9cb
update wwt engine dependency
johnarban Jun 5, 2026
a011ddb
don't rely on local data anymore
johnarban Jun 5, 2026
2bc1911
implement a symlog scaled v-slider for better vmin/vmax range adjustm…
johnarban Jun 7, 2026
8acb248
update @wwtelescope dependencies
johnarban Jun 7, 2026
d1a8a02
using the latest pinia requires these overrrides
johnarban Jun 7, 2026
4ff0f47
only fire spreadsheet hover callback once per hover
johnarban Jun 7, 2026
b1a046d
all fits should follow the wtml settings
johnarban Jun 7, 2026
2209e7c
load full data into spreadhseet layer
johnarban Jun 7, 2026
bd13a42
add double-range-slider webcomponent
johnarban Jun 8, 2026
2b5bca0
implement filtering. useSpreadsheetLayer new returns setFilter and ap…
johnarban Jun 8, 2026
594e9f9
enable 3d view
johnarban Jun 8, 2026
f0d239e
update the filter styling
johnarban Jun 8, 2026
ee758ff
start setting up layout
johnarban Jun 8, 2026
0b7bd24
add a button for sources in view. add vueuse dependency to get a thro…
johnarban Jun 8, 2026
206c239
loading too much dynamically was causing things to sometimes not load…
johnarban Jun 8, 2026
2957f73
a bunch of ui updates - not necessrily nice ones though. just getting…
johnarban Jun 8, 2026
ddd9751
let values should have been in the composable instead of global
johnarban Jun 9, 2026
cd1925e
properly declare the slot binding
johnarban Jun 9, 2026
3d75488
note the bug potential on sources in view that i don't feel like figu…
johnarban Jun 9, 2026
3c7fae0
DEFAULT_FITS_LAYER_SETTINGS -> FITS_LAYER_SETTINGS
johnarban Jun 9, 2026
9846e49
fix a couple css mistakes
johnarban Jun 9, 2026
ee06140
fits image loading states should be independent
johnarban Jun 9, 2026
f7fd2f8
add glimpse/herschel picker
johnarban Jun 9, 2026
f58c8dd
just limit the width of the top buttons for now
johnarban Jun 9, 2026
2bcc003
Merge branch 'main' into almagal-browser
johnarban Jun 9, 2026
78db724
doing some clean up
johnarban Jun 9, 2026
9eab6a0
add decaps and use herschel spire hips layers for better resolution c…
johnarban Jun 9, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 6 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,21 +7,20 @@
"@fortawesome/fontawesome-svg-core": "^7.2.0",
"@fortawesome/free-solid-svg-icons": "^7.2.0",
"@fortawesome/vue-fontawesome": "^3.1.3",
"@google/model-viewer": "^4.2.0",
"@mdi/font": "^7.4.47",
"@wwtelescope/engine": "^7.31.0",
"@wwtelescope/engine-pinia": "^0.11.0",
"@vueuse/core": "^14.3.0",
"@wwtelescope/engine": "^7.37.1",
"@wwtelescope/engine-pinia": "^0.14.0",
"double-range-slider-web": "^0.1.3",
"focus-trap": "^7.0.1",
"focus-trap-vue": "^4.1.0",
"three": "^0.182.0",
"vue": "^3.5.31",
"vuetify": "^3.4.11"
},
"devDependencies": {
"@eslint/js": "latest",
"@tsconfig/node22": "^22.0.5",
"@types/node": "^25.5.0",
"@types/three": "^0",
"@vitejs/plugin-legacy": "^7.0.1",
"@vitejs/plugin-vue": "^6.0.5",
"@vue/tsconfig": "^0.9.1",
Expand All @@ -32,7 +31,6 @@
"less": "^4.6.4",
"less-loader": "^12.3.2",
"npm-run-all2": "^8.0.4",
"pinia": "^3.0.4",
"rimraf": "^6.1.3",
"terser": "^5.46.1",
"typescript": "^5.9.3",
Expand All @@ -58,7 +56,7 @@
"name": "@cosmicds/bubbling-galaxies",
"packageManager": "yarn@4.12.0",
"resolutions": {
"@wwtelescope/engine-pinia": "^0.11.0",
"pinia": "^3.0.4"
"@wwtelescope/engine-pinia": "^0.14.0",
"pinia": "^2.3.1"
}
}
48 changes: 48 additions & 0 deletions public/HIPS_TEMPLATE.wtml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
<?xml version='1.0' encoding='UTF-8'?>
<Folder Browseable="True"
Group="Explorer"
Name="[[[[NAME]]]]"
Searchable="True">
<Place Angle="0"
AngularSize="0"
Constellation="PSC"
DataSetType="Sky"
Dec="0"
Magnitude="0"
Name="[[NAME]]"
Opacity="100"
RA="0"
Rotation="0"
Thumbnail="[[URL]]/preview.jpg"
ZoomLevel="0">
<ForegroundImageSet>
<ImageSet BandPass="IR"
BaseDegreesPerTile="180"
BaseTileLevel="0"
BottomsUp="False"
CenterX="0"
CenterY="0"
DataSetType="Sky"
ElevationModel="False"
FileType="jpeg"
Generic="False"
MeanRadius="1"
Name="[[NAME]]"
Projection="Healpix"
QuadTreeMap="0123"
ReferenceFrame="Sky"
Rotation="0"
Sparse="True"
StockSet="False"
TileLevels="9"
Url="[[URL]]/Norder{0}/Dir{1}/Npix{2}"
WidthFactor="1">
<Credits>Pull from HiPS properties file</Credits>
<CreditsUrl>hips_service_url</CreditsUrl>
<Description>obs_description</Description>
<ThumbnailUrl>[[URL]]/preview.jpg</ThumbnailUrl> <!-- If available -->
</ImageSet>
<!-- Check hips_tile_format for the FileType -->
</ForegroundImageSet>
</Place>
</Folder>
49 changes: 49 additions & 0 deletions public/decaps_dr1.wtml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
<?xml version='1.0' encoding='UTF-8'?>
<Folder Browseable="True"
Group="Explorer"
Name="DECaPS DR1"
Searchable="True">
<Place Angle="0"
AngularSize="0"
Constellation="PSC"
DataSetType="Sky"
Dec="0"
Magnitude="0"
Name="DECaPS DR1"
Opacity="100"
RA="0"
Rotation="0"
Thumbnail="https://alasky.cds.unistra.fr/DECaPS/DR1/color/preview.jpg"
ZoomLevel="0">
<ForegroundImageSet>
<ImageSet BandPass="Visible"
BaseDegreesPerTile="180"
BaseTileLevel="0"
BottomsUp="False"
CenterX="0"
CenterY="0"
DataSetType="Sky"
ElevationModel="False"
FileType="png jpeg"
Generic="False"
MeanRadius="1"
Name="DECaPS DR1 color"
Projection="Healpix"
QuadTreeMap="0123"
ReferenceFrame="Sky"
Rotation="0"
Sparse="True"
StockSet="False"
TileLevels="11"
Url="https://alasky.cds.unistra.fr/DECaPS/DR1/color/Norder{0}/Dir{1}/Npix{2}"
WidthFactor="1">
<Credits>DECaM Plane Survey / NOAO</Credits>
<CreditsUrl>http://decaps.skymaps.info/</CreditsUrl>
<Description>HiPS List ID: CDS/P/DECaPS/DR1/color</Description>
<ThumbnailUrl>https://alasky.cds.unistra.fr/DECaPS/DR1/color/preview.jpg</ThumbnailUrl>
</ImageSet>
</ImageSet>
<!-- Check hips_tile_format for the FileType -->
</ForegroundImageSet>
</Place>
</Folder>
13 changes: 13 additions & 0 deletions public/decaps_dr2.wtml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<?xml version='1.0' encoding='UTF-8'?>
<Folder Browseable="True" Group="Explorer" Name="DECaPS DR2 color" Searchable="True">
<Place Angle="0" AngularSize="0" Constellation="CRU" DataSetType="Sky" Dec="-63.3032221" Magnitude="0" Name="DECaPS DR2 color" Opacity="100" RA="12.595271946666665" Rotation="0" Thumbnail="https://alasky.cds.unistra.fr/DECaPS/DR2/CDS_P_DECaPS_DR2_color/preview.jpg" ZoomLevel="360">
<ForegroundImageSet>
<ImageSet BandPass="Visible" BaseDegreesPerTile="180" BaseTileLevel="0" BottomsUp="False" CenterX="0" CenterY="0" DataSetType="Sky" ElevationModel="False" FileType="png" Generic="False" MeanRadius="1" Name="DECaPS DR2 color" Projection="Healpix" QuadTreeMap="0123" ReferenceFrame="Sky" Rotation="0" Sparse="True" StockSet="False" TileLevels="11" Url="https://alasky.cds.unistra.fr/DECaPS/DR2/CDS_P_DECaPS_DR2_color/Norder{0}/Dir{1}/Npix{2}" WidthFactor="1">
<Credits>DECaM Plane Survey / NOIRLab</Credits>
<CreditsUrl>http://decaps.skymaps.info/</CreditsUrl>
<Description>DECaPS2 is a five-band optical and near-infrared survey of the southern Galactic plane with the Dark Energy Camera (DECam) on the 4.0m Blanco telescope at the Cerro Tololo Inter-American Observatory in Chile. The survey is designed to reach past the main-sequence turn-off at the distance of the Galactic center through a reddening E(B-V) of 1.5 mag, with a typical single-exposure depth of 23.7, 22.7, 22.2, 21.7, and 20.9 mag in the grizY bands, and with average seeing around 1&amp;#x27;&amp;#x27;. The footprint covers | b | &amp;lt; 10 deg , 6 deg &amp;gt; l &amp;gt; - 124 deg (essentially the low latitude Galactic plane south of delta &amp;lt; - 24 deg , a total of about 2700 square degrees (6.5% of the sky). DECaPS2 simultaneously solves for the positions and fluxes of all the sources in each image, delivering positions and fluxes of 3.32 billion stars with up to 5 mmag repeatability. Most of these objects are highly reddened and deep in the Galactic disk, probing the structure and properties of the Milky Way and its interstellar medium.</Description>
<ThumbnailUrl>https://alasky.cds.unistra.fr/DECaPS/DR2/CDS_P_DECaPS_DR2_color/preview.jpg</ThumbnailUrl>
</ImageSet>
</ForegroundImageSet>
</Place>
</Folder>
Binary file removed public/gal_plane_toast/0/0/0_0.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/1/1/1_0.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/1/1/1_1.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/10/905/905_102.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/10/906/906_102.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/10/976/976_610.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/11/1811/1811_205.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/11/1812/1812_205.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/11/1952/1952_1220.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/12/3622/3622_410.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/12/3624/3624_410.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/12/3625/3625_411.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/12/3904/3904_2440.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/12/3904/3904_2441.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/13/7244/7244_820.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/13/7249/7249_821.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/13/7251/7251_822.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/13/7251/7251_823.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/13/7808/7808_4881.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/13/7808/7808_4882.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/13/7809/7809_4881.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/13/7809/7809_4882.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/14/14489/14489_1641.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/14/14498/14498_1643.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/14/14499/14499_1643.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/14/14502/14502_1645.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/14/14502/14502_1646.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/14/15617/15617_9763.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/14/15617/15617_9764.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/14/15618/15618_9762.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/14/15618/15618_9763.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/14/15618/15618_9764.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/15/28978/28978_3282.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/15/28978/28978_3283.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/15/28979/28979_3282.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/15/28979/28979_3283.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/15/28997/28997_3286.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/15/28997/28997_3287.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/15/28998/28998_3286.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/15/28998/28998_3287.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/15/29004/29004_3290.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/15/29004/29004_3291.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/15/29004/29004_3292.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/15/29005/29005_3290.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/15/29005/29005_3291.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/15/29005/29005_3292.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/15/31235/31235_19527.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/15/31235/31235_19528.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/15/31236/31236_19526.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/15/31236/31236_19527.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/15/31236/31236_19528.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/15/31237/31237_19525.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/15/31237/31237_19526.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/15/31237/31237_19527.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/16/57956/57956_6564.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/16/57956/57956_6565.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/16/57956/57956_6566.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/16/57957/57957_6564.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/16/57957/57957_6565.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/16/57957/57957_6566.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/16/57957/57957_6567.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/16/57958/57958_6564.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/16/57958/57958_6565.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/16/57958/57958_6566.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/16/57958/57958_6567.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/16/57959/57959_6564.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/16/57959/57959_6565.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/16/57959/57959_6566.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/16/57959/57959_6567.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/16/57994/57994_6572.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/16/57994/57994_6573.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/16/57994/57994_6574.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/16/57994/57994_6575.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/16/57995/57995_6572.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/16/57995/57995_6573.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/16/57995/57995_6574.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/16/57995/57995_6575.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/16/57996/57996_6572.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/16/57996/57996_6573.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/16/57996/57996_6574.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/16/57996/57996_6575.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/16/57997/57997_6573.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/16/57997/57997_6574.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/16/57997/57997_6575.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/16/58008/58008_6581.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/16/58008/58008_6582.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/16/58008/58008_6583.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/16/58009/58009_6580.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/16/58009/58009_6581.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/16/58009/58009_6582.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/16/58009/58009_6583.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/16/58009/58009_6584.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/16/58010/58010_6581.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/16/58010/58010_6582.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/16/58010/58010_6583.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/16/58010/58010_6584.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/16/58011/58011_6581.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/16/58011/58011_6582.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/16/58011/58011_6583.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/16/62471/62471_39055.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/16/62471/62471_39056.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/16/62472/62472_39053.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/16/62472/62472_39054.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/16/62472/62472_39055.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/16/62472/62472_39056.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/16/62473/62473_39052.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/16/62473/62473_39053.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/16/62473/62473_39054.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/16/62473/62473_39055.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/16/62473/62473_39056.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/16/62474/62474_39051.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/16/62474/62474_39052.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/16/62474/62474_39053.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/16/62474/62474_39054.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/16/62474/62474_39055.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/16/62475/62475_39051.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/16/62475/62475_39052.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/16/62475/62475_39053.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/16/62475/62475_39054.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/2/3/3_0.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/2/3/3_2.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/3/7/7_0.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/3/7/7_4.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/4/14/14_1.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/4/15/15_9.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/5/28/28_3.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/5/30/30_19.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/6/56/56_6.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/6/61/61_38.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/7/113/113_12.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/7/122/122_76.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/8/226/226_25.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/8/244/244_152.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/9/452/452_51.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/9/453/453_51.fits
Binary file not shown.
Binary file removed public/gal_plane_toast/9/488/488_305.fits
Binary file not shown.
45 changes: 0 additions & 45 deletions public/gal_plane_toast/index_rel.wtml

This file was deleted.

13 changes: 13 additions & 0 deletions public/herschel_spire_rgb.wtml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<?xml version='1.0' encoding='UTF-8'?>
<Folder Browseable="True" Group="Explorer" Name="SPIRE_RGBnorm" Searchable="True">
<Place Angle="0" AngularSize="0" Constellation="CET" DataSetType="Sky" Dec="0.9792235891486053" Magnitude="0" Name="SPIRE_RGBnorm" Opacity="100" RA="2.94140625" Rotation="0" Thumbnail="https://skies.esac.esa.int/Herschel/normalized/SPIRE_pnorm_RGB/preview.jpg" ZoomLevel="0.08588716029543514">
<ForegroundImageSet>
<ImageSet BandPass="IR" BaseDegreesPerTile="180" BaseTileLevel="0" BottomsUp="False" CenterX="0" CenterY="0" DataSetType="Sky" ElevationModel="False" FileType="png" Generic="False" MeanRadius="1" Name="SPIRE_RGBnorm" Projection="Healpix" QuadTreeMap="0123" ReferenceFrame="Sky" Rotation="0" Sparse="True" StockSet="False" TileLevels="7" Url="https://skies.esac.esa.int/Herschel/normalized/SPIRE_pnorm_RGB/Norder{0}/Dir{1}/Npix{2}" WidthFactor="1">
<Credits>ESA/HSA</Credits>
<CreditsUrl>http://www.cosmos.esa.int/web/herschel/publishing-rules-guidelines</CreditsUrl>
<Description>A color composition using all public SPIRE observations from the Herschel Science Archive at 250 micron (blue), 350 micron (green) and 500 micron (red). The data have been normalised using Herschel-optimised cuts and stretch prior to the HiPS generation.</Description>
<ThumbnailUrl>https://skies.esac.esa.int/Herschel/normalized/SPIRE_pnorm_RGB/preview.jpg</ThumbnailUrl>
</ImageSet>
</ForegroundImageSet>
</Place>
</Folder>
Loading
Loading