Documentation of 'visad.georef.UTMCoordinate' Java class
UTMCoordinate
visad.georef

Class UTMCoordinate

    • Field Detail

      • EASTING

        public static RealType EASTING
        The RealType for the easting component of the UTM grid.
      • NORTHING

        public static RealType NORTHING
        The RealType for the easting component of the UTM grid.
      • ZONE

        public static RealType ZONE
        The RealType for the zone component of the UTM grid.
      • HEMISPHERE

        public static RealType HEMISPHERE
        The RealType for the zone component of the UTM grid.
      • NORTH

        public static final int NORTH
        The hemisphere identifier for the northern hemisphere
        See Also:
        Constant Field Values
      • SOUTH

        public static final int SOUTH
        The hemisphere identifier for the southern hemisphere
        See Also:
        Constant Field Values
    • Constructor Detail

      • UTMCoordinate

        public UTMCoordinate()
                      throws VisADException,
                             java.rmi.RemoteException
        Construct a UTMCoordinate with missing values
        Throws:
        VisADException - couldn't create the necessary VisAD object
        java.rmi.RemoteException - couldn't create the necessary remote object
      • UTMCoordinate

        public UTMCoordinate(double east,
                             double north)
                      throws VisADException,
                             java.rmi.RemoteException
        Construct a UTMCoordinate from double values of easting and northing.
        Parameters:
        east - easting component (meters) in the zone
        north - northing component (meters) in the zone
        Throws:
        VisADException - couldn't create the necessary VisAD object
        java.rmi.RemoteException - couldn't create the necessary remote object
      • UTMCoordinate

        public UTMCoordinate(double east,
                             double north,
                             double alt)
                      throws VisADException,
                             java.rmi.RemoteException
        Construct a UTMCoordinate from double values of easting and northing and an altitude.
        Parameters:
        east - easting component (meters) in the zone
        north - northing component (meters) in the zone
        alt - altitude of the point
        Throws:
        VisADException - couldn't create the necessary VisAD object
        java.rmi.RemoteException - couldn't create the necessary remote object
      • UTMCoordinate

        public UTMCoordinate(double east,
                             double north,
                             double alt,
                             int zone)
                      throws VisADException,
                             java.rmi.RemoteException
        Construct a UTMCoordinate from double values of easting and northing. Unknown zone and northern hemisphere used
        Parameters:
        east - easting component (meters) in the zone
        north - northing component (meters) in the zone
        alt - altitude of the point
        zone - UTM zone
        Throws:
        VisADException - couldn't create the necessary VisAD object
        java.rmi.RemoteException - couldn't create the necessary remote object
      • UTMCoordinate

        public UTMCoordinate(double east,
                             double north,
                             double alt,
                             int zone,
                             int hemi)
                      throws VisADException,
                             java.rmi.RemoteException
        Construct a UTMCoordinate from double values of easting and northing, the zone and the hemisphere.
        Parameters:
        east - easting component (meters) in the zone
        north - northing component (meters) in the zone
        alt - altitude of the point
        zone - UTM zone
        hemi - UTM hemisphere
        Throws:
        VisADException - couldn't create the necessary VisAD object
        java.rmi.RemoteException - couldn't create the necessary remote object
      • UTMCoordinate

        public UTMCoordinate(Real east,
                             Real north)
                      throws VisADException,
                             java.rmi.RemoteException
        Construct a UTMCoordinate from Reals representing the easting and northing.
        Parameters:
        east - Real representing easting (must have MathType EASTING)
        north - Real representing northing (must have MathType NORTHING)
        Throws:
        VisADException - couldn't create the necessary VisAD object
        java.rmi.RemoteException - couldn't create the necessary remote object
      • UTMCoordinate

        public UTMCoordinate(Real east,
                             Real north,
                             Real alt)
                      throws VisADException,
                             java.rmi.RemoteException
        Construct a UTMCoordinate from Reals representing the easting and northing and the zone.
        Parameters:
        east - Real representing easting (must have MathType EASTING)
        north - Real representing northing (must have MathType NORTHING)
        Throws:
        VisADException - couldn't create the necessary VisAD object
        java.rmi.RemoteException - couldn't create the necessary remote object
      • UTMCoordinate

        public UTMCoordinate(Real east,
                             Real north,
                             Real alt,
                             Real zone)
                      throws VisADException,
                             java.rmi.RemoteException
        Construct a UTMCoordinate from Reals representing the easting and northing and the zone.
        Parameters:
        east - Real representing easting (must have MathType EASTING)
        north - Real representing northing (must have MathType NORTHING)
        Throws:
        VisADException - couldn't create the necessary VisAD object
        java.rmi.RemoteException - couldn't create the necessary remote object
      • UTMCoordinate

        public UTMCoordinate(Real east,
                             Real north,
                             Real alt,
                             Real zone,
                             Real hemi)
                      throws VisADException,
                             java.rmi.RemoteException
        Construct a UTMCoordinate from Reals representing the easting and northing, the zone and the hemisphere.
        Parameters:
        east - Real representing easting (must have MathType EASTING)
        north - Real representing northing (must have MathType NORTHING)
        zone - Real representing UTM zone
        hemi - Real representing hemisphere
        Throws:
        VisADException - couldn't create the necessary VisAD object
        java.rmi.RemoteException - couldn't create the necessary remote object
      • UTMCoordinate

        public UTMCoordinate(Real east,
                             Real north,
                             Real alt,
                             Real zone,
                             Real hemi,
                             CoordinateSystem cs)
                      throws VisADException,
                             java.rmi.RemoteException
        Construct a UTMCoordinate from Reals representing the easting and northing, the zone and the hemisphere. Use the CoordinateSystem supplied to do any transforms.
        Parameters:
        east - Real representing easting (must have MathType EASTING)
        north - Real representing northing (must have MathType NORTHING)
        zone - Real representing UTM zone
        hemi - Real representing hemisphere
        cs - CoordinateSystem
        Throws:
        VisADException - couldn't create the necessary VisAD object
        java.rmi.RemoteException - couldn't create the necessary remote object
    • Method Detail

      • getEasting

        public Real getEasting()
        Get the easting value of this point as a Real
        Returns:
        Real representing the easting
      • getNorthing

        public Real getNorthing()
        Get the northing of this point as a Real
        Returns:
        Real representing the northing
      • getAltitude

        public Real getAltitude()
        Get the altitude of this point as a Real
        Returns:
        Real representing the altitude. May be missing.
      • getZone

        public Real getZone()
        Get the UTM zone of this point as a Real
        Returns:
        Real representing the UTM zone
      • getHemisphere

        public Real getHemisphere()
        Get the UTM hemisphere of this point as a Real
        Returns:
        Real representing the UTM hemisphere
      • getEastingValue

        public double getEastingValue()
        Get the easting value of this point as a Real
        Returns:
        double representing the easting in meters
      • getNorthingValue

        public double getNorthingValue()
        Get the northing of this point
        Returns:
        double representing the northing
      • getAltitudeValue

        public double getAltitudeValue()
        Get the altitude value of this point.
        Returns:
        double representing the altitude in meters
      • getZoneValue

        public int getZoneValue()
        Get the UTM zone of this point
        Returns:
        int representing the UTM zone
      • getHemisphereValue

        public int getHemisphereValue()
        Get the UTM zone of this point
        Returns:
        int representing the UTM zone
      • toString

        public java.lang.String toString()
        Description copied from class: RealTuple
        Provide a String representation of this RealTuple.
        Specified by:
        toString in interface RealTupleIface
        Overrides:
        toString in class RealTuple
        Returns:
        a String representation of this

DMelt 3.0 © DataMelt by jWork.ORG

You see the box below because you did not login.