From 35bf99a2c4e2080e5a789cba50184f733a1a8453 Mon Sep 17 00:00:00 2001 From: David Berry Date: Tue, 8 Oct 2019 15:24:03 +0100 Subject: [PATCH] Include a useful version number on installed shared libraries Prompted by Ole Streicher for use with the Debian AST package. It uses the numering scheme described at https://phab.enlightenment.org/w/autotoolsintegration/ under "Versioning of the shared library"? That is: soname_current = package_minor + package_major soname_revision = package_micro soname_age = package_minor --- Makefile.am | 11 + component.xml | 2 +- configure.ac | 13 +- sun210.aux | 1577 ------------------------------------------------- 4 files changed, 24 insertions(+), 1579 deletions(-) delete mode 100644 sun210.aux diff --git a/Makefile.am b/Makefile.am index ef8eca71..9d967825 100644 --- a/Makefile.am +++ b/Makefile.am @@ -672,6 +672,7 @@ libast_la_SOURCES = \ $(CMINPACK_FILES) \ $(WCSLIB_FILES) \ ast_err.h +libast_la_LDFLAGS = -version-info @version_info@ # Ensure libast links against libraries containing functions used within # libast. If AST is configured --with-external-pal, then the internal @@ -691,37 +692,47 @@ nodist_libast_la_SOURCES = \ # The default error reporting module. libast_err_la_SOURCES = err_null.c +libast_err_la_LDFLAGS = -version-info @version_info@ # The error reporting module that uses EMS to deliver errors. libast_ems_la_SOURCES = err_ems.c +libast_ems_la_LDFLAGS = -version-info @version_info@ # The error reporting module that uses DRAMA Ers to deliver errors. libast_drama_la_SOURCES = err_drama.c +libast_drama_la_LDFLAGS = -version-info @version_info@ # The module containing null implementations of the 3D graphics routines # required by AST libast_grf3d_la_SOURCES = grf3d.c +libast_grf3d_la_LDFLAGS = -version-info @version_info@ # The module containing null implementations of the graphics routines # required by AST V2.0 libast_grf_2_0_la_SOURCES = grf_2.0.c +libast_grf_2_0_la_LDFLAGS = -version-info @version_info@ # The module containing null implementations of the graphics routines # added by AST V3.2 and not present in V2.0 libast_grf_3_2_la_SOURCES = grf_3.2.c +libast_grf_3_2_la_LDFLAGS = -version-info @version_info@ # The module containing null implementations of the graphics routines # added by AST V5.6 and not present in V3.2 libast_grf_5_6_la_SOURCES = grf_5.6.c +libast_grf_5_6_la_LDFLAGS = -version-info @version_info@ # The graphics module that uses PGPLOT for 2D graphical output. libast_pgplot_la_SOURCES = $(GRF_PGPLOT_SOURCES) +libast_pgplot_la_LDFLAGS = -version-info @version_info@ # The graphics module that uses PGPLOT for 3D graphical output. libast_pgplot3d_la_SOURCES = $(GRF3D_PGPLOT_SOURCES) +libast_pgplot3d_la_LDFLAGS = -version-info @version_info@ # Positional astronomy libraries. libast_pal_la_SOURCES = $(PAL_FILES) +libast_pal_la_LDFLAGS = -version-info @version_info@ # The following files are built by the targets in this makefile. MAINTAINERCLEANFILES = version.h builddocs addversion \ diff --git a/component.xml b/component.xml index da17d654..0aefe292 100644 --- a/component.xml +++ b/component.xml @@ -2,7 +2,7 @@ - 9.0.0 + 9.0.1 libext/ast WCS library diff --git a/configure.ac b/configure.ac index ddc73d97..fa740d78 100644 --- a/configure.ac +++ b/configure.ac @@ -7,9 +7,20 @@ dnl 1.5. It should work with autoconf versions 2.50 or better, and dnl automake 1.6 or better. dnl Initialisation: package name and version number -AC_INIT([ast],[9.0.0],[starlink@jiscmail.ac.uk]) +m4_define([v_maj], [9]) +m4_define([v_min], [0]) +m4_define([v_mic], [1]) +m4_define([project_version], [v_maj.v_min.v_mic]) +AC_INIT([ast],[project_version],[starlink@jiscmail.ac.uk]) AC_CONFIG_AUX_DIR([build-aux]) +dnl Shared library versioning +m4_define([lt_cur], [m4_eval(v_maj + v_min)]) +m4_define([lt_rev], [v_mic]) +m4_define([lt_age], [v_min]) +version_info="lt_cur:lt_rev:lt_age" +AC_SUBST([version_info]) + dnl Require autoconf-2.50 at least AC_PREREQ([2.69]) dnl Require Starlink automake diff --git a/sun210.aux b/sun210.aux deleted file mode 100644 index 48ee3bcb..00000000 --- a/sun210.aux +++ /dev/null @@ -1,1577 +0,0 @@ -\relax -\providecommand\zref@newlabel[2]{} -\providecommand\hyper@newdestlabel[2]{} -\providecommand\HyperFirstAtBeginDocument{\AtBeginDocument} -\HyperFirstAtBeginDocument{\ifx\hyper@anchor\@undefined -\global\let\oldcontentsline\contentsline -\gdef\contentsline#1#2#3#4{\oldcontentsline{#1}{#2}{#3}} -\global\let\oldnewlabel\newlabel -\gdef\newlabel#1#2{\newlabelxx{#1}#2} -\gdef\newlabelxx#1#2#3#4#5#6{\oldnewlabel{#1}{{#2}{#3}}} -\AtEndDocument{\ifx\hyper@anchor\@undefined -\let\contentsline\oldcontentsline -\let\newlabel\oldnewlabel -\fi} -\fi} -\global\let\hyper@last\relax -\gdef\HyperFirstAtBeginDocument#1{#1} -\providecommand\HyField@AuxAddToFields[1]{} -\providecommand\HyField@AuxAddToCoFields[2]{} -\@writefile{toc}{\contentsline {section}{\numberline {1}Introduction}{1}{section.1}} -\@writefile{toc}{\contentsline {subsection}{\numberline {1.1}What Problems Does AST Tackle?}{1}{subsection.1.1}} -\@writefile{toc}{\contentsline {subsection}{\numberline {1.2}Other Design Objectives}{2}{subsection.1.2}} -\@writefile{toc}{\contentsline {subsection}{\numberline {1.3}What Does ``AST'' Stand For?}{3}{subsection.1.3}} -\@writefile{toc}{\contentsline {section}{\numberline {2}Overview of AST Concepts}{5}{section.2}} -\newlabel{ss:mappingoverview}{{2.1}{5}{\label {ss:mappingoverview}Relationships Between Coordinate Systems}{subsection.2.1}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {2.1}Relationships Between Coordinate Systems}{5}{subsection.2.1}} -\@writefile{lof}{\contentsline {figure}{\numberline {1}{\ignorespaces A Mapping viewed as a ``black box'' for transforming coordinates.}}{5}{figure.1}} -\newlabel{fig:mapping}{{1}{5}{A Mapping viewed as a ``black box'' for transforming coordinates}{figure.1}{}} -\newlabel{ss:mappingselection}{{2.2}{5}{\label {ss:mappingselection}Mappings Available}{subsection.2.2}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {2.2}Mappings Available}{5}{subsection.2.2}} -\newlabel{ss:cmpmapoverview}{{2.3}{6}{\label {ss:cmpmapoverview}Compound Mappings}{subsection.2.3}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {2.3}Compound Mappings}{6}{subsection.2.3}} -\@writefile{lof}{\contentsline {figure}{\numberline {2}{\ignorespaces A CmpMap composed of two component Mappings joined in series}}{7}{figure.2}} -\newlabel{fig:seriescmpmap}{{2}{7}{A CmpMap composed of two component Mappings joined in series}{figure.2}{}} -\@writefile{lof}{\contentsline {figure}{\numberline {3}{\ignorespaces A CmpMap composed of two Mappings joined in parallel.}}{7}{figure.3}} -\newlabel{fig:parallelcmpmap}{{3}{7}{A CmpMap composed of two Mappings joined in parallel}{figure.3}{}} -\@writefile{lof}{\contentsline {figure}{\numberline {4}{\ignorespaces CmpMaps may be nested in order to construct complex Mappings out of simpler building blocks.}}{8}{figure.4}} -\newlabel{fig:complexcmpmap}{{4}{8}{CmpMaps may be nested in order to construct complex Mappings out of simpler building blocks}{figure.4}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {2.4}Representing Coordinate Systems}{8}{subsection.2.4}} -\@writefile{lof}{\contentsline {figure}{\numberline {5}{\ignorespaces Representing coordinate systems as Frames.}}{9}{figure.5}} -\newlabel{fig:frames}{{5}{9}{Representing coordinate systems as Frames}{figure.5}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {2.5}Networks of Coordinate Systems}{9}{subsection.2.5}} -\@writefile{lof}{\contentsline {figure}{\numberline {6}{\ignorespaces A CmpFrame (compound Frame) formed by combining two simpler Frames.}}{10}{figure.6}} -\newlabel{fig:cmpframe}{{6}{10}{A CmpFrame (compound Frame) formed by combining two simpler Frames}{figure.6}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {2.6}Input/Output Facilities}{10}{subsection.2.6}} -\@writefile{lof}{\contentsline {figure}{\numberline {7}{\ignorespaces A FrameSet is a network of Frames.}}{11}{figure.7}} -\newlabel{fig:frameset}{{7}{11}{A FrameSet is a network of Frames}{figure.7}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {2.7}Producing Graphical Output}{12}{subsection.2.7}} -\@writefile{lof}{\contentsline {figure}{\numberline {8}{\ignorespaces A labelled coordinate grid for an all-sky zenithal equal area projection in ecliptic coordinates.}}{13}{figure.8}} -\newlabel{fig:gridplot}{{8}{13}{A labelled coordinate grid for an all-sky zenithal equal area projection in ecliptic coordinates}{figure.8}{}} -\newlabel{ss:howto}{{3}{15}{\label {ss:howto}How To\ldots }{section.3}{}} -\@writefile{toc}{\contentsline {section}{\numberline {3}How To\ldots }{15}{section.3}} -\@writefile{toc}{\contentsline {subsection}{\numberline {3.1}\ldots Obtain and Install AST}{15}{subsection.3.1}} -\@writefile{toc}{\contentsline {subsection}{\numberline {3.2}\ldots Structure an AST Program}{15}{subsection.3.2}} -\newlabel{ss:howtobuild}{{3.3}{16}{\label {ss:howtobuild}\ldots Build an AST Program}{subsection.3.3}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {3.3}\ldots Build an AST Program}{16}{subsection.3.3}} -\newlabel{ss:howtoreadwcs}{{3.4}{16}{\label {ss:howtoreadwcs}\ldots Read a WCS Calibration from a Dataset}{subsection.3.4}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {3.4}\ldots Read a WCS Calibration from a Dataset}{16}{subsection.3.4}} -\@writefile{toc}{\contentsline {subsection}{\numberline {3.5}\ldots Validate WCS Information}{17}{subsection.3.5}} -\@writefile{toc}{\contentsline {subsection}{\numberline {3.6}\ldots Display AST Data}{17}{subsection.3.6}} -\newlabel{ss:howtotransform}{{3.7}{17}{\label {ss:howtotransform}\ldots Convert Between Pixel and World Coordinates}{subsection.3.7}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {3.7}\ldots Convert Between Pixel and World Coordinates}{17}{subsection.3.7}} -\newlabel{ss:howtotestforcelestial}{{3.8}{18}{\label {ss:howtotestforcelestial}\ldots Test if a WCS is a Celestial Coordinate System}{subsection.3.8}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {3.8}\ldots Test if a WCS is a Celestial Coordinate System}{18}{subsection.3.8}} -\newlabel{ss:howtotestforspectral}{{3.9}{18}{\label {ss:howtotestforspectral}\ldots Test if a WCS is a Spectral Coordinate System}{subsection.3.9}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {3.9}\ldots Test if a WCS is a Spectral Coordinate System}{18}{subsection.3.9}} -\newlabel{ss:howtoformatcoordinates}{{3.10}{18}{\label {ss:howtoformatcoordinates}\ldots Format Coordinates for Display}{subsection.3.10}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {3.10}\ldots Format Coordinates for Display}{18}{subsection.3.10}} -\@writefile{toc}{\contentsline {subsection}{\numberline {3.11}\ldots Display Coordinates as they are Transformed}{19}{subsection.3.11}} -\@writefile{toc}{\contentsline {subsection}{\numberline {3.12}\ldots Read Coordinates Entered by a User}{20}{subsection.3.12}} -\newlabel{ss:howtocreatenewwcs}{{3.13}{21}{\label {ss:howtocreatenewwcs}\ldots Create a New WCS Calibration}{subsection.3.13}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {3.13}\ldots Create a New WCS Calibration}{21}{subsection.3.13}} -\newlabel{ss:howtomodifywcs}{{3.14}{23}{\label {ss:howtomodifywcs}\ldots Modify a WCS Calibration}{subsection.3.14}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {3.14}\ldots Modify a WCS Calibration}{23}{subsection.3.14}} -\newlabel{ss:howtowritewcs}{{3.15}{24}{\label {ss:howtowritewcs}\ldots Write a Modified WCS Calibration to a Dataset}{subsection.3.15}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {3.15}\ldots Write a Modified WCS Calibration to a Dataset}{24}{subsection.3.15}} -\newlabel{ss:howtoplotgrid}{{3.16}{26}{\label {ss:howtoplotgrid}\ldots Display a Graphical Coordinate Grid}{subsection.3.16}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {3.16}\ldots Display a Graphical Coordinate Grid}{26}{subsection.3.16}} -\@writefile{lof}{\contentsline {figure}{\numberline {9}{\ignorespaces An example of a displayed image with a coordinate grid plotted over it.}}{27}{figure.9}} -\newlabel{fig:overgrid}{{9}{27}{An example of a displayed image with a coordinate grid plotted over it}{figure.9}{}} -\newlabel{ss:howtoswitchgrid}{{3.17}{30}{\label {ss:howtoswitchgrid}\ldots Switch to Plot a Different Celestial Coordinate Grid}{subsection.3.17}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {3.17}\ldots Switch to Plot a Different Celestial Coordinate Grid}{30}{subsection.3.17}} -\@writefile{toc}{\contentsline {subsection}{\numberline {3.18}\ldots Give a User Control Over the Appearance of a Plot}{30}{subsection.3.18}} -\newlabel{ss:primer}{{4}{33}{\label {ss:primer}An AST Object Primer}{section.4}{}} -\@writefile{toc}{\contentsline {section}{\numberline {4}An AST Object Primer}{33}{section.4}} -\@writefile{toc}{\contentsline {subsection}{\numberline {4.1}AST Objects}{33}{subsection.4.1}} -\newlabel{ss:objectcreation}{{4.2}{33}{\label {ss:objectcreation}Object Creation and Pointers}{subsection.4.2}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {4.2}Object Creation and Pointers}{33}{subsection.4.2}} -\newlabel{ss:objecthierarchy}{{4.3}{34}{\label {ss:objecthierarchy}The Object Hierarchy}{subsection.4.3}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {4.3}The Object Hierarchy}{34}{subsection.4.3}} -\newlabel{ss:mappinghierarchy}{{4.3}{34}{\label {ss:objecthierarchy}The Object Hierarchy}{subsection.4.3}{}} -\newlabel{ss:displayingobjects}{{4.4}{35}{\label {ss:displayingobjects}Displaying Objects}{subsection.4.4}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {4.4}Displaying Objects}{35}{subsection.4.4}} -\newlabel{ss:gettingattributes}{{4.5}{36}{\label {ss:gettingattributes}Getting Attribute Values}{subsection.4.5}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {4.5}Getting Attribute Values}{36}{subsection.4.5}} -\newlabel{ss:settingattributes}{{4.6}{36}{\label {ss:settingattributes}Setting Attribute Values}{subsection.4.6}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {4.6}Setting Attribute Values}{36}{subsection.4.6}} -\newlabel{ss:attributeinitialisation}{{4.6}{37}{\label {ss:settingattributes}Setting Attribute Values}{subsection.4.6}{}} -\newlabel{ss:defaultingattributes}{{4.7}{37}{\label {ss:defaultingattributes}Testing, Clearing and Defaulting Attributes}{subsection.4.7}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {4.7}Testing, Clearing and Defaulting Attributes}{37}{subsection.4.7}} -\newlabel{ss:transforming}{{4.8}{38}{\label {ss:transforming}Transforming Coordinates}{subsection.4.8}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {4.8}Transforming Coordinates}{38}{subsection.4.8}} -\newlabel{ss:annullingpointers}{{4.9}{39}{\label {ss:annullingpointers}Managing Object Pointers}{subsection.4.9}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {4.9}Managing Object Pointers}{39}{subsection.4.9}} -\newlabel{ss:contexts}{{4.10}{40}{\label {ss:contexts}AST Pointer Contexts---Begin and End}{subsection.4.10}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {4.10}AST Pointer Contexts---Begin and End}{40}{subsection.4.10}} -\@writefile{toc}{\contentsline {subsection}{\numberline {4.11}Exporting, Importing and Exempting AST Pointers}{41}{subsection.4.11}} -\newlabel{ss:copyingobjects}{{4.12}{41}{\label {ss:copyingobjects}Copying Objects}{subsection.4.12}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {4.12}Copying Objects}{41}{subsection.4.12}} -\newlabel{ss:errordetection}{{4.13}{42}{\label {ss:errordetection}Error Detection}{subsection.4.13}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {4.13}Error Detection}{42}{subsection.4.13}} -\newlabel{ss:mappings}{{5}{45}{\label {ss:mappings}Inter-Relating Coordinate Systems (Mappings)}{section.5}{}} -\@writefile{toc}{\contentsline {section}{\numberline {5}Inter-Relating Coordinate Systems (Mappings)}{45}{section.5}} -\newlabel{ss:mappingclass}{{5.1}{45}{\label {ss:mappingclass}The Mapping Class}{subsection.5.1}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {5.1}The Mapping Class}{45}{subsection.5.1}} -\@writefile{toc}{\contentsline {subsection}{\numberline {5.2}The Mapping Model}{46}{subsection.5.2}} -\@writefile{toc}{\contentsline {subsection}{\numberline {5.3}Changing Attributes of a Mapping}{46}{subsection.5.3}} -\@writefile{toc}{\contentsline {subsection}{\numberline {5.4}Input and Output Coordinate Numbers}{46}{subsection.5.4}} -\@writefile{toc}{\contentsline {subsection}{\numberline {5.5}Forward and Inverse Transformations}{47}{subsection.5.5}} -\newlabel{ss:invertingmappings}{{5.6}{47}{\label {ss:invertingmappings}Inverting Mappings}{subsection.5.6}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {5.6}Inverting Mappings}{47}{subsection.5.6}} -\@writefile{toc}{\contentsline {subsection}{\numberline {5.7}Finding the Rate of Change of a Mapping Output}{47}{subsection.5.7}} -\@writefile{toc}{\contentsline {subsection}{\numberline {5.8}Reporting Coordinate Transformations}{48}{subsection.5.8}} -\newlabel{ss:badcoordinates}{{5.9}{48}{\label {ss:badcoordinates}Handling Missing (Bad) Coordinate Values}{subsection.5.9}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {5.9}Handling Missing (Bad) Coordinate Values}{48}{subsection.5.9}} -\newlabel{ss:unitmapexample}{{5.10}{49}{\label {ss:unitmapexample}Example---the UnitMap}{subsection.5.10}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {5.10}Example---the UnitMap}{49}{subsection.5.10}} -\newlabel{ss:permmapexample}{{5.11}{49}{\label {ss:permmapexample}Example---the PermMap}{subsection.5.11}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {5.11}Example---the PermMap}{49}{subsection.5.11}} -\newlabel{ss:cmpmaps}{{6}{53}{\label {ss:cmpmaps}Compound Mappings (CmpMaps)}{section.6}{}} -\@writefile{toc}{\contentsline {section}{\numberline {6}Compound Mappings (CmpMaps)}{53}{section.6}} -\newlabel{ss:seriescmpmap}{{6.1}{53}{\label {ss:seriescmpmap}Combining Mappings in Series}{subsection.6.1}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {6.1}Combining Mappings in Series}{53}{subsection.6.1}} -\@writefile{toc}{\contentsline {subsection}{\numberline {6.2}Combining Mappings in Parallel}{54}{subsection.6.2}} -\newlabel{ss:cmpmapcomponents}{{6.3}{54}{\label {ss:cmpmapcomponents}The Component Mappings}{subsection.6.3}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {6.3}The Component Mappings}{54}{subsection.6.3}} -\newlabel{ss:complexcmpmap}{{6.4}{55}{\label {ss:complexcmpmap}Creating More Complex Mappings}{subsection.6.4}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {6.4}Creating More Complex Mappings}{55}{subsection.6.4}} -\newlabel{ss:cmpmapexample}{{6.5}{55}{\label {ss:cmpmapexample}Example---Transforming Between Two Calibrated Images}{subsection.6.5}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {6.5}Example---Transforming Between Two Calibrated Images}{55}{subsection.6.5}} -\newlabel{ss:overcomplexcmpmaps}{{6.6}{56}{\label {ss:overcomplexcmpmaps}Over-Complex Compound Mappings}{subsection.6.6}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {6.6}Over-Complex Compound Mappings}{56}{subsection.6.6}} -\newlabel{ss:simplifyingcmpmaps}{{6.7}{56}{\label {ss:simplifyingcmpmaps}Simplifying Compound Mappings}{subsection.6.7}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {6.7}Simplifying Compound Mappings}{56}{subsection.6.7}} -\@writefile{lof}{\contentsline {figure}{\numberline {10}{\ignorespaces An over-complex compound Mapping.}}{57}{figure.10}} -\newlabel{fig:simplifyexample}{{10}{57}{An over-complex compound Mapping}{figure.10}{}} -\newlabel{ss:frames}{{7}{59}{\label {ss:frames}Representing Coordinate Systems (Frames)}{section.7}{}} -\@writefile{toc}{\contentsline {section}{\numberline {7}Representing Coordinate Systems (Frames)}{59}{section.7}} -\@writefile{toc}{\contentsline {subsection}{\numberline {7.1}The Frame Model}{59}{subsection.7.1}} -\newlabel{ss:creatingframes}{{7.2}{59}{\label {ss:creatingframes}Creating a Frame}{subsection.7.2}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {7.2}Creating a Frame}{59}{subsection.7.2}} -\newlabel{ss:frameasmapping}{{7.3}{60}{\label {ss:frameasmapping}Using a Frame as a Mapping}{subsection.7.3}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {7.3}Using a Frame as a Mapping}{60}{subsection.7.3}} -\newlabel{ss:frameaxisattributes}{{7.4}{60}{\label {ss:frameaxisattributes}Frame Axis Attributes}{subsection.7.4}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {7.4}Frame Axis Attributes}{60}{subsection.7.4}} -\newlabel{ss:frameattributes}{{7.5}{61}{\label {ss:frameattributes}Frame Attributes}{subsection.7.5}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {7.5}Frame Attributes}{61}{subsection.7.5}} -\newlabel{ss:formattingaxisvalues}{{7.6}{63}{\label {ss:formattingaxisvalues}Formatting Axis Values}{subsection.7.6}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {7.6}Formatting Axis Values}{63}{subsection.7.6}} -\newlabel{ss:formattingwithdigits}{{7.6}{63}{\label {ss:formattingaxisvalues}Formatting Axis Values}{subsection.7.6}{}} -\newlabel{ss:normalising}{{7.7}{64}{\label {ss:normalising}Normalising Frame Coordinates}{subsection.7.7}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {7.7}Normalising Frame Coordinates}{64}{subsection.7.7}} -\newlabel{ss:unformattingaxisvalues}{{7.8}{64}{\label {ss:unformattingaxisvalues}Reading Formatted Axis Values}{subsection.7.8}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {7.8}Reading Formatted Axis Values}{64}{subsection.7.8}} -\newlabel{ss:permutingaxes}{{7.9}{68}{\label {ss:permutingaxes}Permuting Frame Axes}{subsection.7.9}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {7.9}Permuting Frame Axes}{68}{subsection.7.9}} -\@writefile{toc}{\contentsline {subsection}{\numberline {7.10}Selecting Frame Axes}{68}{subsection.7.10}} -\newlabel{ss:distanceandoffset}{{7.11}{69}{\label {ss:distanceandoffset}Calculating Distances, Angles and Offsets}{subsection.7.11}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {7.11}Calculating Distances, Angles and Offsets}{69}{subsection.7.11}} -\newlabel{ss:framedomains}{{7.12}{71}{\label {ss:framedomains}The Domain Attribute}{subsection.7.12}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {7.12}The Domain Attribute}{71}{subsection.7.12}} -\newlabel{ss:domainconventions}{{7.13}{72}{\label {ss:domainconventions}Conventions for Domain Names}{subsection.7.13}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {7.13}Conventions for Domain Names}{72}{subsection.7.13}} -\newlabel{ss:frameunits}{{7.14}{74}{\label {ss:frameunits}The Unit Attribute}{subsection.7.14}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {7.14}The Unit Attribute}{74}{subsection.7.14}} -\newlabel{ss:unitsyntax}{{7.14.1}{75}{\label {ss:unitsyntax}The Syntax for Unit Strings}{subsubsection.7.14.1}{}} -\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.14.1}The Syntax for Unit Strings}{75}{subsubsection.7.14.1}} -\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.14.2}Side-effects of Changing the Unit attribute}{76}{subsubsection.7.14.2}} -\newlabel{ss:skyframes}{{8}{79}{\label {ss:skyframes}Celestial Coordinate Systems (SkyFrames)}{section.8}{}} -\@writefile{toc}{\contentsline {section}{\numberline {8}Celestial Coordinate Systems (SkyFrames)}{79}{section.8}} -\@writefile{toc}{\contentsline {subsection}{\numberline {8.1}The SkyFrame Model}{79}{subsection.8.1}} -\@writefile{toc}{\contentsline {subsection}{\numberline {8.2}Creating a SkyFrame}{79}{subsection.8.2}} -\@writefile{toc}{\contentsline {subsection}{\numberline {8.3}Specifying a Particular Celestial Coordinate System}{80}{subsection.8.3}} -\@writefile{toc}{\contentsline {subsection}{\numberline {8.4}Attributes which Qualify Celestial Coordinate Systems}{80}{subsection.8.4}} -\newlabel{ss:epochitem}{{8.4}{80}{\enit@align {\enit@format {\label {ss:epochitem}\htmlref {Epoch}{Epoch}}}}{subsection.8.4}{}} -\newlabel{ss:equinoxitem}{{8.4}{81}{\enit@align {\enit@format {\label {ss:equinoxitem}\htmlref {Equinox}{Equinox}}}}{subsection.8.4}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {8.5}Using Default SkyFrame Attributes}{81}{subsection.8.5}} -\newlabel{ss:formattingskyaxisvalues}{{8.6}{82}{\label {ss:formattingskyaxisvalues}Formatting Celestial Coordinates}{subsection.8.6}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {8.6}Formatting Celestial Coordinates}{82}{subsection.8.6}} -\newlabel{ss:unformattingskyaxisvalues}{{8.7}{84}{\label {ss:unformattingskyaxisvalues}Reading Formatted Celestial Coordinates}{subsection.8.7}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {8.7}Reading Formatted Celestial Coordinates}{84}{subsection.8.7}} -\@writefile{toc}{\contentsline {subsection}{\numberline {8.8}Representing Offsets from a Specified Sky Position}{87}{subsection.8.8}} -\newlabel{{xref_ss_specframes}}{{9}{89}{\xlabel {ss_specframes}\label {ss:specframes}Spectral Coordinate Systems (SpecFrames)}{section.9}{}} -\newlabel{ss:specframes}{{9}{89}{\xlabel {ss_specframes}\label {ss:specframes}Spectral Coordinate Systems (SpecFrames)}{section.9}{}} -\@writefile{toc}{\contentsline {section}{\numberline {9}Spectral Coordinate Systems (SpecFrames)}{89}{section.9}} -\@writefile{toc}{\contentsline {subsection}{\numberline {9.1}The SpecFrame Model}{89}{subsection.9.1}} -\@writefile{toc}{\contentsline {subsection}{\numberline {9.2}Creating a SpecFrame}{89}{subsection.9.2}} -\@writefile{toc}{\contentsline {subsection}{\numberline {9.3}Specifying a Particular Spectral Coordinate System}{89}{subsection.9.3}} -\@writefile{toc}{\contentsline {subsection}{\numberline {9.4}Attributes which Qualify Spectral Coordinate Systems}{90}{subsection.9.4}} -\@writefile{toc}{\contentsline {subsection}{\numberline {9.5}Using Default SpecFrame Attributes}{91}{subsection.9.5}} -\newlabel{ss:creatingspectralcubes}{{9.6}{92}{\label {ss:creatingspectralcubes}Creating Spectral Cubes}{subsection.9.6}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {9.6}Creating Spectral Cubes}{92}{subsection.9.6}} -\newlabel{ss:handlingdualsidebandspectra}{{9.7}{93}{\label {ss:handlingdualsidebandspectra}Handling Dual-Sideband Spectra}{subsection.9.7}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {9.7}Handling Dual-Sideband Spectra}{93}{subsection.9.7}} -\newlabel{eqn:dsb}{{1}{93}{\label {ss:handlingdualsidebandspectra}Handling Dual-Sideband Spectra}{equation.9.1}{}} -\newlabel{eqn:dsb2}{{2}{94}{\label {ss:handlingdualsidebandspectra}Handling Dual-Sideband Spectra}{equation.9.2}{}} -\newlabel{{xref_ss_timeframes}}{{10}{95}{\xlabel {ss_timeframes}\label {ss:timeframes}Time Systems (TimeFrames)}{section.10}{}} -\newlabel{ss:timeframes}{{10}{95}{\xlabel {ss_timeframes}\label {ss:timeframes}Time Systems (TimeFrames)}{section.10}{}} -\@writefile{toc}{\contentsline {section}{\numberline {10}Time Systems (TimeFrames)}{95}{section.10}} -\@writefile{toc}{\contentsline {subsection}{\numberline {10.1}The TimeFrame Model}{95}{subsection.10.1}} -\@writefile{toc}{\contentsline {subsection}{\numberline {10.2}Creating a TimeFrame}{95}{subsection.10.2}} -\@writefile{toc}{\contentsline {subsection}{\numberline {10.3}Specifying a Particular Time System}{95}{subsection.10.3}} -\@writefile{toc}{\contentsline {subsection}{\numberline {10.4}Attributes which Qualify Time Coordinate Systems}{96}{subsection.10.4}} -\newlabel{ss:cmpframes}{{11}{97}{\label {ss:cmpframes}Compound Frames (CmpFrames)}{section.11}{}} -\@writefile{toc}{\contentsline {section}{\numberline {11}Compound Frames (CmpFrames)}{97}{section.11}} -\@writefile{toc}{\contentsline {subsection}{\numberline {11.1}Creating a CmpFrame}{97}{subsection.11.1}} -\@writefile{toc}{\contentsline {subsection}{\numberline {11.2}The Attributes of a CmpFrame}{97}{subsection.11.2}} -\newlabel{ss:introducingconversion}{{12}{99}{\label {ss:introducingconversion}An Introduction to Coordinate System Conversions}{section.12}{}} -\@writefile{toc}{\contentsline {section}{\numberline {12}An Introduction to Coordinate System Conversions}{99}{section.12}} -\newlabel{ss:convertingskyframes}{{12.1}{99}{\label {ss:convertingskyframes}Converting between Celestial Coordinate Systems}{subsection.12.1}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {12.1}Converting between Celestial Coordinate Systems}{99}{subsection.12.1}} -\newlabel{ss:convertingspecframes}{{12.2}{101}{\label {ss:convertingspecframes}Converting between Spectral Coordinate Systems}{subsection.12.2}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {12.2}Converting between Spectral Coordinate Systems}{101}{subsection.12.2}} -\@writefile{toc}{\contentsline {subsection}{\numberline {12.3}Converting between Time Coordinate Systems}{103}{subsection.12.3}} -\newlabel{ss:convertingpermutedaxes}{{12.4}{103}{\label {ss:convertingpermutedaxes}Handling SkyFrame Axis Permutations}{subsection.12.4}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {12.4}Handling SkyFrame Axis Permutations}{103}{subsection.12.4}} -\newlabel{ss:convertingframes}{{12.5}{104}{\label {ss:convertingframes}Converting Between Frames}{subsection.12.5}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {12.5}Converting Between Frames}{104}{subsection.12.5}} -\newlabel{ss:alignmentsystem}{{12.6}{104}{\label {ss:alignmentsystem}The Choice of Alignment System}{subsection.12.6}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {12.6}The Choice of Alignment System}{104}{subsection.12.6}} -\newlabel{ss:framesets}{{13}{107}{\label {ss:framesets}Coordinate System Networks (FrameSets)}{section.13}{}} -\@writefile{toc}{\contentsline {section}{\numberline {13}Coordinate System Networks (FrameSets)}{107}{section.13}} -\@writefile{toc}{\contentsline {subsection}{\numberline {13.1}The FrameSet Model}{107}{subsection.13.1}} -\newlabel{ss:creatingaframeset}{{13.2}{108}{\label {ss:creatingaframeset}Creating a FrameSet}{subsection.13.2}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {13.2}Creating a FrameSet}{108}{subsection.13.2}} -\newlabel{ss:addingframes}{{13.3}{108}{\label {ss:addingframes}Adding New Frames to a FrameSet}{subsection.13.3}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {13.3}Adding New Frames to a FrameSet}{108}{subsection.13.3}} -\@writefile{lof}{\contentsline {figure}{\numberline {11}{\ignorespaces An example FrameSet.}}{109}{figure.11}} -\newlabel{fig:fsexample}{{11}{109}{An example FrameSet}{figure.11}{}} -\newlabel{ss:baseandcurrent}{{13.4}{110}{\label {ss:baseandcurrent}The Base and Current Frames}{subsection.13.4}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {13.4}The Base and Current Frames}{110}{subsection.13.4}} -\newlabel{ss:baseandcurrentdefault}{{13.4}{110}{\label {ss:baseandcurrent}The Base and Current Frames}{subsection.13.4}{}} -\newlabel{ss:astbaseandastcurrent}{{13.5}{110}{\label {ss:astbaseandastcurrent}Referring to the Base and Current Frames}{subsection.13.5}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {13.5}Referring to the Base and Current Frames}{110}{subsection.13.5}} -\newlabel{ss:framesetasmapping}{{13.6}{111}{\label {ss:framesetasmapping}Using a FrameSet as a Mapping}{subsection.13.6}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {13.6}Using a FrameSet as a Mapping}{111}{subsection.13.6}} -\newlabel{ss:extractingamapping}{{13.7}{111}{\label {ss:extractingamapping}Extracting a Mapping from a FrameSet}{subsection.13.7}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {13.7}Extracting a Mapping from a FrameSet}{111}{subsection.13.7}} -\newlabel{ss:framesetasframe}{{13.8}{112}{\label {ss:framesetasframe}Using a FrameSet as a Frame}{subsection.13.8}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {13.8}Using a FrameSet as a Frame}{112}{subsection.13.8}} -\@writefile{toc}{\contentsline {subsection}{\numberline {13.9}Extracting a Frame from a FrameSet}{113}{subsection.13.9}} -\@writefile{toc}{\contentsline {subsection}{\numberline {13.10}Removing a Frame from a FrameSet}{113}{subsection.13.10}} -\newlabel{ss:fshigher}{{14}{115}{\label {ss:fshigher}Higher Level Operations on FrameSets}{section.14}{}} -\@writefile{toc}{\contentsline {section}{\numberline {14}Higher Level Operations on FrameSets}{115}{section.14}} -\newlabel{ss:framesetsfromconvert}{{14.1}{115}{\label {ss:framesetsfromconvert}Creating FrameSets with AST\_CONVERT}{subsection.14.1}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {14.1}Creating FrameSets with AST_CONVERT}{115}{subsection.14.1}} -\@writefile{lof}{\contentsline {figure}{\numberline {12}{\ignorespaces FrameSet produced when converting between two SkyFrames.}}{115}{figure.12}} -\newlabel{fig:fsconvert}{{12}{115}{FrameSet produced when converting between two SkyFrames}{figure.12}{}} -\newlabel{ss:framesetconverting}{{14.2}{116}{\label {ss:framesetconverting}Converting between FrameSet Coordinate Systems}{subsection.14.2}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {14.2}Converting between FrameSet Coordinate Systems}{116}{subsection.14.2}} -\@writefile{lof}{\contentsline {figure}{\numberline {13}{\ignorespaces Conversion between two FrameSets is performed by establishin a link between a pair of Frames, one from each FrameSet.}}{117}{figure.13}} -\newlabel{fig:fsalign}{{13}{117}{Conversion between two FrameSets is performed by establishin a link between a pair of Frames, one from each FrameSet}{figure.13}{}} -\newlabel{ss:registeringimages}{{14.3}{119}{\label {ss:registeringimages}Example---Registering Two Images}{subsection.14.3}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {14.3}Example---Registering Two Images}{119}{subsection.14.3}} -\newlabel{ss:remapframe}{{14.4}{120}{\label {ss:remapframe}Re-Defining a FrameSet Coordinate System}{subsection.14.4}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {14.4}Re-Defining a FrameSet Coordinate System}{120}{subsection.14.4}} -\@writefile{lof}{\contentsline {figure}{\numberline {14}{\ignorespaces Interposing a Mapping into a FrameSet}}{121}{figure.14}} -\newlabel{fig:fsremap}{{14}{121}{Interposing a Mapping into a FrameSet}{figure.14}{}} -\newlabel{ss:wcsprocessingexample}{{14.5}{121}{\label {ss:wcsprocessingexample}Example---Binning an Image}{subsection.14.5}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {14.5}Example---Binning an Image}{121}{subsection.14.5}} -\newlabel{ss:framesetintegrity}{{14.6}{122}{\label {ss:framesetintegrity}Maintaining the Integrity of FrameSets}{subsection.14.6}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {14.6}Maintaining the Integrity of FrameSets}{122}{subsection.14.6}} -\@writefile{toc}{\contentsline {subsection}{\numberline {14.7}Merging FrameSets}{124}{subsection.14.7}} -\@writefile{lof}{\contentsline {figure}{\numberline {15}{\ignorespaces Two FrameSets in the process of being merged.}}{124}{figure.15}} -\newlabel{fig:fsmerge}{{15}{124}{Two FrameSets in the process of being merged}{figure.15}{}} -\newlabel{ss:channels}{{15}{127}{\label {ss:channels}Saving and Restoring Objects (Channels)}{section.15}{}} -\@writefile{toc}{\contentsline {section}{\numberline {15}Saving and Restoring Objects (Channels)}{127}{section.15}} -\@writefile{toc}{\contentsline {subsection}{\numberline {15.1}The Channel Model}{127}{subsection.15.1}} -\newlabel{ss:creatingachannel}{{15.2}{127}{\label {ss:creatingachannel}Creating a Channel}{subsection.15.2}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {15.2}Creating a Channel}{127}{subsection.15.2}} -\newlabel{ss:writingtoachannel}{{15.3}{128}{\label {ss:writingtoachannel}Writing Objects to a Channel}{subsection.15.3}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {15.3}Writing Objects to a Channel}{128}{subsection.15.3}} -\newlabel{ss:readingfromachannel}{{15.4}{128}{\label {ss:readingfromachannel}Reading Objects from a Channel}{subsection.15.4}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {15.4}Reading Objects from a Channel}{128}{subsection.15.4}} -\@writefile{toc}{\contentsline {subsection}{\numberline {15.5}Saving and Restoring Multiple Objects}{129}{subsection.15.5}} -\newlabel{ss:validatinginput}{{15.6}{129}{\label {ss:validatinginput}Validating Input}{subsection.15.6}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {15.6}Validating Input}{129}{subsection.15.6}} -\@writefile{toc}{\contentsline {subsection}{\numberline {15.7}Storing an ID String with an Object}{129}{subsection.15.7}} -\newlabel{ss:textualoutputformat}{{15.8}{130}{\label {ss:textualoutputformat}The Textual Output Format}{subsection.15.8}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {15.8}The Textual Output Format}{130}{subsection.15.8}} -\newlabel{ss:controllingchanneloutput}{{15.9}{131}{\label {ss:controllingchanneloutput}Controlling the Amount of Output}{subsection.15.9}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {15.9}Controlling the Amount of Output}{131}{subsection.15.9}} -\newlabel{ss:channelcommenting}{{15.10}{133}{\label {ss:channelcommenting}Controlling Commenting}{subsection.15.10}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {15.10}Controlling Commenting}{133}{subsection.15.10}} -\@writefile{toc}{\contentsline {subsection}{\numberline {15.11}Editing Textual Output}{134}{subsection.15.11}} -\newlabel{ss:mixingchanneltext}{{15.12}{135}{\label {ss:mixingchanneltext}Mixing Objects with other Text}{subsection.15.12}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {15.12}Mixing Objects with other Text}{135}{subsection.15.12}} -\newlabel{ss:channelsource}{{15.13}{135}{\label {ss:channelsource}Reading Objects from Files}{subsection.15.13}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {15.13}Reading Objects from Files}{135}{subsection.15.13}} -\newlabel{ss:channelsink}{{15.14}{137}{\label {ss:channelsink}Writing Objects to Files}{subsection.15.14}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {15.14}Writing Objects to Files}{137}{subsection.15.14}} -\newlabel{ss:otherplaces}{{15.15}{138}{\label {ss:otherplaces}Reading and Writing Objects to other Places}{subsection.15.15}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {15.15}Reading and Writing Objects to other Places}{138}{subsection.15.15}} -\newlabel{ss:nativefits}{{16}{139}{\label {ss:nativefits}Storing AST Objects in FITS Headers (FitsChans)}{section.16}{}} -\@writefile{toc}{\contentsline {section}{\numberline {16}Storing AST Objects in FITS Headers (FitsChans)}{139}{section.16}} -\newlabel{ss:nativeencoding}{{16.1}{139}{\label {ss:nativeencoding}The Native FITS Encoding}{subsection.16.1}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {16.1}The Native FITS Encoding}{139}{subsection.16.1}} -\@writefile{toc}{\contentsline {subsection}{\numberline {16.2}The FitsChan Model}{139}{subsection.16.2}} -\newlabel{ss:creatingafitschan}{{16.3}{140}{\label {ss:creatingafitschan}Creating a FitsChan}{subsection.16.3}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {16.3}Creating a FitsChan}{140}{subsection.16.3}} -\newlabel{ss:addressingfitscards}{{16.4}{141}{\label {ss:addressingfitscards}Addressing Cards in a FitsChan}{subsection.16.4}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {16.4}Addressing Cards in a FitsChan}{141}{subsection.16.4}} -\newlabel{ss:writingnativefits}{{16.5}{142}{\label {ss:writingnativefits}Writing Native Objects to a FitsChan}{subsection.16.5}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {16.5}Writing Native Objects to a FitsChan}{142}{subsection.16.5}} -\newlabel{ss:extractingfitscards}{{16.6}{142}{\label {ss:extractingfitscards}Extracting Individual Cards from a FitsChan}{subsection.16.6}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {16.6}Extracting Individual Cards from a FitsChan}{142}{subsection.16.6}} -\@writefile{toc}{\contentsline {subsection}{\numberline {16.7}The Native FitsChan Output Format}{143}{subsection.16.7}} -\newlabel{ss:addingfitscards}{{16.8}{144}{\label {ss:addingfitscards}Adding Individual Cards to a FitsChan}{subsection.16.8}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {16.8}Adding Individual Cards to a FitsChan}{144}{subsection.16.8}} -\newlabel{ss:addingmulticards}{{16.9}{145}{\label {ss:addingmulticards}Adding Concatenated Cards to a FitsChan}{subsection.16.9}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {16.9}Adding Concatenated Cards to a FitsChan}{145}{subsection.16.9}} -\newlabel{ss:readingnativefits}{{16.10}{145}{\label {ss:readingnativefits}Reading Native Objects From a FitsChan}{subsection.16.10}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {16.10}Reading Native Objects From a FitsChan}{145}{subsection.16.10}} -\@writefile{toc}{\contentsline {subsection}{\numberline {16.11}Saving and Restoring Multiple Objects in a FitsChan}{146}{subsection.16.11}} -\@writefile{toc}{\contentsline {subsection}{\numberline {16.12}Mixing Native Objects with Other FITS Cards}{146}{subsection.16.12}} -\newlabel{ss:findingandchangingfits}{{16.13}{146}{\label {ss:findingandchangingfits}Finding and Changing Cards in a FitsChan}{subsection.16.13}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {16.13}Finding and Changing Cards in a FitsChan}{146}{subsection.16.13}} -\newlabel{ss:fitssourceandsink}{{16.14}{147}{\label {ss:fitssourceandsink}Source and Sink Routines for FitsChans}{subsection.16.14}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {16.14}Source and Sink Routines for FitsChans}{147}{subsection.16.14}} -\newlabel{ss:foreignfits}{{17}{149}{\label {ss:foreignfits}Using Foreign FITS Encodings}{section.17}{}} -\@writefile{toc}{\contentsline {section}{\numberline {17}Using Foreign FITS Encodings}{149}{section.17}} -\newlabel{ss:foreignencodings}{{17.1}{149}{\label {ss:foreignencodings}The Foreign FITS Encodings}{subsection.17.1}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {17.1}The Foreign FITS Encodings}{149}{subsection.17.1}} -\newlabel{ss:foreignfitslimitations}{{17.2}{150}{\label {ss:foreignfitslimitations}Limitations of Foreign Encodings}{subsection.17.2}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {17.2}Limitations of Foreign Encodings}{150}{subsection.17.2}} -\newlabel{ss:identifyingfitsencoding}{{17.3}{151}{\label {ss:identifyingfitsencoding}Identifying Foreign Encodings on Input}{subsection.17.3}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {17.3}Identifying Foreign Encodings on Input}{151}{subsection.17.3}} -\newlabel{ss:readingforeignfits}{{17.4}{153}{\label {ss:readingforeignfits}Reading Foreign WCS Information from a FITS Header}{subsection.17.4}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {17.4}Reading Foreign WCS Information from a FITS Header}{153}{subsection.17.4}} -\newlabel{ss:destructiveread}{{17.5}{154}{\label {ss:destructiveread}Removing WCS Information from FITS Headers---the Destructive Read}{subsection.17.5}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {17.5}Removing WCS Information from FITS Headers---the Destructive Read}{154}{subsection.17.5}} -\newlabel{ss:propagatingwcsinformation}{{17.6}{155}{\label {ss:propagatingwcsinformation}Propagating WCS Information through Data Processing Steps}{subsection.17.6}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {17.6}Propagating WCS Information through Data Processing Steps}{155}{subsection.17.6}} -\newlabel{ss:writingforeignfits}{{17.7}{156}{\label {ss:writingforeignfits}Writing Foreign WCS Information to a FITS Header}{subsection.17.7}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {17.7}Writing Foreign WCS Information to a FITS Header}{156}{subsection.17.7}} -\newlabel{ss:xmlchan}{{18}{159}{\label {ss:xmlchan}Storing AST Objects as XML (XmlChan)}{section.18}{}} -\@writefile{toc}{\contentsline {section}{\numberline {18}Storing AST Objects as XML (XmlChan)}{159}{section.18}} -\@writefile{toc}{\contentsline {subsection}{\numberline {18.1}Reading IVOA Space-Time-Coordinates XML (STC-X) Descriptions}{160}{subsection.18.1}} -\newlabel{ss:stcschans}{{19}{163}{\label {ss:stcschans}Reading and writing STC-S descriptions (StcsChans)}{section.19}{}} -\@writefile{toc}{\contentsline {section}{\numberline {19}Reading and writing STC-S descriptions (StcsChans)}{163}{section.19}} -\newlabel{ss:intramaps}{{20}{165}{\label {ss:intramaps}Creating Your Own Private Mappings (IntraMaps)}{section.20}{}} -\@writefile{toc}{\contentsline {section}{\numberline {20}Creating Your Own Private Mappings (IntraMaps)}{165}{section.20}} -\@writefile{toc}{\contentsline {subsection}{\numberline {20.1}The Need for Extensibility}{165}{subsection.20.1}} -\@writefile{toc}{\contentsline {subsection}{\numberline {20.2}The IntraMap Model}{165}{subsection.20.2}} -\newlabel{ss:intramaplimitations}{{20.3}{165}{\label {ss:intramaplimitations}Limitations of IntraMaps}{subsection.20.3}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {20.3}Limitations of IntraMaps}{165}{subsection.20.3}} -\newlabel{ss:transformationfunctions}{{20.4}{166}{\label {ss:transformationfunctions}Writing a Transformation Routine}{subsection.20.4}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {20.4}Writing a Transformation Routine}{166}{subsection.20.4}} -\newlabel{{xref_SqrTran}}{{20.4}{166}{\label {ss:transformationfunctions}Writing a Transformation Routine}{subsection.20.4}{}} -\newlabel{ss:registeringintramaps}{{20.5}{167}{\label {ss:registeringintramaps}Registering a Transformation Routine}{subsection.20.5}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {20.5}Registering a Transformation Routine}{167}{subsection.20.5}} -\@writefile{toc}{\contentsline {subsection}{\numberline {20.6}Creating an IntraMap}{168}{subsection.20.6}} -\newlabel{ss:restrictedintramaps}{{20.7}{169}{\label {ss:restrictedintramaps}Restricted Implementations of Transformation Routines}{subsection.20.7}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {20.7}Restricted Implementations of Transformation Routines}{169}{subsection.20.7}} -\newlabel{ss:variableintramapcoordinates}{{20.8}{170}{\label {ss:variableintramapcoordinates}Variable Numbers of Coordinates}{subsection.20.8}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {20.8}Variable Numbers of Coordinates}{170}{subsection.20.8}} -\newlabel{ss:intraflag}{{20.9}{170}{\label {ss:intraflag}Adapting a Transformation Routine to Individual IntraMaps}{subsection.20.9}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {20.9}Adapting a Transformation Routine to Individual IntraMaps}{170}{subsection.20.9}} -\newlabel{{xref_MaxTran}}{{20.10}{171}{\xlabel {MaxTran}\label {ss:simplifyingintramaps}Simplifying IntraMaps}{subsection.20.10}{}} -\newlabel{ss:simplifyingintramaps}{{20.10}{171}{\xlabel {MaxTran}\label {ss:simplifyingintramaps}Simplifying IntraMaps}{subsection.20.10}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {20.10}Simplifying IntraMaps}{171}{subsection.20.10}} -\newlabel{ss:readingandwritingintramaps}{{20.11}{173}{\label {ss:readingandwritingintramaps}Writing and Reading IntraMaps}{subsection.20.11}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {20.11}Writing and Reading IntraMaps}{173}{subsection.20.11}} -\newlabel{ss:intramaplibrary}{{20.12}{173}{\label {ss:intramaplibrary}Managing Transformation Routines in Libraries}{subsection.20.12}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {20.12}Managing Transformation Routines in Libraries}{173}{subsection.20.12}} -\newlabel{ss:plots}{{21}{175}{\label {ss:plots}Producing Graphical Output (Plots)}{section.21}{}} -\@writefile{toc}{\contentsline {section}{\numberline {21}Producing Graphical Output (Plots)}{175}{section.21}} -\@writefile{toc}{\contentsline {subsection}{\numberline {21.1}The Plot Model}{175}{subsection.21.1}} -\@writefile{toc}{\contentsline {subsection}{\numberline {21.2}Plotting Symbols}{175}{subsection.21.2}} -\newlabel{ss:plottinggeodesics}{{21.3}{176}{\label {ss:plottinggeodesics}Plotting Geodesic Curves}{subsection.21.3}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {21.3}Plotting Geodesic Curves}{176}{subsection.21.3}} -\@writefile{toc}{\contentsline {subsection}{\numberline {21.4}Plotting Curves Parallel to Axes}{177}{subsection.21.4}} -\newlabel{ss:plottinggeneralizedcurves}{{21.5}{177}{\label {ss:plottinggeneralizedcurves}Plotting Generalized Curves}{subsection.21.5}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {21.5}Plotting Generalized Curves}{177}{subsection.21.5}} -\newlabel{ss:clipping}{{21.6}{177}{\label {ss:clipping}Clipping}{subsection.21.6}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {21.6}Clipping}{177}{subsection.21.6}} -\@writefile{toc}{\contentsline {subsection}{\numberline {21.7}Using a Plot as a Mapping}{178}{subsection.21.7}} -\@writefile{toc}{\contentsline {subsection}{\numberline {21.8}Using a Plot as a Frame}{178}{subsection.21.8}} -\newlabel{ss:validphysicalcoordinates}{{21.9}{179}{\label {ss:validphysicalcoordinates}Regions of Valid Physical Coordinates}{subsection.21.9}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {21.9}Regions of Valid Physical Coordinates}{179}{subsection.21.9}} -\@writefile{toc}{\contentsline {subsection}{\numberline {21.10}Plotting Borders}{179}{subsection.21.10}} -\@writefile{toc}{\contentsline {subsection}{\numberline {21.11}Plotting Text}{179}{subsection.21.11}} -\newlabel{ss:plottingagrid}{{21.12}{180}{\label {ss:plottingagrid}Plotting a Grid}{subsection.21.12}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {21.12}Plotting a Grid}{180}{subsection.21.12}} -\newlabel{ss:escapes}{{21.13}{180}{\label {ss:escapes}Controlling the Appearance of Sub-strings}{subsection.21.13}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {21.13}Controlling the Appearance of Sub-strings}{180}{subsection.21.13}} -\newlabel{ss:logaxes}{{21.14}{181}{\label {ss:logaxes}Producing Logarithmic Axes}{subsection.21.14}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {21.14}Producing Logarithmic Axes}{181}{subsection.21.14}} -\newlabel{ss:choosingagraphicspackage}{{21.15}{182}{\label {ss:choosingagraphicspackage}Choosing a Graphics Package}{subsection.21.15}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {21.15}Choosing a Graphics Package}{182}{subsection.21.15}} -\@writefile{toc}{\contentsline {section}{\numberline {22}Compiling and Linking Software that Uses AST}{183}{section.22}} -\newlabel{ss:accessingheaderfile}{{22.1}{183}{\label {ss:accessingheaderfile}Accessing AST Include Files}{subsection.22.1}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {22.1}Accessing AST Include Files}{183}{subsection.22.1}} -\newlabel{ss:linking}{{22.2}{183}{\label {ss:linking}Linking with AST Facilities}{subsection.22.2}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {22.2}Linking with AST Facilities}{183}{subsection.22.2}} -\@writefile{toc}{\contentsline {subsection}{\numberline {22.3}Building ADAM Applications that Use AST}{184}{subsection.22.3}} -\newlabel{ss:classhierarchy}{{A}{185}{\label {ss:classhierarchy}The AST Class Hierarchy}{appendix.A}{}} -\@writefile{toc}{\contentsline {section}{\numberline {A}The AST Class Hierarchy}{185}{appendix.A}} -\newlabel{ss:functiondescriptions}{{B}{187}{\label {ss:functiondescriptions}AST Routine Descriptions}{appendix.B}{}} -\@writefile{toc}{\contentsline {section}{\numberline {B}AST Routine Descriptions}{187}{appendix.B}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_SET}{188}{sstrefsection.1}} -\newlabel{AST_SET}{{B}{188}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.1}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_ADDCELL}{189}{sstrefsection.2}} -\newlabel{AST_ADDCELL}{{B}{189}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.2}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_ADDCOLUMN}{190}{sstrefsection.3}} -\newlabel{AST_ADDCOLUMN}{{B}{190}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.3}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_ADDFRAME}{191}{sstrefsection.4}} -\newlabel{AST_ADDFRAME}{{B}{191}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.4}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_ADDMOCDATA}{193}{sstrefsection.5}} -\newlabel{AST_ADDMOCDATA}{{B}{193}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.5}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_ADDMOCSTRING}{194}{sstrefsection.6}} -\newlabel{AST_ADDMOCSTRING}{{B}{194}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.6}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_ADDPARAMETER}{196}{sstrefsection.7}} -\newlabel{AST_ADDPARAMETER}{{B}{196}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.7}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_ADDPIXELMASK$<$X$>$}{197}{sstrefsection.8}} -\newlabel{AST_ADDPIXELMASK$<$X$>$}{{B}{197}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.8}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_ADDREGION}{200}{sstrefsection.9}} -\newlabel{AST_ADDREGION}{{B}{200}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.9}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_ADDVARIANT}{202}{sstrefsection.10}} -\newlabel{AST_ADDVARIANT}{{B}{202}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.10}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_ANGLE}{203}{sstrefsection.11}} -\newlabel{AST_ANGLE}{{B}{203}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.11}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_ANNUL}{204}{sstrefsection.12}} -\newlabel{AST_ANNUL}{{B}{204}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.12}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_AXANGLE}{205}{sstrefsection.13}} -\newlabel{AST_AXANGLE}{{B}{205}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.13}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_AXDISTANCE}{206}{sstrefsection.14}} -\newlabel{AST_AXDISTANCE}{{B}{206}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.14}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_AXNORM}{207}{sstrefsection.15}} -\newlabel{AST_AXNORM}{{B}{207}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.15}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_AXOFFSET}{208}{sstrefsection.16}} -\newlabel{AST_AXOFFSET}{{B}{208}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.16}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_BBUF}{209}{sstrefsection.17}} -\newlabel{AST_BBUF}{{B}{209}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.17}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_BEGIN}{210}{sstrefsection.18}} -\newlabel{AST_BEGIN}{{B}{210}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.18}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_BORDER}{211}{sstrefsection.19}} -\newlabel{AST_BORDER}{{B}{211}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.19}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_BOUNDINGBOX}{212}{sstrefsection.20}} -\newlabel{AST_BOUNDINGBOX}{{B}{212}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.20}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_BOX}{213}{sstrefsection.21}} -\newlabel{AST_BOX}{{B}{213}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.21}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_CHANNEL}{215}{sstrefsection.22}} -\newlabel{AST_CHANNEL}{{B}{215}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.22}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_CHEBYDOMAIN}{217}{sstrefsection.23}} -\newlabel{AST_CHEBYDOMAIN}{{B}{217}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.23}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_CHEBYMAP}{218}{sstrefsection.24}} -\newlabel{AST_CHEBYMAP}{{B}{218}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.24}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_CIRCLE}{221}{sstrefsection.25}} -\newlabel{AST_CIRCLE}{{B}{221}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.25}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_CIRCLEPARS}{223}{sstrefsection.26}} -\newlabel{AST_CIRCLEPARS}{{B}{223}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.26}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_CLEAR}{224}{sstrefsection.27}} -\newlabel{AST_CLEAR}{{B}{224}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.27}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_CLIP}{225}{sstrefsection.28}} -\newlabel{AST_CLIP}{{B}{225}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.28}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_CLONE}{227}{sstrefsection.29}} -\newlabel{AST_CLONE}{{B}{227}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.29}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_CMPFRAME}{228}{sstrefsection.30}} -\newlabel{AST_CMPFRAME}{{B}{228}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.30}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_CMPMAP}{229}{sstrefsection.31}} -\newlabel{AST_CMPMAP}{{B}{229}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.31}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_CMPREGION}{231}{sstrefsection.32}} -\newlabel{AST_CMPREGION}{{B}{231}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.32}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_COLUMNNAME}{233}{sstrefsection.33}} -\newlabel{AST_COLUMNNAME}{{B}{233}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.33}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_COLUMNNULL}{234}{sstrefsection.34}} -\newlabel{AST_COLUMNNULL}{{B}{234}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.34}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_COLUMNSHAPE}{236}{sstrefsection.35}} -\newlabel{AST_COLUMNSHAPE}{{B}{236}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.35}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_COLUMNSIZE}{237}{sstrefsection.36}} -\newlabel{AST_COLUMNSIZE}{{B}{237}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.36}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_CONVERT}{238}{sstrefsection.37}} -\newlabel{AST_CONVERT}{{B}{238}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.37}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_CONVEX$<$X$>$}{242}{sstrefsection.38}} -\newlabel{AST_CONVEX$<$X$>$}{{B}{242}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.38}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_COPY}{244}{sstrefsection.39}} -\newlabel{AST_COPY}{{B}{244}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.39}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_CURRENTTIME}{245}{sstrefsection.40}} -\newlabel{AST_CURRENTTIME}{{B}{245}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.40}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_CURVE}{246}{sstrefsection.41}} -\newlabel{AST_CURVE}{{B}{246}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.41}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_DECOMPOSE}{247}{sstrefsection.42}} -\newlabel{AST_DECOMPOSE}{{B}{247}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.42}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_DELETE}{249}{sstrefsection.43}} -\newlabel{AST_DELETE}{{B}{249}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.43}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_DELFITS}{250}{sstrefsection.44}} -\newlabel{AST_DELFITS}{{B}{250}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.44}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_DISTANCE}{251}{sstrefsection.45}} -\newlabel{AST_DISTANCE}{{B}{251}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.45}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_DOWNSIZE}{252}{sstrefsection.46}} -\newlabel{AST_DOWNSIZE}{{B}{252}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.46}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_DSBSPECFRAME}{253}{sstrefsection.47}} -\newlabel{AST_DSBSPECFRAME}{{B}{253}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.47}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_EBUF}{254}{sstrefsection.48}} -\newlabel{AST_EBUF}{{B}{254}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.48}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_ELLIPSE}{255}{sstrefsection.49}} -\newlabel{AST_ELLIPSE}{{B}{255}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.49}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_ELLIPSEPARS}{257}{sstrefsection.50}} -\newlabel{AST_ELLIPSEPARS}{{B}{257}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.50}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_EMPTYFITS}{258}{sstrefsection.51}} -\newlabel{AST_EMPTYFITS}{{B}{258}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.51}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_END}{259}{sstrefsection.52}} -\newlabel{AST_END}{{B}{259}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.52}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_ESCAPES}{260}{sstrefsection.53}} -\newlabel{AST_ESCAPES}{{B}{260}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.53}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_EXEMPT}{261}{sstrefsection.54}} -\newlabel{AST_EXEMPT}{{B}{261}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.54}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_EXPORT}{262}{sstrefsection.55}} -\newlabel{AST_EXPORT}{{B}{262}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.55}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_FINDFITS}{263}{sstrefsection.56}} -\newlabel{AST_FINDFITS}{{B}{263}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.56}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_FINDFRAME}{266}{sstrefsection.57}} -\newlabel{AST_FINDFRAME}{{B}{266}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.57}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_FITSCHAN}{271}{sstrefsection.58}} -\newlabel{AST_FITSCHAN}{{B}{271}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.58}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_FITSTABLE}{274}{sstrefsection.59}} -\newlabel{AST_FITSTABLE}{{B}{274}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.59}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_FLUXFRAME}{275}{sstrefsection.60}} -\newlabel{AST_FLUXFRAME}{{B}{275}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.60}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_FORMAT}{276}{sstrefsection.61}} -\newlabel{AST_FORMAT}{{B}{276}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.61}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_FRAME}{277}{sstrefsection.62}} -\newlabel{AST_FRAME}{{B}{277}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.62}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_FRAMESET}{278}{sstrefsection.63}} -\newlabel{AST_FRAMESET}{{B}{278}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.63}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_GENCURVE}{280}{sstrefsection.64}} -\newlabel{AST_GENCURVE}{{B}{280}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.64}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_GET$<$X$>$}{281}{sstrefsection.65}} -\newlabel{AST_GET$<$X$>$}{{B}{281}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.65}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_GETACTIVEUNIT}{282}{sstrefsection.66}} -\newlabel{AST_GETACTIVEUNIT}{{B}{282}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.66}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_GETCELL}{283}{sstrefsection.67}} -\newlabel{AST_GETCELL}{{B}{283}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.67}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_GETCOLUMNDATA}{284}{sstrefsection.68}} -\newlabel{AST_GETCOLUMNDATA}{{B}{284}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.68}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_GETFITS$<$X$>$}{285}{sstrefsection.69}} -\newlabel{AST_GETFITS$<$X$>$}{{B}{285}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.69}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_GETFRAME}{287}{sstrefsection.70}} -\newlabel{AST_GETFRAME}{{B}{287}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.70}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_GETGRFCONTEXT}{288}{sstrefsection.71}} -\newlabel{AST_GETGRFCONTEXT}{{B}{288}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.71}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_GETLINE}{289}{sstrefsection.72}} -\newlabel{AST_GETLINE}{{B}{289}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.72}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_GETMAPPING}{290}{sstrefsection.73}} -\newlabel{AST_GETMAPPING}{{B}{290}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.73}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_GETMOCDATA}{291}{sstrefsection.74}} -\newlabel{AST_GETMOCDATA}{{B}{291}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.74}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_GETMOCHEADER}{292}{sstrefsection.75}} -\newlabel{AST_GETMOCHEADER}{{B}{292}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.75}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_GETMOCSTRING}{293}{sstrefsection.76}} -\newlabel{AST_GETMOCSTRING}{{B}{293}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.76}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_GETREFPOS}{294}{sstrefsection.77}} -\newlabel{AST_GETREFPOS}{{B}{294}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.77}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_GETREGIONBOUNDS}{295}{sstrefsection.78}} -\newlabel{AST_GETREGIONBOUNDS}{{B}{295}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.78}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_GETREGIONDisc}{296}{sstrefsection.79}} -\newlabel{AST_GETREGIONDisc}{{B}{296}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.79}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_GETREGIONFRAME}{297}{sstrefsection.80}} -\newlabel{AST_GETREGIONFRAME}{{B}{297}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.80}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_GETREGIONFRAMESET}{298}{sstrefsection.81}} -\newlabel{AST_GETREGIONFRAMESET}{{B}{298}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.81}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_GETREGIONMESH}{299}{sstrefsection.82}} -\newlabel{AST_GETREGIONMESH}{{B}{299}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.82}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_GETREGIONPOINTS}{300}{sstrefsection.83}} -\newlabel{AST_GETREGIONPOINTS}{{B}{300}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.83}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_GETSTCCOORD}{302}{sstrefsection.84}} -\newlabel{AST_GETSTCCOORD}{{B}{302}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.84}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_GETSTCNCOORD}{303}{sstrefsection.85}} -\newlabel{AST_GETSTCNCOORD}{{B}{303}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.85}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_GETSTCREGION}{304}{sstrefsection.86}} -\newlabel{AST_GETSTCREGION}{{B}{304}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.86}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_GETTABLES}{305}{sstrefsection.87}} -\newlabel{AST_GETTABLES}{{B}{305}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.87}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_GETUNC}{306}{sstrefsection.88}} -\newlabel{AST_GETUNC}{{B}{306}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.88}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_GRFPOP}{308}{sstrefsection.89}} -\newlabel{AST_GRFPOP}{{B}{308}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.89}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_GRFPUSH}{309}{sstrefsection.90}} -\newlabel{AST_GRFPUSH}{{B}{309}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.90}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_GRFSET}{310}{sstrefsection.91}} -\newlabel{AST_GRFSET}{{B}{310}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.91}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_GRID}{315}{sstrefsection.92}} -\newlabel{AST_GRID}{{B}{315}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.92}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_GRIDLINE}{316}{sstrefsection.93}} -\newlabel{AST_GRIDLINE}{{B}{316}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.93}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_GRISMMAP}{317}{sstrefsection.94}} -\newlabel{AST_GRISMMAP}{{B}{317}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.94}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_GetTableHeader}{318}{sstrefsection.95}} -\newlabel{AST_GetTableHeader}{{B}{318}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.95}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_HASATTRIBUTE}{319}{sstrefsection.96}} -\newlabel{AST_HASATTRIBUTE}{{B}{319}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.96}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_HASCOLUMN}{320}{sstrefsection.97}} -\newlabel{AST_HASCOLUMN}{{B}{320}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.97}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_HASPARAMETER}{321}{sstrefsection.98}} -\newlabel{AST_HASPARAMETER}{{B}{321}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.98}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_IMPORT}{322}{sstrefsection.99}} -\newlabel{AST_IMPORT}{{B}{322}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.99}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_INTERSECT}{323}{sstrefsection.100}} -\newlabel{AST_INTERSECT}{{B}{323}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.100}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_INTERVAL}{324}{sstrefsection.101}} -\newlabel{AST_INTERVAL}{{B}{324}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.101}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_INTRAMAP}{326}{sstrefsection.102}} -\newlabel{AST_INTRAMAP}{{B}{326}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.102}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_INTRAREG}{327}{sstrefsection.103}} -\newlabel{AST_INTRAREG}{{B}{327}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.103}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_INVERT}{329}{sstrefsection.104}} -\newlabel{AST_INVERT}{{B}{329}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.104}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_ISA$<$CLASS$>$}{330}{sstrefsection.105}} -\newlabel{AST_ISA$<$CLASS$>$}{{B}{330}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.105}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_KEYMAP}{331}{sstrefsection.106}} -\newlabel{AST_KEYMAP}{{B}{331}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.106}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_LINEARAPPROX}{332}{sstrefsection.107}} -\newlabel{AST_LINEARAPPROX}{{B}{332}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.107}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_LUTMAP}{334}{sstrefsection.108}} -\newlabel{AST_LUTMAP}{{B}{334}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.108}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_MAPBOX}{336}{sstrefsection.109}} -\newlabel{AST_MAPBOX}{{B}{336}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.109}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_MAPCOPY}{338}{sstrefsection.110}} -\newlabel{AST_MAPCOPY}{{B}{338}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.110}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_MAPDEFINED}{339}{sstrefsection.111}} -\newlabel{AST_MAPDEFINED}{{B}{339}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.111}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_MAPGET0$<$X$>$}{340}{sstrefsection.112}} -\newlabel{AST_MAPGET0$<$X$>$}{{B}{340}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.112}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_MAPGET1$<$X$>$}{342}{sstrefsection.113}} -\newlabel{AST_MAPGET1$<$X$>$}{{B}{342}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.113}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_MAPGETC}{344}{sstrefsection.114}} -\newlabel{AST_MAPGETC}{{B}{344}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.114}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_MAPGETELEM$<$X$>$}{345}{sstrefsection.115}} -\newlabel{AST_MAPGETELEM$<$X$>$}{{B}{345}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.115}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_MAPHASKEY}{347}{sstrefsection.116}} -\newlabel{AST_MAPHASKEY}{{B}{347}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.116}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_MAPKEY}{348}{sstrefsection.117}} -\newlabel{AST_MAPKEY}{{B}{348}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.117}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_MAPLENC}{349}{sstrefsection.118}} -\newlabel{AST_MAPLENC}{{B}{349}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.118}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_MAPLENGTH}{350}{sstrefsection.119}} -\newlabel{AST_MAPLENGTH}{{B}{350}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.119}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_MAPPUT0$<$X$>$}{351}{sstrefsection.120}} -\newlabel{AST_MAPPUT0$<$X$>$}{{B}{351}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.120}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_MAPPUT1$<$X$>$}{353}{sstrefsection.121}} -\newlabel{AST_MAPPUT1$<$X$>$}{{B}{353}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.121}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_MAPPUTELEM$<$X$>$}{355}{sstrefsection.122}} -\newlabel{AST_MAPPUTELEM$<$X$>$}{{B}{355}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.122}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_MAPPUTU}{357}{sstrefsection.123}} -\newlabel{AST_MAPPUTU}{{B}{357}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.123}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_MAPREGION}{358}{sstrefsection.124}} -\newlabel{AST_MAPREGION}{{B}{358}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.124}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_MAPREMOVE}{359}{sstrefsection.125}} -\newlabel{AST_MAPREMOVE}{{B}{359}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.125}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_MAPRENAME}{360}{sstrefsection.126}} -\newlabel{AST_MAPRENAME}{{B}{360}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.126}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_MAPSIZE}{361}{sstrefsection.127}} -\newlabel{AST_MAPSIZE}{{B}{361}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.127}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_MAPSPLIT}{362}{sstrefsection.128}} -\newlabel{AST_MAPSPLIT}{{B}{362}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.128}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_MAPTYPE}{363}{sstrefsection.129}} -\newlabel{AST_MAPTYPE}{{B}{363}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.129}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_MARK}{364}{sstrefsection.130}} -\newlabel{AST_MARK}{{B}{364}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.130}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_MASK$<$X$>$}{365}{sstrefsection.131}} -\newlabel{AST_MASK$<$X$>$}{{B}{365}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.131}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_MATCHAXES}{368}{sstrefsection.132}} -\newlabel{AST_MATCHAXES}{{B}{368}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.132}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_MATHMAP}{369}{sstrefsection.133}} -\newlabel{AST_MATHMAP}{{B}{369}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.133}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_MATRIXMAP}{376}{sstrefsection.134}} -\newlabel{AST_MATRIXMAP}{{B}{376}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.134}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_MIRRORVARIANTS}{378}{sstrefsection.135}} -\newlabel{AST_MIRRORVARIANTS}{{B}{378}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.135}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_MOC}{379}{sstrefsection.136}} -\newlabel{AST_MOC}{{B}{379}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.136}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_MOCCHAN}{381}{sstrefsection.137}} -\newlabel{AST_MOCCHAN}{{B}{381}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.137}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_NEGATE}{383}{sstrefsection.138}} -\newlabel{AST_NEGATE}{{B}{383}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.138}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_NORM}{384}{sstrefsection.139}} -\newlabel{AST_NORM}{{B}{384}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.139}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_NORMMAP}{385}{sstrefsection.140}} -\newlabel{AST_NORMMAP}{{B}{385}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.140}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_NULLREGION}{386}{sstrefsection.141}} -\newlabel{AST_NULLREGION}{{B}{386}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.141}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_OFFSET}{387}{sstrefsection.142}} -\newlabel{AST_OFFSET}{{B}{387}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.142}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_OFFSET2}{388}{sstrefsection.143}} -\newlabel{AST_OFFSET2}{{B}{388}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.143}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_OUTLINE$<$X$>$}{389}{sstrefsection.144}} -\newlabel{AST_OUTLINE$<$X$>$}{{B}{389}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.144}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_OVERLAP}{392}{sstrefsection.145}} -\newlabel{AST_OVERLAP}{{B}{392}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.145}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_PARAMETERNAME}{393}{sstrefsection.146}} -\newlabel{AST_PARAMETERNAME}{{B}{393}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.146}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_PCDMAP}{394}{sstrefsection.147}} -\newlabel{AST_PCDMAP}{{B}{394}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.147}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_PERMAXES}{396}{sstrefsection.148}} -\newlabel{AST_PERMAXES}{{B}{396}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.148}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_PERMMAP}{397}{sstrefsection.149}} -\newlabel{AST_PERMMAP}{{B}{397}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.149}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_PICKAXES}{399}{sstrefsection.150}} -\newlabel{AST_PICKAXES}{{B}{399}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.150}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_PLOT}{401}{sstrefsection.151}} -\newlabel{AST_PLOT}{{B}{401}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.151}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_PLOT3D}{403}{sstrefsection.152}} -\newlabel{AST_PLOT3D}{{B}{403}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.152}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_POINTLIST}{405}{sstrefsection.153}} -\newlabel{AST_POINTLIST}{{B}{405}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.153}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_POLYCOEFFS}{407}{sstrefsection.154}} -\newlabel{AST_POLYCOEFFS}{{B}{407}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.154}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_POLYCURVE}{408}{sstrefsection.155}} -\newlabel{AST_POLYCURVE}{{B}{408}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.155}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_POLYGON}{409}{sstrefsection.156}} -\newlabel{AST_POLYGON}{{B}{409}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.156}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_POLYMAP}{411}{sstrefsection.157}} -\newlabel{AST_POLYMAP}{{B}{411}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.157}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_POLYTRAN}{413}{sstrefsection.158}} -\newlabel{AST_POLYTRAN}{{B}{413}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.158}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_PRISM}{415}{sstrefsection.159}} -\newlabel{AST_PRISM}{{B}{415}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.159}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_PURGEROWS}{416}{sstrefsection.160}} -\newlabel{AST_PURGEROWS}{{B}{416}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.160}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_PURGEWCS}{417}{sstrefsection.161}} -\newlabel{AST_PURGEWCS}{{B}{417}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.161}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_PUTCARDS}{418}{sstrefsection.162}} -\newlabel{AST_PUTCARDS}{{B}{418}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.162}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_PUTCOLUMNDATA}{419}{sstrefsection.163}} -\newlabel{AST_PUTCOLUMNDATA}{{B}{419}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.163}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_PUTFITS}{420}{sstrefsection.164}} -\newlabel{AST_PUTFITS}{{B}{420}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.164}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_PUTLINE}{421}{sstrefsection.165}} -\newlabel{AST_PUTLINE}{{B}{421}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.165}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_PUTTABLE}{422}{sstrefsection.166}} -\newlabel{AST_PUTTABLE}{{B}{422}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.166}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_PUTTABLEHEADER}{423}{sstrefsection.167}} -\newlabel{AST_PUTTABLEHEADER}{{B}{423}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.167}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_PUTTABLES}{424}{sstrefsection.168}} -\newlabel{AST_PUTTABLES}{{B}{424}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.168}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_QUADAPPROX}{425}{sstrefsection.169}} -\newlabel{AST_QUADAPPROX}{{B}{425}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.169}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_RATE}{427}{sstrefsection.170}} -\newlabel{AST_RATE}{{B}{427}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.170}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_RATEMAP}{428}{sstrefsection.171}} -\newlabel{AST_RATEMAP}{{B}{428}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.171}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_READ}{429}{sstrefsection.172}} -\newlabel{AST_READ}{{B}{429}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.172}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_READFITS}{430}{sstrefsection.173}} -\newlabel{AST_READFITS}{{B}{430}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.173}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_REBIN$<$X$>$}{431}{sstrefsection.174}} -\newlabel{AST_REBIN$<$X$>$}{{B}{431}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.174}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_REBINSEQ$<$X$>$}{437}{sstrefsection.175}} -\newlabel{AST_REBINSEQ$<$X$>$}{{B}{437}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.175}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_REMAPFRAME}{443}{sstrefsection.176}} -\newlabel{AST_REMAPFRAME}{{B}{443}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.176}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_REMOVECOLUMN}{444}{sstrefsection.177}} -\newlabel{AST_REMOVECOLUMN}{{B}{444}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.177}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_REMOVEFRAME}{445}{sstrefsection.178}} -\newlabel{AST_REMOVEFRAME}{{B}{445}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.178}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_REMOVEPARAMETER}{446}{sstrefsection.179}} -\newlabel{AST_REMOVEPARAMETER}{{B}{446}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.179}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_REMOVEREGIONS}{447}{sstrefsection.180}} -\newlabel{AST_REMOVEREGIONS}{{B}{447}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.180}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_REMOVEROW}{448}{sstrefsection.181}} -\newlabel{AST_REMOVEROW}{{B}{448}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.181}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_REMOVETABLES}{449}{sstrefsection.182}} -\newlabel{AST_REMOVETABLES}{{B}{449}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.182}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_RESAMPLE$<$X$>$}{450}{sstrefsection.183}} -\newlabel{AST_RESAMPLE$<$X$>$}{{B}{450}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.183}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_RESOLVE}{460}{sstrefsection.184}} -\newlabel{AST_RESOLVE}{{B}{460}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.184}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_RETAINFITS}{461}{sstrefsection.185}} -\newlabel{AST_RETAINFITS}{{B}{461}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.185}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_RegionOutline}{462}{sstrefsection.186}} -\newlabel{AST_RegionOutline}{{B}{462}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.186}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_SAME}{463}{sstrefsection.187}} -\newlabel{AST_SAME}{{B}{463}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.187}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_SELECTORMAP}{464}{sstrefsection.188}} -\newlabel{AST_SELECTORMAP}{{B}{464}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.188}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_SET}{466}{sstrefsection.189}} -\newlabel{AST_SET}{{B}{466}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.189}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_SET$<$X$>$}{467}{sstrefsection.190}} -\newlabel{AST_SET$<$X$>$}{{B}{467}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.190}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_SETACTIVEUNIT}{468}{sstrefsection.191}} -\newlabel{AST_SETACTIVEUNIT}{{B}{468}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.191}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_SETFITS$<$X$>$}{470}{sstrefsection.192}} -\newlabel{AST_SETFITS$<$X$>$}{{B}{470}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.192}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_SETFITSCM}{472}{sstrefsection.193}} -\newlabel{AST_SETFITSCM}{{B}{472}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.193}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_SETFITSU}{473}{sstrefsection.194}} -\newlabel{AST_SETFITSU}{{B}{473}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.194}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_SETPUTERR}{474}{sstrefsection.195}} -\newlabel{AST_SETPUTERR}{{B}{474}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.195}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_SETREFPOS}{475}{sstrefsection.196}} -\newlabel{AST_SETREFPOS}{{B}{475}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.196}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_SETUNC}{476}{sstrefsection.197}} -\newlabel{AST_SETUNC}{{B}{476}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.197}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_SHIFTMAP}{477}{sstrefsection.198}} -\newlabel{AST_SHIFTMAP}{{B}{477}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.198}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_SHOW}{478}{sstrefsection.199}} -\newlabel{AST_SHOW}{{B}{478}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.199}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_SHOWFITS}{479}{sstrefsection.200}} -\newlabel{AST_SHOWFITS}{{B}{479}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.200}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_SHOWMESH}{480}{sstrefsection.201}} -\newlabel{AST_SHOWMESH}{{B}{480}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.201}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_SIMPLIFY}{481}{sstrefsection.202}} -\newlabel{AST_SIMPLIFY}{{B}{481}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.202}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_SKYFRAME}{482}{sstrefsection.203}} -\newlabel{AST_SKYFRAME}{{B}{482}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.203}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_SKYOFFSETMAP}{484}{sstrefsection.204}} -\newlabel{AST_SKYOFFSETMAP}{{B}{484}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.204}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_SLAADD}{485}{sstrefsection.205}} -\newlabel{AST_SLAADD}{{B}{485}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.205}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_SLAMAP}{488}{sstrefsection.206}} -\newlabel{AST_SLAMAP}{{B}{488}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.206}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_SPECADD}{489}{sstrefsection.207}} -\newlabel{AST_SPECADD}{{B}{489}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.207}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_SPECFLUXFRAME}{492}{sstrefsection.208}} -\newlabel{AST_SPECFLUXFRAME}{{B}{492}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.208}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_SPECFRAME}{493}{sstrefsection.209}} -\newlabel{AST_SPECFRAME}{{B}{493}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.209}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_SPECMAP}{495}{sstrefsection.210}} -\newlabel{AST_SPECMAP}{{B}{495}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.210}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_SPHMAP}{497}{sstrefsection.211}} -\newlabel{AST_SPHMAP}{{B}{497}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.211}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_STCCATALOGENTRYLOCATION}{498}{sstrefsection.212}} -\newlabel{AST_STCCATALOGENTRYLOCATION}{{B}{498}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.212}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_STCOBSDATALOCATION}{499}{sstrefsection.213}} -\newlabel{AST_STCOBSDATALOCATION}{{B}{499}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.213}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_STCRESOURCEPROFILE}{500}{sstrefsection.214}} -\newlabel{AST_STCRESOURCEPROFILE}{{B}{500}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.214}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_STCSCHAN}{502}{sstrefsection.215}} -\newlabel{AST_STCSCHAN}{{B}{502}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.215}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_STCSEARCHLOCATION}{504}{sstrefsection.216}} -\newlabel{AST_STCSEARCHLOCATION}{{B}{504}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.216}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_STRIPESCAPES}{505}{sstrefsection.217}} -\newlabel{AST_STRIPESCAPES}{{B}{505}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.217}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_SWITCHMAP}{506}{sstrefsection.218}} -\newlabel{AST_SWITCHMAP}{{B}{506}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.218}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_TABLE}{508}{sstrefsection.219}} -\newlabel{AST_TABLE}{{B}{508}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.219}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_TABLESOURCE}{509}{sstrefsection.220}} -\newlabel{AST_TABLESOURCE}{{B}{509}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.220}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_TEST}{510}{sstrefsection.221}} -\newlabel{AST_TEST}{{B}{510}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.221}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_TESTCELL}{511}{sstrefsection.222}} -\newlabel{AST_TESTCELL}{{B}{511}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.222}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_TESTFITS}{512}{sstrefsection.223}} -\newlabel{AST_TESTFITS}{{B}{512}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.223}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_TEXT}{513}{sstrefsection.224}} -\newlabel{AST_TEXT}{{B}{513}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.224}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_TIMEADD}{514}{sstrefsection.225}} -\newlabel{AST_TIMEADD}{{B}{514}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.225}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_TIMEFRAME}{517}{sstrefsection.226}} -\newlabel{AST_TIMEFRAME}{{B}{517}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.226}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_TIMEMAP}{518}{sstrefsection.227}} -\newlabel{AST_TIMEMAP}{{B}{518}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.227}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_TRAN1}{519}{sstrefsection.228}} -\newlabel{AST_TRAN1}{{B}{519}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.228}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_TRAN2}{520}{sstrefsection.229}} -\newlabel{AST_TRAN2}{{B}{520}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.229}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_TRANGRID}{521}{sstrefsection.230}} -\newlabel{AST_TRANGRID}{{B}{521}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.230}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_TRANMAP}{523}{sstrefsection.231}} -\newlabel{AST_TRANMAP}{{B}{523}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.231}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_TRANN}{525}{sstrefsection.232}} -\newlabel{AST_TRANN}{{B}{525}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.232}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_TUNE}{527}{sstrefsection.233}} -\newlabel{AST_TUNE}{{B}{527}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.233}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_TUNEC}{528}{sstrefsection.234}} -\newlabel{AST_TUNEC}{{B}{528}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.234}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_UINTERP}{530}{sstrefsection.235}} -\newlabel{AST_UINTERP}{{B}{530}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.235}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_UKERN1}{533}{sstrefsection.236}} -\newlabel{AST_UKERN1}{{B}{533}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.236}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_UNFORMAT}{535}{sstrefsection.237}} -\newlabel{AST_UNFORMAT}{{B}{535}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.237}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_UNITMAP}{538}{sstrefsection.238}} -\newlabel{AST_UNITMAP}{{B}{538}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.238}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_UNITNORMMAP}{539}{sstrefsection.239}} -\newlabel{AST_UNITNORMMAP}{{B}{539}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.239}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_VERSION}{541}{sstrefsection.240}} -\newlabel{AST_VERSION}{{B}{541}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.240}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_WARNINGS}{542}{sstrefsection.241}} -\newlabel{AST_WARNINGS}{{B}{542}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.241}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_WCSMAP}{544}{sstrefsection.242}} -\newlabel{AST_WCSMAP}{{B}{544}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.242}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_WINMAP}{546}{sstrefsection.243}} -\newlabel{AST_WINMAP}{{B}{546}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.243}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_WRITE}{547}{sstrefsection.244}} -\newlabel{AST_WRITE}{{B}{547}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.244}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_WRITEFITS}{548}{sstrefsection.245}} -\newlabel{AST_WRITEFITS}{{B}{548}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.245}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_XMLCHAN}{549}{sstrefsection.246}} -\newlabel{AST_XMLCHAN}{{B}{549}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.246}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AST_ZOOMMAP}{551}{sstrefsection.247}} -\newlabel{AST_ZOOMMAP}{{B}{551}{\label {ss:functiondescriptions}AST Routine Descriptions}{sstrefsection.247}{}} -\newlabel{ss:attributedescriptions}{{C}{553}{\label {ss:attributedescriptions}AST Attribute Descriptions}{appendix.C}{}} -\@writefile{toc}{\contentsline {section}{\numberline {C}AST Attribute Descriptions}{553}{appendix.C}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}Abbrev(axis)}{554}{sstrefsection.248}} -\newlabel{Abbrev(axis)}{{C}{554}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.248}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}Adaptive}{555}{sstrefsection.249}} -\newlabel{Adaptive}{{C}{555}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.249}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AlignOffset}{556}{sstrefsection.250}} -\newlabel{AlignOffset}{{C}{556}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.250}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AlignSideBand}{557}{sstrefsection.251}} -\newlabel{AlignSideBand}{{C}{557}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.251}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AlignSpecOffset}{558}{sstrefsection.252}} -\newlabel{AlignSpecOffset}{{C}{558}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.252}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AlignStdOfRest}{559}{sstrefsection.253}} -\newlabel{AlignStdOfRest}{{C}{559}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.253}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AlignSystem}{560}{sstrefsection.254}} -\newlabel{AlignSystem}{{C}{560}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.254}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AlignTimeScale}{561}{sstrefsection.255}} -\newlabel{AlignTimeScale}{{C}{561}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.255}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AllVariants}{562}{sstrefsection.256}} -\newlabel{AllVariants}{{C}{562}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.256}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AllWarnings}{563}{sstrefsection.257}} -\newlabel{AllWarnings}{{C}{563}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.257}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}AsTime(axis)}{565}{sstrefsection.258}} -\newlabel{AsTime(axis)}{{C}{565}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.258}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}Base}{566}{sstrefsection.259}} -\newlabel{Base}{{C}{566}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.259}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}Border}{567}{sstrefsection.260}} -\newlabel{Border}{{C}{567}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.260}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}Bottom(axis)}{568}{sstrefsection.261}} -\newlabel{Bottom(axis)}{{C}{568}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.261}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}Bounded}{569}{sstrefsection.262}} -\newlabel{Bounded}{{C}{569}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.262}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}CDMatrix}{570}{sstrefsection.263}} -\newlabel{CDMatrix}{{C}{570}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.263}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}CarLin}{571}{sstrefsection.264}} -\newlabel{CarLin}{{C}{571}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.264}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}Card}{572}{sstrefsection.265}} -\newlabel{Card}{{C}{572}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.265}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}CardComm}{573}{sstrefsection.266}} -\newlabel{CardComm}{{C}{573}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.266}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}CardName}{574}{sstrefsection.267}} -\newlabel{CardName}{{C}{574}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.267}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}CardType}{575}{sstrefsection.268}} -\newlabel{CardType}{{C}{575}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.268}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}Class}{576}{sstrefsection.269}} -\newlabel{Class}{{C}{576}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.269}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}Clean}{577}{sstrefsection.270}} -\newlabel{Clean}{{C}{577}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.270}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}Clip}{578}{sstrefsection.271}} -\newlabel{Clip}{{C}{578}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.271}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}ClipOp}{579}{sstrefsection.272}} -\newlabel{ClipOp}{{C}{579}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.272}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}Closed}{580}{sstrefsection.273}} -\newlabel{Closed}{{C}{580}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.273}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}Colour(element)}{581}{sstrefsection.274}} -\newlabel{Colour(element)}{{C}{581}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.274}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}ColumnLenC(column)}{582}{sstrefsection.275}} -\newlabel{ColumnLenC(column)}{{C}{582}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.275}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}ColumnLength(column)}{583}{sstrefsection.276}} -\newlabel{ColumnLength(column)}{{C}{583}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.276}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}ColumnNdim(column)}{584}{sstrefsection.277}} -\newlabel{ColumnNdim(column)}{{C}{584}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.277}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}ColumnType(column)}{585}{sstrefsection.278}} -\newlabel{ColumnType(column)}{{C}{585}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.278}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}Comment}{586}{sstrefsection.279}} -\newlabel{Comment}{{C}{586}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.279}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}Current}{587}{sstrefsection.280}} -\newlabel{Current}{{C}{587}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.280}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}DSBCentre}{588}{sstrefsection.281}} -\newlabel{DSBCentre}{{C}{588}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.281}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}DefB1950}{589}{sstrefsection.282}} -\newlabel{DefB1950}{{C}{589}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.282}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}Digits/Digits(axis)}{590}{sstrefsection.283}} -\newlabel{Digits/Digits(axis)}{{C}{590}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.283}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}Direction(axis)}{591}{sstrefsection.284}} -\newlabel{Direction(axis)}{{C}{591}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.284}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}Disco}{592}{sstrefsection.285}} -\newlabel{Disco}{{C}{592}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.285}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}Domain}{593}{sstrefsection.286}} -\newlabel{Domain}{{C}{593}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.286}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}DrawAxes(axis)}{594}{sstrefsection.287}} -\newlabel{DrawAxes(axis)}{{C}{594}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.287}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}DrawTitle}{595}{sstrefsection.288}} -\newlabel{DrawTitle}{{C}{595}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.288}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}Dtai}{596}{sstrefsection.289}} -\newlabel{Dtai}{{C}{596}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.289}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}Dut1}{597}{sstrefsection.290}} -\newlabel{Dut1}{{C}{597}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.290}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}Edge(axis)}{598}{sstrefsection.291}} -\newlabel{Edge(axis)}{{C}{598}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.291}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}Encoding}{599}{sstrefsection.292}} -\newlabel{Encoding}{{C}{599}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.292}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}Epoch}{606}{sstrefsection.293}} -\newlabel{Epoch}{{C}{606}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.293}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}Equinox}{608}{sstrefsection.294}} -\newlabel{Equinox}{{C}{608}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.294}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}Escape}{609}{sstrefsection.295}} -\newlabel{Escape}{{C}{609}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.295}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}FillFactor}{611}{sstrefsection.296}} -\newlabel{FillFactor}{{C}{611}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.296}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}FitsAxisOrder}{612}{sstrefsection.297}} -\newlabel{FitsAxisOrder}{{C}{612}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.297}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}FitsDigits}{613}{sstrefsection.298}} -\newlabel{FitsDigits}{{C}{613}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.298}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}FitsTol}{614}{sstrefsection.299}} -\newlabel{FitsTol}{{C}{614}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.299}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}Font(element)}{615}{sstrefsection.300}} -\newlabel{Font(element)}{{C}{615}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.300}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}Format(axis)}{616}{sstrefsection.301}} -\newlabel{Format(axis)}{{C}{616}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.301}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}Full}{618}{sstrefsection.302}} -\newlabel{Full}{{C}{618}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.302}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}Gap(axis)}{619}{sstrefsection.303}} -\newlabel{Gap(axis)}{{C}{619}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.303}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}Grf}{620}{sstrefsection.304}} -\newlabel{Grf}{{C}{620}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.304}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}Grid}{621}{sstrefsection.305}} -\newlabel{Grid}{{C}{621}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.305}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}GrismAlpha}{622}{sstrefsection.306}} -\newlabel{GrismAlpha}{{C}{622}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.306}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}GrismEps}{623}{sstrefsection.307}} -\newlabel{GrismEps}{{C}{623}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.307}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}GrismG}{624}{sstrefsection.308}} -\newlabel{GrismG}{{C}{624}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.308}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}GrismM}{625}{sstrefsection.309}} -\newlabel{GrismM}{{C}{625}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.309}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}GrismNR}{626}{sstrefsection.310}} -\newlabel{GrismNR}{{C}{626}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.310}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}GrismNRP}{627}{sstrefsection.311}} -\newlabel{GrismNRP}{{C}{627}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.311}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}GrismTheta}{628}{sstrefsection.312}} -\newlabel{GrismTheta}{{C}{628}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.312}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}GrismWaveR}{629}{sstrefsection.313}} -\newlabel{GrismWaveR}{{C}{629}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.313}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}ID}{630}{sstrefsection.314}} -\newlabel{ID}{{C}{630}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.314}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}IF}{631}{sstrefsection.315}} -\newlabel{IF}{{C}{631}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.315}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}Ident}{632}{sstrefsection.316}} -\newlabel{Ident}{{C}{632}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.316}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}ImagFreq}{633}{sstrefsection.317}} -\newlabel{ImagFreq}{{C}{633}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.317}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}Indent}{634}{sstrefsection.318}} -\newlabel{Indent}{{C}{634}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.318}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}InternalUnit(axis)}{635}{sstrefsection.319}} -\newlabel{InternalUnit(axis)}{{C}{635}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.319}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}IntraFlag}{636}{sstrefsection.320}} -\newlabel{IntraFlag}{{C}{636}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.320}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}Invert}{637}{sstrefsection.321}} -\newlabel{Invert}{{C}{637}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.321}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}Invisible}{638}{sstrefsection.322}} -\newlabel{Invisible}{{C}{638}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.322}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}IsLatAxis(axis)}{639}{sstrefsection.323}} -\newlabel{IsLatAxis(axis)}{{C}{639}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.323}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}IsLinear}{640}{sstrefsection.324}} -\newlabel{IsLinear}{{C}{640}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.324}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}IsLonAxis(axis)}{641}{sstrefsection.325}} -\newlabel{IsLonAxis(axis)}{{C}{641}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.325}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}IsSimple}{642}{sstrefsection.326}} -\newlabel{IsSimple}{{C}{642}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.326}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}IterInverse}{643}{sstrefsection.327}} -\newlabel{IterInverse}{{C}{643}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.327}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}Iwc}{644}{sstrefsection.328}} -\newlabel{Iwc}{{C}{644}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.328}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}KeyCase}{645}{sstrefsection.329}} -\newlabel{KeyCase}{{C}{645}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.329}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}KeyError}{646}{sstrefsection.330}} -\newlabel{KeyError}{{C}{646}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.330}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}LTOffset}{647}{sstrefsection.331}} -\newlabel{LTOffset}{{C}{647}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.331}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}Label(axis)}{648}{sstrefsection.332}} -\newlabel{Label(axis)}{{C}{648}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.332}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}LabelAt(axis)}{649}{sstrefsection.333}} -\newlabel{LabelAt(axis)}{{C}{649}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.333}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}LabelUnits(axis)}{650}{sstrefsection.334}} -\newlabel{LabelUnits(axis)}{{C}{650}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.334}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}LabelUp(axis)}{651}{sstrefsection.335}} -\newlabel{LabelUp(axis)}{{C}{651}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.335}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}Labelling}{652}{sstrefsection.336}} -\newlabel{Labelling}{{C}{652}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.336}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}LatAxis}{653}{sstrefsection.337}} -\newlabel{LatAxis}{{C}{653}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.337}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}ListSize}{654}{sstrefsection.338}} -\newlabel{ListSize}{{C}{654}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.338}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}LogGap(axis)}{655}{sstrefsection.339}} -\newlabel{LogGap(axis)}{{C}{655}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.339}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}LogLabel(axis)}{656}{sstrefsection.340}} -\newlabel{LogLabel(axis)}{{C}{656}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.340}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}LogPlot(axis)}{657}{sstrefsection.341}} -\newlabel{LogPlot(axis)}{{C}{657}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.341}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}LogTicks(axis)}{658}{sstrefsection.342}} -\newlabel{LogTicks(axis)}{{C}{658}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.342}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}LonAxis}{659}{sstrefsection.343}} -\newlabel{LonAxis}{{C}{659}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.343}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}LutEpsilon}{660}{sstrefsection.344}} -\newlabel{LutEpsilon}{{C}{660}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.344}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}LutInterp}{661}{sstrefsection.345}} -\newlabel{LutInterp}{{C}{661}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.345}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}MajTickLen(axis)}{662}{sstrefsection.346}} -\newlabel{MajTickLen(axis)}{{C}{662}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.346}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}MapLocked}{663}{sstrefsection.347}} -\newlabel{MapLocked}{{C}{663}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.347}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}MatchEnd}{664}{sstrefsection.348}} -\newlabel{MatchEnd}{{C}{664}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.348}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}MaxAxes}{665}{sstrefsection.349}} -\newlabel{MaxAxes}{{C}{665}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.349}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}MaxOrder}{666}{sstrefsection.350}} -\newlabel{MaxOrder}{{C}{666}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.350}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}MaxRes}{667}{sstrefsection.351}} -\newlabel{MaxRes}{{C}{667}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.351}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}MeshSize}{668}{sstrefsection.352}} -\newlabel{MeshSize}{{C}{668}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.352}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}MinAxes}{669}{sstrefsection.353}} -\newlabel{MinAxes}{{C}{669}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.353}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}MinOrder}{670}{sstrefsection.354}} -\newlabel{MinOrder}{{C}{670}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.354}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}MinRes}{671}{sstrefsection.355}} -\newlabel{MinRes}{{C}{671}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.355}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}MinTick(axis)}{672}{sstrefsection.356}} -\newlabel{MinTick(axis)}{{C}{672}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.356}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}MinTickLen(axis)}{673}{sstrefsection.357}} -\newlabel{MinTickLen(axis)}{{C}{673}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.357}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}MocArea}{674}{sstrefsection.358}} -\newlabel{MocArea}{{C}{674}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.358}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}MocFormat}{675}{sstrefsection.359}} -\newlabel{MocFormat}{{C}{675}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.359}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}MocLength}{676}{sstrefsection.360}} -\newlabel{MocLength}{{C}{676}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.360}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}MocLineLen}{677}{sstrefsection.361}} -\newlabel{MocLineLen}{{C}{677}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.361}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}MocType}{678}{sstrefsection.362}} -\newlabel{MocType}{{C}{678}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.362}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}NatLat}{679}{sstrefsection.363}} -\newlabel{NatLat}{{C}{679}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.363}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}NatLon}{680}{sstrefsection.364}} -\newlabel{NatLon}{{C}{680}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.364}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}Naxes}{681}{sstrefsection.365}} -\newlabel{Naxes}{{C}{681}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.365}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}Ncard}{682}{sstrefsection.366}} -\newlabel{Ncard}{{C}{682}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.366}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}Ncolumn}{683}{sstrefsection.367}} -\newlabel{Ncolumn}{{C}{683}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.367}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}NegLon}{684}{sstrefsection.368}} -\newlabel{NegLon}{{C}{684}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.368}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}Negated}{685}{sstrefsection.369}} -\newlabel{Negated}{{C}{685}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.369}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}Nframe}{686}{sstrefsection.370}} -\newlabel{Nframe}{{C}{686}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.370}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}Nin}{687}{sstrefsection.371}} -\newlabel{Nin}{{C}{687}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.371}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}NiterInverse}{688}{sstrefsection.372}} -\newlabel{NiterInverse}{{C}{688}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.372}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}Nkey}{689}{sstrefsection.373}} -\newlabel{Nkey}{{C}{689}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.373}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}Nobject}{690}{sstrefsection.374}} -\newlabel{Nobject}{{C}{690}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.374}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}Norm(axis)}{691}{sstrefsection.375}} -\newlabel{Norm(axis)}{{C}{691}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.375}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}NormUnit(axis)}{692}{sstrefsection.376}} -\newlabel{NormUnit(axis)}{{C}{692}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.376}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}Nout}{693}{sstrefsection.377}} -\newlabel{Nout}{{C}{693}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.377}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}Nparameter}{694}{sstrefsection.378}} -\newlabel{Nparameter}{{C}{694}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.378}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}Nrow}{695}{sstrefsection.379}} -\newlabel{Nrow}{{C}{695}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.379}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}NumLab(axis)}{696}{sstrefsection.380}} -\newlabel{NumLab(axis)}{{C}{696}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.380}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}NumLabGap(axis)}{697}{sstrefsection.381}} -\newlabel{NumLabGap(axis)}{{C}{697}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.381}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}ObjSize}{698}{sstrefsection.382}} -\newlabel{ObjSize}{{C}{698}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.382}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}ObsAlt}{699}{sstrefsection.383}} -\newlabel{ObsAlt}{{C}{699}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.383}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}ObsLat}{700}{sstrefsection.384}} -\newlabel{ObsLat}{{C}{700}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.384}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}ObsLon}{701}{sstrefsection.385}} -\newlabel{ObsLon}{{C}{701}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.385}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}PVMax(i)}{702}{sstrefsection.386}} -\newlabel{PVMax(i)}{{C}{702}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.386}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}PVi_m}{703}{sstrefsection.387}} -\newlabel{PVi_m}{{C}{703}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.387}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}PcdCen(axis)}{704}{sstrefsection.388}} -\newlabel{PcdCen(axis)}{{C}{704}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.388}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}Permute}{705}{sstrefsection.389}} -\newlabel{Permute}{{C}{705}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.389}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}PolarLong}{706}{sstrefsection.390}} -\newlabel{PolarLong}{{C}{706}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.390}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}PolyTan}{707}{sstrefsection.391}} -\newlabel{PolyTan}{{C}{707}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.391}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}PreserveAxes}{708}{sstrefsection.392}} -\newlabel{PreserveAxes}{{C}{708}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.392}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}ProjP(m)}{709}{sstrefsection.393}} -\newlabel{ProjP(m)}{{C}{709}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.393}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}Projection}{710}{sstrefsection.394}} -\newlabel{Projection}{{C}{710}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.394}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}RefCount}{711}{sstrefsection.395}} -\newlabel{RefCount}{{C}{711}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.395}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}RefDec}{712}{sstrefsection.396}} -\newlabel{RefDec}{{C}{712}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.396}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}RefRA}{713}{sstrefsection.397}} -\newlabel{RefRA}{{C}{713}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.397}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}RegionClass}{714}{sstrefsection.398}} -\newlabel{RegionClass}{{C}{714}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.398}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}Report}{715}{sstrefsection.399}} -\newlabel{Report}{{C}{715}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.399}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}ReportLevel}{716}{sstrefsection.400}} -\newlabel{ReportLevel}{{C}{716}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.400}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}RestFreq}{717}{sstrefsection.401}} -\newlabel{RestFreq}{{C}{717}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.401}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}RootCorner}{718}{sstrefsection.402}} -\newlabel{RootCorner}{{C}{718}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.402}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}Seed}{719}{sstrefsection.403}} -\newlabel{Seed}{{C}{719}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.403}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}SideBand}{720}{sstrefsection.404}} -\newlabel{SideBand}{{C}{720}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.404}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}SimpFI}{721}{sstrefsection.405}} -\newlabel{SimpFI}{{C}{721}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.405}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}SimpIF}{722}{sstrefsection.406}} -\newlabel{SimpIF}{{C}{722}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.406}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}SimpVertices}{723}{sstrefsection.407}} -\newlabel{SimpVertices}{{C}{723}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.407}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}SinkFile}{724}{sstrefsection.408}} -\newlabel{SinkFile}{{C}{724}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.408}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}SipOK}{725}{sstrefsection.409}} -\newlabel{SipOK}{{C}{725}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.409}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}SipReplace}{726}{sstrefsection.410}} -\newlabel{SipReplace}{{C}{726}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.410}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}Size(element)}{727}{sstrefsection.411}} -\newlabel{Size(element)}{{C}{727}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.411}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}SizeGuess}{728}{sstrefsection.412}} -\newlabel{SizeGuess}{{C}{728}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.412}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}Skip}{729}{sstrefsection.413}} -\newlabel{Skip}{{C}{729}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.413}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}SkyRef(axis)}{730}{sstrefsection.414}} -\newlabel{SkyRef(axis)}{{C}{730}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.414}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}SkyRefIs}{731}{sstrefsection.415}} -\newlabel{SkyRefIs}{{C}{731}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.415}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}SkyRefP(axis)}{732}{sstrefsection.416}} -\newlabel{SkyRefP(axis)}{{C}{732}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.416}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}SkyTol}{733}{sstrefsection.417}} -\newlabel{SkyTol}{{C}{733}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.417}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}SortBy}{734}{sstrefsection.418}} -\newlabel{SortBy}{{C}{734}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.418}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}SourceFile}{735}{sstrefsection.419}} -\newlabel{SourceFile}{{C}{735}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.419}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}SourceSys}{736}{sstrefsection.420}} -\newlabel{SourceSys}{{C}{736}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.420}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}SourceVRF}{737}{sstrefsection.421}} -\newlabel{SourceVRF}{{C}{737}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.421}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}SourceVel}{738}{sstrefsection.422}} -\newlabel{SourceVel}{{C}{738}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.422}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}SpecOrigin}{739}{sstrefsection.423}} -\newlabel{SpecOrigin}{{C}{739}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.423}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}SpecVal}{740}{sstrefsection.424}} -\newlabel{SpecVal}{{C}{740}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.424}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}StcsArea}{741}{sstrefsection.425}} -\newlabel{StcsArea}{{C}{741}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.425}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}StcsCoords}{742}{sstrefsection.426}} -\newlabel{StcsCoords}{{C}{742}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.426}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}StcsLength}{743}{sstrefsection.427}} -\newlabel{StcsLength}{{C}{743}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.427}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}StcsProps}{744}{sstrefsection.428}} -\newlabel{StcsProps}{{C}{744}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.428}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}StdOfRest}{745}{sstrefsection.429}} -\newlabel{StdOfRest}{{C}{745}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.429}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}Strict}{747}{sstrefsection.430}} -\newlabel{Strict}{{C}{747}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.430}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}Style(element)}{748}{sstrefsection.431}} -\newlabel{Style(element)}{{C}{748}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.431}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}Symbol(axis)}{749}{sstrefsection.432}} -\newlabel{Symbol(axis)}{{C}{749}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.432}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}System}{750}{sstrefsection.433}} -\newlabel{System}{{C}{750}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.433}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}TabOK}{753}{sstrefsection.434}} -\newlabel{TabOK}{{C}{753}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.434}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}TextGapType}{754}{sstrefsection.435}} -\newlabel{TextGapType}{{C}{754}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.435}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}TextLab(axis)}{755}{sstrefsection.436}} -\newlabel{TextLab(axis)}{{C}{755}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.436}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}TextLabGap(axis)}{756}{sstrefsection.437}} -\newlabel{TextLabGap(axis)}{{C}{756}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.437}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}TickAll}{757}{sstrefsection.438}} -\newlabel{TickAll}{{C}{757}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.438}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}TimeOrigin}{758}{sstrefsection.439}} -\newlabel{TimeOrigin}{{C}{758}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.439}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}TimeScale}{759}{sstrefsection.440}} -\newlabel{TimeScale}{{C}{759}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.440}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}Title}{761}{sstrefsection.441}} -\newlabel{Title}{{C}{761}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.441}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}TitleGap}{762}{sstrefsection.442}} -\newlabel{TitleGap}{{C}{762}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.442}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}Tol}{763}{sstrefsection.443}} -\newlabel{Tol}{{C}{763}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.443}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}TolInverse}{764}{sstrefsection.444}} -\newlabel{TolInverse}{{C}{764}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.444}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}Top(axis)}{765}{sstrefsection.445}} -\newlabel{Top(axis)}{{C}{765}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.445}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}TranForward}{766}{sstrefsection.446}} -\newlabel{TranForward}{{C}{766}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.446}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}TranInverse}{767}{sstrefsection.447}} -\newlabel{TranInverse}{{C}{767}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.447}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}Unit(axis)}{768}{sstrefsection.448}} -\newlabel{Unit(axis)}{{C}{768}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.448}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}UnitRadius}{769}{sstrefsection.449}} -\newlabel{UnitRadius}{{C}{769}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.449}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}UseDefs}{770}{sstrefsection.450}} -\newlabel{UseDefs}{{C}{770}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.450}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}Variant}{771}{sstrefsection.451}} -\newlabel{Variant}{{C}{771}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.451}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}Warnings}{773}{sstrefsection.452}} -\newlabel{Warnings}{{C}{773}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.452}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}WcsAxis(lonlat)}{774}{sstrefsection.453}} -\newlabel{WcsAxis(lonlat)}{{C}{774}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.453}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}WcsType}{775}{sstrefsection.454}} -\newlabel{WcsType}{{C}{775}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.454}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}Width(element)}{776}{sstrefsection.455}} -\newlabel{Width(element)}{{C}{776}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.455}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}XmlFormat}{777}{sstrefsection.456}} -\newlabel{XmlFormat}{{C}{777}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.456}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}XmlLength}{779}{sstrefsection.457}} -\newlabel{XmlLength}{{C}{779}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.457}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}XmlPrefix}{780}{sstrefsection.458}} -\newlabel{XmlPrefix}{{C}{780}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.458}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}Zoom}{781}{sstrefsection.459}} -\newlabel{Zoom}{{C}{781}{\label {ss:attributedescriptions}AST Attribute Descriptions}{sstrefsection.459}{}} -\newlabel{ss:classdescriptions}{{D}{783}{\label {ss:classdescriptions}AST Class Descriptions}{appendix.D}{}} -\@writefile{toc}{\contentsline {section}{\numberline {D}AST Class Descriptions}{783}{appendix.D}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}Axis}{784}{sstrefsection.460}} -\newlabel{Axis}{{D}{784}{\label {ss:classdescriptions}AST Class Descriptions}{sstrefsection.460}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}Box}{785}{sstrefsection.461}} -\newlabel{Box}{{D}{785}{\label {ss:classdescriptions}AST Class Descriptions}{sstrefsection.461}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}Channel}{786}{sstrefsection.462}} -\newlabel{Channel}{{D}{786}{\label {ss:classdescriptions}AST Class Descriptions}{sstrefsection.462}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}ChebyMap}{787}{sstrefsection.463}} -\newlabel{ChebyMap}{{D}{787}{\label {ss:classdescriptions}AST Class Descriptions}{sstrefsection.463}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}Circle}{788}{sstrefsection.464}} -\newlabel{Circle}{{D}{788}{\label {ss:classdescriptions}AST Class Descriptions}{sstrefsection.464}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}CmpFrame}{789}{sstrefsection.465}} -\newlabel{CmpFrame}{{D}{789}{\label {ss:classdescriptions}AST Class Descriptions}{sstrefsection.465}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}CmpMap}{790}{sstrefsection.466}} -\newlabel{CmpMap}{{D}{790}{\label {ss:classdescriptions}AST Class Descriptions}{sstrefsection.466}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}CmpRegion}{791}{sstrefsection.467}} -\newlabel{CmpRegion}{{D}{791}{\label {ss:classdescriptions}AST Class Descriptions}{sstrefsection.467}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}DSBSpecFrame}{792}{sstrefsection.468}} -\newlabel{DSBSpecFrame}{{D}{792}{\label {ss:classdescriptions}AST Class Descriptions}{sstrefsection.468}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}DssMap}{793}{sstrefsection.469}} -\newlabel{DssMap}{{D}{793}{\label {ss:classdescriptions}AST Class Descriptions}{sstrefsection.469}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}Ellipse}{794}{sstrefsection.470}} -\newlabel{Ellipse}{{D}{794}{\label {ss:classdescriptions}AST Class Descriptions}{sstrefsection.470}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}FitsChan}{795}{sstrefsection.471}} -\newlabel{FitsChan}{{D}{795}{\label {ss:classdescriptions}AST Class Descriptions}{sstrefsection.471}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}FitsTable}{798}{sstrefsection.472}} -\newlabel{FitsTable}{{D}{798}{\label {ss:classdescriptions}AST Class Descriptions}{sstrefsection.472}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}FluxFrame}{799}{sstrefsection.473}} -\newlabel{FluxFrame}{{D}{799}{\label {ss:classdescriptions}AST Class Descriptions}{sstrefsection.473}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}Frame}{800}{sstrefsection.474}} -\newlabel{Frame}{{D}{800}{\label {ss:classdescriptions}AST Class Descriptions}{sstrefsection.474}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}FrameSet}{802}{sstrefsection.475}} -\newlabel{FrameSet}{{D}{802}{\label {ss:classdescriptions}AST Class Descriptions}{sstrefsection.475}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}GrismMap}{804}{sstrefsection.476}} -\newlabel{GrismMap}{{D}{804}{\label {ss:classdescriptions}AST Class Descriptions}{sstrefsection.476}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}Interval}{805}{sstrefsection.477}} -\newlabel{Interval}{{D}{805}{\label {ss:classdescriptions}AST Class Descriptions}{sstrefsection.477}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}IntraMap}{806}{sstrefsection.478}} -\newlabel{IntraMap}{{D}{806}{\label {ss:classdescriptions}AST Class Descriptions}{sstrefsection.478}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}KeyMap}{807}{sstrefsection.479}} -\newlabel{KeyMap}{{D}{807}{\label {ss:classdescriptions}AST Class Descriptions}{sstrefsection.479}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}LutMap}{809}{sstrefsection.480}} -\newlabel{LutMap}{{D}{809}{\label {ss:classdescriptions}AST Class Descriptions}{sstrefsection.480}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}Mapping}{810}{sstrefsection.481}} -\newlabel{Mapping}{{D}{810}{\label {ss:classdescriptions}AST Class Descriptions}{sstrefsection.481}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}MathMap}{812}{sstrefsection.482}} -\newlabel{MathMap}{{D}{812}{\label {ss:classdescriptions}AST Class Descriptions}{sstrefsection.482}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}MatrixMap}{813}{sstrefsection.483}} -\newlabel{MatrixMap}{{D}{813}{\label {ss:classdescriptions}AST Class Descriptions}{sstrefsection.483}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}Moc}{814}{sstrefsection.484}} -\newlabel{Moc}{{D}{814}{\label {ss:classdescriptions}AST Class Descriptions}{sstrefsection.484}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}MocChan}{816}{sstrefsection.485}} -\newlabel{MocChan}{{D}{816}{\label {ss:classdescriptions}AST Class Descriptions}{sstrefsection.485}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}NormMap}{817}{sstrefsection.486}} -\newlabel{NormMap}{{D}{817}{\label {ss:classdescriptions}AST Class Descriptions}{sstrefsection.486}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}NullRegion}{818}{sstrefsection.487}} -\newlabel{NullRegion}{{D}{818}{\label {ss:classdescriptions}AST Class Descriptions}{sstrefsection.487}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}Object}{819}{sstrefsection.488}} -\newlabel{Object}{{D}{819}{\label {ss:classdescriptions}AST Class Descriptions}{sstrefsection.488}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}PcdMap}{821}{sstrefsection.489}} -\newlabel{PcdMap}{{D}{821}{\label {ss:classdescriptions}AST Class Descriptions}{sstrefsection.489}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}PermMap}{822}{sstrefsection.490}} -\newlabel{PermMap}{{D}{822}{\label {ss:classdescriptions}AST Class Descriptions}{sstrefsection.490}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}Plot}{823}{sstrefsection.491}} -\newlabel{Plot}{{D}{823}{\label {ss:classdescriptions}AST Class Descriptions}{sstrefsection.491}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}Plot3D}{826}{sstrefsection.492}} -\newlabel{Plot3D}{{D}{826}{\label {ss:classdescriptions}AST Class Descriptions}{sstrefsection.492}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}PointList}{828}{sstrefsection.493}} -\newlabel{PointList}{{D}{828}{\label {ss:classdescriptions}AST Class Descriptions}{sstrefsection.493}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}PolyMap}{829}{sstrefsection.494}} -\newlabel{PolyMap}{{D}{829}{\label {ss:classdescriptions}AST Class Descriptions}{sstrefsection.494}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}Polygon}{830}{sstrefsection.495}} -\newlabel{Polygon}{{D}{830}{\label {ss:classdescriptions}AST Class Descriptions}{sstrefsection.495}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}Prism}{831}{sstrefsection.496}} -\newlabel{Prism}{{D}{831}{\label {ss:classdescriptions}AST Class Descriptions}{sstrefsection.496}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}RateMap}{832}{sstrefsection.497}} -\newlabel{RateMap}{{D}{832}{\label {ss:classdescriptions}AST Class Descriptions}{sstrefsection.497}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}Region}{833}{sstrefsection.498}} -\newlabel{Region}{{D}{833}{\label {ss:classdescriptions}AST Class Descriptions}{sstrefsection.498}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}SelectorMap}{835}{sstrefsection.499}} -\newlabel{SelectorMap}{{D}{835}{\label {ss:classdescriptions}AST Class Descriptions}{sstrefsection.499}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}ShiftMap}{836}{sstrefsection.500}} -\newlabel{ShiftMap}{{D}{836}{\label {ss:classdescriptions}AST Class Descriptions}{sstrefsection.500}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}SkyAxis}{837}{sstrefsection.501}} -\newlabel{SkyAxis}{{D}{837}{\label {ss:classdescriptions}AST Class Descriptions}{sstrefsection.501}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}SkyFrame}{838}{sstrefsection.502}} -\newlabel{SkyFrame}{{D}{838}{\label {ss:classdescriptions}AST Class Descriptions}{sstrefsection.502}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}SlaMap}{840}{sstrefsection.503}} -\newlabel{SlaMap}{{D}{840}{\label {ss:classdescriptions}AST Class Descriptions}{sstrefsection.503}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}SpecFluxFrame}{841}{sstrefsection.504}} -\newlabel{SpecFluxFrame}{{D}{841}{\label {ss:classdescriptions}AST Class Descriptions}{sstrefsection.504}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}SpecFrame}{842}{sstrefsection.505}} -\newlabel{SpecFrame}{{D}{842}{\label {ss:classdescriptions}AST Class Descriptions}{sstrefsection.505}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}SpecMap}{843}{sstrefsection.506}} -\newlabel{SpecMap}{{D}{843}{\label {ss:classdescriptions}AST Class Descriptions}{sstrefsection.506}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}SphMap}{844}{sstrefsection.507}} -\newlabel{SphMap}{{D}{844}{\label {ss:classdescriptions}AST Class Descriptions}{sstrefsection.507}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}Stc}{845}{sstrefsection.508}} -\newlabel{Stc}{{D}{845}{\label {ss:classdescriptions}AST Class Descriptions}{sstrefsection.508}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}StcCatalogEntryLocation}{846}{sstrefsection.509}} -\newlabel{StcCatalogEntryLocation}{{D}{846}{\label {ss:classdescriptions}AST Class Descriptions}{sstrefsection.509}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}StcObsDataLocation}{847}{sstrefsection.510}} -\newlabel{StcObsDataLocation}{{D}{847}{\label {ss:classdescriptions}AST Class Descriptions}{sstrefsection.510}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}StcResourceProfile}{848}{sstrefsection.511}} -\newlabel{StcResourceProfile}{{D}{848}{\label {ss:classdescriptions}AST Class Descriptions}{sstrefsection.511}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}StcSearchLocation}{849}{sstrefsection.512}} -\newlabel{StcSearchLocation}{{D}{849}{\label {ss:classdescriptions}AST Class Descriptions}{sstrefsection.512}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}StcsChan}{850}{sstrefsection.513}} -\newlabel{StcsChan}{{D}{850}{\label {ss:classdescriptions}AST Class Descriptions}{sstrefsection.513}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}SwitchMap}{852}{sstrefsection.514}} -\newlabel{SwitchMap}{{D}{852}{\label {ss:classdescriptions}AST Class Descriptions}{sstrefsection.514}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}Table}{854}{sstrefsection.515}} -\newlabel{Table}{{D}{854}{\label {ss:classdescriptions}AST Class Descriptions}{sstrefsection.515}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}TimeFrame}{856}{sstrefsection.516}} -\newlabel{TimeFrame}{{D}{856}{\label {ss:classdescriptions}AST Class Descriptions}{sstrefsection.516}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}TimeMap}{857}{sstrefsection.517}} -\newlabel{TimeMap}{{D}{857}{\label {ss:classdescriptions}AST Class Descriptions}{sstrefsection.517}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}TranMap}{858}{sstrefsection.518}} -\newlabel{TranMap}{{D}{858}{\label {ss:classdescriptions}AST Class Descriptions}{sstrefsection.518}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}UnitMap}{859}{sstrefsection.519}} -\newlabel{UnitMap}{{D}{859}{\label {ss:classdescriptions}AST Class Descriptions}{sstrefsection.519}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}UnitNormMap}{860}{sstrefsection.520}} -\newlabel{UnitNormMap}{{D}{860}{\label {ss:classdescriptions}AST Class Descriptions}{sstrefsection.520}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}WcsMap}{861}{sstrefsection.521}} -\newlabel{WcsMap}{{D}{861}{\label {ss:classdescriptions}AST Class Descriptions}{sstrefsection.521}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}WinMap}{863}{sstrefsection.522}} -\newlabel{WinMap}{{D}{863}{\label {ss:classdescriptions}AST Class Descriptions}{sstrefsection.522}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}XmlChan}{864}{sstrefsection.523}} -\newlabel{XmlChan}{{D}{864}{\label {ss:classdescriptions}AST Class Descriptions}{sstrefsection.523}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}ZoomMap}{865}{sstrefsection.524}} -\newlabel{ZoomMap}{{D}{865}{\label {ss:classdescriptions}AST Class Descriptions}{sstrefsection.524}{}} -\newlabel{ss:commanddescriptions}{{E}{867}{\label {ss:commanddescriptions}UNIX Command Descriptions}{appendix.E}{}} -\@writefile{toc}{\contentsline {section}{\numberline {E}UNIX Command Descriptions}{867}{appendix.E}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}ast_link}{868}{sstrefsection.525}} -\newlabel{ast_link}{{E}{868}{\label {ss:commanddescriptions}UNIX Command Descriptions}{sstrefsection.525}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {}ast_link_adam}{870}{sstrefsection.526}} -\newlabel{ast_link_adam}{{E}{870}{\label {ss:commanddescriptions}UNIX Command Descriptions}{sstrefsection.526}{}} -\newlabel{{xref_FitsWcsCoverage}}{{F}{872}{\xlabel {FitsWcsCoverage}\label {ss:fitswcscoverage}FITS-WCS Coverage}{appendix.F}{}} -\newlabel{ss:fitswcscoverage}{{F}{872}{\xlabel {FitsWcsCoverage}\label {ss:fitswcscoverage}FITS-WCS Coverage}{appendix.F}{}} -\@writefile{toc}{\contentsline {section}{\numberline {F}FITS-WCS Coverage}{872}{appendix.F}} -\@writefile{toc}{\contentsline {subsection}{\numberline {F.1}Paper I - General Linear Coordinates}{872}{subsection.F.1}} -\@writefile{toc}{\contentsline {subsubsection}{\numberline {F.1.1}Requirements for a Successful Write Operation}{872}{subsubsection.F.1.1}} -\@writefile{toc}{\contentsline {subsubsection}{\numberline {F.1.2}Use and Choice of CTYPE\emph {i} keywords}{872}{subsubsection.F.1.2}} -\@writefile{lot}{\contentsline {table}{\numberline {1}{\ignorespaces Use of FITS-WCS Paper I keywords}}{873}{table.1}} -\newlabel{tab:fitspaper1}{{1}{873}{Use of FITS-WCS Paper I keywords}{table.1}{}} -\@writefile{toc}{\contentsline {subsubsection}{\numberline {F.1.3}Choice of Reference Point}{874}{subsubsection.F.1.3}} -\@writefile{toc}{\contentsline {subsubsection}{\numberline {F.1.4}Choice of Axis Ordering}{874}{subsubsection.F.1.4}} -\@writefile{toc}{\contentsline {subsubsection}{\numberline {F.1.5}Alternate Axis Descriptions}{874}{subsubsection.F.1.5}} -\@writefile{toc}{\contentsline {subsection}{\numberline {F.2}Paper II - Celestial Coordinates}{875}{subsection.F.2}} -\@writefile{toc}{\contentsline {subsubsection}{\numberline {F.2.1}Requirements for a Successful Write Operation}{875}{subsubsection.F.2.1}} -\@writefile{toc}{\contentsline {subsubsection}{\numberline {F.2.2}Choice of LONPOLE/LATPOLE}{875}{subsubsection.F.2.2}} -\@writefile{lot}{\contentsline {table}{\numberline {2}{\ignorespaces Use of FITS-WCS Paper II keywords}}{876}{table.2}} -\newlabel{tab:fitspaper2}{{2}{876}{Use of FITS-WCS Paper II keywords}{table.2}{}} -\@writefile{toc}{\contentsline {subsubsection}{\numberline {F.2.3}User Defined Fiducial Points}{877}{subsubsection.F.2.3}} -\@writefile{toc}{\contentsline {subsubsection}{\numberline {F.2.4}Common Non-Standard Features}{877}{subsubsection.F.2.4}} -\@writefile{toc}{\contentsline {subsection}{\numberline {F.3}Paper III - Spectral Coordinates}{878}{subsection.F.3}} -\@writefile{toc}{\contentsline {subsubsection}{\numberline {F.3.1}Requirements for a Successful Write Operation}{878}{subsubsection.F.3.1}} -\@writefile{lot}{\contentsline {table}{\numberline {3}{\ignorespaces Use of FITS-WCS Paper III keywords}}{879}{table.3}} -\newlabel{tab:fitspaper3}{{3}{879}{Use of FITS-WCS Paper III keywords}{table.3}{}} -\@writefile{toc}{\contentsline {subsubsection}{\numberline {F.3.2}Common Non-Standard Features}{880}{subsubsection.F.3.2}} -\@writefile{toc}{\contentsline {subsection}{\numberline {F.4}Paper IV - Coordinate Distortions}{880}{subsection.F.4}} -\@writefile{toc}{\contentsline {subsubsection}{\numberline {F.4.1}The ``-SIP'' distortion code}{880}{subsubsection.F.4.1}} -\newlabel{{xref_changes_and_new_features}}{{G}{881}{\xlabel {changes_and_new_features}\label {ss:changes}Release Notes}{appendix.G}{}} -\newlabel{ss:changes}{{G}{881}{\xlabel {changes_and_new_features}\label {ss:changes}Release Notes}{appendix.G}{}} -\@writefile{toc}{\contentsline {section}{\numberline {G}Release Notes}{881}{appendix.G}} -\@writefile{toc}{\contentsline {subsection}{\numberline {G.1}Changes Introduced in V1.1}{881}{subsection.G.1}} -\@writefile{toc}{\contentsline {subsection}{\numberline {G.2}Changes Introduced in V1.2}{882}{subsection.G.2}} -\@writefile{toc}{\contentsline {subsection}{\numberline {G.3}Changes Introduced in V1.3}{883}{subsection.G.3}} -\@writefile{toc}{\contentsline {subsection}{\numberline {G.4}Changes Introduced in V1.4}{884}{subsection.G.4}} -\@writefile{toc}{\contentsline {subsection}{\numberline {G.5}Changes Introduced in V1.5}{885}{subsection.G.5}} -\@writefile{toc}{\contentsline {subsection}{\numberline {G.6}Changes Introduced in V1.6}{886}{subsection.G.6}} -\@writefile{toc}{\contentsline {subsection}{\numberline {G.7}Changes Introduced in V1.7}{888}{subsection.G.7}} -\@writefile{toc}{\contentsline {subsection}{\numberline {G.8}Changes Introduced in V1.8-2}{889}{subsection.G.8}} -\@writefile{toc}{\contentsline {subsection}{\numberline {G.9}Changes Introduced in V1.8-3}{889}{subsection.G.9}} -\@writefile{toc}{\contentsline {subsection}{\numberline {G.10}Changes Introduced in V1.8-4}{889}{subsection.G.10}} -\@writefile{toc}{\contentsline {subsection}{\numberline {G.11}Changes Introduced in V1.8-5}{890}{subsection.G.11}} -\@writefile{toc}{\contentsline {subsection}{\numberline {G.12}Changes Introduced in V1.8-7}{890}{subsection.G.12}} -\@writefile{toc}{\contentsline {subsection}{\numberline {G.13}Changes Introduced in V1.8-8}{891}{subsection.G.13}} -\@writefile{toc}{\contentsline {subsection}{\numberline {G.14}Changes Introduced in V1.8-13}{891}{subsection.G.14}} -\@writefile{toc}{\contentsline {subsection}{\numberline {G.15}Changes Introduced in V2.0}{892}{subsection.G.15}} -\@writefile{toc}{\contentsline {subsection}{\numberline {G.16}Changes Introduced in V3.0}{894}{subsection.G.16}} -\@writefile{toc}{\contentsline {subsection}{\numberline {G.17}Changes Introduced in V3.1}{896}{subsection.G.17}} -\@writefile{toc}{\contentsline {subsection}{\numberline {G.18}Changes Introduced in V3.2}{897}{subsection.G.18}} -\@writefile{toc}{\contentsline {subsection}{\numberline {G.19}Changes Introduced in V3.3}{898}{subsection.G.19}} -\@writefile{toc}{\contentsline {subsection}{\numberline {G.20}Changes Introduced in V3.4}{899}{subsection.G.20}} -\@writefile{toc}{\contentsline {subsection}{\numberline {G.21}Changes Introduced in V3.5}{900}{subsection.G.21}} -\@writefile{toc}{\contentsline {subsection}{\numberline {G.22}Changes Introduced in V3.6}{900}{subsection.G.22}} -\@writefile{toc}{\contentsline {subsection}{\numberline {G.23}Changes Introduced in V3.7}{901}{subsection.G.23}} -\@writefile{toc}{\contentsline {subsection}{\numberline {G.24}Changes Introduced in V4.0}{901}{subsection.G.24}} -\@writefile{toc}{\contentsline {subsection}{\numberline {G.25}Changes Introduced in V4.1}{901}{subsection.G.25}} -\@writefile{toc}{\contentsline {subsection}{\numberline {G.26}Changes Introduced in V4.2}{902}{subsection.G.26}} -\@writefile{toc}{\contentsline {subsection}{\numberline {G.27}Changes Introduced in V4.3}{903}{subsection.G.27}} -\@writefile{toc}{\contentsline {subsection}{\numberline {G.28}Changes Introduced in V4.4}{904}{subsection.G.28}} -\@writefile{toc}{\contentsline {subsection}{\numberline {G.29}Changes Introduced in V4.5}{904}{subsection.G.29}} -\@writefile{toc}{\contentsline {subsection}{\numberline {G.30}Changes Introduced in V4.6}{905}{subsection.G.30}} -\@writefile{toc}{\contentsline {subsection}{\numberline {G.31}Changes Introduced in V5.0}{906}{subsection.G.31}} -\@writefile{toc}{\contentsline {subsection}{\numberline {G.32}Changes Introduced in V5.1}{906}{subsection.G.32}} -\@writefile{toc}{\contentsline {subsection}{\numberline {G.33}Changes Introduced in V5.2}{907}{subsection.G.33}} -\@writefile{toc}{\contentsline {subsection}{\numberline {G.34}Changes Introduced in V5.3}{908}{subsection.G.34}} -\@writefile{toc}{\contentsline {subsection}{\numberline {G.35}Changes Introduced in V5.3-1}{909}{subsection.G.35}} -\@writefile{toc}{\contentsline {subsection}{\numberline {G.36}Changes Introduced in V5.3-2}{910}{subsection.G.36}} -\@writefile{toc}{\contentsline {subsection}{\numberline {G.37}Changes Introduced in V5.4-0}{910}{subsection.G.37}} -\@writefile{toc}{\contentsline {subsection}{\numberline {G.38}Changes Introduced in V5.5-0}{911}{subsection.G.38}} -\@writefile{toc}{\contentsline {subsection}{\numberline {G.39}Changes Introduced in V5.6-0}{911}{subsection.G.39}} -\@writefile{toc}{\contentsline {subsection}{\numberline {G.40}ChangesIntroduced in V5.6-1}{911}{subsection.G.40}} -\@writefile{toc}{\contentsline {subsection}{\numberline {G.41}Changes Introduced in V5.7-0}{912}{subsection.G.41}} -\@writefile{toc}{\contentsline {subsection}{\numberline {G.42}Changes Introduced in V5.7-1}{912}{subsection.G.42}} -\@writefile{toc}{\contentsline {subsection}{\numberline {G.43}Changes Introduced in V5.7-2}{912}{subsection.G.43}} -\@writefile{toc}{\contentsline {subsection}{\numberline {G.44}Changes Introduced in V6.0}{913}{subsection.G.44}} -\@writefile{toc}{\contentsline {subsection}{\numberline {G.45}Changes Introduced in V6.0-1}{913}{subsection.G.45}} -\@writefile{toc}{\contentsline {subsection}{\numberline {G.46}Changes Introduced in V7.0.0}{914}{subsection.G.46}} -\@writefile{toc}{\contentsline {subsection}{\numberline {G.47}Changes Introduced in V7.0.1}{914}{subsection.G.47}} -\@writefile{toc}{\contentsline {subsection}{\numberline {G.48}Changes Introduced in V7.0.2}{914}{subsection.G.48}} -\@writefile{toc}{\contentsline {subsection}{\numberline {G.49}Changes Introduced in V7.0.3}{914}{subsection.G.49}} -\@writefile{toc}{\contentsline {subsection}{\numberline {G.50}Changes Introduced in V7.0.4}{915}{subsection.G.50}} -\@writefile{toc}{\contentsline {subsection}{\numberline {G.51}Changes Introduced in V7.0.5}{915}{subsection.G.51}} -\@writefile{toc}{\contentsline {subsection}{\numberline {G.52}Changes Introduced in V7.0.6}{915}{subsection.G.52}} -\@writefile{toc}{\contentsline {subsection}{\numberline {G.53}Changes Introduced in V7.1.0}{915}{subsection.G.53}} -\@writefile{toc}{\contentsline {subsection}{\numberline {G.54}Changes Introduced in V7.1.1}{916}{subsection.G.54}} -\@writefile{toc}{\contentsline {subsection}{\numberline {G.55}Changes Introduced in V7.2.0}{916}{subsection.G.55}} -\@writefile{toc}{\contentsline {subsection}{\numberline {G.56}Changes Introduced in V7.3.0}{916}{subsection.G.56}} -\@writefile{toc}{\contentsline {subsection}{\numberline {G.57}Changes Introduced in V7.3.1}{917}{subsection.G.57}} -\@writefile{toc}{\contentsline {subsection}{\numberline {G.58}Changes Introduced in V7.3.2}{917}{subsection.G.58}} -\@writefile{toc}{\contentsline {subsection}{\numberline {G.59}Changes Introduced in V7.3.3}{917}{subsection.G.59}} -\@writefile{toc}{\contentsline {subsection}{\numberline {G.60}Changes Introduced in V7.3.4}{917}{subsection.G.60}} -\@writefile{toc}{\contentsline {subsection}{\numberline {G.61}Changes Introduced in V8.0.0}{918}{subsection.G.61}} -\@writefile{toc}{\contentsline {subsection}{\numberline {G.62}Changes Introduced in V8.0.1}{918}{subsection.G.62}} -\@writefile{toc}{\contentsline {subsection}{\numberline {G.63}Changes Introduced in V8.0.2}{918}{subsection.G.63}} -\@writefile{toc}{\contentsline {subsection}{\numberline {G.64}Changes Introduced in V8.0.3}{918}{subsection.G.64}} -\@writefile{toc}{\contentsline {subsection}{\numberline {G.65}Changes Introduced in V8.0.4}{919}{subsection.G.65}} -\@writefile{toc}{\contentsline {subsection}{\numberline {G.66}Changes Introduced in V8.0.5}{919}{subsection.G.66}} -\@writefile{toc}{\contentsline {subsection}{\numberline {G.67}Changes Introduced in V8.1.0}{920}{subsection.G.67}} -\newlabel{{xref_changes}}{{G.68}{920}{\xlabel {changes}\xlabel {list_of_most_recent_changes}Changes Introduced in V8.2}{subsection.G.68}{}} -\newlabel{{xref_list_of_most_recent_changes}}{{G.68}{920}{\xlabel {changes}\xlabel {list_of_most_recent_changes}Changes Introduced in V8.2}{subsection.G.68}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {G.68}Changes Introduced in V8.2}{920}{subsection.G.68}} -\@writefile{toc}{\contentsline {subsection}{\numberline {G.69}Changes Introduced in V8.3}{920}{subsection.G.69}} -\@writefile{toc}{\contentsline {subsection}{\numberline {G.70}Changes Introduced in V8.4}{921}{subsection.G.70}} -\@writefile{toc}{\contentsline {subsection}{\numberline {G.71}Changes Introduced in V8.5}{921}{subsection.G.71}} -\@writefile{toc}{\contentsline {subsection}{\numberline {G.72}Changes Introduced in V8.6.2}{922}{subsection.G.72}} -\@writefile{toc}{\contentsline {subsection}{\numberline {G.73}Changes Introduced in V8.6.3}{923}{subsection.G.73}} -\@writefile{toc}{\contentsline {subsection}{\numberline {G.74}Changes Introduced in V8.7.0}{923}{subsection.G.74}} -\@writefile{toc}{\contentsline {subsection}{\numberline {G.75}Changes Introduced in V8.7.1}{923}{subsection.G.75}} -\@writefile{toc}{\contentsline {subsection}{\numberline {G.76}Changes Introduced in V8.7.2}{923}{subsection.G.76}} -\newlabel{{xref_changes}}{{G.77}{924}{\xlabel {changes}\xlabel {list_of_most_recent_changes}Changes Introduced in V8.8.0}{subsection.G.77}{}} -\newlabel{{xref_list_of_most_recent_changes}}{{G.77}{924}{\xlabel {changes}\xlabel {list_of_most_recent_changes}Changes Introduced in V8.8.0}{subsection.G.77}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {G.77}Changes Introduced in V8.8.0}{924}{subsection.G.77}}