gov.nasa.worldwind.ogc.OGCConstants Maven / Gradle / Ivy
The newest version!
/*
* Copyright (C) 2012 United States Government as represented by the Administrator of the
* National Aeronautics and Space Administration.
* All Rights Reserved.
*/
package gov.nasa.worldwind.ogc;
/**
* Defines constants used in the OGC package and sub-packages.
*
* @author tag
* @version $Id: OGCConstants.java 2057 2014-06-14 01:13:52Z tgaskins $
*/
public interface OGCConstants
{
/**
* The name of the OGC Web Service GetCapabilities
operation. The GetCapabilities
* operation returns metadata about the operations and data provided by an OGC Web Service.
* GetCapabilities
is valid value for the request
parameter. Used by all versions of all
* OGC web services.
*/
final String GET_CAPABILITIES = "GetCapabilities";
/**
* The name of the OGC Web Service request
parameter. The associated value must be the name of an
* operation to execute (for example, GetCapabilities
). Used by all versions of all OGC web services.
*/
final String REQUEST = "request";
/**
* The name of the OGC Web Service service
parameter. The associated value must be the abbreviated OGC
* Web Service name (for example, WMS
). Used by all versions of all OGC web services.
*/
final String SERVICE = "service";
/**
* The name of the OGC Web Service version
parameter. The associated value must be the version of the
* OGC Web Service protocol to use. The version must be formatted as x.y.z
, where x, y
and
* z
are integers in the range 0-99. Used by all versions of all OGC web services.
*/
final String VERSION = "version";
public static final String WMS_SERVICE_NAME = "OGC:WMS";
public static final String WCS_SERVICE_NAME = "OGC:WCS";
public static final String GML_NAMESPACE_URI = "http://www.opengis.net/gml";
public static final String OGS_NAMESPACE_URI = "http://www.opengis.net/ogc";
public static final String OWS_1_1_0_NAMESPACE_URI = "http://www.opengis.net/ows/1.1";
public static final String WMS_NAMESPACE_URI = "http://www.opengis.net/wms";
public static final String WCS_1_0_0_NAMESPACE_URI = "http://www.opengis.net/wcs";
public static final String WCS_1_1_1_NAMESPACE_URI = "http://www.opengis.net/wcs/1.1.1";
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy