Parser Module Documentation
This module provides parser for MB-System data files.
Functions:
| Name | Description |
|---|---|
mbs_read_fnv |
Read MB-System fnv files and return a nav_structtype object. |
mbs_read_fnv(files, processed_files=True)
Read MB-System fnv files and return a nav_structtype object.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
files
|
str or list of str
|
Path to the fnv files. If a string is passed, it is converted to a list. |
required |
processed_files
|
bool
|
If True, the function looks for processed files with suffix "p.mb89.fnv" or "p.fnv". If False, it looks for raw files with suffix ".mb89.fnv" or ".fnv". Default is True. |
True
|
Returns:
| Name | Type | Description |
|---|---|---|
fnv_nav |
nav_structtype
|
A nav_structtype object containing the navigation data. |
Raises:
| Type | Description |
|---|---|
TypeError
|
If files is not a string or a list of strings. |
FileNotFoundError
|
If any of the files do not exist. |
ValueError
|
If no files are found with the specified suffix. |
Source code in navlib/mbsystem/parsers.py
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 | |