Tabnine Logo
Utm_To_Gdc_Converter.projToLatLon
Code IndexAdd Tabnine to your IDE (free)

How to use
projToLatLon
method
in
ucar.unidata.geoloc.projection.Utm_To_Gdc_Converter

Best Java code snippets using ucar.unidata.geoloc.projection.Utm_To_Gdc_Converter.projToLatLon (Showing top 12 results out of 315)

origin: edu.ucar/cdm

public double[][] projToLatLon(double[][] from, double[][] to) {
 if ((from == null) || (from.length != 2)) {
  throw new IllegalArgumentException("ProjectionImpl.projToLatLon:null array argument or wrong dimension (from)");
 }
 if ((to == null) || (to.length != 2)) {
  throw new IllegalArgumentException("ProjectionImpl.projToLatLon:null array argument or wrong dimension (to)");
 }
 if (from[0].length != to[0].length) {
  throw new IllegalArgumentException("ProjectionImpl.projToLatLon:from array not same length as to array");
 }
 return convert2latlon.projToLatLon(from, to);
}
origin: edu.ucar/netcdf

public double[][] projToLatLon(double[][] from, double[][] to) {
 if ((from == null) || (from.length != 2)) {
  throw new IllegalArgumentException("ProjectionImpl.projToLatLon:null array argument or wrong dimension (from)");
 }
 if ((to == null) || (to.length != 2)) {
  throw new IllegalArgumentException("ProjectionImpl.projToLatLon:null array argument or wrong dimension (to)");
 }
 if (from[0].length != to[0].length) {
  throw new IllegalArgumentException("ProjectionImpl.projToLatLon:from array not same length as to array");
 }
 return convert2latlon.projToLatLon(from, to);
}
origin: Unidata/thredds

public double[][] projToLatLon(double[][] from, double[][] to) {
 if ((from == null) || (from.length != 2)) {
  throw new IllegalArgumentException("ProjectionImpl.projToLatLon:null array argument or wrong dimension (from)");
 }
 if ((to == null) || (to.length != 2)) {
  throw new IllegalArgumentException("ProjectionImpl.projToLatLon:null array argument or wrong dimension (to)");
 }
 if (from[0].length != to[0].length) {
  throw new IllegalArgumentException("ProjectionImpl.projToLatLon:from array not same length as to array");
 }
 return convert2latlon.projToLatLon(from, to);
}
origin: edu.ucar/netcdf

/**
 * Convert projection coordinates to lat/lon coordinate.
 *
 * @param from array of projection coordinates: from[2][n], where
 *             (from[0][i], from[1][i]) is the (x, y) coordinate
 *             of the ith point
 * @param to   resulting array of lat/lon coordinates: to[2][n] where
 *             (to[0][i], to[1][i]) is the (lat, lon) coordinate of
 *             the ith point
 * @return the "to" array
 */
public float[][] projToLatLon(float[][] from, float[][] to) {
 if ((from == null) || (from.length != 2)) {
  throw new IllegalArgumentException("ProjectionImpl.projToLatLon:null array argument or wrong dimension (from)");
 }
 if ((to == null) || (to.length != 2)) {
  throw new IllegalArgumentException("ProjectionImpl.projToLatLon:null array argument or wrong dimension (to)");
 }
 if (from[0].length != to[0].length) {
  throw new IllegalArgumentException("ProjectionImpl.projToLatLon:from array not same length as to array");
 }
 return convert2latlon.projToLatLon(from, to);
}
origin: edu.ucar/cdm

/**
 * Convert projection coordinates to lat/lon coordinate.
 *
 * @param from array of projection coordinates: from[2][n], where
 *             (from[0][i], from[1][i]) is the (x, y) coordinate
 *             of the ith point
 * @param to   resulting array of lat/lon coordinates: to[2][n] where
 *             (to[0][i], to[1][i]) is the (lat, lon) coordinate of
 *             the ith point
 * @return the "to" array
 */
public float[][] projToLatLon(float[][] from, float[][] to) {
 if ((from == null) || (from.length != 2)) {
  throw new IllegalArgumentException("ProjectionImpl.projToLatLon:null array argument or wrong dimension (from)");
 }
 if ((to == null) || (to.length != 2)) {
  throw new IllegalArgumentException("ProjectionImpl.projToLatLon:null array argument or wrong dimension (to)");
 }
 if (from[0].length != to[0].length) {
  throw new IllegalArgumentException("ProjectionImpl.projToLatLon:from array not same length as to array");
 }
 return convert2latlon.projToLatLon(from, to);
}
origin: Unidata/thredds

/**
 * Convert projection coordinates to lat/lon coordinate.
 *
 * @param from array of projection coordinates: from[2][n], where
 *             (from[0][i], from[1][i]) is the (x, y) coordinate
 *             of the ith point
 * @param to   resulting array of lat/lon coordinates: to[2][n] where
 *             (to[0][i], to[1][i]) is the (lat, lon) coordinate of
 *             the ith point
 * @return the "to" array
 */
public float[][] projToLatLon(float[][] from, float[][] to) {
 if ((from == null) || (from.length != 2)) {
  throw new IllegalArgumentException("ProjectionImpl.projToLatLon:null array argument or wrong dimension (from)");
 }
 if ((to == null) || (to.length != 2)) {
  throw new IllegalArgumentException("ProjectionImpl.projToLatLon:null array argument or wrong dimension (to)");
 }
 if (from[0].length != to[0].length) {
  throw new IllegalArgumentException("ProjectionImpl.projToLatLon:from array not same length as to array");
 }
 return convert2latlon.projToLatLon(from, to);
}
origin: edu.ucar/unidataCommon

