156 |
if self.BoundingBox() != None: |
if self.BoundingBox() != None: |
157 |
items.append("Extent (lat-lon): (%g, %g, %g, %g)" |
items.append("Extent (lat-lon): (%g, %g, %g, %g)" |
158 |
% self.BoundingBox()) |
% self.BoundingBox()) |
159 |
if self.projection and len(self.projection.params) > 0: |
if self.projection and len(self.projection.params) > 0: |
160 |
items.append("Extent (projected): (%g, %g, %g, %g)" |
items.append("Extent (projected): (%g, %g, %g, %g)" |
161 |
% self.ProjectedBoundingBox()) |
% self.ProjectedBoundingBox()) |
162 |
items.append(("Projection", |
items.append(("Projection", |
163 |
[str(param) for param in self.projection.params])) |
[str(param) |
164 |
|
for param in self.projection.params])) |
165 |
|
|
166 |
layers = self.layers[:] |
layers = self.layers[:] |
167 |
layers.reverse() |
layers.reverse() |