Package uk.ac.starlink.ttools.plot2.geom
Class HealpixDataGeom
java.lang.Object
uk.ac.starlink.ttools.plot2.geom.HealpixDataGeom
- All Implemented Interfaces:
DataGeom
DataGeom implementation for HEALPix indices.
This can convert from a single integer to a sky position,
the center of the corresponding HEALPix cell.
It has to be parameterised by the HEALPix level, and optionally
data/view sky system information.
In general you should use the provided factory methods to
instantiate this abstract class. If you want to implement a
concrete subclass, make sure you implement the methods requred
Equality
.
- Since:
- 21 Dec 2018
- Author:
- Mark Taylor
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final HealpixDataGeom
Placeholder instance.static final LongCoord
Coordinate for HEALPix pixel index. -
Method Summary
Modifier and TypeMethodDescriptionstatic HealpixDataGeom
createGeom
(int level, boolean isNest, SkySys userSys, SkySys viewSys) Creates a data geom with input user data in one sky system and output data coordinates in another sky system.boolean
int
Returns 3.Coord[]
Returns the definitions for the user-supplied coordinates that indicate plot positions.Returns a label for this DataGeom.int
hashCode()
boolean
readDataPos
(Tuple tuple, int icol, double[] dpos) Determines the positional coordinates in data space for a supplied tuple.
-
Field Details
-
HEALPIX_COORD
Coordinate for HEALPix pixel index. -
DUMMY_INSTANCE
Placeholder instance. This can be used where an instance of this class is required for documentation purposes, but it is not capable of actual transformations.
-
-
Method Details
-
getDataDimCount
public int getDataDimCount()Returns 3.- Specified by:
getDataDimCount
in interfaceDataGeom
- Returns:
- number of elements in data space coordinate array
-
getVariantName
Description copied from interface:DataGeom
Returns a label for this DataGeom. It may be used to distinguish from other geoms used in the same plot type, so for instance call it "Cartesian" or "Polar" rather than "Plane" if it's X,Y.- Specified by:
getVariantName
in interfaceDataGeom
- Returns:
- user-directed input coordinate type name
-
getPosCoords
Description copied from interface:DataGeom
Returns the definitions for the user-supplied coordinates that indicate plot positions.- Specified by:
getPosCoords
in interfaceDataGeom
- Returns:
- coordinate quantity array for this geometry
-
readDataPos
Description copied from interface:DataGeom
Determines the positional coordinates in data space for a supplied tuple.A parameter supplies the index of the field in the tuple at which the positional coordinate(s) can be found. Each position is represented by
DataGeom.getPosCoords()
columns of the tuple. By convention positions are at the start of the tuple, so if there is one position in the tuple it will be at icol=0, and there are multiple positions the N'th one will be at icol=N*getPosCoords().An array of (at least)
DataGeom.getDataDimCount()
elements is supplied, and on success the data space coordinate values are written into it.- Specified by:
readDataPos
in interfaceDataGeom
- Parameters:
tuple
- coordinate tupleicol
- column index intuple
at which the positional information startsdpos
- array into which data space coordinates are written- Returns:
- true iff conversion was successful
-
equals
-
hashCode
public int hashCode() -
createGeom
Creates a data geom with input user data in one sky system and output data coordinates in another sky system. If both of the supplied sky systems are supplied, the corresponding rotation will be applied; if one or zero are supplied, these parameters are ignored.- Parameters:
level
- healpix level (log2(nside))userSys
- sky system in which user data is supplied, may be nullviewSys
- sky system in which the plot is viewed, may be null- Returns:
- new data geom
-