/**
 * _more_
 *
 * @param from _more_
 * @param to   _more_
 * @return _more_
 */
public double[][] projToLatLon(double[][] from, double[][] to) {
 if ((from == null) || (from.length != 2)) {
  throw new IllegalArgumentException("ProjectionImpl.projToLatLon:"
      + "null array argument or wrong dimension (from)");
 }
 if ((to == null) || (to.length != 2)) {
  throw new IllegalArgumentException("ProjectionImpl.projToLatLon:"
      + "null array argument or wrong dimension (to)");
 }
 if (from[0].length != to[0].length) {
  throw new IllegalArgumentException("ProjectionImpl.projToLatLon:"
      + "from array not same length as to array");
 }
 return convert2latlon.projToLatLon(from, to);
}
origin: edu.ucar/unidataCommon

/**
 * Convert projection coordinates to lat/lon coordinate.
 *
 * @param from array of projection coordinates: from[2][n], where
 *             (from[0][i], from[1][i]) is the (x, y) coordinate
 *             of the ith point
 * @param to   resulting array of lat/lon coordinates: to[2][n] where
 *             (to[0][i], to[1][i]) is the (lat, lon) coordinate of
 *             the ith point
 * @return the "to" array
 */
public float[][] projToLatLon(float[][] from, float[][] to) {
 if ((from == null) || (from.length != 2)) {
  throw new IllegalArgumentException("ProjectionImpl.projToLatLon:"
      + "null array argument or wrong dimension (from)");
 }
 if ((to == null) || (to.length != 2)) {
  throw new IllegalArgumentException("ProjectionImpl.projToLatLon:"
      + "null array argument or wrong dimension (to)");
 }
 if (from[0].length != to[0].length) {
  throw new IllegalArgumentException("ProjectionImpl.projToLatLon:"
      + "from array not same length as to array");
 }
 return convert2latlon.projToLatLon(from, to);
}
origin: Unidata/thredds

/**
 * Convert projection coordinates to a LatLonPoint
 * Note: a new object is not created on each call for the return value.
 *
 * @param world  convert from these projection coordinates
 * @param result the object to write to
 * @return LatLonPoint convert to these lat/lon coordinates
 */
public LatLonPoint projToLatLon(ProjectionPoint world, LatLonPointImpl result) {
 return convert2latlon.projToLatLon(world.getX(), world.getY(), result);
}
origin: edu.ucar/netcdf

/**
 * Convert projection coordinates to a LatLonPoint
 * Note: a new object is not created on each call for the return value.
 *
 * @param world  convert from these projection coordinates
 * @param result the object to write to
 * @return LatLonPoint convert to these lat/lon coordinates
 */
public LatLonPoint projToLatLon(ProjectionPoint world, LatLonPointImpl result) {
 return convert2latlon.projToLatLon(world.getX(), world.getY(), result);
}
origin: edu.ucar/cdm

/**
 * Convert projection coordinates to a LatLonPoint
 * Note: a new object is not created on each call for the return value.
 *
 * @param world  convert from these projection coordinates
 * @param result the object to write to
 * @return LatLonPoint convert to these lat/lon coordinates
 */
public LatLonPoint projToLatLon(ProjectionPoint world, LatLonPointImpl result) {
 return convert2latlon.projToLatLon(world.getX(), world.getY(), result);
}
origin: edu.ucar/unidataCommon

/**
 * Convert projection coordinates to a LatLonPoint
 * Note: a new object is not created on each call for the return value.
 *
 * @param world  convert from these projection coordinates
 * @param result the object to write to
 * @return LatLonPoint convert to these lat/lon coordinates
 */
public LatLonPoint projToLatLon(ProjectionPoint world,
                LatLonPointImpl result) {
 return convert2latlon.projToLatLon(world.getX(), world.getY(),
     result);
}
ucar.unidata.geoloc.projectionUtm_To_Gdc_ConverterprojToLatLon

Popular methods of Utm_To_Gdc_Converter

  • <init>
    Constructor using given ellipse
  • getA
    _more_
  • getF
    _more_
  • getZone
    _more_
  • init
    initialize
  • isNorth
    _more_

Popular in Java

  • Making http requests using okhttp
  • notifyDataSetChanged (ArrayAdapter)
  • findViewById (Activity)
  • scheduleAtFixedRate (Timer)
  • ObjectMapper (com.fasterxml.jackson.databind)
    ObjectMapper provides functionality for reading and writing JSON, either to and from basic POJOs (Pl
  • InetAddress (java.net)
    An Internet Protocol (IP) address. This can be either an IPv4 address or an IPv6 address, and in pra
  • HashSet (java.util)
    HashSet is an implementation of a Set. All optional operations (adding and removing) are supported.
  • AtomicInteger (java.util.concurrent.atomic)
    An int value that may be updated atomically. See the java.util.concurrent.atomic package specificati
  • JFrame (javax.swing)
  • LogFactory (org.apache.commons.logging)
    Factory for creating Log instances, with discovery and configuration features similar to that employ
  • Github Copilot alternatives
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now