Working with Larry Fish's Compass

Survex can read Compass survey data - both raw data (.DAT and .MAK files) and processed survey data (.PLT and .PLF files). You can even use *include compassfile.dat in a .svx file and it'll work!

One point to note (this tripped us up!): station names in DAT files are case sensitive and so Survex reads DAT files with the equivalent of *case preserve. The default in SVX files is *case lower. So this won't work:

*fix CE1 0 0 0
*include datfilewhichusesCE1.dat
Because the CE1 in the *fix is actually interpreted as ce1. This is what you have to do:
*begin
*case preserve
*fix CE1 0 0 0
*include datfilewhichusesCE1.dat
*end