├── .gitattributes ├── Config.py ├── Datasheet for SAR annotations of AIS data.docx ├── Examples.ipynb ├── LICENSE ├── README.md ├── __pycache__ └── Config.cpython-39.pyc ├── plots ├── Bornholm.png ├── Sjælland.png ├── areaBornholm.png └── areaSjælland.png └── utils ├── __pycache__ ├── dataset_utils.cpython-39.pyc └── utils.cpython-39.pyc ├── dataset_utils.py └── utils.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristofferOlesen/Datasets-of-AIS-Trajectories-from-Danish-Waters/HEAD/.gitattributes -------------------------------------------------------------------------------- /Config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristofferOlesen/Datasets-of-AIS-Trajectories-from-Danish-Waters/HEAD/Config.py -------------------------------------------------------------------------------- /Datasheet for SAR annotations of AIS data.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristofferOlesen/Datasets-of-AIS-Trajectories-from-Danish-Waters/HEAD/Datasheet for SAR annotations of AIS data.docx -------------------------------------------------------------------------------- /Examples.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristofferOlesen/Datasets-of-AIS-Trajectories-from-Danish-Waters/HEAD/Examples.ipynb -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristofferOlesen/Datasets-of-AIS-Trajectories-from-Danish-Waters/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristofferOlesen/Datasets-of-AIS-Trajectories-from-Danish-Waters/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/Config.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristofferOlesen/Datasets-of-AIS-Trajectories-from-Danish-Waters/HEAD/__pycache__/Config.cpython-39.pyc -------------------------------------------------------------------------------- /plots/Bornholm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristofferOlesen/Datasets-of-AIS-Trajectories-from-Danish-Waters/HEAD/plots/Bornholm.png -------------------------------------------------------------------------------- /plots/Sjælland.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristofferOlesen/Datasets-of-AIS-Trajectories-from-Danish-Waters/HEAD/plots/Sjælland.png -------------------------------------------------------------------------------- /plots/areaBornholm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristofferOlesen/Datasets-of-AIS-Trajectories-from-Danish-Waters/HEAD/plots/areaBornholm.png -------------------------------------------------------------------------------- /plots/areaSjælland.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristofferOlesen/Datasets-of-AIS-Trajectories-from-Danish-Waters/HEAD/plots/areaSjælland.png -------------------------------------------------------------------------------- /utils/__pycache__/dataset_utils.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristofferOlesen/Datasets-of-AIS-Trajectories-from-Danish-Waters/HEAD/utils/__pycache__/dataset_utils.cpython-39.pyc -------------------------------------------------------------------------------- /utils/__pycache__/utils.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristofferOlesen/Datasets-of-AIS-Trajectories-from-Danish-Waters/HEAD/utils/__pycache__/utils.cpython-39.pyc -------------------------------------------------------------------------------- /utils/dataset_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristofferOlesen/Datasets-of-AIS-Trajectories-from-Danish-Waters/HEAD/utils/dataset_utils.py -------------------------------------------------------------------------------- /utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristofferOlesen/Datasets-of-AIS-Trajectories-from-Danish-Waters/HEAD/utils/utils.py --------------------------------------------------------------------------------