Package nom.tam.fits.header.extra
Enum CommonExt
- All Implemented Interfaces:
Serializable
,Comparable<CommonExt>
,java.lang.constant.Constable
,IFitsHeader
A Set of commonly used keywords in the amateur astronomy community.
- Since:
- 1.20.1
- Author:
- John Murphy and Attila Kovacs
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
Nested classes/interfaces inherited from interface nom.tam.fits.header.IFitsHeader
IFitsHeader.HDU, IFitsHeader.SOURCE, IFitsHeader.VALUE
-
Enum Constant Summary
Enum ConstantDescriptionAmbient air temperature in degrees CelsiusSynonym ofOBJCTROT
.X axis binning factor.Y axis binning factor.Cloud cover as percentageLocal time of observation (ISO timestamp), e.g. "2017-01-03T02:41:24" or "2024-02-24T22:23:33.054"Dew point in degrees Celsius.Whether or not the image is flippedName of focuser.Focuser position in steps.Focal ratioFocus temperature in degrees Celsius.Name of focuserFilter wheel nameCamera gain / amplification.Synonym ofMaxImDLExt.EGAIN
Amplifier gain.Relative humidity as percentageImage rotation angle in degrees.Camera offset setting.Image scale in arcsec/pixel.Air pressure in hPa.Image scale in arcsec / pixel.Elevation of observing site above sea level in metersObservatory site, e.g.Wind direction clockwise from North [0:360]Average wind speed in km/h -
Field Summary
Fields inherited from interface nom.tam.fits.header.IFitsHeader
MAX_INDEX
-
Method Summary
Modifier and TypeMethodDescriptionfinal FitsKey
impl()
(primarily for internal use) Returns the concrete implementation of this header entry, which provides implementation of access methods.static CommonExt
Returns the enum constant of this type with the specified name.static CommonExt[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
Methods inherited from interface nom.tam.fits.header.IFitsHeader
comment, extractIndices, hdu, key, n, status, valueType
-
Enum Constant Details
-
AMBTEMP
Ambient air temperature in degrees Celsius -
ANGLE
Synonym ofOBJCTROT
. -
CCDXBIN
X axis binning factor. Synonym forSBFitsExt.XBINNING
-
CCDYBIN
Y axis binning factor. Synonym forSBFitsExt.YBINNING
-
CLOUDCVR
Cloud cover as percentage -
DATE_LOC
Local time of observation (ISO timestamp), e.g. "2017-01-03T02:41:24" or "2024-02-24T22:23:33.054" -
DEWPOINT
Dew point in degrees Celsius. -
FLIPPED
Whether or not the image is flipped -
FOCNAME
Name of focuser. Synonym ofFOCUSER
-
FOCPOS
Focuser position in steps. Usually an integer, but not always. Synonymous toMaxImDLExt.FOCUSPOS
-
FOCRATIO
Focal ratio -
FOCUSER
Name of focuser -
FOCTEMP
Focus temperature in degrees Celsius. Synonymous toMaxImDLExt.FOCUSTEM
. -
FWHEEL
Filter wheel name -
GAIN
Camera gain / amplification. Often used the same asGAINRAW
. There may be many different conventions on using this keyword. For example it may represent a multiplicative gain factor or gain defined as decibels, or strings such as 'HI'/'LO', or even as a boolean T/F. Therefore, this definition does not restrict the type of value this keyword can be used with. It is up to the user to ensure they follow the convention that makes most sense to their application, and for the tools they intend to use. -
GAINADU
Synonym ofMaxImDLExt.EGAIN
-
GAINRAW
Amplifier gain. Synonym ofMaxImDLExt.ISOSPEED
-
HUMIDITY
Relative humidity as percentage -
OBJCTROT
Image rotation angle in degrees. -
OFFSET
Camera offset setting. Very common since CMOS cameras became popular -
PIXSCALE
Image scale in arcsec/pixel. Redundant withStandard.CDELTn
. -
PRESSURE
Air pressure in hPa. -
SCALE
Image scale in arcsec / pixel. Synonym ofPIXSCALE
, and redundant withStandard.CDELTn
. -
SITEELEV
Elevation of observing site above sea level in meters -
SITENAME
Observatory site, e.g. "Maunakea" -
WINDDIR
Wind direction clockwise from North [0:360] -
WINDSPD
Average wind speed in km/h
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
impl
Description copied from interface:IFitsHeader
(primarily for internal use) Returns the concrete implementation of this header entry, which provides implementation of access methods.- Specified by:
impl
in interfaceIFitsHeader
- Returns:
- the implementation of this keyword, which provides the actual access methods. Implementations of this interface should simply return themselves.
-