4 An example of how to walk a RINEX data set and use SatID and ObsID,
5 building an obsEpochMap of the data along the way.
10 fn = gnsstk.getPathData() +
'/arlm200z.15o'
13 header, data = gnsstk.readRinex3Obs(fn)
21 for sv
in d.obs.keys():
27 for i
in range(len(epoch)):
28 rinex2_obs_type = header.R2ObsTypes[i]
29 oid = header.mapObsTypes[
'G'][i]
30 print "{}({})={}".format(str(oid), rinex2_obs_type, epoch[i].data),
31 soe[oid] = epoch[i].data