Tabnine Logo
DirectPositionType.getValue
Code IndexAdd Tabnine to your IDE (free)

How to use
getValue
method
in
net.opengis.gml.DirectPositionType

Best Java code snippets using net.opengis.gml.DirectPositionType.getValue (Showing top 3 results out of 315)

origin: com.uvic-cfar.swim/worldwind

public static SurfaceCircle getSurfaceCircle(CircleByCenterPointType circle) {
  LatLon center = null;
  
  // TODO: implement other possible elements
  if (null != circle.getPos()) {
    List<Double> position = circle.getPos().getValue();
    center = GmlData.getLocations(position).get(0);
  }
  
  double radius = Conversions.toMeters(
      circle.getRadius().getValue(), circle.getRadius().getUom());
  
  return new SurfaceCircle(center, radius);
}

origin: citygml4j/citygml4j

public DirectPosition unmarshalDirectPosition(DirectPositionType src) {
  DirectPosition dest = new DirectPosition();
  if (src.isSetValue())
    dest.setValue(src.getValue());
  if (src.isSetSrsName())
    dest.setSrsName(src.getSrsName());
  if (src.isSetSrsDimension())
    dest.setSrsDimension(src.getSrsDimension().intValue());
  if (src.isSetAxisLabels())
    dest.setAxisLabels(src.getAxisLabels());
  if (src.isSetUomLabels())
    dest.setUomLabels(src.getUomLabels());
  return dest;
}
origin: org.geoserver/gs-wcs1_0

0d,
resY,
(Double) origin_.getValue().get(0),
(Double) origin_.getValue().get(1));
net.opengis.gmlDirectPositionTypegetValue

Javadoc

Returns the value of the 'Value' attribute.

If the meaning of the 'Value' attribute isn't clear, there really should be more of a description here...

Popular methods of DirectPositionType

  • getSrsName
    Gets the "srsName" attribute
  • getStringValue
  • setSrsName
    Sets the "srsName" attribute
  • setStringValue
  • setValue
    Sets the value of the ' net.opengis.gml.DirectPositionType#getValue' attribute.
  • set
  • setDimension
    Sets the value of the ' net.opengis.gml.DirectPositionType#getDimension' attribute.
  • <init>
  • getAxisLabels
    Gets the "axisLabels" attribute
  • getDomNode
  • getListValue
  • getSrsDimension
    Gets the "srsDimension" attribute
  • getListValue,
  • getSrsDimension,
  • getUomLabels,
  • isSetAxisLabels,
  • isSetSrsDimension,
  • isSetSrsName,
  • isSetUomLabels,
  • isSetValue,
  • setAxisLabels

Popular in Java

  • Making http post requests using okhttp
  • onRequestPermissionsResult (Fragment)
  • getSupportFragmentManager (FragmentActivity)
  • compareTo (BigDecimal)
  • ByteBuffer (java.nio)
    A buffer for bytes. A byte buffer can be created in either one of the following ways: * #allocate
  • Deque (java.util)
    A linear collection that supports element insertion and removal at both ends. The name deque is shor
  • ZipFile (java.util.zip)
    This class provides random read access to a zip file. You pay more to read the zip file's central di
  • Filter (javax.servlet)
    A filter is an object that performs filtering tasks on either the request to a resource (a servlet o
  • Options (org.apache.commons.cli)
    Main entry-point into the library. Options represents a collection of Option objects, which describ
  • Get (org.apache.hadoop.hbase.client)
    Used to perform Get operations on a single row. To get everything for a row, instantiate a Get objec
  • Top PhpStorm plugins
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