Codota Logo
FlatEarth.getOriginLat
Code IndexAdd Codota to your IDE (free)

How to use
getOriginLat
method
in
ucar.unidata.geoloc.projection.FlatEarth

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

  • Common ways to obtain FlatEarth
private void myMethod () {
FlatEarth f =
  • Codota Iconnew FlatEarth()
  • Codota Iconnew FlatEarth(double1, -100, double2)
  • Codota Iconnew ucar.unidata.geoloc.projection.FlatEarth(lat0, lon0, rotAngle, radius)
  • Smart code suggestions by Codota
}
origin: edu.ucar/unidataCommon

/**
 * Check for equality with the Object in question
 *
 * @param proj  object to check
 * @return true if they are equal
 */
public boolean equals(Object proj) {
  if ( !(proj instanceof FlatEarth)) {
    return false;
  }
  FlatEarth oo = (FlatEarth) proj;
  return ((this.getOriginLat() == oo.getOriginLat())
      && (this.getOriginLon() == oo.getOriginLon())
      && (this.rotAngle == oo.rotAngle));
}
origin: edu.ucar/unidataCommon

/**
 * Clone this projection.
 *
 * @return Clone of this
 */
public Object clone() {
  FlatEarth cl = (FlatEarth) super.clone();
  cl.origin = new LatLonPointImpl(getOriginLat(), getOriginLon());
  return cl;
}
origin: edu.ucar/unidataCommon

 /** copy constructor - avoid clone !! */
public ProjectionImpl constructCopy() {
 return new FlatEarth( getOriginLat(), getOriginLon(), getRotationAngle());     
}
origin: edu.ucar/cdm

/**
 * origin
 */
//private LatLonPointImpl origin;  // why are we keeping this?
@Override
public ProjectionImpl constructCopy() {
 ProjectionImpl result = new FlatEarth(getOriginLat(), getOriginLon(), getRotationAngle());
 result.setDefaultMapArea(defaultMapArea);
 result.setName(name);
 return result;
}
origin: Unidata/thredds

/**
 * origin
 */
//private LatLonPointImpl origin;  // why are we keeping this?
@Override
public ProjectionImpl constructCopy() {
 ProjectionImpl result = new FlatEarth(getOriginLat(), getOriginLon(), getRotationAngle());
 result.setDefaultMapArea(defaultMapArea);
 result.setName(name);
 return result;
}
origin: edu.ucar/netcdf

/**
 * origin
 */
//private LatLonPointImpl origin;  // why are we keeping this?
@Override
public ProjectionImpl constructCopy() {
 ProjectionImpl result = new FlatEarth(getOriginLat(), getOriginLon(), getRotationAngle());
 result.setDefaultMapArea(defaultMapArea);
 result.setName(name);
 return result;
}
ucar.unidata.geoloc.projectionFlatEarthgetOriginLat

Javadoc

Get the origin latitude.

Popular methods of FlatEarth

  • <init>
    Construct a FlatEarth Projection, two standard parellels. For the one standard parellel case, set th
  • addParameter
  • getOriginLon
    Get the origin longitude.
  • getRotationAngle
    Get the rotation angle.
  • latLonToProj
    Convert lat/lon coordinates to projection coordinates.
  • precalculate
    Precalculate some stuff
  • projToLatLon
    Convert lat/lon coordinates to projection coordinates.
  • toString
  • constructCopy
    origin
  • equals
    Check for equality with the Object in question

Popular in Java

  • Running tasks concurrently on multiple threads
  • findViewById (Activity)
  • getSharedPreferences (Context)
  • addToBackStack (FragmentTransaction)
  • FileWriter (java.io)
    Convenience class for writing character files. The constructors of this class assume that the defaul
  • Collection (java.util)
    Collection is the root of the collection hierarchy. It defines operations on data collections and t
  • TimeZone (java.util)
    TimeZone represents a time zone offset, and also figures out daylight savings. Typically, you get a
  • ThreadPoolExecutor (java.util.concurrent)
    An ExecutorService that executes each submitted task using one of possibly several pooled threads, n
  • DataSource (javax.sql)
    A factory for connections to the physical data source that this DataSource object represents. An alt
  • Location (org.springframework.beans.factory.parsing)
    Class that models an arbitrary location in a Resource.Typically used to track the location of proble
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