Codota Logo
Stereographic.getScale
Code IndexAdd Codota to your IDE (free)

How to use
getScale
method
in
ucar.unidata.geoloc.projection.Stereographic

Best Java code snippets using ucar.unidata.geoloc.projection.Stereographic.getScale (Showing top 6 results out of 315)

  • Common ways to obtain Stereographic
private void myMethod () {
Stereographic s =
  • Codota Iconnew Stereographic(p[0], p[1], p[2])
  • Codota Iconnew Stereographic(latt, lont, scale)
  • Codota Iconnew Stereographic(double1, lont, double2)
  • Smart code suggestions by Codota
}
origin: edu.ucar/unidataCommon

/**
 * Get the parameters as a String
 *
 * @return the parameters as a String
 */
public String paramsToString() {
 return " tangent " + origin.toString() + " scale: " + Format.d(getScale(), 6);
}
origin: edu.ucar/unidataCommon

/**
 * Returns true if this represents the same Projection as proj.
 *
 * @param proj projection in question
 * @return true if this represents the same Projection as proj.
 */
public boolean equals(Object proj) {
 if (!(proj instanceof Stereographic)) {
  return false;
 }
 Stereographic oo = (Stereographic) proj;
 return ((this.getScale() == oo.getScale())
     && (this.getTangentLat() == oo.getTangentLat())
     && (this.getTangentLon() == oo.getTangentLon())
     && this.defaultMapArea.equals(oo.defaultMapArea));
}
origin: edu.ucar/unidataCommon

/**
 * copy constructor - avoid clone !!
 */
public ProjectionImpl constructCopy() {
 return new Stereographic(getTangentLat(), getTangentLon(), getScale(), getFalseEasting(), getFalseNorthing());
}
origin: edu.ucar/netcdf

@Override
public ProjectionImpl constructCopy() {
 ProjectionImpl result =  new Stereographic(getTangentLat(), getTangentLon(), getScale(), getFalseEasting(), getFalseNorthing(), getEarthRadius());
 result.setDefaultMapArea(defaultMapArea);
 result.setName(name);
 return result;
}
origin: Unidata/thredds

@Override
public ProjectionImpl constructCopy() {
 ProjectionImpl result =  new Stereographic(getTangentLat(), getTangentLon(), getScale(), getFalseEasting(), getFalseNorthing(), getEarthRadius());
 result.setDefaultMapArea(defaultMapArea);
 result.setName(name);
 return result;
}
origin: edu.ucar/cdm

@Override
public ProjectionImpl constructCopy() {
 ProjectionImpl result =  new Stereographic(getTangentLat(), getTangentLon(), getScale(), getFalseEasting(), getFalseNorthing(), getEarthRadius());
 result.setDefaultMapArea(defaultMapArea);
 result.setName(name);
 return result;
}
ucar.unidata.geoloc.projectionStereographicgetScale

Javadoc

Get the scale

Popular methods of Stereographic

  • <init>
    Construct a polar Stereographic Projection, from the "natural origin" and the tangent point, calcula
  • addParameter
  • getFalseEasting
    Get the false easting, in km.
  • getFalseNorthing
    Get the false northing, in km.
  • getScaleFactor
    Calculate polar stereographic scale factor based on the natural latitude and longitude of the origin
  • getTangentLat
    Get the tangent latitude
  • getTangentLon
    Get the tangent longitude
  • precalculate
    precalculate some stuff
  • getEarthRadius
  • latLonToProj
    Convert lat/lon coordinates to projection coordinates.
  • setTangentLon
    Set the tangent longitude
  • toString
  • setTangentLon,
  • toString,
  • constructCopy,
  • equals

Popular in Java

  • Finding current android device location
  • addToBackStack (FragmentTransaction)
  • getSharedPreferences (Context)
  • setScale (BigDecimal)
    Returns a BigDecimal whose scale is the specified value, and whose value is numerically equal to thi
  • BufferedInputStream (java.io)
    Wraps an existing InputStream and buffers the input. Expensive interaction with the underlying input
  • SocketTimeoutException (java.net)
    This exception is thrown when a timeout expired on a socket read or accept operation.
  • SecureRandom (java.security)
    This class generates cryptographically secure pseudo-random numbers. It is best to invoke SecureRand
  • PriorityQueue (java.util)
    An unbounded priority Queue based on a priority heap. The elements of the priority queue are ordered
  • Collectors (java.util.stream)
  • DateTimeFormat (org.joda.time.format)
    Factory that creates instances of DateTimeFormatter from patterns and styles. Datetime formatting i
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now