Tabnine Logo
GetFeatureInfo.handleCommon
Code IndexAdd Tabnine to your IDE (free)

How to use
handleCommon
method
in
org.deegree.protocol.wms.ops.GetFeatureInfo

Best Java code snippets using org.deegree.protocol.wms.ops.GetFeatureInfo.handleCommon (Showing top 2 results out of 315)

origin: deegree/deegree3

private void parse111( Map<String, String> map )
            throws OWSException {
  double[] vals = handleCommon( map );
  String c = map.get( "SRS" );
  if ( c == null || c.trim().isEmpty() ) {
    throw new OWSException( "The SRS parameter is missing.", OWSException.MISSING_PARAMETER_VALUE );
  }
  crs = GetMap.getCRS111( c );
  bbox = fac.createEnvelope( new double[] { vals[0], vals[1] }, new double[] { vals[2], vals[3] }, crs );
  String xs = map.get( "X" );
  if ( xs == null ) {
    throw new OWSException( "The X parameter is missing.", MISSING_PARAMETER_VALUE );
  }
  try {
    x = parseInt( xs );
  } catch ( NumberFormatException e ) {
    throw new OWSException( "The value " + xs + " is not valid for X.", INVALID_PARAMETER_VALUE );
  }
  String ys = map.get( "Y" );
  if ( ys == null ) {
    throw new OWSException( "The Y parameter is missing.", MISSING_PARAMETER_VALUE );
  }
  try {
    y = parseInt( ys );
  } catch ( NumberFormatException e ) {
    throw new OWSException( "The value " + ys + " is not valid for Y.", INVALID_PARAMETER_VALUE );
  }
}
origin: deegree/deegree3

private void parse130( Map<String, String> map )
            throws OWSException {
  double[] vals = handleCommon( map );
org.deegree.protocol.wms.opsGetFeatureInfohandleCommon

Popular methods of GetFeatureInfo

  • <init>
  • getCoordinateSystem
  • getEnvelope
  • getFeatureCount
  • getHeight
  • getQueryLayers
  • getWidth
  • getX
  • getY
  • cleanUpLayers
  • getDimensions
  • getFilters
  • getDimensions,
  • getFilters,
  • getInfoFormat,
  • getParameterMap,
  • getStyles,
  • handleSLD,
  • parse111,
  • parse130,
  • returnGeometries

Popular in Java

  • Start an intent from android
  • setRequestProperty (URLConnection)
  • runOnUiThread (Activity)
  • onCreateOptionsMenu (Activity)
  • IOException (java.io)
    Signals a general, I/O-related error. Error details may be specified when calling the constructor, a
  • Time (java.sql)
    Java representation of an SQL TIME value. Provides utilities to format and parse the time's represen
  • Executors (java.util.concurrent)
    Factory and utility methods for Executor, ExecutorService, ScheduledExecutorService, ThreadFactory,
  • JComboBox (javax.swing)
  • JTable (javax.swing)
  • Loader (org.hibernate.loader)
    Abstract superclass of object loading (and querying) strategies. This class implements useful common
  • 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