/usr/include/osgEarthUtil/WMS is in libosgearth-dev 2.9.0+dfsg-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 | /* -*-c++-*- */
/* osgEarth - Dynamic map generation toolkit for OpenSceneGraph
* Copyright 2016 Pelican Mapping
* http://osgearth.org
*
* osgEarth is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
* IN THE SOFTWARE.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
#ifndef OSGEARTHUTIL_WMS_H
#define OSGEARTHUTIL_WMS_H 1
#include <osgEarthUtil/Common>
#include <osg/Referenced>
#include <osg/ref_ptr>
#include <osgEarth/Common>
#include <osgDB/ReaderWriter>
#include <osg/Version>
#include <osgDB/Options>
#include <string>
#include <vector>
namespace osgEarth { namespace Util
{
/**
* A WMS Style
*/
class OSGEARTHUTIL_EXPORT WMSStyle : public osg::Referenced
{
public:
WMSStyle();
WMSStyle(const std::string& name, const std::string& title);
/** dtor */
virtual ~WMSStyle() { }
/**
*Gets the name of the style
*/
const std::string& getName() {return _name;}
/**
*Sets the name of the style
*/
void setName(const std::string &name) {_name = name;}
/**
*Gets the title of the style
*/
const std::string& getTitle() {return _title;}
/**
*Sets the title of the style
*/
void setTitle(const std::string &title) {_title = title;}
protected:
std::string _name;
std::string _title;
};
/**
*A WMS layer
*/
class OSGEARTHUTIL_EXPORT WMSLayer : public osg::Referenced
{
public:
WMSLayer();
/** dtor */
virtual ~WMSLayer() { }
/**
*Gets the name of the layer
*/
const std::string& getName() {return _name;}
/**
*Sets the name of the layer
*/
void setName(const std::string &name) {_name = name;}
/**
*Gets the title of the layer
*/
const std::string& getTitle() {return _title;}
/**
*Sets the title of the layer
*/
void setTitle(const std::string &title) {_title = title;}
/**
*Gets the abstract of the layer
*/
const std::string& getAbstract() {return _abstract;}
/**
*Sets the abstract of the layer
*/
void setAbstract(const std::string &abstract) {_abstract = abstract;}
/**
*Gets the lat lon extents of the layer
*/
void getLatLonExtents(double &minLon, double &minLat, double &maxLon, double &maxLat);
/**
*Sets the lat lon extents of the layer
*/
void setLatLonExtents(double minLon, double minLat, double maxLon, double maxLat);
/**
*Gets the extents of the layer
*/
void getExtents(double &minX, double &minY, double &maxX, double &maxY);
/**
*Sets the extents of the layer
*/
void setExtents(double minX, double minY, double maxX, double maxY);
/**A list of Styles*/
typedef std::vector<WMSStyle> StyleList;
/**
*Gets this Layer's list of defined Styles
*/
StyleList& getStyles() {return _styles;}
/**A list of spatial references*/
typedef std::vector<std::string> SRSList;
/**
*Gets this Layer's list of spatial references
*/
SRSList& getSpatialReferences() {return _spatialReferences;}
/**A list of Layers*/
typedef std::vector< osg::ref_ptr<WMSLayer> > LayerList;
/**
*Gets this Layer's list of child Layers
*/
LayerList& getLayers() {return _layers;}
/**
*Gets this Layer's parent layer
*/
WMSLayer* getParentLayer() {return _parentLayer;}
/**
*Sets this Layer's parent layer
*/
void setParentLayer( WMSLayer* layer ) {_parentLayer = layer;}
/**
*Finds the child Layer with the given name.
*@returns
* The Layer with the given name or NULL if not found.
*/
WMSLayer* getLayerByName(const std::string &name);
protected:
std::string _name;
std::string _title;
std::string _abstract;
double _minLon, _minLat, _maxLon, _maxLat;
double _minX, _minY, _maxX, _maxY;
StyleList _styles;
SRSList _spatialReferences;
LayerList _layers;
WMSLayer* _parentLayer;
};
/**
*WMS Capabilities
*/
class OSGEARTHUTIL_EXPORT WMSCapabilities : public osg::Referenced
{
public:
WMSCapabilities();
/** dtor */
virtual ~WMSCapabilities() { }
/**
*Gets the WMS capabilities version
*/
const std::string& getVersion() {return _version;}
/**
*Sets the WMS capabilities version
*/
void setVersion(const std::string& version) {_version = version;}
/**A list of supported formats*/
typedef std::vector<std::string> FormatList;
/**
*Gets the list of supported formats
*/
FormatList& getFormats() {return _formats;}
/**
*Gets the Layer's for the Capabilities.
*/
WMSLayer::LayerList& getLayers() {return _layers;}
/**
*Suggests an extension to use for WMS layers defined for the service.
*This function will analyze the list of formats contained in the Capabilities request
*and recommend the first format that has an OpenSceneGraph ReaderWriter that can support
*it's extension.
*@returns
* The suggested extension.
*/
std::string suggestExtension();
/**
*Finds the child Layer with the given name.
*@returns
* The Layer with the given name or NULL if not found.
*/
WMSLayer* getLayerByName(const std::string &name);
protected:
FormatList _formats;
WMSLayer::LayerList _layers;
std::string _version;
};
/*
* Reads Capabilities from a URL or file
*/
class OSGEARTHUTIL_EXPORT WMSCapabilitiesReader
{
public:
static WMSCapabilities* read( const std::string &location, const osgDB::ReaderWriter::Options *options );
static WMSCapabilities* read( std::istream &in );
private:
WMSCapabilitiesReader(){}
WMSCapabilitiesReader(const WMSCapabilitiesReader &cr){}
/** dtor */
virtual ~WMSCapabilitiesReader() { }
};
} } // namespace osgEarth::Util
#endif //OSGEARTHUTIL_WMS_H
|