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

introduced SpectralConfiguration

parent 8a95e6fb
No related branches found
No related tags found
No related merge requests found
...@@ -219,6 +219,21 @@ class TimeSeriesItemModel(QAbstractItemModel): ...@@ -219,6 +219,21 @@ class TimeSeriesItemModel(QAbstractItemModel):
return 1 return 1
class SpectralConfiguration():
def __init__(self, nb, px_size, bandnames=None, wavelengths=None, sensorname=None):
self.nb = nb
self.px_size = float(px_size)
self.bandnames = bandnames
self.wavelengths = wavelengths
self.sensorname = sensorname
class TimeSeries(QObject): class TimeSeries(QObject):
#define signals #define signals
......
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