1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767
|
.. _tds:
==================
Tripod Data System
==================
TDS (Tripod Data Systems) is a technique designed to use your handheld devices
as rough as you can to make it compatible with intense external environment.
They also provide the versatility in the range of friendly software for the
mobile computing and for various industries as well.
This format is designed to work with these devices and espacially with Survey Pro software.
The format is a comma separated ASCII file containing record types, headers,
recorded data and comments.
Each record is made of one line of text, with comma-separated fields of ASCII
text format::
AH,DC%s,MA%s,ME%s,RA%s
This format is the base of other formats :
- :ref:`if_carlson_rw5`
Record type
-----------
General Raw Data
________________
+---------------+------------------------------------------+
| Record Type | Explanation |
+===============+==========================================+
| -- | Note |
+---------------+------------------------------------------+
| JB | Job |
+---------------+------------------------------------------+
| MO | Mode Setup |
+---------------+------------------------------------------+
Conventional Raw Data
_____________________
+---------------+------------------------------------------+
| Record Type | Explanation |
+===============+==========================================+
| AP | Adjusted point |
+---------------+------------------------------------------+
| AT | Attributes |
+---------------+------------------------------------------+
| BK | Backsight |
+---------------+------------------------------------------+
| CF | Cut Sheet |
+---------------+------------------------------------------+
| DE | Design point / location |
+---------------+------------------------------------------+
| DL | Define a Location |
+---------------+------------------------------------------+
| DP | Deleted point |
+---------------+------------------------------------------+
| FC | Feature Code |
+---------------+------------------------------------------+
| LS | Line of Sight |
+---------------+------------------------------------------+
| MD | Multiple Distances |
+---------------+------------------------------------------+
| OC | Occupy Point |
+---------------+------------------------------------------+
| OE | Offset delta |
+---------------+------------------------------------------+
| OF | Off Center Shot |
+---------------+------------------------------------------+
| RB | Repeat Backsight |
+---------------+------------------------------------------+
| RD | Repeat Directional |
+---------------+------------------------------------------+
| RE | Remote Elevation |
+---------------+------------------------------------------+
| RF | Repeat Foresight |
+---------------+------------------------------------------+
| RS | Resection |
+---------------+------------------------------------------+
| SD | Deltas |
+---------------+------------------------------------------+
| SK | Stake Out |
+---------------+------------------------------------------+
| SL | Slope Staking |
+---------------+------------------------------------------+
| SP | Store Point |
+---------------+------------------------------------------+
| SR | Slope Staking Reference Offset |
+---------------+------------------------------------------+
| SU | Sun Shot |
+---------------+------------------------------------------+
| TR/SS/OB | Traverse / Sideshot / Observation |
+---------------+------------------------------------------+
GPS Raw Data
____________
+---------------+------------------------------------------+
| Record Type | Explanation |
+===============+==========================================+
| AH | GPS Antenna Height |
+---------------+------------------------------------------+
| BL | GPS Base Line |
+---------------+------------------------------------------+
| BP | Set Base Receiver Position |
+---------------+------------------------------------------+
| CG | COGO settings |
+---------------+------------------------------------------+
| CS | Coordinate System Identity |
+---------------+------------------------------------------+
| CT | Calibration Point |
+---------------+------------------------------------------+
| CV | RMS Covariance of GPS Base Line |
+---------------+------------------------------------------+
| DG | Datum Grid |
+---------------+------------------------------------------+
| DT | Datum |
+---------------+------------------------------------------+
| EE | GPS Edit Point |
+---------------+------------------------------------------+
| EP | Geodetic position |
+---------------+------------------------------------------+
| EQ | Equipment |
+---------------+------------------------------------------+
| ES | Ellipsoid |
+---------------+------------------------------------------+
| GK | GPS stakeout |
+---------------+------------------------------------------+
| GO | GPS Offset Shot |
+---------------+------------------------------------------+
| GP | GPS Point |
+---------------+------------------------------------------+
| GR | GPS adjusted point |
+---------------+------------------------------------------+
| GS | GPS Store Point |
+---------------+------------------------------------------+
| HA | Horizontal Calibration (Adjust) |
+---------------+------------------------------------------+
| PE | Extended Projection |
+---------------+------------------------------------------+
| PJ | Projection |
+---------------+------------------------------------------+
| RP | Local coordinates of calibration point |
+---------------+------------------------------------------+
| RX | Receiver Setup |
+---------------+------------------------------------------+
| ST | Local site settings |
+---------------+------------------------------------------+
| VA | Vertical Calibration (Adjust) |
+---------------+------------------------------------------+
Legacy Raw Data
_______________
+---------------+------------------------------------------+
| Record Type | Explanation |
+===============+==========================================+
| AA | Accumulating Angle-right |br| |
| | not used in SPCE |
+---------------+------------------------------------------+
| BB | Bench level, backsight |br| |
| | not used in SPCE |
+---------------+------------------------------------------+
| BG | Base Point Geoid Model Elevation |br| |
| | no longer supported in SPCE 3.5 |br| |
| | replaced by VA |
+---------------+------------------------------------------+
| BS | Bench level, side shots |br| |
| | not used in SPCE |
+---------------+------------------------------------------+
| BT | Bench level, traverse |br| |
| | not used in SPCE |
+---------------+------------------------------------------+
| HC | Horizontal Control Point |br| |
| | not supported in SPro 3.5 |br| |
| | replaced with CT |
+---------------+------------------------------------------+
| LE | Vertical Ellipsoid Height Setup |
+---------------+------------------------------------------+
| LG | Vertical Geoid Model Setup |br| |
| | no longer supported in SPCE3.5 |
+---------------+------------------------------------------+
| LM | Horizontal Mapping Plane Setup |br| |
| | no longer supported in SPCE3.5 |
+---------------+------------------------------------------+
| LH | Local transforming coefficients |br| |
| | for horizontal |br| |
| | no longer supported in SPCE3.5 |br| |
| | replaced by Horizontal adjustment HA |
+---------------+------------------------------------------+
| LV | Local transforming coefficients |br| |
| | for vertical |br| |
| | no longer supported in SPCE3.5 |br| |
| | replaced by Vertical adjustment VA |
+---------------+------------------------------------------+
| VC | Vertical Control point |br| |
| | not supported in SPro 3.5 |br| |
| | replaced with C |
+---------------+------------------------------------------+
Field headers
-------------
General and Conventional field list
___________________________________
+--------------+-----------------------------------------+
| Field header | Explanation |
+==============+=========================================+
| ``--`` | Note |
+--------------+-----------------------------------------+
| AD | Azimuth Direction |
+--------------+-----------------------------------------+
| AL | Angle Left |
+--------------+-----------------------------------------+
| AR | Angle Right |
+--------------+-----------------------------------------+
| AS | Ahead on station |
+--------------+-----------------------------------------+
| AU | Angle Unit |
+--------------+-----------------------------------------+
| AZ | Azimuth |
+--------------+-----------------------------------------+
| BC | Back Circle |
+--------------+-----------------------------------------+
| BD | Backsight direct |
+--------------+-----------------------------------------+
| BP | Back point |
+--------------+-----------------------------------------+
| BS | Backsight |
+--------------+-----------------------------------------+
| BV | Backsight reverse |
+--------------+-----------------------------------------+
| CE | Change elevation |
+--------------+-----------------------------------------+
| CF | Slope used |
+--------------+-----------------------------------------+
| CR | Circular Reading |
+--------------+-----------------------------------------+
| DE | Declination |
+--------------+-----------------------------------------+
| DS | Design Slope |
+--------------+-----------------------------------------+
| DT | Date (JB Record) |
+--------------+-----------------------------------------+
| DT | Date (SU Record) |br| |
| | [MMDDYYYY] |
+--------------+-----------------------------------------+
| E | Adj. Easting |
+--------------+-----------------------------------------+
| EC | Earth Curvature |
+--------------+-----------------------------------------+
| ED | Delta easting |
+--------------+-----------------------------------------+
| EG | Sun Position |
+--------------+-----------------------------------------+
| EL | Elevation or Adj. Elevation |
+--------------+-----------------------------------------+
| EO | EDM offset |
+--------------+-----------------------------------------+
| FD | Foresight direct |
+--------------+-----------------------------------------+
| FE | Foresight elevation |
+--------------+-----------------------------------------+
| FN | Feature code name |
+--------------+-----------------------------------------+
| FP | Foresight point |
+--------------+-----------------------------------------+
| FV | Foresight reverse |
+--------------+-----------------------------------------+
| GD | Grade |
+--------------+-----------------------------------------+
| GH | Greenwich hour angle |
+--------------+-----------------------------------------+
| HC | Horizontal dist. to center line |
+--------------+-----------------------------------------+
| HD | Horizontal distance |
+--------------+-----------------------------------------+
| HD | Horizontal or relative horizontal dist. |
+--------------+-----------------------------------------+
| HH | Horizontal distance to hinge point |
+--------------+-----------------------------------------+
| HI | Height of Instrument |
+--------------+-----------------------------------------+
| HR | Height of Rod |
+--------------+-----------------------------------------+
| LA | Latitude |
+--------------+-----------------------------------------+
| LD | Delta elevation |
+--------------+-----------------------------------------+
| LO | Longitude |
+--------------+-----------------------------------------+
| LR | Left/Right Offset |
+--------------+-----------------------------------------+
| N | Adj. Northing |
+--------------+-----------------------------------------+
| ND | Delta northing |
+--------------+-----------------------------------------+
| NM | Job Name |
+--------------+-----------------------------------------+
| OB | Observed slope |
+--------------+-----------------------------------------+
| OD | Offset Direction |
+--------------+-----------------------------------------+
| OE | Offset Delta |
+--------------+-----------------------------------------+
| OL | Offset length |
+--------------+-----------------------------------------+
| OP | Occupy point |
+--------------+-----------------------------------------+
| PN | Point name |
+--------------+-----------------------------------------+
| SD | Slope Distance |
+--------------+-----------------------------------------+
| SF | Scale Factor |
+--------------+-----------------------------------------+
| SM | Semi-diameter of Sun |br| |
| | in DMS |
+--------------+-----------------------------------------+
| ST | Station |
+--------------+-----------------------------------------+
| TM | Time (JB – Record) |br| |
| | [HH:MM:SS] |
+--------------+-----------------------------------------+
| TM | Time (EP – Record) |br| |
| | [HHMMSS] |
+--------------+-----------------------------------------+
| TM | Time (SU – Record) |br| |
| | [HH.dddddd] in UTC Time |
+--------------+-----------------------------------------+
| TN | Attribute name |
+--------------+-----------------------------------------+
| TV | Attribute value in string form |
+--------------+-----------------------------------------+
| UN | Distance Unit |
+--------------+-----------------------------------------+
| VC | Vertical distance to center point |
+--------------+-----------------------------------------+
| VD | Vertical or relative vertical distance |
+--------------+-----------------------------------------+
| VH | Vertical distance to hinge point |
+--------------+-----------------------------------------+
| ZD | Zenith Direct |
+--------------+-----------------------------------------+
| ZE | Zenith or Zenith angle |
+--------------+-----------------------------------------+
| ZV | Zenith Reverse |
+--------------+-----------------------------------------+
General and Conventional enumerated field list
______________________________________________
+---------+--------+-----------------------+---------------------+----------------+
| Field | Type | 0 | 1 | 2 |
+=========+========+=======================+=====================+================+
| AD | enum | North | South | |
+---------+--------+-----------------------+---------------------+----------------+
| AU | enum | degree | grads | |
+---------+--------+-----------------------+---------------------+----------------+
| CF | bool | cut | fill | |
+---------+--------+-----------------------+---------------------+----------------+
| EC | enum | off | on | |
+---------+--------+-----------------------+---------------------+----------------+
| OD | int | Center | Right | Left |
+---------+--------+-----------------------+---------------------+----------------+
| UN | enum | Feet | Meter | US Survey Feet |
+---------+--------+-----------------------+---------------------+----------------+
| EG | string | Left Trailing edge | Right Trailing Edge | center |
+---------+--------+-----------------------+---------------------+----------------+
GPS Field List
______________
+--------------+----------------------------------------------+
| Field header | Explanation |
+==============+==============================================+
| ``--`` | Description (Feature Code) |
+--------------+----------------------------------------------+
| AE Location Indicator |
+--------------+----------------------------------------------+
| AF | Azimuth format |
+--------------+----------------------------------------------+
| AI | Antenna Index int (See Antenna.ini File) |
+--------------+----------------------------------------------+
| AN | Antenna Number int (See Antenna.ini File) |
+--------------+----------------------------------------------+
| AO | Azimuth Orientation |
+--------------+----------------------------------------------+
| AT | Antenna Type (name of antenna) |
+--------------+----------------------------------------------+
| AZ | Azimuth double Geodetic Angle |
+--------------+----------------------------------------------+
| CL | Classification |
+--------------+----------------------------------------------+
| CO | Coordinate System Option |
+--------------+----------------------------------------------+
| CT | Origin center |
+--------------+----------------------------------------------+
| DA | Datum Transformation Type |
+--------------+----------------------------------------------+
| DC | Derivation Code |
+--------------+----------------------------------------------+
| DH | HDOP from Rx |
+--------------+----------------------------------------------+
| DM | Dimensions Used |
+--------------+----------------------------------------------+
| DN | Datum name |
+--------------+----------------------------------------------+
| DV | VDOP from Rx |
+--------------+----------------------------------------------+
| DX | Base line Delta X |
+--------------+----------------------------------------------+
| DY | Base line Delta Y |
+--------------+----------------------------------------------+
| DZ | Base line Delta Z |
+--------------+----------------------------------------------+
| E | Easting |
+--------------+----------------------------------------------+
| EL | Elevation |
+--------------+----------------------------------------------+
| EM | Ellipse Name |
+--------------+----------------------------------------------+
| FI | File name |
+--------------+----------------------------------------------+
| FO | File name one |
+--------------+----------------------------------------------+
| FT | File name two |
+--------------+----------------------------------------------+
| GF | Geodetic Flags |
+--------------+----------------------------------------------+
| GM | GPS Measure Method |
+--------------+----------------------------------------------+
| GN | Geoid Model Name |
+--------------+----------------------------------------------+
| GO | Grid Orientation |
+--------------+----------------------------------------------+
| HI | Height of laser at GPS ref. Point |
+--------------+----------------------------------------------+
| HO | Horizontal Offset |
+--------------+----------------------------------------------+
| HP | Horizontal Precision |
+--------------+----------------------------------------------+
| HR | Height of laser target at store offset Pt. |
+--------------+----------------------------------------------+
| HT | Height or Ellipsoid Ht. |
+--------------+----------------------------------------------+
| IF | Ellipse inverse flattening |
+--------------+----------------------------------------------+
| LA | Latitude |
+--------------+----------------------------------------------+
| LN | Longitude |
+--------------+----------------------------------------------+
| LX | Translation x |
+--------------+----------------------------------------------+
| LY | Translation y |
+--------------+----------------------------------------------+
| LZ | Translation z |
+--------------+----------------------------------------------+
| MA | Measured antenna height |
+--------------+----------------------------------------------+
| ME | Measure Method |
+--------------+----------------------------------------------+
| N | Northing |
+--------------+----------------------------------------------+
| OO | Orientation one |
+--------------+----------------------------------------------+
| OT | Orientation two |
+--------------+----------------------------------------------+
| OX | Rotation x |
+--------------+----------------------------------------------+
| OY | Rotation y |
+--------------+----------------------------------------------+
| OZ | Rotation z |
+--------------+----------------------------------------------+
| PN | Point Name |
+--------------+----------------------------------------------+
| PT | GPS Point Type |
+--------------+----------------------------------------------+
| PV | Type of Vertical Adjustment |
+--------------+----------------------------------------------+
| RA | Reduced antenna height |
+--------------+----------------------------------------------+
| RD | Ellipsoid Radius |
+--------------+----------------------------------------------+
| RE | Recording interval |
+--------------+----------------------------------------------+
| RH | Horizontal RMS from Rx |
+--------------+----------------------------------------------+
| RS | Rx Serial Number |
+--------------+----------------------------------------------+
| RT | Rotation about origin |
+--------------+----------------------------------------------+
| RV | Vertical RMS from Rx |
+--------------+----------------------------------------------+
| RX | Rx Type |
+--------------+----------------------------------------------+
| RY | Rectify |
+--------------+----------------------------------------------+
| SA | Slope east |
+--------------+----------------------------------------------+
| SC | Error Scale or Scale Factor |
+--------------+----------------------------------------------+
| SD | Slope Distance |
+--------------+----------------------------------------------+
| SF | Scale factor at origin |
+--------------+----------------------------------------------+
| SG | Setup Group |
+--------------+----------------------------------------------+
| SO | Slope north |
+--------------+----------------------------------------------+
| SP | Scale factor |
+--------------+----------------------------------------------+
| SV | Min. # of SV during obs. |
+--------------+----------------------------------------------+
| TA | Tape Adjustment |
+--------------+----------------------------------------------+
| TE | Translation East |
+--------------+----------------------------------------------+
| TH | Translation North |
+--------------+----------------------------------------------+
| TM | System Time |
+--------------+----------------------------------------------+
| TP | Type of projection |
+--------------+----------------------------------------------+
| TS | Antenna Serial Number |
+--------------+----------------------------------------------+
| VO | Vertical Offset |
+--------------+----------------------------------------------+
| VP | Vertical Precision |
+--------------+----------------------------------------------+
| XX | Variance X |
+--------------+----------------------------------------------+
| XY | Covariance X,Y |
+--------------+----------------------------------------------+
| XZ | Covariance X,Z |
+--------------+----------------------------------------------+
| YY | Variance Y |
+--------------+----------------------------------------------+
| YZ | Covariance Y,Z |
+--------------+----------------------------------------------+
| ZE | Zenith Angle |
+--------------+----------------------------------------------+
| ZG | Zone Group (system) name |
+--------------+----------------------------------------------+
| ZN | Zone name |
+--------------+----------------------------------------------+
| ZZ | Variance Z |
+--------------+----------------------------------------------+
GPS Enumerated Fields List
__________________________
:AE: Location indicator for Denmark projections enum |br|
• 1 = None |br|
• 2 = Zeeland |br|
• 3 = Jutland |br|
• 4 = Bornholm
:AF: Azimuth Format enum |br|
• 0 = Geodetic |br|
• 1 = Grid
:AO: Azimuth Orientation WORD |br|
• 1 = North |br|
• 2 = South
:CL: Classification enum |br|
• 0 = UnknownClass |br|
• 1 = Normal |br|
• 2 = Control |br|
• 3 = AsBuilt |br|
• 4 = Check |br|
• 5 = BackSight |br|
• 6 = Deleted Normal |br|
• 7 = Deleted Control |br|
• 8 = Deleted AsBuilt |br|
• 9 = DeletedCheck |br|
• 10 = DeletedBackSight
:CO: Coordinate System Option WORD |br|
• 1 = None |br|
• 2 = Scale only |br|
• 3 = Keyed in |br|
• 4 = Chosen from library
:CT: Origin Center enum |br|
• 0 = Equator |br|
• 1 = Projection center
:DA: Datum Transformation Type WORD |br|
• 513 = csdMolodenskyDatum |br|
• 514 = csdMultipleRegressionDatum |br|
• 515 = csdSevenParameterDatum |br|
• 516 = csdGridDatum |br|
• 517 = csdWGS84Datum
:DC: Derivation Code enum |br|
• 1 = ModeBase (Base) |br|
• 2 = ModeRover (Rover) |br|
• 3 = ModeGetBase (GetBase) |br|
• 4 = ModeStatic (Static)
:DM: Number of Dimensions Used for a Calibration WORD |br|
• 1 = 0D (None) |br|
• 2 = 1D (Vertical only) |br|
• 3 = 2D (Horizontal only) |br|
• 4 = 3D (Both vertical and horizontal) |br|
• 5 = Any
:GF: Geodetic Flags Bit Flags |br|
• Bit 0 = GPS Base Point |br|
• Bit 1 = GPS Horizontal Control Point |br|
• Bit 2 = GPS Veritcal Control Point |br|
• Bit 3 = GPS Control Point |br|
• Bit 4 = Local Map Plane Origin (Legacy, not used in Survey Pro 3.5 and beyond) |br|
• Bit 5 = GPS Base Coordinate Invalid
:GM: GPS Measure Method enum |br|
• 0 = UnknownMethod |br|
• 1 = UserInput |br|
• 2 = Autonomous |br|
• 3 = RTKFloat |br|
• 4 = RTKFixed |br|
• 5 = CopiedPoint |br|
• 6 = RTCMCode |br|
• 7 = WASS
:GO: Grid Orientation WORD |br|
• 1 = NE |br|
• 2 = SW |br|
• 3 = NW |br|
• 4 = SE
:ME: MeasureMethod enum |br|
• 0 = Unknown |br|
• 1 = True |br|
• 2 = Uncorrected
:PT: GPS Point Type enum |br|
• 1 = Control |br|
• 2 = Check |br|
• 3 = DataCollect |br|
• 4 = Offset |br|
• 5 = RemoteElevation |br|
• 6 = PostProcess |br|
• 7 = UserInput
:PV: Type of Vertical Adj. WORD |br|
• 1 = inclined plane |br|
• 2 = geoid model |br|
• 3 = combined
:TP: Type of Projection WORD |br|
• 2049 = Albers Equal Area Conic |br|
• 2050 = Cassini |br|
• 2051 = Krovak |br|
• 2052 = Lambert Conformal Conic One Parallel |br|
• 2053 = Mercator |br|
• 2054 = New Zealand Map Grid |br|
• 2055 = Oblique Conformal Conic |br|
• 2056 = Oblique Mercator Azimuth |br|
• 2057 = Oblique Stereographic |br|
• 2058 = Plane |br|
• 2059 = Stereographic |br|
• 2060 = RD Stereographic |br|
• 2062 = Transverse Mercator |br|
• 2063 = United Kingdom National Grid |br|
• 2064 = Denmark |br|
• 2065 = Hungarian EOV |br|
• 2066 = Lambert Conformal Conic Two Parallel |br|
• 2067 = Oblique Mercator Two Points |br|
• 2068 = Double Stereographic |br|
• 2069 = Grid
Legacy Field List
_________________
+----------------+----------------------------+
| Field header | Explanation |
+================+============================+
| ``--`` | Description (Feature Code) |
+----------------+----------------------------+
| AR | Angle right |
+----------------+----------------------------+
| Ba | Base Latitude |
+----------------+----------------------------+
| BC | Back circle |
+----------------+----------------------------+
| Bh | Base Ellipsoid Height |
+----------------+----------------------------+
| Bo | Base Longitude |
+----------------+----------------------------+
| CS | Coordinate System |
+----------------+----------------------------+
| DA | Datum |
+----------------+----------------------------+
| EL | Elevation |
+----------------+----------------------------+
| FI | Custome File Name |
+----------------+----------------------------+
| GI | Geoid model index |
+----------------+----------------------------+
| GU | Geoid Undulation at base |
+----------------+----------------------------+
| Ha | Coefficient a |
+----------------+----------------------------+
| Hb | Coefficient b |
+----------------+----------------------------+
| Hc | Coefficient c |
+----------------+----------------------------+
| Hd | Coefficient d |
+----------------+----------------------------+
| HE | Hemisphere |
+----------------+----------------------------+
| HT | Height |
+----------------+----------------------------+
| LA | Latitude |
+----------------+----------------------------+
| LN | Longitude |
+----------------+----------------------------+
| ME | Method |
+----------------+----------------------------+
| PN | Backsight point |
+----------------+----------------------------+
| RT | Rotation |
+----------------+----------------------------+
| SC | Scale |
+----------------+----------------------------+
| SD | Slope Distance |
+----------------+----------------------------+
| Va | Coefficient a |
+----------------+----------------------------+
| Vb | Coefficient b |
+----------------+----------------------------+
| Vc | Coefficient c |
+----------------+----------------------------+
| ZE | Zenith |
+----------------+----------------------------+
| ZO | Zone |
+----------------+----------------------------+
Definitions
-----------
General Raw Data
________________
Note Record
...........
Job Record
..........
:Record type: JB
:Field headers:
NM: Job name |br|
DT: Date |br|
TM: Time
:Sample(s):
::
“JB,NM%s,DT%s,TM%s”
Mode Setup Record
.................
The mode setup will be recorded at the beginning of the raw data file and whenever it is
changed.
:Record type: MO
:Field headers:
AD: Azimuth direction (ENUM) |br|
UN: Distance unit (ENUM) |br|
SF: Scale factor |br|
EC: Earth curvature (ENUM) |br|
EO: EDM offset (inch) (Default string “0.0”) |br|
AU: Angle unit (ENUM)
:Sample(s):
::
“MO,AD%s,UN%s,SF%s,EC%s,EO0.0,AU%s”
Conventional Raw Data
_____________________
Adjusted point record
.....................
:Record type: AP
:Field headers:
PN: Point name |br|
N : Adjusted northing |br|
E : Adjusted easting |br|
EL: Adjusted elevation |br|
``--``: Description
:Sample(s):
::
“AP,PN%s,N %s,E %s,EL%s,--%s”
Attributes
..........
:Record type: AT
:Field headers:
TN: Attribute name |br|
TV: Attribute value in string form
:Sample(s):
::
“AT,TN%s,TV%s”
Backsight Record
................
:Record type: BK
:Field headers:
OP: Occupy point |br|
BP: Back point |br|
BS: Backsight |br|
BC: Back circle
:Sample(s):
::
“BK,OP%s,BP%s,BS%s,BC%s”
Cut Sheet Record
................
:Record type: CF (cut or fill)
For an offset stakeout cut sheet.
:Field headers:
ST: Station |br|
OD: Offset direction (ENUM) |br|
OL: Offset length |br|
EL: Elevation |br|
GD: Grade (design)
:Sample(s):
::
“CF,ST%s,OD%s,OL%s,EL%s,GD%s”
For a point stakeout cut sheet.
:Field headers:
PN: Point number |br|
EL: Elevation |br|
GD: Grade
:Sample(s):
::
“CF,PN%s,EL%s,GD%s”
Note: From Survey Pro CE 3.5, the PN field and description field are removed from CF record for point stake out.
Design point / location record
..............................
:Record type: DE
:Field headers:
PN: Point name (design point, may be blank) |br|
N : Northing |br|
E : Easting |br|
EL: Elevation |br|
``--``: Description (design point description, may be blank)
:Sample(s):
::
“DE,PN%s,N %s,E %s,EL%s,--%s”
Define a Location Record
........................
:Record type: DL
:Field headers:
PN: Point name (POB) |br|
HD: Relative horizontal distance |br|
VD: Relative vertical distance |br|
AZ: Azimuth |br|
``--`` Description of the stored point.
:Sample(s):
::
“DL,PN%s,HD%s,VD%s,AZ%s,--%s”
Deleted point record
....................
:Record type: DP
:Field headers:
PN : Point name
:Sample(s):
::
“DP,PN%s”
Feature Code
............
:Record type: FC
:Field headers:
PN: Point name |br|
FN: Feature code name (may be blank)
:Sample(s):
::
“FC,PN%s,FN%s”
Line of Sight Record
....................
:Record type: LS
:Field headers:
HI: Height of instrument |br|
HR: Height of rod
:Sample(s):
::
“LS,HI%s,HR%s”
Multiple Distance
.................
:Record type: MD
:Field headers:
SD: Slope distance
:Sample(s):
::
“MD,SD %s:%s”
Occupy Point Record
...................
:Record type: OC
:Field headers:
OP: Point number |br|
N : Northing (the header is N space) |br|
E : Easting (the header is E space)
EL: Elevation
``--`` Description
:Sample(s):
::
“OC,OP%s,N %s,E %s,EL%s,--%s”
Offset delta record
...................
:Record type: OE
:Field headers:
ST: Station |br|
OE: Offset delta (actual offset – design offset)
:Sample(s):
::
“OE,ST%s,OE%s”
Off Center Shot Record
......................
:Record type: OF
:Field headers:
AR: Angle right |br|
ZE: Zenith |br|
SD: Slope distance |br|
OL: Offset length |br|
HD: Horizontal distance |br|
VD: Vertical distance |br|
LR: Left/Right Offset
:Sample(s):
::
“OF,AR%s,ZE%s,SD%s”
“OF,ZE%s,--Vert Angle Offset”
“OF,OL%s,--Right Angle Offset”
“OF,HD%s,--Horizontal Distance Offset”
“OF,LR%s,--Left / Right Offset”
“OF,VD%s,--Elevation Offset”
Repeat Backsight
................
:Record type: RB (repeat backsight)
:Field headers:
OP: Occupied point |br|
BP: Backsight point |br|
AR: Angle right |br|
ZE: Zenith angle |br|
SD: Slope distance |br|
HR: Height of rod at the backsight |br|
``--`` Description
:Sample(s):
::
“RB,OP%s,BP%s,AR%s,ZE%s,SD%s,HR%s,--%s”
Repeat Directional
..................
:Record type: RD
:Field headers:
BD: Backsight direct |br|
FD: Foresight direct |br|
ZD: Zenith direct |br|
FV: Foresight reverse |br|
ZV: Zenith reverse |br|
BV: Backsight reverse
:Sample(s):
::
“RD,FD %s:%s”
“RD,FV %s:%s”
“RD,BD %s:%s”
“RD,BV %s:%s”
“RD,ZD %s:%s”
“RD,ZV %s:%s”
The data before the colon (:) is the integer set number and the data after the colon is the angle measurement. See MO record for angle units.
Remote Elevation Record
.......................
:Record type: RE
:Field headers:
OP: Occupied point |br|
FE: Foresight elevation |br|
ZE: Zenith angle |br|
SD: Slope distance |br|
``--`` ( always “Remote elev”)
:Sample(s):
::
“RE,OP%s,FE%s,ZE%s,SD%s,--%s”
Repeat Foresight
................
:Record type: RF (repeat foresight)
:Field headers:
OP: Occupied point |br|
FP: Foresight point |br|
AR: Angle right |br|
ZE: Zenith angle |br|
SD: Slope distance |br|
HR: Height of rod at the foresight |br|
``--`` Description
:Sample(s):
::
“RF,OP%s,FP%s,AR%s,ZE%s,SD%s,HR%s,--%s”
Resection Record
................
:Record type: RS
:Field headers:
PN: Point number |br|
CR: Circular reading |br|
ZE: Zenith (or VA, CE) |br|
SD: Slope distance (or HD)
:Sample(s):
::
“RS,PN%s,CR%s,ZE%s,SD%s” // A resection with angles and distance
“RS,PN%s,CR%s” // A resection with angles only
Deltas record
.............
:Record type: SD
:Field headers:
ND: Delta northing |br|
ED: Delta easting |br|
LD: Delta elevation |br|
:Sample(s):
::
“SD,ND%s,ED%s,LD%s”
Stake Out Record
................
:Record type: SK
:Field headers:
OP: Occupy point |br|
FP: Foresight point |br|
AR: Angle right |br|
ZE: Zenith |br|
SD: Slope distance
:Sample(s):
::
“SK,OP%s,FP%s,AR%s,ZE%s,SD%s,--%s”
Note: FP field used to record design point name. Starting from SPCE3.5, it records the actual point name. It also may be blank if there is no actual point stored.
Slope Staking Record
....................
:Record type: SL
:Field headers:
ST: Station |br|
OD: Offset direction (ENUM) |br|
EL: Actual catch point elevation |br|
GD: Grade (design elevation of the catch point based on the slope line) |br|
AS: Ahead on station (positive when rod is beyond design station, negative when
before station) |br|
HH: Horizontal distance to hinge point (always positive) |br|
VH: Vertical distance to hinge point (positive when rod is above hinge) |br|
HC: Horizontal distance to center line (always positive) |br|
VC: Vertical distance to center point (positive when rod is above center point) |br|
CF: Slope used (ENUM) |br|
DS: Design slope |br|
OB: Observed slope
:Sample(s):
::
“SL,ST%s,OD%s,EL%s,GD%s,AS%s,HH%s,VH%s,HC%s,VC%s,CF%s,DS%s,OB%s”
Store Point Record
..................
:Record type: SP
:Field headers:
PN: Point number |br|
N: Northing |br|
E: Easting |br|
EL: Elevation |br|
``--`` Description
:Sample(s):
::
“SP,PN%s,N %s,E %s,EL%s,--%s”
Slope Staking Reference Offset Record
.....................................
:Record type: SR
:Field headers:
ST: Station |br|
OD: Offset direction (ENUM) |br|
EL: Actual elevation |br|
GD: Grade (design elevation, corresponds to the elevation
of the found catch point) |br|
AS: Ahead on station (positive when rod is beyond design station, negative when
before station) |br|
HH: Horizontal distance to hinge point (always positive). This distance includes the
reference offset. |br|
VH: Vertical distance to hinge point (positive when rod is above hinge) |br|
HC: Horizontal distance to center line (always positive). This distance includes the
reference offset. |br|
VC: Vertical distance to center point (positive when rod is above center point) |br|
CF: Slope used (ENUM) |br|
DS: Design slope |br|
OB: Observed slope at the catch point |br|
OL: Offset length from the catch point
:Sample(s):
::
“SR,ST%s,OD%s,EL%s,GD%s,AS%s,HH%s,VH%s,HC%s,VC%s,CF%s,DS%s,OB%s,OL%s”
Sun Shot Record
...............
:Record type: SU
For a sun shot setup
:Field headers:
GH: Greenwich hour angle (GHA 0) |br|
GH: Greenwich hour angle (GHA 24) |br|
DE: Declination (DECL 0) |br|
DE: Declination (DECL 24) |br|
SM: Semi-diameter of Sun (in DMS) |br|
DT: Local date (See General and Conventional Field List) |br|
TM: Local time (See General and Conventional Field List)
For the actual sun shot
:Field headers:
BD: Backsight direct |br|
FD: Foresight direct |br|
FV: Foresight reverse |br|
BV: Backsight reverse |br|
LA: Latitude |br|
LO: Longitude |br|
EG0: Left trailing edge sun position |br|
EG1: Right trailing edge sun position |br|
EG2: Center sun position
:Sample(s):
::
“SU,GH%s,GH%s,DE%s,DE%s,SM%s”
“SU,DT%02s%02s%04s”
“SU,LA%s,LO%s,EG%s”
“SU,TM%s”
“SU,%s%s%s” // Will write BD,BV or FD,FV with an angle measurement. See MO
record for angle units.
Traverse / Sideshot / Observation Record
........................................
:Record type: TR / SS / OB
:Field headers:
OP: Occupy point |br|
FP: Foresight point |br|
(one of the following) |br|
- AZ: Azimuth |br|
- AR: Angle right |br|
- AL: Angle left |br|
(one of the following pair) |br|
- ZE: Zenith |br|
- SD: Slope distance |br|
(or) |br|
- CE: Change elevation |br|
- HD: Horizontal distance |br|
``--`` Description
:Sample(s):
::
“TR,OP%s,FP%s,AR%s,ZE%s,SD%s,--%s”
“SS,OP%s,FP%s,AR%s,ZE%s,SD%s,--%s”
“OB,OP%s,FP%s,AR%s,ZE%s,SD%s,--%s”
GPS Raw Data Record Definitions
_______________________________
GPS Antenna Height
..................
:Record type: AH
:Field headers:
DC: Derivation Code (ENUM) |br|
MA: Measured antenna height |br|
ME: Measure Method (ENUM) |br|
RA: Reduced antenna height (to phase center)
:Sample(s):
::
“AH,DC%s,MA%s,ME%s,RA%s”
GPS Base Line
.............
:Record type: BL
:Field headers:
DC: Derivation |br|
PN: Point Name |br|
DX: Base line Delta X |br|
DY: Base line Delta Y |br|
DZ: Base line Delta Z |br|
``--``: Description (Feature Code) |br|
GM: GPS Measure Method (ENUM) |br|
CL: Classification |br|
HP: Horizontal Precision |br|
VP: Vertical Precision
:Sample(s):
::
“BL,DC%s,PN%s,DX%s,DY%s,DZ%s,--%s,GM%s,CL%s,HP%s,VP%s”
Set Base Receiver Position
..........................
:Record type: BP
:Field headers:
PN : Point Name |br|
LA: Latitude |br|
LN: Longitude |br|
HT: Ellipsoid Height |br|
SG: Setup Group (default = 0)
:Sample(s):
::
“BP,PN%s,LA%s,LN%s,HT%s,SG%s”
COGO Settings record
....................
:Record type: CG
:Field headers:
AO: Azimuth Orientation (ENUM) |br|
GO: Grid Orientation (ENUM)
:Sample(s):
::
“CG,AO%s,GO%s”
Coordinate System Identity
..........................
:Record type: CS
:Field headers:
CO: Coordinate system option (ENUM) |br|
ZG: Zone group (system) name |br|
ZN: Zone name |br|
DN: Datum name
:Sample(s):
::
“CS,CO%s,ZG%s,ZN%s,DN%s”
Calibration Point
.................
:Record type: CT
:Field headers:
PN: Point Name |br|
DM: Dimensions used (ENUM) |br|
RH: Horizontal residual |br|
RV: Vertical residual
:Sample(s):
::
“CT,PN%s,DM%s,RH%s,RV%s”
RMS Covariance of GPS Position
..............................
:Record type: CV
:Field headers:
DC: Derivation (ENUM) |br|
SV: Minimum number of SV during observation |br|
SC: Error Scale |br|
XX: Variance X |br|
XY: Covariance X,Y |br|
XZ: Covariance X,Z |br|
YY: Variance Y |br|
YZ: Covariance Y,Z |br|
ZZ: Variance Z
:Sample(s):
::
“CV,DC%s,SV%s,SC%s,XX%s,XY%s,XZ%s,YY%s,YZ%s,ZZ%s”
Datum Grid Record
.................
:Record type: DG
:Field headers:
FI: File name
:Sample(s):
::
“DG,FI%s”
Datum Record
............
:Record type: DT
:Field headers:
DA: Type of datum (ENUM) |br|
RD: Ellipsoid radius |br|
IF: Ellipse inverse flattening |br|
OX: Rotation x |br|
OY: Rotation y |br|
OZ: Rotation z |br|
LX: Translation x |br|
LY: Translation y |br|
LZ: Translation z |br|
SP: Scale factor in ppm
:Sample(s):
::
“DT,DA%s,RD%s,IF%s,OX%s,OY%s,OZ%s,LX%s,LY%s,LZ%s,SP%s”
GPS Edit Point Record
.....................
:Record type: EE
:Field headers:
GF: Geodetic Flags (ENUM) |br|
SG: Setup Group
:Sample(s):
::
“EE,GF%s,SG%s”
Geodetic position
.................
When a point is stored, its geodetic position is recorded.
:Record type: EP
:Field headers:
TM: Time |br|
LA: Latitude |br|
LN: Longitude |br|
HT: Ellipsoid Height |br|
RH: Horizontal RMS returned from receiver |br|
RV: Vertical RMS returned from receiver |br|
DH: HDOP if receiver returns this info |br|
DV: VDOP if receiver returns this info |br|
GM: GPS Method (ENUM) |br|
CL: Classification (ENUM)
:Sample(s):
::
“EP,TM%s:%s:%s,LA%s,LN%s,HT%s,RH%s,RV%s,DH%s,DV%s,GM%s,CL%s”
“EP,TM%s:%s:%s,LA%s,LN%s,HT%s,RH%s,RV%s,GM%s,CL%s”
Equipment Record
................
:Record type: EQ
:Field headers:
DC: Derivation Code (ENUM) |br|
RX: Rx Type |br|
RS: Rx Serial Number |br|
AN: Antenna Number (from Antenna.ini) |br|
AI: Antenna Index (measure to index from antenna.ini) |br|
AT: Antenna Type (name of antenna) |br|
TS: Antenna Serial Number |br|
TA: Tape Adjustment |br|
HO: Horizontal Offset |br|
VO: Vertical Offset
:Sample(s):
::
“EQ,DC%s,RX%s,RS%s,AN%s,AI%s,AT%s,TS%s,TA%s,HO%s,VO%s”
Ellipsoid Record
................
:Record type: ES
:Field headers:
RD : a - radius of semi major |br|
IF: 1/f - inverse flattening |br|
EM: Name - ellipse name |br|
:Sample(z:
::
“ES,RD%s,IF%s,EM%s”
GPS stakeout record
...................
:Record type: GK
:Field headers:
PN: Point name (actual point, may be blank) |br|
N : Northing |br|
E : Easting |br|
EL: Elevation |br|
``--`` Description (actual point description, may be blank)
:Sample(s):
::
“GK,PN%s,N %s,E %s,EL%s,--%s”
GPS Offset Shot Record
......................
:Record type: GO
:Field headers:
PN: Point Name |br|
AZ: Azimuth |br|
ZE: Zenith Angle |br|
SD: Slope Distance |br|
HI: Height of laser at GPS reference point |br|
HR: Height of laser target at store offset point |br|
``--`` Description
:Sample(s):
::
“GO,PN%s,AZ%s,ZE%s,SD%s,HI%s,HR%s,--%s”
GPS Point Record
................
:Record type: GP
:Field headers:
PN: Point Name |br|
PT: Point Type (ENUM)
:Sample(s):
::
“GP,PN%s,PT%s”
GPS adjusted point record
.........................
:Record type: GR
:Field headers:
N : Northing |br|
E : Easting |br|
EL: Elevation |br|
``--``: Description
:Sample(s):
::
“GR,PN%s,N %s,E %s,EL%s,--%s”
GPS Store Point
...............
The GS record is similar to the SP record, which records the coordinate of a point.
This record identifies the point is created by GPS.
:Record type: GS
:Field headers:
PN: Point Name |br|
N : Local Northing |br|
E : Local Easting |br|
EL: Local Elevation |br|
``--``: Description
:Sample(s):
::
“GS,PN%s,N%s,E%s,EL%s,--%s”
Horizontal Calibration (Adjust)
...............................
:Record type: HA
:Field headers:
N : Origin north |br|
E : Origin east |br|
TH: Translation north |br|
TE: Translation east |br|
RT: Rotation about origin |br|
SF: Scale factor at origin
:Sample(s):
::
“HA,N %s,E %s,TH%s,TE%s,RT%s,SC%s”
Note: all the fields may be blank if there is no adjustment done.
Extended Projection Record
..........................
:Record type: PE
:Field headers:
TP: Type of projection (ENUM) |br|
LA: Latitude of origin |br|
LN: Longitude of origin |br|
HT: Height of origin |br|
N : Origin north |br|
E : Origin east |br|
EL: Origin elevation |br|
SC: Scale factor |br|
OO: Orientation one |br|
OT: Orientation two |br|
CT: Origin center (ENUM) |br|
AF: Azimuth format (ENUM) |br|
RY: Rectify |br|
AE: Area (ENUM) |br|
FO: File name one |br|
FT: File name two
:Sample(s):
::
“PE,TP%s,LA%s,LN%s,HT%s,N %s,E %s,EL%s,SC%s,OO%s,OT%s, CT%s,AF%s,RY%s,AE%s,FO%s,FT%s”
Projection Record
.................
:Record type: PJ
:Field headers:
TP: Type of projection (ENUM) |br|
LA: Latitude of origin |br|
LN: Longitude of origin |br|
HT: Height of origin |br|
N : Origin north |br|
E : Origin east |br|
EL: Origin elevation |br|
SC: Scale factor |br|
OO: Orientation one |br|
OT: Orientation two
:Sample(s):
::
“PJ,TP%s,LA%s,LN%s,HT%s,N %s,E %s,EL%s,SC%s,OO%s,OT%s”
Local coordinates of calibration point
......................................
:Record type: RP
:Field headers:
N : Northing |br|
E : Easting |br|
EL: Elevation |br|
``--``: Description
:Sample(s):
::
“RP,PN%s,N %s,E %s,EL%s,--%s”
Receiver Setup
..............
:Record type: RX
:Field headers:
DC: Derivation Code (ENUM) |br|
RA: Reduced antenna height (to phase centre) |br|
RE: Recording interval in seconds |br|
FI: Name of post processing file opened
:Sample(s):
::
“RX,DC%s,RA%s,RE%s,FI%s”
Local site settings
...................
:Record type: ST
:Field headers:
LA: Latitude |br|
LN: Longitude |br|
HT: Height |br|
SC: Scale factor |br|
N : Northing offset |br|
E : Easting offset
:Sample(s):
::
“ST,LA%s,LN%s,HT%s,SC%s,N %s,E %s”
Vertical Calibration (Adjust)
.............................
:Record type: VA
:Field headers:
PV: Type of vertical adjustment (ENUM) |br|
N : Origin north (may be blank) |br|
E : Origin east (may be blank) |br|
LZ: Constant adjustment – translation Z (may be blank) |br|
SO: Slope north (may be blank) |br|
SA: Slope east (may be blank) |br|
GN: Geoid Model Name
:Sample(s):
::
“VA,PV%s,N %s,E %s,LZ%s,SO%s,SA%s,GN%s”
Legacy Raw Data Record Definitions
___________________________________
These records are not used in Survey Pro version 3.5 and beyond.
Accumulating Angle-right
........................
:Record type: AA
:Field headers:
BC: Back circle |br|
AR: Angle right |br|
ZE: Zenith |br|
SD: Slope distance
:Sample(s):
::
“AA,BC%s,AR%s,ZE%s,SD%s”
Bench level, backsight
......................
:Record type: BB
:Field headers:
PN: Backsight point |br|
EL: BS elevation |br|
ZE: Zenith |br|
SD: Slope distance |br|
``--``: Description
:Sample(s):
::
“BB,PN%s,EL%s,ZE%s,SD%s,--%s”
Base Point Geoid Model Elevation
................................
Replaced by Vertical adjustment record VA.
:Record type: BG
:Field headers:
PN: Point Name |br|
HT: Ellipsoid Height |br|
GU: Geoid Undulation at base |br|
EL: Elevation of base
:Sample(s):
::
“BG,PN%s,HT%s,GU%s,EL%s”
Bench level, side shots
.......................
:Record type: BS
:Field headers:
PN: FS point |br|
ZE: Zenith |br|
SD: Slope distance |br|
``--``: Description
:Sample(s):
::
“BS,PN%s,ZE%s,SD%s,--%s”
Bench level, traverse
.....................
:Record type: BT
:Field headers:
PN: FS point |br|
ZE: Zenith |br|
SD: Slope distance |br|
``--``: Description
:Sample(s):
::
“BT,PN%s,ZE%s,SD%s,--%s”
Horizontal Control Point
........................
When solving local transformation, each control point’s lat, long and height will be
recorded.
:Record type: HC
:Field headers:
PN: Point Name |br|
LA: Latitude |br|
LN: Longitude |br|
HT: Ellipsoid Height |br|
``--``: Description
:Sample(s):
::
“HC,PN%s,LA%s,LN%s,HT%s,--%s”
Vertical Ellipsoid Height Setup
...............................
Replaced by the vertical adjust record VA.
:Record type: LE
:Field headers:
``--``: Description string
:Sample(s):
::
“LE,--%s”
Vertical Geoid Model Setup
..........................
Replaced by the vertical adjust record VA.
:Record type: LG
:Field headers:
GI: Geoid model index
:Sample(s):
::
“LG,GI%s”
Horizontal Mapping Plane Setup
..............................
Replaced by the projection records (ES,PJ,DT,CS).
:Record type: LM
:Field headers:
ME: Method |br|
CS: Coordinate System |br|
DA: Datum |br|
ZO: Zone |br|
HE: Hemisphere |br|
FI: Custom file name (cs5 or pj5)
:Sample(s):
::
“LM,ME%s,CS%s,DA%s,ZO%s,HE%s,FI%s”
Local transforming coefficients for horizontal
..............................................
Replaced by Horizontal adjustment record HA.
:Record type: LH
:Field headers:
PN: Point Name |br|
Ha: Coefficient a |br|
Hb: Coefficient b |br|
Hc: Coefficient c |br|
Hd : Coefficient d |br|
SC: Scale |br|
RT: Rotation
:Sample(s):
::
“LH,PN%s,Ha%s,Hb%s,Hc%s,Hd%s,SC%s,RT%s”
Local transforming coefficients for vertical
............................................
Replaced by Vertical adjustment record VA.
:Record type: LV
:Field headers:
PN: Point Name |br|
Va: Coefficient a |br|
Vb: Coefficient b |br|
Vc: Coefficient c |br|
Ba: Base Latitude |br|
Bo: Base Longitude |br|
Bh: Base Ellipsoid Height
:Sample(s):
::
“LV,PN%s,Va%s,Vb%s,Vc%s,Ba%s,Bo%s,Bh%s”
Vertical Control point
......................
When solving local transformation, each control point’s lat, long and height will be
recorded.
:Record type: VC
:Field headers:
PN: Control point number |br|
LA: Latitude of control point |br|
LN: Longitude of control point |br|
HT: Ellipsoid height of control point |br|
``--``: Description
:Sample(s):
::
“VC,PN%s,LA%s,LN%s,HT%s,--%s”
|