JiscMail Logo
Email discussion lists for the UK Education and Research communities

Help for STARLINK Archives


STARLINK Archives

STARLINK Archives


STARLINK@JISCMAIL.AC.UK


View:

Message:

[

First

|

Previous

|

Next

|

Last

]

By Topic:

[

First

|

Previous

|

Next

|

Last

]

By Author:

[

First

|

Previous

|

Next

|

Last

]

Font:

Proportional Font

LISTSERV Archives

LISTSERV Archives

STARLINK Home

STARLINK Home

STARLINK  January 2007

STARLINK January 2007

Options

Subscribe or Unsubscribe

Subscribe or Unsubscribe

Log In

Log In

Get Password

Get Password

Subject:

Re: GAIA and HARP-ACSIS data

From:

David Berry <[log in to unmask]>

Reply-To:

Starlink Software User Support <[log in to unmask]>

Date:

Thu, 18 Jan 2007 19:26:02 +0000

Content-Type:

MULTIPART/MIXED

Parts/Attachments:

Parts/Attachments

TEXT/PLAIN (45 lines) , dedut.pl (1 lines)



On Thu, 18 Jan 2007, Peter W. Draper wrote:

> On Thu, 18 Jan 2007, John Barrow wrote:
>
> > Two of our users are trying to reduce some HARP-ACSIS data, using the
> > version of GAIA included in the "keoe" release of the Starlink Software
> > Collection.  They are receiving errors of the following form:
> >
> >   !! Error while reading AST_ data from the HDS object
> >   !     /lochy/wfdt/jcmt_bd/20070101/ac20070101_00031_01_01.WCS.DATA.
> >   !  NDF_STATE: Error determining the state of an NDF component.
> >
> > Can you tell me if a more recent version of GAIA is needed to reduce this
> > data, or if there is some other problem.
>
> Hi John,
>
> there is a problem with the format of the WCS stored in this data which is
> unfortunately causing this error. There will be a new release, maybe next
> month, which will fix this, but in the meanwhile there are some work
> arounds.
>
> I think the best was some script that David had for editing the WCS
> component? So I've CC'd this message to him (since I seem to have lost
> that message).

The issue is that harp-acsis NDFs are being created with a more recent
version of the AST library than the keoe release was built against. This
is because harp-acsis data benefits from a value for DUT1 (the difference
between UTC and UT1) stored with it, but the version of AST used by keoe
doesn't know anything about DUT1. So keoe moans when it finds this DUT1
value in the WCS information.

The work around is to modify the WCS info in the NDF to remove the DUT1
value. The only thing that may be affected by this is the smurf:makecube
command, but I presume you wont have this anyway since it wasn't included
in keoe.

The attached script should do the necessary editing. Let me know if you
have any problems.

David


