|
ELAIS SEDS
|
|
protocol.
This file contains a detailed description of the steps involved. The files and worked examples
|
< < |
described in the text are all attached below.
<!--
-->
|
> > |
described in the text are all attached below.
|
|
|
< < |
|
|
|
< < |
|
|
|
< < |
|
|
- SEDs.tar: Specview SEDs for all the ELAIS catalog sources
|
< < |
|
|
|
< < |
|
|
|
< < |
|
|
- SEDs_norm.tar: De-redshifted, Normalised SEDs for all ELAIS sources
|
< < |
|
|
|
< < |
|
|
|
< < |
Update to ELAIS SEDs. December 22, 2004
|
|
|
> > |
Update to ELAIS SEDs. December 22, 2004
|
|
The process for generating SEDs from the ELAIS catalogue, including
test files, RED, BLUE and ERO object subsets has been updated.
See the ReadMe for all the details.
Note that a tar file containg all the Dec 22 update files is
available at the end of the list of files.
|
< < |
|
|
|
< < |
|
|
|
< < |
|
|
|
< < |
|
|
|
< < |
|
|
|
< < |
|
|
|
< < |
|
|
|
< < |
|
|
|
< < |
|
|
|
< < |
|
> > |
|
|
|
< < |
|
|
|
< < |
|
|
|
< < |
|
|
|
< < |
|
> > |
|
|
|
< < |
|
|
- specview screen shot:
|
< < |
|
|
|
< < |
|
|
|
< < |
First stab at a Groovy translation
|
|
|
> > |
First stab at a Groovy translation
|
|
At the moment, it's framed as a script that you run from the commandline - just like the original IDL. Later we need to work out how we want to chop it up, put it in a workflow, and attach it to cea tools and myspace.. But for now, this script proves the feasability of doing the processing in groovy.
To execute the script, you'll need to download and install the astrogrid commandline bundle -
http://software.astrogrid.org/client-install.html
|
> > |
|
|
Differences:
- The groovy script starts with the votable returned from Vizier, rather than the pre-cooked .dat files used by IDL. I think this is a bonus.
|
< < |
|
|
- The output generated by the groovy translation is pretty close to the original - in places the files produced by groovy contain numbers with a larger number of decimal places, but the values are the same (modulo rounding)
|
< < |
|
|
- The generated votables are similar, but have som minor differences too. Could someone test the generated files by feeding them into whatever they're meant to go into next, and let me know if there are any problems.
|
> > |
|
|
Unsure of..
There's just a few places where I'm unsure of things - I've commented the bits with 'Mark' - to make it easer for you to grep though.
In particular
- Whether I'm extracting coordinates from the votable in the correct format. The IDL input files have different columns to the vizier votable.
|
< < |
|
|
- There's one point where the IDL script uses the function 'alog10'. Groovy/Java doesn't provide base-10 logs, only natural base logs. I've
put in a conversion that computes the base10 log from the base e one - but I'm very unsure about this - mathematics not being my strongest point.
|
< < |
|
|
- In the original IDL, there's a bit that says..
|
< < |
|
> > |
|
|
; Red, z<0.5, and detected in all optical bands
group1 = where( ((am3 - am4) gt 0.8) AND ((am2 - am3) gt 1.2) AND (spectz gt 0.0) AND (spectz lt 0.5) AND (am1 gt 0.0) AND (am1 gt 0.0) AND (am2 gt 0.0) AND (am3 gt 0.0) AND (am4 gt 0.0) AND (am5 gt 0.0) )
|
< < |
I was wondering whether there was a typo or omission here - as the same condition (am1 gt 0.0) occurs twice.. should it be testing some other array? or is it just harmless repitition?
|
> > |
I was wondering whether there was a typo or omission here - as the same condition (am1 gt 0.0) occurs twice..should it be testing some other array? or is it just harmless repetition?
|
|
|
< < |
-- NoelWinstanley - 22 Dec 2004
|
> > |
-- NoelWinstanley - 22 Dec 2004
|
|
|
> > |
<!--
-->
|
|
| META FILEATTACHMENT | elais_seds.txt | attr="" comment="Constructing ELAIS Catalog SEDs" date="1101988075" path="elais_seds.txt" size="12077" user="MarkAllen" version="1.4" |
| META FILEATTACHMENT | ELAIS_Vizier.VOT | attr="" comment="Vizer VOTable of ELAIS catalog" date="1101923618" path="ELAIS_Vizier.VOT" size="4244890" user="MarkAllen" version="1.1" |
| META FILEATTACHMENT | elaiscat_21a_mga1.vot | attr="" comment="ELAIS catalog + additionaflux converted columns" date="1101923756" path="elaiscat_21a_mga1.vot" size="5325370" user="MarkAllen" version="1.1" |
|
|
ELAIS SEDS
|
|
|
> > |
First stab at a Groovy translation
At the moment, it's framed as a script that you run from the commandline - just like the original IDL. Later we need to work out how we want to chop it up, put it in a workflow, and attach it to cea tools and myspace.. But for now, this script proves the feasability of doing the processing in groovy.
To execute the script, you'll need to download and install the astrogrid commandline bundle -
http://software.astrogrid.org/client-install.html
Differences:
- The groovy script starts with the votable returned from Vizier, rather than the pre-cooked .dat files used by IDL. I think this is a bonus.
- The output generated by the groovy translation is pretty close to the original - in places the files produced by groovy contain numbers with a larger number of decimal places, but the values are the same (modulo rounding)
- The generated votables are similar, but have som minor differences too. Could someone test the generated files by feeding them into whatever they're meant to go into next, and let me know if there are any problems.
Unsure of..
There's just a few places where I'm unsure of things - I've commented the bits with 'Mark' - to make it easer for you to grep though.
In particular
- Whether I'm extracting coordinates from the votable in the correct format. The IDL input files have different columns to the vizier votable.
- There's one point where the IDL script uses the function 'alog10'. Groovy/Java doesn't provide base-10 logs, only natural base logs. I've
put in a conversion that computes the base10 log from the base e one - but I'm very unsure about this - mathematics not being my strongest point.
- In the original IDL, there's a bit that says..
; Red, z<0.5, and detected in all optical bands
group1 = where( ((am3 - am4) gt 0.8) AND ((am2 - am3) gt 1.2) AND (spectz gt 0.0) AND (spectz lt 0.5) AND (am1 gt 0.0) AND (am1 gt 0.0) AND (am2 gt 0.0) AND (am3 gt 0.0) AND (am4 gt 0.0) AND (am5 gt 0.0) )
I was wondering whether there was a typo or omission here - as the same condition (am1 gt 0.0) occurs twice.. should it be testing some other array? or is it just harmless repitition?
-- NoelWinstanley - 22 Dec 2004
|
|
| META FILEATTACHMENT | elais_seds.txt | attr="" comment="Constructing ELAIS Catalog SEDs" date="1101988075" path="elais_seds.txt" size="12077" user="MarkAllen" version="1.4" |
| META FILEATTACHMENT | ELAIS_Vizier.VOT | attr="" comment="Vizer VOTable of ELAIS catalog" date="1101923618" path="ELAIS_Vizier.VOT" size="4244890" user="MarkAllen" version="1.1" |
|
|
| META FILEATTACHMENT | ELAISC15_J161302.4542846_orignorm.png | attr="" comment="specview screen shot" date="1103718685" path="ELAISC15_J161302.4+542846_orig+norm.png" size="33099" user="MarkAllen" version="1.1" |
| META FILEATTACHMENT | Dec22_update_all_files.tar.gz | attr="" comment="All Dec 22 update files (except IDL pro - woops)" date="1103719041" path="Dec22_update_all_files.tar.gz" size="1553716" user="MarkAllen" version="1.1" |
| META FILEATTACHMENT | elais_seds.pro | attr="" comment="Dec 22 updated version of IDL procedure" date="1103719807" path="elais_seds.pro" size="23557" user="MarkAllen" version="1.1" |
|
> > |
| META FILEATTACHMENT | elais-groovy.tar.gz | attr="" comment="First cut of groovy transcription." date="1103747420" path="elais-groovy.tar.gz" size="1195096" user="NoelWinstanley" version="1.1" |
|
|
|
< < |
|
|
ELAIS SEDS
This page contains information on how to convert the ELAIS final
|
|
|
> > |
Update to ELAIS SEDs. December 22, 2004
The process for generating SEDs from the ELAIS catalogue, including
test files, RED, BLUE and ERO object subsets has been updated.
See the ReadMe for all the details.
Note that a tar file containg all the Dec 22 update files is
available at the end of the list of files.
- specview screen shot:
|
|
|
> > |
|
|
| META FILEATTACHMENT | elais_seds.txt | attr="" comment="Constructing ELAIS Catalog SEDs" date="1101988075" path="elais_seds.txt" size="12077" user="MarkAllen" version="1.4" |
|
|
| META FILEATTACHMENT | SEDs_norm.tar | attr="" comment="De-redshifted, Normalised SEDs for all ELAIS sourc" date="1101924234" path="SEDs_norm.tar" size="1843200" user="MarkAllen" version="1.1" |
| META FILEATTACHMENT | ELAIS_norm_sed_ssa.txt | attr="" comment="SSA file describing red subset of ELAIS sources" date="1101924301" path="ELAIS_norm_sed_ssa.txt" size="29114" user="MarkAllen" version="1.1" |
| META FILEATTACHMENT | elais_seds_IDL.tar.gz | attr="" comment="IDL procedures for making SEDs and SSA files" date="1101924440" path="elais_seds_IDL.tar.gz" size="250779" user="MarkAllen" version="1.1" |
|
> > |
| META FILEATTACHMENT | ReadMe? | attr="" comment="Update to ELAIS SEDs December 22." date="1103717772" path="ReadMe" size="4834" user="MarkAllen" version="1.1" |
| META FILEATTACHMENT | elaiscat_21a_mga3.vot | attr="" comment="ELAIS catalogue fluxes (+aperture corrections)" date="1103717870" path="elaiscat_21a_mga3.vot" size="5322038" user="MarkAllen" version="1.1" |
| META FILEATTACHMENT | elaiscat_21a_mga3_fluxes.vot | attr="" comment="ELAIS catalogue fluxes (flux cols only)" date="1103717933" path="elaiscat_21a_mga3_fluxes.vot" size="1973038" user="MarkAllen" version="1.1" |
| META FILEATTACHMENT | elaiscat_21a_mga3_fluxes.txt | attr="" comment="ELAIS catalogue fluxes (flux cols only)" date="1103717977" path="elaiscat_21a_mga3_fluxes.txt" size="1290882" user="MarkAllen" version="1.1" |
| META FILEATTACHMENT | ELAIS_RED_fluxes.vot | attr="" comment="RED sources (VOTable)" date="1103718021" path="ELAIS_RED_fluxes.vot" size="6799" user="MarkAllen" version="1.1" |
| META FILEATTACHMENT | ELAIS_RED_fluxes.txt | attr="" comment="RED sources (ascii)" date="1103718102" path="ELAIS_RED_fluxes.txt" size="2136" user="MarkAllen" version="1.1" |
| META FILEATTACHMENT | ELAIS_BLUE_fluxes.vot | attr="" comment="BLUE sources (VOTable)" date="1103718132" path="ELAIS_BLUE_fluxes.vot" size="55326" user="MarkAllen" version="1.1" |
| META FILEATTACHMENT | ELAIS_BLUE_fluxes.txt | attr="" comment="BLUE sources (ascii)" date="1103718177" path="ELAIS_BLUE_fluxes.txt" size="29652" user="MarkAllen" version="1.1" |
| META FILEATTACHMENT | ELAIS_ERO_fluxes.vot | attr="" comment="ERO sources (VOTable)" date="1103718205" path="ELAIS_ERO_fluxes.vot" size="6333" user="MarkAllen" version="1.1" |
| META FILEATTACHMENT | ELAIS_ERO_fluxes.txt | attr="" comment="ERO sources (ascii)" date="1103718241" path="ELAIS_ERO_fluxes.txt" size="1745" user="MarkAllen" version="1.1" |
| META FILEATTACHMENT | SEDs_21dec04.tar | attr="" comment="Specview SEDs for ALL ELAIS catalog sources" date="1103718308" path="SEDs_21dec04.tar" size="3665920" user="MarkAllen" version="1.1" |
| META FILEATTACHMENT | SEDs_norm_21dec04.tar | attr="" comment="De-redshifted, Normalised SEDs for all ELAIS sour" date="1103718359" path="SEDs_norm_21dec04.tar" size="1843200" user="MarkAllen" version="1.1" |
| META FILEATTACHMENT | ELAIS_RED_norm_sed_ssa.txt | attr="" comment="SSA file of normalized RED source SEDs" date="1103718426" path="ELAIS_RED_norm_sed_ssa.txt" size="2617" user="MarkAllen" version="1.1" |
| META FILEATTACHMENT | ELAIS_RED_sed_ssa.txt | attr="" comment="SSA file of RED source SEDs" date="1103718469" path="ELAIS_RED_sed_ssa.txt" size="2567" user="MarkAllen" version="1.1" |
| META FILEATTACHMENT | ELAIS_BLUE_norm_sed_ssa.txt | attr="" comment="SSA file of normalized BLUE source SEDs" date="1103718521" path="ELAIS_BLUE_norm_sed_ssa.txt" size="28435" user="MarkAllen" version="1.1" |
| META FILEATTACHMENT | ELAIS_BLUE_sed_ssa.txt | attr="" comment="SSA file of BLUE source SEDs" date="1103718556" path="ELAIS_BLUE_sed_ssa.txt" size="27605" user="MarkAllen" version="1.1" |
| META FILEATTACHMENT | ELAIS_ERO_norm_sed_ssa.txt | attr="" comment="MarkAllen SSA file of normalized ERO source SEDs" date="1103718601" path="ELAIS_ERO_norm_sed_ssa.txt" size="2304" user="MarkAllen" version="1.1" |
| META FILEATTACHMENT | ELAIS_ERO_sed_ssa.txt | attr="" comment="SSA file of ERO source SEDs" date="1103718645" path="ELAIS_ERO_sed_ssa.txt" size="2264" user="MarkAllen" version="1.1" |
| META FILEATTACHMENT | ELAISC15_J161302.4542846_orignorm.png | attr="" comment="specview screen shot" date="1103718685" path="ELAISC15_J161302.4+542846_orig+norm.png" size="33099" user="MarkAllen" version="1.1" |
| META FILEATTACHMENT | Dec22_update_all_files.tar.gz | attr="" comment="All Dec 22 update files (except IDL pro - woops)" date="1103719041" path="Dec22_update_all_files.tar.gz" size="1553716" user="MarkAllen" version="1.1" |
| META FILEATTACHMENT | elais_seds.pro | attr="" comment="Dec 22 updated version of IDL procedure" date="1103719807" path="elais_seds.pro" size="23557" user="MarkAllen" version="1.1" |
|
|
|
< < |
|
|
|
< < |
-- MarkAllen
|
|
ELAIS SEDS
|
> > |
This page contains information on how to convert the ELAIS final
merged band catalog photometric measurements into a Spectral Energy
Distribution (SED), and make the results available via the SSA
protocol.
|
|
|
< < |
|
> > |
This file contains a detailed description of the steps involved. The files and worked examples
described in the text are all attached below.
|
|
<!--
-->
|
< < |
|
|
|
< < |
|
> > |
|
|
|
< < |
|
> > |
|
|
|
< < |
- SEDs.tar: Specview SEDs for ALL ELAIS catalog sources
|
> > |
- SEDs.tar: Specview SEDs for all the ELAIS catalog sources
|
|
|
< < |
|
> > |
|
|
|
< < |
- SEDs_norm.tar: De-redshifted, Normalised SEDs for all ELAIS sourc
|
> > |
- SEDs_norm.tar: De-redshifted, Normalised SEDs for all ELAIS sources
|
|
|
< < |
|
> > |
|
|
|
< < |
| META FILEATTACHMENT | elais_seds.txt | attr="" comment="Constructing ELAIS Catalog SEDs" date="1101924497" path="elais_seds.txt" size="9797" user="MarkAllen" version="1.2" |
|
> > |
| META FILEATTACHMENT | elais_seds.txt | attr="" comment="Constructing ELAIS Catalog SEDs" date="1101937215" path="elais_seds.txt" size="12050" user="MarkAllen" version="1.3" |
|
|
| META FILEATTACHMENT | ELAIS_Vizier.VOT | attr="" comment="Vizer VOTable of ELAIS catalog" date="1101923618" path="ELAIS_Vizier.VOT" size="4244890" user="MarkAllen" version="1.1" |
| META FILEATTACHMENT | elaiscat_21a_mga1.vot | attr="" comment="ELAIS catalog + additionaflux converted columns" date="1101923756" path="elaiscat_21a_mga1.vot" size="5325370" user="MarkAllen" version="1.1" |
| META FILEATTACHMENT | ELAISC15_J002818-424303_SED.txt | attr="" comment="Example Specview ascii format SED" date="1101923871" path="ELAISC15_J002818-424303_SED.txt" size="312" user="MarkAllen" version="1.1" |
|