Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change simple summation to a root sum of squares for vx_error and vy_error in composites #31

Open
mliukis opened this issue Jun 27, 2024 · 0 comments
Labels
version 3 Tasks for v3 of ITS_LIVE

Comments

@mliukis
Copy link
Collaborator

mliukis commented Jun 27, 2024

Consider a change for v3:
a code is written as a simple summation of errors. It might be better to add it as a root sum of squares: sqrt(v[xy]_error2 + error2).

# Note: a code is written as a simple summation of errors. It might be better to add it
# as a root sum of squares: sqrt(v[xy]_error**2 + error**2). Something to consider for v3.
for value, error in ITSLiveComposite.CO_REGISTRATION_ERROR.items():
mask = (stable_shift_values == value)
self.vx_error[mask] += error
self.vy_error[mask] += error

@mliukis mliukis added the version 3 Tasks for v3 of ITS_LIVE label Jun 27, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
version 3 Tasks for v3 of ITS_LIVE
Projects
None yet
Development

No branches or pull requests

1 participant