#!/usr/bin/perl # Name: # dedut.pl # Purpose: # Remove the "dut1" attribute from the WCS FrameSet in an NDF. # Usage: # % dedut.pl in out # Command Line Parameters: # in # The input NDF from which the "dut1" attribute is to be removed. # out # The output NDF. A copy of "in" without the "dut1" attribute. # Requirements: # A starlink distribution must be available, containing at least # KAPPA, ATOOLS and HDSTRACE. The environment variable KAPPA_DIR # should point to the directory containing the kappa binaries (it # is assumed that the hdstrace binary is in $KAPPA_DIR/..). The # environment variable ATOOLS_DIR should point to the directory # containing the atools binaries. # Check that both input and output NDFs were given on the command line if( $#ARGV < 0 ) { die "No input or output NDF specified.\nUsage: dedut.pl in out\n"; } elsif( $#ARGV < 1 ) { die "No output NDF specified.\nUsage: dedut.pl in out\n"; } # Get the input NDF name without any ".sdf" suffix $in = $ARGV[0]; $in =~ s/\.sdf$//; # Run hdstrace to get a text version of the WCS FrameSet, ensuring that # any previous log file is deleted first. unlink "dedut.log"; system "\$KAPPA_DIR/../hdstrace object=$in.wcs eachline nline=all logfile=dedut.log newline > /dev/null "; # Open the log file created by hdstrace, and also create a new file to receive # the modified WCS FrameSet. open INFILE, "<dedut.log"; open OUTFILE, ">dedut2.log"; # Read through the entire log file $state = 1; while( <INFILE> ) { chomp; $outline = ""; # First watch for the "Begin FrameSet" line, marking the start of the # FrameSet if( $state == 1 ){ if( /Begin +FrameSet/ ) { $outline = 'Begin FrameSet'; $state = 2; } # Now watch for the end of the WCS FrameSet (a line containg a string # enclosed in single quotes that is not terminated by a comma). Either way # extract the string between the single quotes. } elsif( $state == 2 ){ if( /^ +\'(.*)\' *$/ ) { $outline = $1; $state = 3; } elsif( /^ +\'(.*)\', *$/ ) { $outline = $1; } } # Write out the line of the AST FrameSet to the output file so long as # it is not a "Dut1" line. if( $outline ) { if( !( $outline =~ /Dut1/ ) ) { print OUTFILE "$outline\n"; } } } # Close the files. close INFILE; close OUTFILE; # Create a copy of the input NDF. $out = $ARGV[1]; $out =~ s/\.sdf$//; system "cp $in.sdf $out.sdf"; # Erase the WCS component in the output NDF. system "\$KAPPA_DIR/erase $out.wcs ok"; # Copy the new WCS FrameSet to the output NDF. system "\$ATOOLS_DIR/astcopy dedut2.log $out"; # Erase the log files unlink "dedut.log"; unlink "dedut2.log";

Top of Message | Previous Page | Permalink

JiscMail Tools


RSS Feeds and Sharing


Advanced Options


Archives

December 2023
November 2023
August 2023
July 2023
May 2023
April 2023
March 2023
February 2023
January 2023
November 2022
October 2022
August 2022
July 2022
June 2022
April 2022
January 2022
December 2021
October 2021
May 2021
February 2021
November 2020
October 2020
August 2020
July 2020
June 2020
February 2020
November 2019
October 2019
September 2019
July 2019
June 2019
May 2019
April 2019
March 2019
December 2018
November 2018
October 2018
September 2018
July 2018
June 2018
April 2018
January 2018
December 2017
October 2017
August 2017
July 2017
April 2017
March 2017
February 2017
January 2017
December 2016
November 2016
September 2016
July 2016
June 2016
April 2016
March 2016
February 2016
December 2015
November 2015
October 2015
September 2015
May 2015
April 2015
March 2015
February 2015
October 2014
August 2014
July 2014
June 2014
May 2014
March 2014
February 2014
January 2014
December 2013
November 2013
October 2013
September 2013
August 2013
July 2013
June 2013
May 2013
April 2013
March 2013
February 2013
January 2013
December 2012
November 2012
October 2012
September 2012
August 2012
July 2012
June 2012
May 2012
April 2012
March 2012
February 2012
January 2012
December 2011
November 2011
October 2011
September 2011
August 2011
July 2011
June 2011
May 2011
April 2011
March 2011
February 2011
January 2011
December 2010
November 2010
October 2010
September 2010
August 2010
July 2010
June 2010
May 2010
April 2010
March 2010
February 2010
January 2010
December 2009
November 2009
October 2009
September 2009
August 2009
July 2009
June 2009
May 2009
April 2009
March 2009
February 2009
January 2009
December 2008
November 2008
October 2008
September 2008
August 2008
July 2008
June 2008
May 2008
April 2008
March 2008
February 2008
January 2008
December 2007
November 2007
October 2007
September 2007
August 2007
July 2007
June 2007
May 2007
April 2007
March 2007
January 2007
November 2006
October 2006
September 2006
August 2006
July 2006
April 2006
March 2006
February 2006
December 2004
September 2004


JiscMail is a Jisc service.

View our service policies at https://www.jiscmail.ac.uk/policyandsecurity/ and Jisc's privacy policy at https://www.jisc.ac.uk/website/privacy-notice

For help and support help@jisc.ac.uk

Secured by F-Secure Anti-Virus CataList Email List Search Powered by the LISTSERV Email List Manager