Last active
June 15, 2020 19:34
-
-
Save atuleu/9a14f30e94c8873697407d34c8f3cb8f to your computer and use it in GitHub Desktop.
#FortMyrmidon Compute instantaneous positions for every ant between two times
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
library(fortMyrmidon) | |
# load an experiment file, the one with the Bees | |
e <- fmExperimentOpenReadOnly("myfile.myrmidon") | |
# queries all positions of bees between that two times, and do not ask for their zones (they are none defined) | |
positions <- fmQueryIdentifyFrames(e, | |
start = fmTimeParse('2020-05-14T08:00:00.000Z'), | |
end = fmTimeParse('2020-05-14T09:00:00.000Z'), | |
reportZone = FALSE); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment