Skip to content
Snippets Groups Projects
Commit ac185151 authored by Benjamin Jakimow's avatar Benjamin Jakimow
Browse files

fixes issue #29 (Automatic creation of 2nd Map View -> now only 1 MapView)

parent eb12c4e0
No related branches found
No related tags found
No related merge requests found
...@@ -613,9 +613,9 @@ class TimeSeriesViewer(QgisInterface, QObject): ...@@ -613,9 +613,9 @@ class TimeSeriesViewer(QgisInterface, QObject):
if not self.mSpatialMapExtentInitialized: if not self.mSpatialMapExtentInitialized:
if len(self.TS.data) > 0: if len(self.TS.data) > 0:
if len(self.spatialTemporalVis.MVC) == 0: if len(self.spatialTemporalVis.MVC) == 0:
# add two empty band-views by default # add an empty MapView by default
self.spatialTemporalVis.createMapView()
self.spatialTemporalVis.createMapView() self.spatialTemporalVis.createMapView()
#self.spatialTemporalVis.createMapView()
extent = self.TS.getMaxSpatialExtent() extent = self.TS.getMaxSpatialExtent()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment