All Downloads are FREE. Search and download functionalities are using the official Maven repository.

src.gov.nasa.worldwind.ogc.OGCConstants Maven / Gradle / Ivy

Go to download

World Wind is a collection of components that interactively display 3D geographic information within Java applications or applets.

There is a newer version: 2.0.0-986
Show 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 1171 2013-02-11 21:45:02Z dcollins $
 */
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 WMS_NAMESPACE_URI = "http://www.opengis.net/wms";
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy