diff --git a/SimPEG/Survey.py b/SimPEG/Survey.py index 936560d6..eff41adc 100644 --- a/SimPEG/Survey.py +++ b/SimPEG/Survey.py @@ -201,6 +201,10 @@ class BaseRx(object): assert value in known, "rxType must be in ['%s']" % ("', '".join(known)) self._rxType = value + @property + def nD(self): + return self.locs.shape[0] + class BaseTx(object): """SimPEG Transmitter Object"""