File: output_formats.rst

package info (click to toggle)
totalopenstation 0.5.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,784 kB
  • sloc: python: 4,123; makefile: 84; xml: 50
file content (35 lines) | stat: -rw-r--r-- 866 bytes parent folder | download | duplicates (3)
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
==============
Output Formats
==============

There is not yet a main module with a parent class for output formats.

By the way, the main class is :class:`output.Builder`.

Each output format module has a child class named *OutputFormat(Builder)*.

Classe
======

.. automodule:: output
   :members: Builder
   :member-order: bysource
   :undoc-members:
   :show-inheritance:


Constants
=========

.. data:: BUILTIN_OUTPUT_FORMATS

    Dictionnary that holds all output formats available in Total Open Station.

    { |br|
    'dxf': ('tops_dxf', 'OutputFormat', 'DXF'), |br|
    'csv': ('tops_csv', 'OutputFormat', 'CSV'), |br|
    'sql': ('tops_sql', 'OutputFormat', 'OGC-SQL'), |br|
    'dat': ('tops_dat', 'OutputFormat', 'DAT'), |br|
    'txt': ('tops_txt', 'OutputFormat', 'Text'), |br|
    'geojson': ('tops_geojson', 'OutputFormat', 'GeoJSON'), |br|
    }