-
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.
Merge pull request #22 from Metropolitan-Council/dev
Styling, documentation, essential updates (v0.2.4)
- Loading branch information
Showing
34 changed files
with
654 additions
and
504 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
^renv$ | ||
^renv\.lock$ | ||
^.*\.Rproj$ | ||
^\.Rproj\.user$ | ||
^LICENSE\.md$ | ||
|
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 |
---|---|---|
@@ -1,40 +1,41 @@ | ||
Type: Package | ||
Package: tc.sensors | ||
Title: Retrieve Loop Detector Data from the MnDOT JSON Feed | ||
Version: 0.2.3 | ||
Date: 2023-07-21 | ||
Version: 0.2.4 | ||
Date: 2024-05-01 | ||
Authors@R: c( | ||
person("Metropolitan Council", role = "cph"), | ||
person("Liz", "Roten", , "[email protected]", role = c("cre", "aut"), | ||
comment = c(ORCID = "0000-0002-5346-3549")), | ||
person("Nicole", "Sullivan", , "[email protected]", role = "aut"), | ||
person("Nicole", "Sullivan", , "[email protected]", role = "ctb"), | ||
person("Ashley", "Asmus", , "[email protected]", role = "ctb", | ||
comment = c(ORCID = "0000-0001-5505-1372")), | ||
person("Yaxuan", "Zhang", , "[email protected]", role = "ctb", | ||
comment = c(ORCID = "0000-0003-2343-8307")) | ||
) | ||
Description: Process data collected from Minnesota Department of | ||
Transportation (MnDOT) loop detectors installed on the Minnesota | ||
Freeway system in 30-second interval measurements of occupancy and | ||
volume, data which are pushed daily to a public JSON feed. Occupancy | ||
and volume data can be used to calculate speed and delay. | ||
Freeway system. Data are published to a public JSON feed in 30-second | ||
interval measurements of occupancy and volume. Occupancy and volume | ||
data can be used to calculate speed and delay. | ||
License: MIT + file LICENSE | ||
BugReports: https://github.com/Metropolitan-Council/tc.sensors/issues | ||
Imports: | ||
cli (>= 3.6.1), | ||
curl (>= 5.0.1), | ||
data.table (>= 1.14.8), | ||
dplyr (>= 1.1.2), | ||
cli (>= 3.6.2), | ||
curl (>= 5.2.1), | ||
data.table (>= 1.15.4), | ||
dplyr (>= 1.1.4), | ||
geosphere (>= 1.5-18), | ||
jsonlite (>= 1.8.7), | ||
jsonlite (>= 1.8.8), | ||
magrittr (>= 2.0.3), | ||
purrr (>= 1.0.1), | ||
sf (>= 1.0-14), | ||
purrr (>= 1.0.2), | ||
sf (>= 1.0-16), | ||
tibble (>= 3.2.1), | ||
tidyr (>= 1.3.0), | ||
tidyr (>= 1.3.1), | ||
tis (>= 1.39), | ||
units (>= 0.8-5), | ||
utils, | ||
xml2 (>= 1.3.5) | ||
xml2 (>= 1.3.6) | ||
Suggests: | ||
cowplot (>= 1.0.0), | ||
furrr (>= 0.1.0), | ||
|
@@ -52,4 +53,4 @@ VignetteBuilder: | |
Encoding: UTF-8 | ||
LazyData: true | ||
Roxygen: list(markdown = TRUE, roclets = c("rd", "namespace", "collate")) | ||
RoxygenNote: 7.2.3 | ||
RoxygenNote: 7.3.1 |
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
Oops, something went wrong.