Description
Some space based azimuth/elevation or right ascension/declination measurements include an earth-fixed position vector of the sensor. The following VBScript code adds the x, y, and z positions to the observation object:
pObs.TrackerVector.CoordSystem = eCBF
pObs.TrackerVector.ElmType = ePosOnly
pObs.TrackerVector.X.Unit = "m"
pObs.TrackerVector.X.Value = Xpos
pObs.TrackerVector.Y.Unit = "m"
pObs.TrackerVector.Y.Value = Ypos
pObs.TrackerVector.Z.Unit = "m"
pObs.TrackerVector.Z.Value = Zpos
pObsSet.Add pObs
Property type
Read-write property
Syntax
See Also