1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143
|
/** @def WCSUNITS_PLANE_ANGLE
* @brief Array index for plane angle units type.
*
* Array index for plane angle units in the <VAR>units</VAR> array
* returned by wcsulex(), and the #wcsunits_types[] and #wcsunits_units[]
* global variables.
*/
/** @def WCSUNITS_SOLID_ANGLE
* @brief Array index for solid angle units type.
*
* Array index for solid angle units in the <VAR>units</VAR> array
* returned by wcsulex(), and the #wcsunits_types[] and #wcsunits_units[]
* global variables.
*/
/** @def WCSUNITS_CHARGE
* @brief Array index for charge units type.
*
* Array index for charge units in the <VAR>units</VAR> array
* returned by wcsulex(), and the #wcsunits_types[] and #wcsunits_units[]
* global variables.
*/
/** @def WCSUNITS_MOLE
* @brief Array index for mole units type.
*
* Array index for mole ("gram molecular weight") units in the <VAR>units</VAR>
* array returned by wcsulex(), and the #wcsunits_types[] and #wcsunits_units[]
* global variables.
*/
/** @def WCSUNITS_TEMPERATURE
* @brief Array index for temperature units type.
*
* Array index for temperature units in the <VAR>units</VAR> array
* returned by wcsulex(), and the #wcsunits_types[] and #wcsunits_units[]
* global variables.
*/
/** @def WCSUNITS_LUMINTEN
* @brief Array index for luminous intensity units type.
*
* Array index for luminous intensity units in the <VAR>units</VAR> array
* returned by wcsulex(), and the #wcsunits_types[] and #wcsunits_units[]
* global variables.
*/
/** @def WCSUNITS_MASS
* @brief Array index for mass units type.
*
* Array index for mass units in the <VAR>units</VAR> array
* returned by wcsulex(), and the #wcsunits_types[] and #wcsunits_units[]
* global variables.
*/
/** @def WCSUNITS_LENGTH
* @brief Array index for length units type.
*
* Array index for length units in the <VAR>units</VAR> array
* returned by wcsulex(), and the #wcsunits_types[] and #wcsunits_units[]
* global variables.
*/
/** @def WCSUNITS_TIME
* @brief Array index for time units type.
*
* Array index for time units in the <VAR>units</VAR> array
* returned by wcsulex(), and the #wcsunits_types[] and #wcsunits_units[]
* global variables.
*/
/** @def WCSUNITS_BEAM
* @brief Array index for beam units type.
*
* Array index for beam units in the <VAR>units</VAR> array
* returned by wcsulex(), and the #wcsunits_types[] and #wcsunits_units[]
* global variables.
*/
/** @def WCSUNITS_BIN
* @brief Array index for bin units type.
*
* Array index for bin units in the <VAR>units</VAR> array
* returned by wcsulex(), and the #wcsunits_types[] and #wcsunits_units[]
* global variables.
*/
/** @def WCSUNITS_BIT
* @brief Array index for bit units type.
*
* Array index for bit units in the <VAR>units</VAR> array
* returned by wcsulex(), and the #wcsunits_types[] and #wcsunits_units[]
* global variables.
*/
/** @def WCSUNITS_COUNT
* @brief Array index for count units type.
*
* Array index for count units in the <VAR>units</VAR> array
* returned by wcsulex(), and the #wcsunits_types[] and #wcsunits_units[]
* global variables.
*/
/** @def WCSUNITS_MAGNITUDE
* @brief Array index for stellar magnitude units type.
*
* Array index for stellar magnitude units in the <VAR>units</VAR> array
* returned by wcsulex(), and the #wcsunits_types[] and #wcsunits_units[]
* global variables.
*/
/** @def WCSUNITS_PIXEL
* @brief Array index for pixel units type.
*
* Array index for pixel units in the <VAR>units</VAR> array
* returned by wcsulex(), and the #wcsunits_types[] and #wcsunits_units[]
* global variables.
*/
/** @def WCSUNITS_SOLRATIO
* @brief Array index for solar mass ratio units type.
*
* Array index for solar mass ratio units in the <VAR>units</VAR> array
* returned by wcsulex(), and the #wcsunits_types[] and #wcsunits_units[]
* global variables.
*/
/** @def WCSUNITS_VOXEL
* @brief Array index for voxel units type.
*
* Array index for voxel units in the <VAR>units</VAR> array
* returned by wcsulex(), and the #wcsunits_types[] and #wcsunits_units[]
* global variables.
*/
/** @def WCSUNITS_NTYPE
* @brief Number of entries in the units array.
*
* Number of entries in the <VAR>units</VAR> array
* returned by wcsulex(), and the #wcsunits_types[] and #wcsunits_units[]
* global variables.
*/
|