23 |
class WMSLayer: |
class WMSLayer: |
24 |
__init__() |
__init__() |
25 |
|
|
26 |
|
LatLongBoundingBox() |
27 |
|
BoundingBox() |
28 |
|
|
29 |
|
getFormat(format) |
30 |
|
calcFormat(formats) |
31 |
|
|
32 |
|
getFormats() |
33 |
|
getLayers() |
34 |
|
getLayerTitle() |
35 |
|
|
36 |
|
getWMSFormat() |
37 |
|
setWMSFormat(format) |
38 |
|
|
39 |
|
GetMapImg(width, height, bbox) |
40 |
|
|
41 |
Requirements: |
Requirements: |
42 |
- PyOGCLib <http://www.sourceforge.net/projects/pyogclib> |
- PyOGCLib <http://www.sourceforge.net/projects/pyogclib> |
80 |
|
|
81 |
|
|
82 |
class WMSLayer(BaseLayer): |
class WMSLayer(BaseLayer): |
83 |
|
""" |
84 |
|
WMS Layer |
85 |
|
|
86 |
|
This layer incorporates all methods from the Thuban BaseLayer and |
87 |
|
adds specific methods for operating with a WMS server. |
88 |
|
""" |
89 |
|
|
90 |
def __init__(self, title, url): |
def __init__(self, title, url): |
91 |
"""Initializes the WMSLayer. |
"""Initializes the WMSLayer. |
167 |
|
|
168 |
|
|
169 |
def LatLongBoundingBox(self): |
def LatLongBoundingBox(self): |
170 |
"""Return the layer's bounding box in lat-lon. |
""" |
171 |
|
Return the layer's bounding box in lat-lon |
172 |
""" |
""" |
173 |
return self.latlonbbox |
return self.latlonbbox |
174 |
|
|
175 |
|
|
176 |
def BoundingBox(self): |
def BoundingBox(self): |
177 |
"""Return the layer's bounding box in the intrinsic coordinate system. |
""" |
178 |
|
Return the layer's bounding box in the intrinsic coordinate system |
179 |
""" |
""" |
180 |
return self.bbox |
return self.bbox |
181 |
|
|
186 |
|
|
187 |
format -- format as returned by the WMS server |
format -- format as returned by the WMS server |
188 |
|
|
189 |
If no mapping was found, None is returned |
If no mapping was found, None is returned. |
190 |
|
|
191 |
|
This routine uses a simple heuristic in order to find the |
192 |
|
broken down image format to be used with the internal render |
193 |
|
engine. |
194 |
|
|
195 |
An exception rule is implemented in order to not accept |
An exception rule is implemented in order to not accept |
196 |
image/wbmp or WBMP which refers to WAP bitmap format and is |
image/wbmp or WBMP which refers to WAP bitmap format and is |
238 |
return None, None |
return None, None |
239 |
|
|
240 |
|
|
241 |
|
def getFormats(self): |
242 |
|
""" |
243 |
|
Return the list of supported image formats by the WMS server |
244 |
|
|
245 |
|
These formats may be used in the WMS GetMap request. Data is |
246 |
|
retrieved from the included WMSCapabilities object. |
247 |
|
|
248 |
|
The called method from WMSCapabilities will default to |
249 |
|
'image/jpeg' if no format is recognised in XML Capabilities, |
250 |
|
assuming that JPEG will always be supported on the server side |
251 |
|
with this encoding. |
252 |
|
""" |
253 |
|
return self.capabilities.getFormats() |
254 |
|
|
255 |
|
|
256 |
|
def getLayers(self): |
257 |
|
""" |
258 |
|
Return the list of layer names supported by the WMS server |
259 |
|
|
260 |
|
Data is retrieved from the included WMSCapabilities object. |
261 |
|
|
262 |
|
Only named layers will be returned, since a layer may have a |
263 |
|
title but doesn't have to have a name associated to it as |
264 |
|
well. If no layers were found, an empty list is returned. |
265 |
|
""" |
266 |
|
return self.capabilities.getLayers() |
267 |
|
|
268 |
|
|
269 |
|
def getLayerTitle(self, layer): |
270 |
|
""" |
271 |
|
Return the title of the named layer |
272 |
|
|
273 |
|
Data is retrieved from the included WMSCapabilities object. |
274 |
|
|
275 |
|
If no such title or no such layer exists, an empty string is |
276 |
|
returned. |
277 |
|
""" |
278 |
|
return self.capabilities.getLayerTitle(layer) |
279 |
|
|
280 |
|
|
281 |
|
def getWMSFormat(self): |
282 |
|
""" |
283 |
|
Return the image format that is used for WMS GetMap requests |
284 |
|
""" |
285 |
|
return self.wmsformat |
286 |
|
|
287 |
|
|
288 |
|
def setWMSFormat(self, format): |
289 |
|
""" |
290 |
|
Set the image format that is used for WMS GetMap requests |
291 |
|
|
292 |
|
format -- format, one of getFormats() |
293 |
|
""" |
294 |
|
self.wmsformat = format |
295 |
|
|
296 |
|
|
297 |
def GetMapImg(self, width, height, bbox): |
def GetMapImg(self, width, height, bbox): |
298 |
|
""" |
299 |
|
Retrieve a new map from the WMS server and return it |
300 |
|
|
301 |
|
width -- width in pixel of the desired image |
302 |
|
height -- height in pixel of the desired image |
303 |
|
bbox -- array of min(x,y) max(x,y) in the given SRS |
304 |
|
|
305 |
|
SRS and used image format will be retrieved from within the |
306 |
|
layer itself. |
307 |
|
""" |
308 |
bbox_dict = { 'minx': bbox[0], 'miny': bbox[1], |
bbox_dict = { 'minx': bbox[0], 'miny': bbox[1], |
309 |
'maxx': bbox[2], 'maxy': bbox[3] } |
'maxx': bbox[2], 'maxy': bbox[3] } |
310 |
|
|