Tabnine Logo
GridType
Code IndexAdd Tabnine to your IDE (free)

How to use
GridType
in
net.opengis.gml

Best Java code snippets using net.opengis.gml.GridType (Showing top 6 results out of 315)

origin: citygml4j/citygml4j

public void unmarshalGrid(GridType src, Grid dest) {
  unmarshalAbstractGeometry(src, dest);
  if (src.isSetLimits())
    dest.setLimits(unmarshalGridLimits(src.getLimits()));
  if (src.isSetAxisName())
    dest.setAxisName(src.getAxisName());
  if (src.isSetDimension())
    dest.setDimension(src.getDimension().intValue());		
}
origin: citygml4j/citygml4j

/**
 * Create an instance of {@link GridType }
 * 
 */
public GridType createGridType() {
  return new GridType();
}
origin: org.geoserver/wcs1_0

assertEquals(grid.getSrsName(), "EPSG:4326");
assertEquals(grid.getAxisName().get(0), "Column");
assertEquals(grid.getAxisName().get(1), "Row");
GridEnvelope gridLimits = grid.getLimits();
assertEquals(0, gridLimits.getLow(0));
assertEquals(0, gridLimits.getLow(1));
origin: org.n52.sensorweb/52n-xml-gml-v311

/**
 * Sets the "Grid" element
 */
public void setGrid(net.opengis.gml.GridType grid)
{
  synchronized (monitor())
  {
    check_orphaned();
    net.opengis.gml.GridType target = null;
    target = (net.opengis.gml.GridType)get_store().find_element_user(GRID$0, 0);
    if (target == null)
    {
      target = (net.opengis.gml.GridType)get_store().add_element_user(GRID$0);
    }
    target.set(grid);
  }
}

origin: org.geoserver/gs-wcs1_0

assertEquals(grid.getSrsName(), "EPSG:4326");
assertEquals(grid.getAxisName().get(0), "Column");
assertEquals(grid.getAxisName().get(1), "Row");
GridEnvelope gridLimits = grid.getLimits();
assertEquals(0, gridLimits.getLow(0));
assertEquals(0, gridLimits.getLow(1));
origin: org.n52.sensorweb/52n-xml-gml-v311

/**
 * Sets the "Grid" element
 */
public void setGrid(net.opengis.gml.GridType grid)
{
  synchronized (monitor())
  {
    check_orphaned();
    net.opengis.gml.GridType target = null;
    target = (net.opengis.gml.GridType)get_store().find_element_user(GRID$0, 0);
    if (target == null)
    {
      target = (net.opengis.gml.GridType)get_store().add_element_user(GRID$0);
    }
    target.set(grid);
  }
}

net.opengis.gmlGridType

Javadoc

A representation of the model object 'Grid Type'. Implicitly defines an unrectified grid, which is a network composed of two or more sets of equally spaced parallel lines in which the members of each set intersect the members of the other sets at right angles. This profile does not extend AbstractGeometryType, so it defines the srsName attribute.

The following features are supported:

  • net.opengis.gml.GridType#getLimits
  • net.opengis.gml.GridType#getAxisName
  • net.opengis.gml.GridType#getDimension

Most used methods

  • getAxisName
    Returns the value of the 'Axis Name' attribute. If the meaning of the 'Axis Name' attribute list isn
  • getLimits
    Returns the value of the 'Limits' containment reference. If the meaning of the 'Limits' containment
  • getSrsName
  • <init>
  • getDimension
    Returns the value of the 'Dimension' attribute. If the meaning of the 'Dimension' attribute isn't cl
  • isSetAxisName
  • isSetDimension
  • isSetLimits
  • set
  • setAxisName
  • setDimension
    Sets the value of the ' net.opengis.gml.GridType#getDimension' attribute.
  • setLimits
    Sets the value of the ' net.opengis.gml.GridType#getLimits' attribute.
  • setDimension,
  • setLimits

Popular in Java

  • Making http requests using okhttp
  • scheduleAtFixedRate (Timer)
  • setContentView (Activity)
  • getResourceAsStream (ClassLoader)
  • ArrayList (java.util)
    ArrayList is an implementation of List, backed by an array. All optional operations including adding
  • HashMap (java.util)
    HashMap is an implementation of Map. All optional operations are supported.All elements are permitte
  • List (java.util)
    An ordered collection (also known as a sequence). The user of this interface has precise control ove
  • TimeZone (java.util)
    TimeZone represents a time zone offset, and also figures out daylight savings. Typically, you get a
  • JarFile (java.util.jar)
    JarFile is used to read jar entries and their associated data from jar files.
  • Stream (java.util.stream)
    A sequence of elements supporting sequential and parallel aggregate operations. The following exampl
  • Best plugins for Eclipse
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