Tabnine Logo
OutputType.isStore
Code IndexAdd Tabnine to your IDE (free)

How to use
isStore
method
in
net.opengis.wcs11.OutputType

Best Java code snippets using net.opengis.wcs11.OutputType.isStore (Showing top 5 results out of 315)

origin: org.geoserver/wcs1_1

@Override
public boolean canHandle(Operation operation) {
  // this one can handle GetCoverage responses where store = false
  if(!(operation.getParameters()[0] instanceof GetCoverageType))
    return false;
  
  GetCoverageType getCoverage = (GetCoverageType) operation.getParameters()[0];
  return !getCoverage.getOutput().isStore();
}
origin: org.geoserver/gs-wcs1_1

@Override
public boolean canHandle(Operation operation) {
  // this one can handle GetCoverage responses where store = false
  if (!(operation.getParameters()[0] instanceof GetCoverageType)) return false;
  GetCoverageType getCoverage = (GetCoverageType) operation.getParameters()[0];
  return !getCoverage.getOutput().isStore();
}
origin: org.geoserver/gs-wcs1_1

@Override
public boolean canHandle(Operation operation) {
  // this one can handle GetCoverage responses where store = false
  if (!(operation.getParameters()[0] instanceof GetCoverageType)) return false;
  GetCoverageType getCoverage = (GetCoverageType) operation.getParameters()[0];
  return getCoverage.getOutput().isStore();
}
origin: org.geoserver/wcs1_1

@Override
public boolean canHandle(Operation operation) {
  // this one can handle GetCoverage responses where store = false
  if(!(operation.getParameters()[0] instanceof GetCoverageType))
    return false;
  
  GetCoverageType getCoverage = (GetCoverageType) operation.getParameters()[0];
  return getCoverage.getOutput().isStore();
}
origin: org.geoserver/gs-wcs1_1

@Test
public void testBasic() throws Exception {
  Map<String, Object> raw = baseMap();
  final String layerId = getLayerId(TASMANIA_BM);
  raw.put("identifier", layerId);
  raw.put("format", "image/tiff");
  raw.put("BoundingBox", "-45,146,-42,147");
  raw.put("store", "false");
  raw.put("GridBaseCRS", "urn:ogc:def:crs:EPSG:6.6:4326");
  GetCoverageType getCoverage =
      (GetCoverageType) reader.read(reader.createRequest(), parseKvp(raw), raw);
  assertEquals(layerId, getCoverage.getIdentifier().getValue());
  assertEquals("image/tiff", getCoverage.getOutput().getFormat());
  assertFalse(getCoverage.getOutput().isStore());
  assertEquals(
      "urn:ogc:def:crs:EPSG:6.6:4326",
      getCoverage.getOutput().getGridCRS().getGridBaseCRS());
}
net.opengis.wcs11OutputTypeisStore

Javadoc

Returns the value of the 'Store' attribute. The default value is "false". Specifies if the output coverage should be stored, remotely from the client at a network URL, instead of being returned with the operation response. This parameter should be included only if this operation parameter is supported by server, as encoded in the OperationsMetadata section of the Capabilities document.

Popular methods of OutputType

  • getFormat
    Returns the value of the 'Format' attribute. Identifier of the format in which GetCoverage response
  • getGridCRS
    Returns the value of the 'Grid CRS' containment reference. Optional definition of the GridCRS in whi
  • setFormat
    Sets the value of the ' net.opengis.wcs11.OutputType#getFormat' attribute.
  • setGridCRS
    Sets the value of the ' net.opengis.wcs11.OutputType#getGridCRS' containment reference.
  • setStore
    Sets the value of the ' net.opengis.wcs11.OutputType#isStore' attribute.

Popular in Java

  • Updating database using SQL prepared statement
  • putExtra (Intent)
  • getSharedPreferences (Context)
  • onCreateOptionsMenu (Activity)
  • FileInputStream (java.io)
    An input stream that reads bytes from a file. File file = ...finally if (in != null) in.clos
  • Charset (java.nio.charset)
    A charset is a named mapping between Unicode characters and byte sequences. Every Charset can decode
  • BitSet (java.util)
    The BitSet class implements abit array [http://en.wikipedia.org/wiki/Bit_array]. Each element is eit
  • TreeMap (java.util)
    Walk the nodes of the tree left-to-right or right-to-left. Note that in descending iterations, next
  • IOUtils (org.apache.commons.io)
    General IO stream manipulation utilities. This class provides static utility methods for input/outpu
  • Join (org.hibernate.mapping)
  • Best IntelliJ 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