Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
FloeNavi Toolbox
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
FloeNavi - Coordinate Reference System
FloeNavi Toolbox
Commits
1b38b5d0
Commit
1b38b5d0
authored
4 years ago
by
Stefan Hendricks
Browse files
Options
Downloads
Patches
Plain Diff
Save basestation distance error for grid solution
parent
516518d1
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
floenavi/__init__.py
+6
-0
6 additions, 0 deletions
floenavi/__init__.py
with
6 additions
and
0 deletions
floenavi/__init__.py
+
6
−
0
View file @
1b38b5d0
...
...
@@ -948,6 +948,8 @@ class FloeNaviGridSolution(object):
self
.
origin_latitude
=
None
self
.
origin_uncertainty_m
=
None
self
.
axes_heading
=
None
self
.
bs_measured_distance
=
None
self
.
bs_measured_distance_offset
=
None
# Compute origin and heading
self
.
_compute
()
...
...
@@ -985,6 +987,10 @@ class FloeNaviGridSolution(object):
msg
=
"
High discrepancy between observed and specified base station distance: %.1f m
"
logger
.
warning
(
msg
%
average_distance_deviation
)
# Save as property
self
.
bs_measured_distance
=
bs_true_distance
self
.
bs_measured_distance_offset
=
bs_true_distance
-
bs_grid_distance
# Compute the geographical azimuth between the two base stations
self
.
azimuth_stations_geo
=
self
.
angle_between_points
(
self
.
bs1
.
geo
.
xc
,
self
.
bs1
.
geo
.
yc
,
self
.
bs2
.
geo
.
xc
,
self
.
bs2
.
geo
.
yc
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment