Class FixedSkyviewProjection
java.lang.Object
uk.ac.starlink.ttools.plot2.geom.SkyviewProjection
uk.ac.starlink.ttools.plot2.geom.FixedSkyviewProjection
- All Implemented Interfaces:
Projection
SkyviewProjection subclass that does not use mouse gestures to
rotate the sky, only to pan and zoom over the projected plane.
- Since:
- 12 Mar 2019
- Author:
- Mark Taylor
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final FixedSkyviewProjectionAitoff projection, lon=0 at center.static final FixedSkyviewProjectionAitoff projection, lon=0 at edge.static final FixedSkyviewProjectionCartesian projection, lon=0 at edge.static final FixedSkyviewProjectionCartesian projection, lon=0 at center.static final FixedSkyviewProjectionGnomonic projection. -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedFixedSkyviewProjection(skyview.geometry.Projecter projecter, Shape shape, String name, String description) Constructor. -
Method Summary
Modifier and TypeMethodDescriptioncreateAspect(boolean reflect, double[] r3, double radiusRad, Range[] ranges) Creates a SkyAspect from configuration information.double[]cursorRotate(double[] rotmat, Point2D.Double pos0, Point2D.Double pos1) Returns null - rotation not implemented.protected abstract double[]getFixedRotation(boolean reflect) Returns the fixed rotation matrix to use for this projection.getFov(SkySurface surf) Returns the field of view represented by this aspect.double[]projRotate(double[] rotmat, Point2D.Double pos0, Point2D.Double pos1) Returns null - rotation not implemented.booleanuseRanges(boolean reflect, double[] r3, double radiusRad) Returns false - ranging not used.Methods inherited from class SkyviewProjection
getProjectionDescription, getProjectionName, getProjectionShape, getSkyviewProjecter, project, unprojectMethods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface Projection
isContinuous, isContinuousLine
-
Field Details
-
AIT
Aitoff projection, lon=0 at center. -
AIT0
Aitoff projection, lon=0 at edge. -
CAR1
Cartesian projection, lon=0 at center. -
CAR0
Cartesian projection, lon=0 at edge. -
TAN
Gnomonic projection.
-
-
Constructor Details
-
FixedSkyviewProjection
-
-
Method Details
-
getFixedRotation
protected abstract double[] getFixedRotation(boolean reflect) Returns the fixed rotation matrix to use for this projection.- Parameters:
reflect- true to reflect longitude- Returns:
- rotation matrix
-
cursorRotate
Returns null - rotation not implemented.- Parameters:
rotmat- initial rotation matrixpos0- initial cursor positionpos1- destination cursor position- Returns:
- destination rotation matrix, or null
-
projRotate
Returns null - rotation not implemented.- Parameters:
rotmat- initial rotation matrixpos0- initial projected positionpos1- destination projected position- Returns:
- destination rotation matrix, or null
-
useRanges
public boolean useRanges(boolean reflect, double[] r3, double radiusRad) Returns false - ranging not used.- Parameters:
reflect- whether requested aspect will be reflectedr3- central position of field of view (may be null)radiusRad- radius of field of view (may be NaN)- Returns:
- true if ranges would be useful given the other arguments
- See Also:
-
createAspect
Description copied from interface:ProjectionCreates a SkyAspect from configuration information. Either the supplied field of view or data ranges may be used, or neither.- Parameters:
reflect- whether requested aspect will be reflectedr3- central position of field of view (may be null)radiusRad- radius of field of view (may be NaN)ranges- definite ranges for normalised X,Y,Z coordinates acquired from data- Returns:
- new sky aspect
- See Also:
-
getFov
Description copied from interface:ProjectionReturns the field of view represented by this aspect. This is a best estimate, it may be approximate depending on the projection geometry. If the field of view is the default for this projection, then null should be returned. Null may also be returned if for some reason no field of view can be determined.- Parameters:
surf- sky surface, which must be set up using this projection- Returns:
- field of view, or null
-