Change to source parameters

Add color axis handles for data plot
This commit is contained in:
D Fournier
2016-04-03 17:23:24 -07:00
parent 03dd9915b7
commit 0578e1ff6c
2 changed files with 35 additions and 20 deletions
+2 -2
View File
@@ -137,8 +137,8 @@ class SrcField(Survey.BaseSrc):
param = None #: Inducing field param (Amp, Incl, Decl)
def __init__(self, rxList, A, I, D, **kwargs):
self.param = (A,I,D)
def __init__(self, rxList, param = None, **kwargs):
self.param = param
super(SrcField, self).__init__(rxList, **kwargs)
class RxObs(Survey.BaseRx):