StcsChan

I/O Channel using STC-S to represent Objects

Description:

A StcsChan is a specialised form of Channel which supports STC-S I/O operations. Writing an Object to an StcsChan (using AST_WRITE) will, if the Object is suitable, generate an STC-S description of that Object, and reading from an StcsChan will create a new Object from its STC-S description.

When an STC-S description is read using AST_READ, the returned AST Object may be 1) a PointList describing the STC AstroCoords (i.e. a single point of interest within the coordinate frame described by the STC-S description), or 2) a Region describing the STC AstrCoordsArea (i.e. an area or volume of interest within the coordinate frame described by the STC-S description), or 3) a KeyMap containing the uninterpreted property values read form the STC-S description, or 4) a KeyMap containing any combination of the first 3 options. The attributes StcsArea, StcsCoords and StcsProps control which of the above is returned by AST_READ.

When an STC-S description is created from an AST Object using AST_WRITE, the AST Object must be either a Region or a KeyMap. If it is a Region, it is assumed to define the AstroCoordsArea or (if the Region is a single point) the AstroCoords to write to the STC-S description. If the Object is a KeyMap, it may contain an entry with the key " AREA" , holding a Region to be used to define the AstroCoordsArea. It may also contain an entry with the key " COORDS" , holding a Region (a PointList) to be used to create the AstroCoords. It may also contain an entry with key " PROPS" , holding a KeyMap that contains uninterpreted property values to be used as defaults for any STC-S properties that are not determined by the other supplied Regions. In addition, a KeyMap supplied to AST_WRITE may itself hold the default STC-S properties (rather than defaults being held in a secondary KeyMap, stored as the " PROPS" entry in the supplied KeyMap).

The AST_READ and AST_WRITE functions work together so that any Object returned by AST_READ can immediately be re-written using AST_WRITE.

Normally, when you use an StcsChan, you should provide " source" and " sink" routines which connect it to an external data store by reading and writing the resulting text. These routines should perform any conversions needed between external character encodings and the internal ASCII encoding. If no such routines are supplied, a Channel will read from standard input and write to standard output.

Alternatively, an XmlChan can be told to read or write from specific text files using the SinkFile and SourceFile attributes, in which case no sink or source function need be supplied.

Support for STC-S is currently based on the IVOA document " STC-S: Space-Time Coordinate (STC) Metadata Linear String Implementation" , version 1.30 (dated 5th December 2007), available at http://www.ivoa.net/Documents/latest/STC-S.html. Note, this document is a recommednation only and does not constitute an accepted IVOA standard.

The full text of version 1.30 is supported by the StcsChan class, with the following exceptions and provisos:

Constructor Function

AST_STCSCHAN

Inheritance

The StcsChan class inherits from the Channel class.

Attributes

In addition to those attributes common to all Channels, every StcsChan also has the following attributes:

Functions

The StcsChan class does not define any new routines beyond those which are applicable to all Channels.