Tabnine Logo
EllipsoidalCS.getName
Code IndexAdd Tabnine to your IDE (free)

How to use
getName
method
in
org.opengis.referencing.cs.EllipsoidalCS

Best Java code snippets using org.opengis.referencing.cs.EllipsoidalCS.getName (Showing top 1 results out of 315)

origin: apache/sis

/**
 * Tests the {@link CommonCRS#geographic3D()} method.
 */
@Test
@DependsOnMethod("testGeographic")
public void testGeographic3D() {
  final GeographicCRS crs = CommonCRS.WGS72.geographic3D();
  Validators.validate(crs);
  assertEquals ("WGS 72", crs.getName().getCode());
  assertSame   (CommonCRS.WGS72.geographic().getDatum(), crs.getDatum());
  assertNotSame(CommonCRS.WGS84.geographic().getDatum(), crs.getDatum());
  final EllipsoidalCS cs = crs.getCoordinateSystem();
  final String name = cs.getName().getCode();
  assertTrue(name, name.startsWith("Ellipsoidal 3D"));
  assertEquals("dimension", 3, cs.getDimension());
  assertAxisDirectionsEqual(name, cs, AxisDirection.NORTH, AxisDirection.EAST, AxisDirection.UP);
  assertSame("Cached value", crs, CommonCRS.WGS72.geographic3D());
}
org.opengis.referencing.csEllipsoidalCSgetName

Popular methods of EllipsoidalCS

  • getDimension
  • getAxis

Popular in Java

  • Finding current android device location
  • getSupportFragmentManager (FragmentActivity)
  • scheduleAtFixedRate (ScheduledExecutorService)
  • getSharedPreferences (Context)
  • HttpServer (com.sun.net.httpserver)
    This class implements a simple HTTP server. A HttpServer is bound to an IP address and port number a
  • File (java.io)
    An "abstract" representation of a file system entity identified by a pathname. The pathname may be a
  • Time (java.sql)
    Java representation of an SQL TIME value. Provides utilities to format and parse the time's represen
  • ArrayList (java.util)
    ArrayList is an implementation of List, backed by an array. All optional operations including adding
  • Random (java.util)
    This class provides methods that return pseudo-random values.It is dangerous to seed Random with the
  • Reflections (org.reflections)
    Reflections one-stop-shop objectReflections scans your classpath, indexes the metadata, allows you t
  • 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