Astrophysical Virtual Observatory

::: ElaisSeds (r1.1 vs. r1.9) :::
# Sitemap  
  AVO TWiki system  Edit page  View page # All Diffs  Printable  More :::
Logged in as TWikiGuest

EUROVO FC

AVO
SWG
Management
Science
Standards
Technology
Reports&Minutes
Forum
Events
Contacts
Help

EGG

Main

Know

Test

TWiki

 <<O>>  Difference Topic ElaisSeds (r1.9 - 17 Jan 2005 - MarkAllen)

META TOPICPARENT AvoDemo2005Gal

ELAIS SEDS

Line: 89 to 89

<!-- -->
Added:
>
>

Galaxy Templates

As a first step to comparing the SEDs with models, it is helpful to first compare with galaxy templates. A small set of galaxy templates from Kinney and Calzetti have been made available on a URL and accessible via the following SSA file. This means that the SSA file may be loaded into the AVO prototype and the template spectra plotted in specview.

(The template files are in specview .txt format)


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"
Line: 121 to 133

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"
Added:
>
>
META FILEATTACHMENT KINNEY_TEMPLATES_SSA.xml attr="" comment="SSA description of Kinney templates" date="1105958282" path="KINNEY_TEMPLATES_SSA.xml" size="5012" user="MarkAllen" version="1.1"

 <<O>>  Difference Topic ElaisSeds (r1.8 - 05 Jan 2005 - MarcoLeoni)

META TOPICPARENT AvoDemo2005Gal

ELAIS SEDS

Line: 8 to 8

protocol.

This file contains a detailed description of the steps involved. The files and worked examples

Changed:
<
<
described in the text are all attached below.


<!--

-->
>
>
described in the text are all attached below.

Deleted:
<
<

Deleted:
<
<

Deleted:
<
<

  • SEDs.tar: Specview SEDs for all the ELAIS catalog sources
Deleted:
<
<

Deleted:
<
<

Deleted:
<
<

  • SEDs_norm.tar: De-redshifted, Normalised SEDs for all ELAIS sources
Deleted:
<
<

Deleted:
<
<

Deleted:
<
<

Update to ELAIS SEDs. December 22, 2004


Added:
>
>

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.

Deleted:
<
<


Deleted:
<
<

Deleted:
<
<

Deleted:
<
<

Deleted:
<
<

Deleted:
<
<

Deleted:
<
<

Deleted:
<
<

Deleted:
<
<

Changed:
<
<

>
>

Deleted:
<
<

Deleted:
<
<

Deleted:
<
<

Changed:
<
<

>
>

Deleted:
<
<

  • specview screen shot:
    ELAISC15_J161302.4542846_orignorm.png
Deleted:
<
<

Deleted:
<
<

Deleted:
<
<

First stab at a Groovy translation


Added:
>
>

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

Added:
>
>

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.
Deleted:
<
<

  • 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)
Deleted:
<
<

  • 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.
Added:
>
>

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.
Deleted:
<
<

  • 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.
Deleted:
<
<

  • In the original IDL, there's a bit that says..
Changed:
<
<


>
>


; 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) )
Changed:
<
<
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?

Changed:
<
<
-- NoelWinstanley - 22 Dec 2004
>
>
-- NoelWinstanley - 22 Dec 2004


Added:
>
>


<!--

-->

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"

 <<O>>  Difference Topic ElaisSeds (r1.7 - 22 Dec 2004 - NoelWinstanley)

META TOPICPARENT AvoDemo2005Gal

ELAIS SEDS

Line: 82 to 82

Added:
>
>

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"
Line: 114 to 146

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"
Added:
>
>
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"

 <<O>>  Difference Topic ElaisSeds (r1.6 - 22 Dec 2004 - MarkAllen)

META TOPICPARENT AvoDemo2005Gal
Deleted:
<
<

ELAIS SEDS

This page contains information on how to convert the ELAIS final

Line: 35 to 34

