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

How to use
CoordinateOperationFactory
in
org.cts.op

Best Java code snippets using org.cts.op.CoordinateOperationFactory (Showing top 8 results out of 315)

origin: orbisgis/h2gis

if (inputCRS instanceof GeodeticCRS && targetCRS instanceof GeodeticCRS) {
  Set<CoordinateOperation> ops = CoordinateOperationFactory
      .createCoordinateOperations((GeodeticCRS) inputCRS, (GeodeticCRS) targetCRS);
  if (!ops.isEmpty()) {
    op = CoordinateOperationFactory.getMostPrecise(ops);
    Geometry outPutGeom = (Geometry) geom.copy();
    outPutGeom.geometryChanged();
origin: org.orbisgis/cts

  addCoordinateOperations(source, target, opList);
} else {
  addCoordinateOperations(sourceDatum, source, targetDatum, target, opList);
origin: org.orbisgis/h2spatial

if (inputCRS instanceof GeodeticCRS && targetCRS instanceof GeodeticCRS) {
  List<CoordinateOperation> ops = CoordinateOperationFactory
      .createCoordinateOperations((GeodeticCRS) inputCRS, (GeodeticCRS) targetCRS);
  if (!ops.isEmpty()) {
    op = ops.get(0);
origin: org.orbisgis/cts

  throw new CoordinateOperationNotFoundException(horizontalCRS.getDatum(), z_transfo.getAssociatedDatum());
CoordinateOperation h_op = CoordinateOperationFactory.getMostPrecise(h_datum_tf);
origin: org.orbisgis/cts

    getMostPrecise3DTransformation(sourceDatum.getGeocentricTransformations(targetDatum));
if (mostPrecise3DTransform != null) {
  datumTransformations.add(mostPrecise3DTransform);
origin: org.orbisgis/h2gis-functions

if (inputCRS instanceof GeodeticCRS && targetCRS instanceof GeodeticCRS) {
  List<CoordinateOperation> ops = CoordinateOperationFactory
      .createCoordinateOperations((GeodeticCRS) inputCRS, (GeodeticCRS) targetCRS);
  if (!ops.isEmpty()) {
    op = ops.get(0);
origin: org.orbisgis/cts

  throw new CoordinateOperationNotFoundException(horizontalCRS.getDatum(), z_transfo.getAssociatedDatum());
CoordinateOperation h_op = CoordinateOperationFactory.getMostPrecise(h_datum_tf);
origin: org.orbisgis/h2gis

if (inputCRS instanceof GeodeticCRS && targetCRS instanceof GeodeticCRS) {
  List<CoordinateOperation> ops = CoordinateOperationFactory
      .createCoordinateOperations((GeodeticCRS) inputCRS, (GeodeticCRS) targetCRS);
  if (!ops.isEmpty()) {
    op = ops.get(0);
org.cts.opCoordinateOperationFactory

Javadoc

CoordinateOperationFactory is a factory used to create org.cts.op.CoordinateOperation from source and target org.cts.crs.CoordinateReferenceSystem.

Most used methods

  • createCoordinateOperations
    Creates a list of CoordinateOperations from a source org.cts.crs.GeodeticCRS to a target org.cts.crs
  • getMostPrecise
    Returns the most precise among the list of org.cts.op.CoordinateOperations.
  • addCoordinateOperations
    Adds a CoordinateOperation to the set of CoordinateOperations usable to transform coordinates from s
  • getMostPrecise3DTransformation
    Returns the most precise among the list of org.cts.op.CoordinateOperations.

Popular in Java

  • Reading from database using SQL prepared statement
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • notifyDataSetChanged (ArrayAdapter)
  • onRequestPermissionsResult (Fragment)
  • ConnectException (java.net)
    A ConnectException is thrown if a connection cannot be established to a remote host on a specific po
  • ArrayList (java.util)
    ArrayList is an implementation of List, backed by an array. All optional operations including adding
  • Iterator (java.util)
    An iterator over a sequence of objects, such as a collection.If a collection has been changed since
  • ExecutorService (java.util.concurrent)
    An Executor that provides methods to manage termination and methods that can produce a Future for tr
  • Filter (javax.servlet)
    A filter is an object that performs filtering tasks on either the request to a resource (a servlet o
  • Location (org.springframework.beans.factory.parsing)
    Class that models an arbitrary location in a Resource.Typically used to track the location of proble
  • Top 25 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