-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- add function documentation for signalNoiseRation - improve load_and_tidy_up_GPS function documentation - update changelog
- Loading branch information
1 parent
b823a0c
commit d0c4d6d
Showing
4 changed files
with
39 additions
and
2 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
\name{signalNoiseRatio} | ||
\alias{signalNoiseRatio} | ||
\title{ | ||
Derive signal to noise ratios | ||
} | ||
\description{ | ||
Derive signal to noise ratios from GPS data | ||
} | ||
\usage{ | ||
signalNoiseRatio(df) | ||
} | ||
\arguments{ | ||
\item{df}{ | ||
Data,frane as genated by \link{load_and_tidy_up_GPS} | ||
} | ||
} | ||
\value{ | ||
List with a data.frame df that holds the GPS time series, | ||
Boolean snr_available and snr_ratio_available to indicate whether | ||
the two signal to noise ratios are available. | ||
} |