Tabnine Logo
Stereographic.getTangentLon
Code IndexAdd Tabnine to your IDE (free)

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

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

origin: edu.ucar/unidataCommon

/**
 * Clone this projection
 *
 * @return a clone of this.
 */
public Object clone() {
 Stereographic cl = (Stereographic) super.clone();
 cl.origin = new LatLonPointImpl(getTangentLat(), getTangentLon());
 return cl;
}
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.projectionStereographicgetTangentLon

Javadoc

Get the tangent longitude in degrees

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.
  • getScale
    Get the scale
  • getScaleFactor
    Calculate polar stereographic scale factor based on the natural latitude and longitude of the origin
  • getTangentLat
    Get the tangent latitude
  • 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

  • Updating database using SQL prepared statement
  • findViewById (Activity)
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • getApplicationContext (Context)
  • Menu (java.awt)
  • String (java.lang)
  • BigInteger (java.math)
    An immutable arbitrary-precision signed integer.FAST CRYPTOGRAPHY This implementation is efficient f
  • URLEncoder (java.net)
    This class is used to encode a string using the format required by application/x-www-form-urlencoded
  • ResultSet (java.sql)
    An interface for an object which represents a database table entry, returned as the result of the qu
  • BoxLayout (javax.swing)
  • Top plugins for WebStorm
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