select_points {OnboardClient} | R Documentation |
Returns a list of ids based on the input query from PointSelector. Uses http POST call to query data.
select_points(query)
query |
query supplied from PointSelector. |
A named list of all the points requested by the query.
## Not run:
query <- PointSelector()
query$buildings <- 427
query$equipment_types <- 'ahu'
query$point_types <- c('Supply Air Temperature','Supply Air Static Pressure')
selection <- select_points(query)
## End(Not run)