lincot


Namelincot JSON
Version 1.0.3 PyPI version JSON
download
home_pagehttps://github.com/snstac/lincot
SummaryLINCOT: Linux GPS to TAK Gateway.
upload_time2023-08-01 21:20:11
maintainerGreg Albrecht <oss@undef.net>
docs_urlNone
author
requires_python<4,>=3.6
licenseApache 2.0
keywords cursor on target cot atak tak wintak tak tak server
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            LINCOT - Linux GPS to TAK Gateway
*********************************


Installation
============

**LINCOT requires Python 3.6 or above.**

LINCOT functionality is provided by a command-line tool called ``lincot``, which can be 
installed several ways.

Installing as a Debian/Ubuntu Package [Use Me!]::

    $ wget https://github.com/ampledata/pytak/releases/latest/download/python3-pytak_latest_all.deb
    $ sudo apt install -f ./python3-pytak_latest_all.deb
    $ wget https://github.com/ampledata/lincot/releases/latest/download/python3-lincot_latest_all.deb
    $ sudo apt install -f ./python3-lincot_latest_all.deb

Install from the Python Package Index [Alternative]::

    $ python3 -m pip install -U pytak
    $ python3 -m pip install -U lincot

Install from this source tree [Developer]::

    $ git clone https://github.com/ampledata/lincot.git
    $ cd lincot/
    $ python3 -m pip install .


Usage
=====

LINCOT can be configured with a INI-style configuration file, or using 
environmental variables.

Command-line options::

    usage: lincot [-h] [-c CONFIG_FILE] [-p PREF_PACKAGE]

    optional arguments:
    -h, --help            show this help message and exit
    -c CONFIG_FILE, --CONFIG_FILE CONFIG_FILE
                            Optional configuration file. Default: config.ini
    -p PREF_PACKAGE, --PREF_PACKAGE PREF_PACKAGE
                            Optional connection preferences package zip file (aka Data Package).

Configuration options:
    ``COT_URL`` : str,  default: udp://239.2.3.1:6969
        URL to CoT destination. Must be a URL, e.g. ``tcp://1.2.3.4:1234`` or ``tls://...:1234``, etc. See `PyTAK <https://github.com/ampledata/pytak#configuration-parameters>`_ for options, including TLS support.
    ``COT_STALE`` : int, default: 3600
        CoT Stale period ("timeout"), in seconds. Default `3600` seconds (1 hour).
    ``COT_TYPE`` : str, default: a-u-S-X-M
        Override COT Event Type ("marker type").

See example-config.ini in the source tree for example configuration.


# python3 -c "import uuid;nn=str(uuid.getnode());print(nn[len(nn)-4:len(nn)])"

Source
======
Github: https://github.com/snstac/lincot


License & Copyright
===================

