congrats Icon
New! Tabnine Pro 14-day free trial
Start a free trial
Tabnine Logo
Stereographic.getTangentLat
Code IndexAdd Tabnine to your IDE (free)

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

Best Java code snippets using ucar.unidata.geoloc.projection.Stereographic.getTangentLat (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.projectionStereographicgetTangentLat

Javadoc

Get the tangent latitude 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
  • 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

  • Making http requests using okhttp
  • setScale (BigDecimal)
  • getSupportFragmentManager (FragmentActivity)
  • getApplicationContext (Context)
  • URLConnection (java.net)
    A connection to a URL for reading or writing. For HTTP connections, see HttpURLConnection for docume
  • Connection (java.sql)
    A connection represents a link from a Java application to a database. All SQL statements and results
  • SortedSet (java.util)
    SortedSet is a Set which iterates over its elements in a sorted order. The order is determined eithe
  • StringTokenizer (java.util)
    Breaks a string into tokens; new code should probably use String#split.> // Legacy code: StringTo
  • Reflections (org.reflections)
    Reflections one-stop-shop objectReflections scans your classpath, indexes the metadata, allows you t
  • Location (org.springframework.beans.factory.parsing)
    Class that models an arbitrary location in a Resource.Typically used to track the location of proble
  • Top plugins for WebStorm
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

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