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
|
.. _input_formats:
=============
Input formats
=============
Total Open Station supports a number of input data formats, which
are implemented separately from the device handling machinery
(i.e. downloading data from your total station, see :ref:`models`).
This is because one device can output more than one format, and at
the same time the same format can be used by more than one device
(particularly this is the case for different models by the same manufacturer).
Generally speaking, data formats can be classified into two large
groups:
1. “raw” field data with polar coordinates
2. processed data, with XY(Z) cartesian coordinates
The latter are far more easy to process, because they don't require
any computing of measurements.
XYZ formats
===========
These formats were the first kind of survey data format supported by
Total Open Station.
Cartesian coordinates just need to be extracted from ASCII data.
.. _implemented_if:
Implemented formats
===================
Formats known are :
.. toctree::
:maxdepth: 1
:glob:
if_*
Other formats
=============
The following is an other known format but not implemented.
.. toctree::
:maxdepth: 1
:glob:
tds
Unknown formats
===============
Unimplemented :term:`formats <input format>` can be added to
Total Open Station.
The best way to have your format included in the next version of
Total Open Station is to fill a support request in the `bug tracker`_ and attach
some sample data dumps obtained following :ref:`getting_sample_data`.
If you can write Python code, you can also write a module by yourself using
an existing one as a guide and the :ref:`new` directive.
If you write a module, we will be happy to receive it and include it in the
Total Open Station source tree.
.. seealso::
The :ref:`contributing` page to find out how to join the project and
participate actively to the development.
|