
Hi Jen,
Can I confirm that you extracted BOTH camtrapR reports out of Camelot?
You need two.
Camera Trap Export
Record Table
In
R:
Assuming that you have both of those file you need to load the CSVs into R as dataframes.
camtraps = read.csv("camera-traps_yyyy-mm-dd_xxxx.csv") #where camera-traps_yyyy-mm-dd_xxxx.csv is the Camera Trap Export report
recordtable = read.csv("record-table_yyyy-mm-dd_xxxx.csv") #where record-table_yyyy-mm-dd_xxxx.csv is the Record Table report
eg:
camtraps=read.csv("e:/ffivn/Camelot reports/Feb2018/camera-traps_2018-02-11_1703.csv")
Based on
Vignette 4 of camtrapR, then running this
R command:
Mapstest1 <- detectionMaps(CTtable = camtraps,
recordTable = recordtable,
Xcol = "gps_x", # Note this is changed from utm_x
Ycol = "gps_y", # Note this is changed from utm_y
stationCol = "Station",
speciesCol = "Species",
printLabels = TRUE,
richnessPlot = TRUE, # by setting this argument TRUE
speciesPlots = FALSE,
)Gives the Species Richness plot.
I ran it successfully, so my guess is that you are missing the Record Table report from Camelot.
Hope that helps
Heidi