Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nextml-code/kmm
https://github.com/nextml-code/kmm
Last synced: 1 day ago
JSON representation
- Host: GitHub
- URL: https://github.com/nextml-code/kmm
- Owner: nextml-code
- License: apache-2.0
- Created: 2021-09-06T18:58:03.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2024-10-17T08:33:10.000Z (3 months ago)
- Last Synced: 2024-10-19T11:30:49.363Z (3 months ago)
- Language: Python
- Size: 9.38 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
==========
kmm reader
==========Minimalistic library for reading files in the kmm/kmm2 file format.
Usage
=====.. code-block:: python
from pathlib import Path
import kmmkmm_path = Path("...")
header_path = Path("...")header = kmm.Header.from_path(header_path)
positions = (
kmm.Positions.from_path(kmm_path)
.sync_frame_index(header)
.geodetic()
)# or, equivalently
positions = kmm.Positions.read_sync_adjust(kmm_path, header_path)