Added:
>
>

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:
    ELAISC15_J161302.4542846_orignorm.png


Added:
>
>

META FILEATTACHMENT elais_seds.txt attr="" comment="Constructing ELAIS Catalog SEDs" date="1101988075" path="elais_seds.txt" size="12077" user="MarkAllen" version="1.4"
Line: 48 to 93

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"
Added:
>
>
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"

 <<O>>  Difference Topic ElaisSeds (r1.5 - 02 Dec 2004 - MarcoLeoni)

META TOPICPARENT AvoDemo2005Gal
Changed:
<
<

ELAIS SEDS

>
>

ELAIS SEDS


This page contains information on how to convert the ELAIS final merged band catalog photometric measurements into a Spectral Energy

Line: 37 to 36

Added:
>
>


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"

 <<O>>  Difference Topic ElaisSeds (r1.4 - 02 Dec 2004 - MarkAllen)

META TOPICPARENT AvoDemo2005Gal
Line: 37 to 37

Changed:
<
<
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_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"
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"

 <<O>>  Difference Topic ElaisSeds (r1.3 - 01 Dec 2004 - MarkAllen)

META TOPICPARENT AvoDemo2005Gal
Deleted:
<
<

ElaisSeds


Deleted:
<
<

-- MarkAllen


ELAIS SEDS

Added:
>
>
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.

Changed:
<
<
>
>
This file contains a detailed description of the steps involved. The files and worked examples described in the text are all attached below.


<!--

-->
Deleted:
<
<

Changed:
<
<
>
>

Changed:
<
<
>
>

Changed:
<
<
  • SEDs.tar: Specview SEDs for ALL ELAIS catalog sources
>
>
  • SEDs.tar: Specview SEDs for all the ELAIS catalog sources

Changed:
<
<
>
>

Changed:
<
<
  • SEDs_norm.tar: De-redshifted, Normalised SEDs for all ELAIS sourc
>
>
  • SEDs_norm.tar: De-redshifted, Normalised SEDs for all ELAIS sources

Changed:
<
<
>
>

Changed:
<
<
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"

 <<O>>  Difference Topic ElaisSeds (r1.2 - 01 Dec 2004 - MarkAllen)

META TOPICPARENT AvoDemo2005Gal

ElaisSeds

Line: 6 to 6

-- MarkAllen

Changed:
<
<
ELAIS SEDS
>
>

ELAIS SEDS




 <<O>>  Difference Topic ElaisSeds (r1.1 - 01 Dec 2004 - MarkAllen)
Line: 1 to 1
Added:
>
>
META TOPICPARENT AvoDemo2005Gal

ElaisSeds

-- MarkAllen

ELAIS SEDS


<!--

-->

  • SEDs.tar: Specview SEDs for ALL ELAIS catalog sources

  • SEDs_norm.tar: De-redshifted, Normalised SEDs for all ELAIS sourc

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_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"
META FILEATTACHMENT SEDs.tar attr="" comment="Specview SEDs for ALL ELAIS catalog sources" date="1101923947" path="SEDs.tar" size="3665920" user="MarkAllen" version="1.1"
META FILEATTACHMENT ELAIS_sed_ssa.txt attr="" comment="SSA file describing all ELAIS SEDs" date="1101924057" path="ELAIS_sed_ssa.txt" size="1123646" user="MarkAllen" version="1.1"
META FILEATTACHMENT ELAIS_first1000_sed_ssa.txt attr="" comment="SSA file describing first 1000 ELAIS sources" date="1101924122" path="ELAIS_first1000_sed_ssa.txt" size="319596" user="MarkAllen" version="1.1"
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"

Revision r1.1 - 01 Dec 2004 - 18:02 - MarkAllen
Revision r1.9 - 17 Jan 2005 - 10:39 - MarkAllen
Copyright © 2003 by the contributing authors. All material on this collaboration tool is the property of the contributing authors. Ideas, requests, problems regarding AVO TWiki ? Send feedback.