Codota Logo
CoordinateOperationFactory
Code IndexAdd Codota 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)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
OutputStreamWriter o =
  • Codota IconOutputStream out;new OutputStreamWriter(out)
  • Codota IconOutputStream out;String charsetName;new OutputStreamWriter(out, charsetName)
  • Codota IconHttpURLConnection connection;new OutputStreamWriter(connection.getOutputStream())
  • Smart code suggestions by Codota
}
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
  • getMostPrecise
  • 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

  • Making http post requests using okhttp
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • notifyDataSetChanged (ArrayAdapter)
  • startActivity (Activity)
  • InetAddress (java.net)
    This class represents an Internet Protocol (IP) address. An IP address is either a 32-bit or 128-bit
  • ServerSocket (java.net)
    This class represents a server-side socket that waits for incoming client connections. A ServerSocke
  • DecimalFormat (java.text)
    DecimalFormat is a concrete subclass ofNumberFormat that formats decimal numbers. It has a variety o
  • JFileChooser (javax.swing)
  • FileUtils (org.apache.commons.io)
    General file manipulation utilities. Facilities are provided in the following areas: * writing to a
  • SAXParseException (org.xml.sax)
    Encapsulate an XML parse error or warning.This exception may include information for locating the er
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