├── .github ├── FUNDING.yml └── workflows │ ├── debian.yml │ ├── python-publish_to_pypi.yml │ └── python-test_and_lint.yml ├── .gitignore ├── .readthedocs.yml ├── CHANGELOG.md ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── debian ├── aiscot.conf ├── aiscot.postinst ├── aiscot.service └── install_pkg_build_deps.sh ├── docs ├── changelog.md ├── configuration.md ├── conop.md ├── examples.md ├── index.md ├── installation.md ├── media │ ├── 20180607_094641.jpg │ ├── Screen Shot 2021-03-29 at 11.08.52 AM.png │ ├── aiscot_agg.png │ ├── aiscot_home.png │ ├── aiscot_ota.png │ ├── aiscot_screenshot.png │ ├── aiscot_screenshot_tak_logo.png │ ├── atak_screenshot_with_pytak_logo-x25.png │ ├── atak_screenshot_with_pytak_logo.jpg │ ├── screenshot-1601068836.png │ ├── screenshot-1601068866.png │ ├── screenshot-1601068897.png │ ├── screenshot-1601068921-25.png │ ├── screenshot-1601068921.png │ └── screenshot_1676076870_2962.png ├── requirements.md ├── requirements.txt ├── troubleshooting.md └── usage.md ├── example-config.ini ├── example-known_craft.csv ├── mkdocs.yml ├── requirements.txt ├── requirements_test.txt ├── setup.cfg ├── setup.py ├── src ├── aiscot │ ├── VERSION │ ├── __init__.py │ ├── ais_functions.py │ ├── classes.py │ ├── commands.py │ ├── constants.py │ ├── data │ │ ├── MaritimeIdentificationDigits-bb62983a-cf0e-40a1-9431-cd54eaeb1c85.csv │ │ ├── yadd_mmsi_coast_2021-11-03-163012.txt │ │ └── yadd_mmsi_ship_2023-02-11-001541.txt │ ├── functions.py │ └── pyAISm.py └── conftest.py ├── stdeb.cfg └── tests ├── data └── test_known_craft.csv ├── test_ais_functions.py └── test_functions.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aiscot/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/debian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aiscot/HEAD/.github/workflows/debian.yml -------------------------------------------------------------------------------- /.github/workflows/python-publish_to_pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aiscot/HEAD/.github/workflows/python-publish_to_pypi.yml -------------------------------------------------------------------------------- /.github/workflows/python-test_and_lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aiscot/HEAD/.github/workflows/python-test_and_lint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aiscot/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aiscot/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aiscot/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aiscot/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aiscot/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aiscot/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aiscot/HEAD/README.md -------------------------------------------------------------------------------- /debian/aiscot.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aiscot/HEAD/debian/aiscot.conf -------------------------------------------------------------------------------- /debian/aiscot.postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aiscot/HEAD/debian/aiscot.postinst -------------------------------------------------------------------------------- /debian/aiscot.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aiscot/HEAD/debian/aiscot.service -------------------------------------------------------------------------------- /debian/install_pkg_build_deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aiscot/HEAD/debian/install_pkg_build_deps.sh -------------------------------------------------------------------------------- /docs/changelog.md: -------------------------------------------------------------------------------- 1 | {!CHANGELOG.md!} 2 | -------------------------------------------------------------------------------- /docs/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aiscot/HEAD/docs/configuration.md -------------------------------------------------------------------------------- /docs/conop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aiscot/HEAD/docs/conop.md -------------------------------------------------------------------------------- /docs/examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aiscot/HEAD/docs/examples.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- 1 | {!README.md!} 2 | -------------------------------------------------------------------------------- /docs/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aiscot/HEAD/docs/installation.md -------------------------------------------------------------------------------- /docs/media/20180607_094641.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aiscot/HEAD/docs/media/20180607_094641.jpg -------------------------------------------------------------------------------- /docs/media/Screen Shot 2021-03-29 at 11.08.52 AM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aiscot/HEAD/docs/media/Screen Shot 2021-03-29 at 11.08.52 AM.png -------------------------------------------------------------------------------- /docs/media/aiscot_agg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aiscot/HEAD/docs/media/aiscot_agg.png -------------------------------------------------------------------------------- /docs/media/aiscot_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aiscot/HEAD/docs/media/aiscot_home.png -------------------------------------------------------------------------------- /docs/media/aiscot_ota.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aiscot/HEAD/docs/media/aiscot_ota.png -------------------------------------------------------------------------------- /docs/media/aiscot_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aiscot/HEAD/docs/media/aiscot_screenshot.png -------------------------------------------------------------------------------- /docs/media/aiscot_screenshot_tak_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aiscot/HEAD/docs/media/aiscot_screenshot_tak_logo.png -------------------------------------------------------------------------------- /docs/media/atak_screenshot_with_pytak_logo-x25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aiscot/HEAD/docs/media/atak_screenshot_with_pytak_logo-x25.png -------------------------------------------------------------------------------- /docs/media/atak_screenshot_with_pytak_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aiscot/HEAD/docs/media/atak_screenshot_with_pytak_logo.jpg -------------------------------------------------------------------------------- /docs/media/screenshot-1601068836.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aiscot/HEAD/docs/media/screenshot-1601068836.png -------------------------------------------------------------------------------- /docs/media/screenshot-1601068866.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aiscot/HEAD/docs/media/screenshot-1601068866.png -------------------------------------------------------------------------------- /docs/media/screenshot-1601068897.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aiscot/HEAD/docs/media/screenshot-1601068897.png -------------------------------------------------------------------------------- /docs/media/screenshot-1601068921-25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aiscot/HEAD/docs/media/screenshot-1601068921-25.png -------------------------------------------------------------------------------- /docs/media/screenshot-1601068921.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aiscot/HEAD/docs/media/screenshot-1601068921.png -------------------------------------------------------------------------------- /docs/media/screenshot_1676076870_2962.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aiscot/HEAD/docs/media/screenshot_1676076870_2962.png -------------------------------------------------------------------------------- /docs/requirements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aiscot/HEAD/docs/requirements.md -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aiscot/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aiscot/HEAD/docs/troubleshooting.md -------------------------------------------------------------------------------- /docs/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aiscot/HEAD/docs/usage.md -------------------------------------------------------------------------------- /example-config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aiscot/HEAD/example-config.ini -------------------------------------------------------------------------------- /example-known_craft.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aiscot/HEAD/example-known_craft.csv -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aiscot/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aiscot/HEAD/requirements.txt -------------------------------------------------------------------------------- /requirements_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aiscot/HEAD/requirements_test.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aiscot/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aiscot/HEAD/setup.py -------------------------------------------------------------------------------- /src/aiscot/VERSION: -------------------------------------------------------------------------------- 1 | 7.0.10 2 | -------------------------------------------------------------------------------- /src/aiscot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aiscot/HEAD/src/aiscot/__init__.py -------------------------------------------------------------------------------- /src/aiscot/ais_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aiscot/HEAD/src/aiscot/ais_functions.py -------------------------------------------------------------------------------- /src/aiscot/classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aiscot/HEAD/src/aiscot/classes.py -------------------------------------------------------------------------------- /src/aiscot/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aiscot/HEAD/src/aiscot/commands.py -------------------------------------------------------------------------------- /src/aiscot/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aiscot/HEAD/src/aiscot/constants.py -------------------------------------------------------------------------------- /src/aiscot/data/MaritimeIdentificationDigits-bb62983a-cf0e-40a1-9431-cd54eaeb1c85.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aiscot/HEAD/src/aiscot/data/MaritimeIdentificationDigits-bb62983a-cf0e-40a1-9431-cd54eaeb1c85.csv -------------------------------------------------------------------------------- /src/aiscot/data/yadd_mmsi_coast_2021-11-03-163012.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aiscot/HEAD/src/aiscot/data/yadd_mmsi_coast_2021-11-03-163012.txt -------------------------------------------------------------------------------- /src/aiscot/data/yadd_mmsi_ship_2023-02-11-001541.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aiscot/HEAD/src/aiscot/data/yadd_mmsi_ship_2023-02-11-001541.txt -------------------------------------------------------------------------------- /src/aiscot/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aiscot/HEAD/src/aiscot/functions.py -------------------------------------------------------------------------------- /src/aiscot/pyAISm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aiscot/HEAD/src/aiscot/pyAISm.py -------------------------------------------------------------------------------- /src/conftest.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /stdeb.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aiscot/HEAD/stdeb.cfg -------------------------------------------------------------------------------- /tests/data/test_known_craft.csv: -------------------------------------------------------------------------------- 1 | MMSI,NAME,COT,STALE 2 | 366892000,TACO_01,a-f-S-T-A-C-O, 3 | 4 | -------------------------------------------------------------------------------- /tests/test_ais_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aiscot/HEAD/tests/test_ais_functions.py -------------------------------------------------------------------------------- /tests/test_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snstac/aiscot/HEAD/tests/test_functions.py --------------------------------------------------------------------------------