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

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

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

origin: org.n52.sensorweb.sos/coding-sensorML-v101

/**
 * Creates a XML Point from a SOS Point.
 * 
 * @param jtsPoint
 *            SOS Point
 * @param xbPoint
 *            XML Point
 */
private void createPointFromJtsGeometry(Point jtsPoint, PointType xbPoint) throws OwsExceptionReport {
  DirectPositionType xbPos = xbPoint.addNewPos();
  xbPos.setSrsName(getSrsName(jtsPoint));
  xbPos.setStringValue(JTSHelper.getCoordinatesString(jtsPoint));
}
origin: org.n52.svalbard/svalbard-xmlbeans

/**
 * Creates a XML Point from a SOS Point.
 *
 * @param jtsPoint
 *            SOS Point
 * @param xbPoint
 *            XML Point
 */
private void createPointFromJtsGeometry(Point jtsPoint, PointType xbPoint) {
  DirectPositionType xbPos = xbPoint.addNewPos();
  xbPos.setSrsName(getSrsName(jtsPoint));
  xbPos.setStringValue(JTSHelper.getCoordinatesString(jtsPoint));
}
origin: citygml4j/citygml4j

public DirectPositionType marshalDirectPosition(DirectPosition src) {
  DirectPositionType dest = gml.createDirectPositionType();
  if (src.isSetValue())
    dest.setValue(src.getValue());
  if (src.isSetSrsName())
    dest.setSrsName(src.getSrsName());
  if (src.isSetSrsDimension())
    dest.setSrsDimension(BigInteger.valueOf(src.getSrsDimension()));
  if (src.isSetAxisLabels())
    dest.setAxisLabels(src.getAxisLabels());
  if (src.isSetUomLabels())
    dest.setUomLabels(src.getUomLabels());
  return dest;
}
net.opengis.gmlDirectPositionTypesetSrsName

Javadoc

Legt den Wert der srsName-Eigenschaft fest.

Popular methods of DirectPositionType

  • getSrsName
    Gets the "srsName" attribute
  • getStringValue
  • getValue
    Returns the value of the 'Value' attribute. If the meaning of the 'Value' attribute isn't clear, the
  • 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

  • Creating JSON documents from java classes using gson
  • addToBackStack (FragmentTransaction)
  • compareTo (BigDecimal)
  • setContentView (Activity)
  • BorderLayout (java.awt)
    A border layout lays out a container, arranging and resizing its components to fit in five regions:
  • Rectangle (java.awt)
    A Rectangle specifies an area in a coordinate space that is enclosed by the Rectangle object's top-
  • ResultSet (java.sql)
    An interface for an object which represents a database table entry, returned as the result of the qu
  • Collection (java.util)
    Collection is the root of the collection hierarchy. It defines operations on data collections and t
  • Vector (java.util)
    Vector is an implementation of List, backed by an array and synchronized. All optional operations in
  • Pattern (java.util.regex)
    Patterns are compiled regular expressions. In many cases, convenience methods such as String#matches
  • 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