congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
BursaWolfParameters.clone
Code IndexAdd Tabnine to your IDE (free)

How to use
clone
method
in
org.apache.sis.referencing.datum.BursaWolfParameters

Best Java code snippets using org.apache.sis.referencing.datum.BursaWolfParameters.clone (Showing top 4 results out of 315)

origin: apache/sis

/**
 * Returns all Bursa-Wolf parameters specified in the {@code properties} map at construction time.
 * See class javadoc for a discussion about Bursa-Wolf parameters.
 *
 * @return the Bursa-Wolf parameters, or an empty array if none.
 */
@SuppressWarnings("ReturnOfCollectionOrArrayField")
public BursaWolfParameters[] getBursaWolfParameters() {
  if (bursaWolf == null) {
    return EMPTY_ARRAY;
  }
  final BursaWolfParameters[] copy = bursaWolf.clone();
  for (int i=0; i<copy.length; i++) {
    copy[i] = copy[i].clone();
  }
  return copy;
}
origin: org.apache.sis.core/sis-referencing

/**
 * Returns all Bursa-Wolf parameters specified in the {@code properties} map at construction time.
 * See class javadoc for a discussion about Bursa-Wolf parameters.
 *
 * @return the Bursa-Wolf parameters, or an empty array if none.
 */
@SuppressWarnings("ReturnOfCollectionOrArrayField")
public BursaWolfParameters[] getBursaWolfParameters() {
  if (bursaWolf == null) {
    return EMPTY_ARRAY;
  }
  final BursaWolfParameters[] copy = bursaWolf.clone();
  for (int i=0; i<copy.length; i++) {
    copy[i] = copy[i].clone();
  }
  return copy;
}
origin: apache/sis

BursaWolfParameters param = bursaWolf[i];
ensureNonNullElement("bursaWolf", i, param);
param = param.clone();
param.verify(primeMeridian);
bursaWolf[i] = param;
origin: org.apache.sis.core/sis-referencing

BursaWolfParameters param = bursaWolf[i];
ensureNonNullElement("bursaWolf", i, param);
param = param.clone();
param.verify(primeMeridian);
bursaWolf[i] = param;
org.apache.sis.referencing.datumBursaWolfParametersclone

Javadoc

Returns a copy of this object.

Popular methods of BursaWolfParameters

  • getTargetDatum
    Returns the target datum for this set of parameters, or null if unknown. This is usually the WGS 84
  • isIdentity
    Returns true if a transformation built from this set of parameters would perform no operation. This
  • isTranslation
    Returns true if a transformation built from this set of parameters would perform only a translation.
  • <init>
    Creates a new instance for the given target datum and domain of validity. All numerical parameters a
  • equals
    Compares the specified object with this object for equality.
  • getDomainOfValidity
    Returns the region or timeframe in which a coordinate transformation based on those Bursa-Wolf param
  • getPositionVectorTransformation
    Returns the position vector transformation (geocentric domain) as an affine transform. For transform
  • getValues
    Returns the parameter values. The length of the returned array depends on the values: * If this inst
  • setPositionVectorTransformation
    Sets all Bursa-Wolf parameters from the given Position Vector transformation matrix. The matrix sha
  • setValues
    Sets the parameters to the given values. The given array can have any length. The first array elemen
  • verify
    Verifies parameters validity after initialization of DefaultGeodeticDatum. This method requires that
  • getNumber
    Retrieves the value at the specified row and column of the given matrix, wrapped in a Number. The Nu
  • verify,
  • getNumber,
  • hashCode,
  • invert,
  • isToWGS84,
  • param,
  • period,
  • reverseRotation,
  • toString

Popular in Java

  • Creating JSON documents from java classes using gson
  • notifyDataSetChanged (ArrayAdapter)
  • scheduleAtFixedRate (Timer)
  • addToBackStack (FragmentTransaction)
  • EOFException (java.io)
    Thrown when a program encounters the end of a file or stream during an input operation.
  • FileInputStream (java.io)
    An input stream that reads bytes from a file. File file = ...finally if (in != null) in.clos
  • Socket (java.net)
    Provides a client-side TCP socket.
  • Calendar (java.util)
    Calendar is an abstract base class for converting between a Date object and a set of integer fields
  • Iterator (java.util)
    An iterator over a sequence of objects, such as a collection.If a collection has been changed since
  • Queue (java.util)
    A collection designed for holding elements prior to processing. Besides basic java.util.Collection o
  • Top 12 Jupyter Notebook extensions
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