Copyright 2023 Sensors & Signals LLC

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/snstac/lincot",
    "name": "lincot",
    "maintainer": "Greg Albrecht <oss@undef.net>",
    "docs_url": null,
    "requires_python": "<4,>=3.6",
    "maintainer_email": "oss@undef.net",
    "keywords": "Cursor on Target,CoT,ATAK,TAK,WinTAK,TAK,TAK Server",
    "author": "",
    "author_email": "",
    "download_url": "https://files.pythonhosted.org/packages/77/40/08dbdaff29a4e9bf19464f60fd4c68f4afd4c28f4710d9b497663a4a9d3b/lincot-1.0.3.tar.gz",
    "platform": null,
    "description": "LINCOT - Linux GPS to TAK Gateway\n*********************************\n\n\nInstallation\n============\n\n**LINCOT requires Python 3.6 or above.**\n\nLINCOT functionality is provided by a command-line tool called ``lincot``, which can be \ninstalled several ways.\n\nInstalling as a Debian/Ubuntu Package [Use Me!]::\n\n    $ wget https://github.com/ampledata/pytak/releases/latest/download/python3-pytak_latest_all.deb\n    $ sudo apt install -f ./python3-pytak_latest_all.deb\n    $ wget https://github.com/ampledata/lincot/releases/latest/download/python3-lincot_latest_all.deb\n    $ sudo apt install -f ./python3-lincot_latest_all.deb\n\nInstall from the Python Package Index [Alternative]::\n\n    $ python3 -m pip install -U pytak\n    $ python3 -m pip install -U lincot\n\nInstall from this source tree [Developer]::\n\n    $ git clone https://github.com/ampledata/lincot.git\n    $ cd lincot/\n    $ python3 -m pip install .\n\n\nUsage\n=====\n\nLINCOT can be configured with a INI-style configuration file, or using \nenvironmental variables.\n\nCommand-line options::\n\n    usage: lincot [-h] [-c CONFIG_FILE] [-p PREF_PACKAGE]\n\n    optional arguments:\n    -h, --help            show this help message and exit\n    -c CONFIG_FILE, --CONFIG_FILE CONFIG_FILE\n                            Optional configuration file. Default: config.ini\n    -p PREF_PACKAGE, --PREF_PACKAGE PREF_PACKAGE\n                            Optional connection preferences package zip file (aka Data Package).\n\nConfiguration options:\n    ``COT_URL`` : str,  default: udp://239.2.3.1:6969\n        URL to CoT destination. Must be a URL, e.g. ``tcp://1.2.3.4:1234`` or ``tls://...:1234``, etc. See `PyTAK <https://github.com/ampledata/pytak#configuration-parameters>`_ for options, including TLS support.\n    ``COT_STALE`` : int, default: 3600\n        CoT Stale period (\"timeout\"), in seconds. Default `3600` seconds (1 hour).\n    ``COT_TYPE`` : str, default: a-u-S-X-M\n        Override COT Event Type (\"marker type\").\n\nSee example-config.ini in the source tree for example configuration.\n\n\n# python3 -c \"import uuid;nn=str(uuid.getnode());print(nn[len(nn)-4:len(nn)])\"\n\nSource\n======\nGithub: https://github.com/snstac/lincot\n\n\nLicense & Copyright\n===================\n\nCopyright 2023 Sensors & Signals LLC\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n",
    "bugtrack_url": null,
    "license": "Apache 2.0",
    "summary": "LINCOT: Linux GPS to TAK Gateway.",
    "version": "1.0.3",
    "project_urls": {
        "CI: GitHub Actions": "https://github.com/snstac/lincot/actions",
        "GitHub: issues": "https://github.com/snstac/lincot/issues",
        "GitHub: repo": "https://github.com/snstac/lincot",
        "Homepage": "https://github.com/snstac/lincot"
    },
    "split_keywords": [
        "cursor on target",
        "cot",
        "atak",
        "tak",
        "wintak",
        "tak",
        "tak server"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f7dde11df605748647c26b5653e90493e3808540c9ee328d82fd35276d498f32",
                "md5": "49932960a5f9c85f82fe4bf4fdaf25d2",
                "sha256": "4066ca987b9f7fb79488ee8e07f6436189f4df6cbeb2d9b8c36966ac737e73cd"
            },
            "downloads": -1,
            "filename": "lincot-1.0.3-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "49932960a5f9c85f82fe4bf4fdaf25d2",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<4,>=3.6",
            "size": 9039,
            "upload_time": "2023-08-01T21:20:10",
            "upload_time_iso_8601": "2023-08-01T21:20:10.160891Z",
            "url": "https://files.pythonhosted.org/packages/f7/dd/e11df605748647c26b5653e90493e3808540c9ee328d82fd35276d498f32/lincot-1.0.3-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "774008dbdaff29a4e9bf19464f60fd4c68f4afd4c28f4710d9b497663a4a9d3b",
                "md5": "32dbd64db481c57904bd8ac2a78b0997",
                "sha256": "49b434675342274b558a7a49d9e7ab59017324b353e83d15ec1a4a648eda2614"
            },
            "downloads": -1,
            "filename": "lincot-1.0.3.tar.gz",
            "has_sig": false,
            "md5_digest": "32dbd64db481c57904bd8ac2a78b0997",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<4,>=3.6",
            "size": 5830,
            "upload_time": "2023-08-01T21:20:11",
            "upload_time_iso_8601": "2023-08-01T21:20:11.703637Z",
            "url": "https://files.pythonhosted.org/packages/77/40/08dbdaff29a4e9bf19464f60fd4c68f4afd4c28f4710d9b497663a4a9d3b/lincot-1.0.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-08-01 21:20:11",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "snstac",
    "github_project": "lincot",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "lincot"
}
        
Elapsed time: 0.10259s