-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
make the HiPS browser more robust and implement a very proto interfac…
…e for querying the HiPS on the fly generation from cube service: https://alasky.cds.unistra.fr/onthefly-cube-hips/
- Loading branch information
1 parent
cd363ca
commit 219761c
Showing
28 changed files
with
592 additions
and
379 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
<!doctype html> | ||
<html> | ||
<head> | ||
</head> | ||
<body> | ||
|
||
<div id="aladin-lite-div" style="width: 500px; height: 400px"></div> | ||
|
||
<script type="module"> | ||
import A from '../src/js/A.js'; | ||
|
||
let aladin; | ||
A.init.then(() => { | ||
aladin = A.aladin('#aladin-lite-div', { | ||
fullScreen: true, | ||
target: "ngc 1436", | ||
fov: 2, | ||
projection: 'TAN', | ||
showContextMenu: true, | ||
showSimbadPointerControl: true, | ||
expandLayersControl: true, | ||
hipsList: [ | ||
// High energy (Gamma and X-rays) | ||
'CDS/P/HGPS/Flux', | ||
'CDS/P/Fermi/5', | ||
'CDS/P/Fermi/4', | ||
'CDS/P/Fermi/3', | ||
'ov-gso/P/Fermi/Band2', | ||
'ov-gso/P/BAT/150-195keV', | ||
'ov-gso/P/BAT/35-50keV', | ||
'ov-gso/P/BAT/14-20keV', | ||
'erosita/dr1/rate/023', | ||
'erosita/dr1/rate/024', | ||
// Uv/Optical/Infrared | ||
'CDS/P/GALEXGR6_7/FUV', | ||
'CDS/P/GALEXGR6_7/NUV', | ||
'CDS/P/DSS2/color', | ||
'CDS/P/PanSTARRS/DR1/g', | ||
'CDS/P/PanSTARRS/DR1/r', | ||
'CDS/P/Finkbeiner', | ||
'CDS/P/PanSTARRS/DR1/i', | ||
'CDS/P/PanSTARRS/DR1/color-i-r-g', | ||
'CDS/P/PanSTARRS/DR1/z', | ||
'CDS/P/PanSTARRS/DR1/y', | ||
'CDS/P/DES-DR2/ColorIRG', | ||
'CDS/P/2MASS/color', | ||
'ov-gso/P/GLIMPSE/irac1', | ||
'ov-gso/P/GLIMPSE/irac2', | ||
'CDS/P/unWISE/color-W2-W1W2-W1', | ||
'ov-gso/P/GLIMPSE/irac3', | ||
'ov-gso/P/GLIMPSE/irac4', | ||
'CDS/P/IRIS/color', | ||
'ESAVO/P/AKARI/N60', | ||
'ESAVO/P/AKARI/WideL', | ||
'ESAVO/P/HERSCHEL/SPIRE-250', | ||
'ESAVO/P/HERSCHEL/SPIRE-350', | ||
'ESAVO/P/HERSCHEL/SPIRE-500', | ||
// sub-mm/mm/radio | ||
'CDS/P/PLANCK/R3/HFI/color', | ||
'CDS/P/ACT_Planck/DR5/f220', | ||
'CDS/P/CO', | ||
'CDS/P/PLANCK/R3/HFI100', | ||
'CDS/P/PLANCK/R3/LFI30', | ||
'CDS/P/NVSS', | ||
'CSIRO/P/RACS/mid/I', | ||
'ov-gso/P/CGPS/VGPS', | ||
'CDS/C/HI4PI/HI', | ||
'CDS/P/MeerKAT/Galactic-Centre-1284MHz-StokesI', | ||
'CSIRO/P/RACS/low/I', | ||
'astron.nl/P/tgssadr', | ||
'ov-gso/P/GLEAM/170-231', | ||
'ov-gso/P/GLEAM/139-170', | ||
'astron.nl/P/lotss_dr2_high', | ||
'ov-gso/P/GLEAM/103-134', | ||
'ov-gso/P/GLEAM/072-103' | ||
] | ||
}); | ||
|
||
aladin.addCatalog( | ||
A.catalogFromSKAORucio("ngc 1436", 15, { | ||
onClick: 'showTable', | ||
hoverColor: "yellow", | ||
}) | ||
); | ||
}); | ||
</script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.