1 |
# Copyright (c) 2001, 2002, 2003 by Intevation GmbH |
# Copyright (c) 2001, 2002, 2003, 2004 by Intevation GmbH |
2 |
# Authors: |
# Authors: |
3 |
# Bernhard Herzog <[email protected]> |
# Bernhard Herzog <[email protected]> |
4 |
# Jonathan Coles <[email protected]> |
# Jonathan Coles <[email protected]> |
5 |
|
# Silke Reimer <[email protected]> |
6 |
# |
# |
7 |
# This program is free software under the GPL (>=v2) |
# This program is free software under the GPL (>=v2) |
8 |
# Read the file COPYING coming with Thuban for details. |
# Read the file COPYING coming with Thuban for details. |
9 |
|
|
10 |
__version__ = "$Revision$" |
__version__ = "$Revision$" |
11 |
|
|
12 |
|
import os |
13 |
import warnings |
import warnings |
14 |
|
|
15 |
from Thuban import _ |
from Thuban import _ |
126 |
|
|
127 |
self.UnsetModified() |
self.UnsetModified() |
128 |
|
|
|
def __getattr__(self, attr): |
|
|
"""Access to some attributes for backwards compatibility |
|
|
|
|
|
The attributes implemented here are now held by the shapestore |
|
|
if at all. For backwards compatibility pretend that they are |
|
|
still there but issue a DeprecationWarning when they are |
|
|
accessed. |
|
|
""" |
|
|
if attr in ("table", "shapetable"): |
|
|
value = self.store.Table() |
|
|
elif attr == "shapefile": |
|
|
value = self.store.Shapefile() |
|
|
elif attr == "filename": |
|
|
value = self.store.FileName() |
|
|
else: |
|
|
raise AttributeError, attr |
|
|
warnings.warn("The Layer attribute %r is deprecated." |
|
|
" It's value can be accessed through the shapestore" |
|
|
% attr, DeprecationWarning, stacklevel = 2) |
|
|
return value |
|
|
|
|
129 |
def SetShapeStore(self, store): |
def SetShapeStore(self, store): |
130 |
# Set the classification to None if there is a classification |
# Set the classification to None if there is a classification |
131 |
# and the new shapestore doesn't have a table with a suitable |
# and the new shapestore doesn't have a table with a suitable |
167 |
Return None, if the layer doesn't contain any shapes. |
Return None, if the layer doesn't contain any shapes. |
168 |
""" |
""" |
169 |
bbox = self.BoundingBox() |
bbox = self.BoundingBox() |
170 |
if bbox is not None: |
if bbox is not None and self.projection is not None: |
171 |
llx, lly, urx, ury = bbox |
bbox = self.projection.InverseBBox(bbox) |
172 |
if self.projection is not None: |
return bbox |
|
llx, lly = self.projection.Inverse(llx, lly) |
|
|
urx, ury = self.projection.Inverse(urx, ury) |
|
|
return llx, lly, urx, ury |
|
|
else: |
|
|
return None |
|
173 |
|
|
174 |
def ShapesBoundingBox(self, shapes): |
def ShapesBoundingBox(self, shapes): |
175 |
"""Return a bounding box in lat/long coordinates for the given |
"""Return a bounding box in lat/long coordinates for the given |
180 |
|
|
181 |
if shapes is None or len(shapes) == 0: return None |
if shapes is None or len(shapes) == 0: return None |
182 |
|
|
183 |
llx = [] |
xs = [] |
184 |
lly = [] |
ys = [] |
|
urx = [] |
|
|
ury = [] |
|
|
|
|
|
if self.projection is not None: |
|
|
inverse = lambda x, y: self.projection.Inverse(x, y) |
|
|
else: |
|
|
inverse = lambda x, y: (x, y) |
|
185 |
|
|
186 |
for id in shapes: |
for id in shapes: |
187 |
left, bottom, right, top = self.Shape(id).compute_bbox() |
bbox = self.Shape(id).compute_bbox() |
188 |
|
if self.projection is not None: |
189 |
left, bottom = inverse(left, bottom) |
bbox = self.projection.InverseBBox(bbox) |
190 |
right, top = inverse(right, top) |
left, bottom, right, top = bbox |
191 |
|
xs.append(left); xs.append(right) |
192 |
|
ys.append(bottom); ys.append(top) |
193 |
|
|
194 |
llx.append(left) |
return (min(xs), min(ys), max(xs), max(ys)) |
|
lly.append(bottom) |
|
|
urx.append(right) |
|
|
ury.append(top) |
|
195 |
|
|
|
return (min(llx), min(lly), max(urx), max(ury)) |
|
196 |
|
|
197 |
def GetFieldType(self, fieldName): |
def GetFieldType(self, fieldName): |
198 |
if self.store: |
if self.store: |
220 |
"""Return the shape with index index""" |
"""Return the shape with index index""" |
221 |
return self.store.Shape(index) |
return self.store.Shape(index) |
222 |
|
|
223 |
def ShapesInRegion(self, box): |
def ShapesInRegion(self, bbox): |
224 |
"""Return the ids of the shapes that overlap the box. |
"""Return an iterable over the shapes that overlap the bounding box. |
225 |
|
|
226 |
Box is a tuple (left, bottom, right, top) in unprojected coordinates. |
The bbox parameter should be the bounding box as a tuple in the |
227 |
|
form (minx, miny, maxx, maxy) in unprojected coordinates. |
228 |
""" |
""" |
|
left, bottom, right, top = box |
|
|
|
|
229 |
if self.projection is not None: |
if self.projection is not None: |
230 |
left, bottom = self.projection.Forward(left, bottom) |
# Ensure that region lies within the layer's bounding box |
231 |
right, top = self.projection.Forward(right, top) |
# Otherwise projection of the region would lead to incorrect |
232 |
|
# values. |
233 |
return self.store.ShapesInRegion((left, bottom, right, top)) |
clipbbox = self.ClipBoundingBox(bbox) |
234 |
|
bbox = self.projection.ForwardBBox(clipbbox) |
235 |
|
return self.store.ShapesInRegion(bbox) |
236 |
|
|
237 |
def GetClassificationColumn(self): |
def GetClassificationColumn(self): |
238 |
return self.classification_column |
return self.classification_column |
294 |
|
|
295 |
bbox = self.LatLongBoundingBox() |
bbox = self.LatLongBoundingBox() |
296 |
if bbox is not None: |
if bbox is not None: |
297 |
items.append(_("Extent (lat-lon): (%g, %g, %g, %g)") % bbox) |
items.append(_("Extent (lat-lon): (%g, %g, %g, %g)") % tuple(bbox)) |
298 |
else: |
else: |
299 |
items.append(_("Extent (lat-lon):")) |
items.append(_("Extent (lat-lon):")) |
300 |
items.append(_("Shapetype: %s") % shapetype_names[self.ShapeType()]) |
items.append(_("Shapetype: %s") % shapetype_names[self.ShapeType()]) |
307 |
|
|
308 |
return (_("Layer '%s'") % self.Title(), items) |
return (_("Layer '%s'") % self.Title(), items) |
309 |
|
|
310 |
|
def ClipBoundingBox(self, bbox): |
311 |
|
""" Clip bbox to layer's bounding box. |
312 |
|
|
313 |
|
Returns that part of bbox that lies within the layers bounding box. |
314 |
|
If bbox is completely outside of the layers bounding box, bbox is |
315 |
|
returned. It is assumed that bbox has sensible values, i.e. bminx |
316 |
|
< bmaxx and bminy < bmaxy. |
317 |
|
""" |
318 |
|
bminx, bminy, bmaxx, bmaxy = bbox |
319 |
|
lminx, lminy, lmaxx, lmaxy = self.LatLongBoundingBox() |
320 |
|
if bminx > lmaxx or bmaxx < lminx: |
321 |
|
left, right = bminx, bmaxx |
322 |
|
else: |
323 |
|
left = max(lminx, bminx) |
324 |
|
right = min(lmaxx, bmaxx) |
325 |
|
if bminy > lmaxy or bmaxy < lminy: |
326 |
|
bottom, top = bminy, bmaxy |
327 |
|
else: |
328 |
|
bottom = max(lminy, bminy) |
329 |
|
top = min(lmaxy, bmaxy) |
330 |
|
|
331 |
|
return (left, bottom, right, top) |
332 |
|
|
333 |
|
|
334 |
if resource.has_gdal_support(): |
if resource.has_gdal_support(): |
335 |
import gdal |
import gdal |
356 |
BaseLayer.__init__(self, title, visible = visible) |
BaseLayer.__init__(self, title, visible = visible) |
357 |
|
|
358 |
self.projection = projection |
self.projection = projection |
359 |
self.filename = filename |
self.filename = os.path.abspath(filename) |
360 |
|
|
361 |
self.bbox = -1 |
self.bbox = -1 |
362 |
|
|
418 |
if bbox is None: |
if bbox is None: |
419 |
return None |
return None |
420 |
|
|
|
llx, lly, urx, ury = bbox |
|
421 |
if self.projection is not None: |
if self.projection is not None: |
422 |
llx, lly = self.projection.Inverse(llx, lly) |
bbox = self.projection.InverseBBox(bbox) |
|
urx, ury = self.projection.Inverse(urx, ury) |
|
423 |
|
|
424 |
return llx, lly, urx, ury |
return bbox |
425 |
|
|
426 |
def GetImageFilename(self): |
def GetImageFilename(self): |
427 |
return self.filename |
return self.filename |