This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from pymavlink import mavextra | |
| import math | |
| import numpy as np | |
| import typing as typ | |
| # a threshold that indicates that latitude between the two image centers | |
| # is significantly different | |
| LATITUDE_CHANGE_THRESHOLD = 1e-4 | |
| # for the reference geoid used by OpenStreetMap |
OlderNewer