USFWS / ACP-Mapping

Code for estimating spatial and temporal trends of waterbirds on the Arctic Coastal Plain, Alaska.
Creative Commons Zero v1.0 Universal
0 stars 0 forks source link

typo in observer initials #1

Closed eosnas closed 8 months ago

eosnas commented 8 months ago

On 2024-03-20 while writing a metadata data dictionary record for the bird observation, I discovered observer initials RMD and RDM. RMD is R. MacDonald but there is no record of an observer name flying the ACP that could correspond to RDM (see excel file "2007-Present ACP Crew and Dates Table_Wilson.xlsx" or ACP report). Most likely a typo.

This effects the statistical estimation of observer effects and thus, temporal trends and density estimates. Will need to change and update QC process in ACPmapping.R and re-run model and maps.

> dat <- read_csv(file = "Data/ACP_2023/analysis_output/Bird_QC_Obs2024-02-15.csv")
Rows: 131563 Columns: 15                                                                                                     
── Column specification ──────────────────────────────────────────────────────────────────
Delimiter: ","
chr  (5): Stratum, Observer, Seat, Species, Obs_Type
dbl (10): Year, Month, Day, Time, Transect, NavTransect, Num, Code, Lon, Lat

ℹ Use `spec()` to retrieve the full column specification for this data.
ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
> table(dat$Observer)

  DES   HMW   KSB   RDM   RMD   WGS   WWL 
10998 41300  1832  5384  9655  8363 54031 
> table(dat$Year, dat$Observer)

        DES  HMW  KSB  RDM  RMD  WGS  WWL
  2007    0    0    0    0 3774    0 4678
  2008    0    0    0    0 5881    0 4477
  2009    0    0    0 5384    0    0 4295
  2010    0    0 1832    0    0 4056 1812
  2011    0    0    0    0    0 4307 5030
  2012    0 4728    0    0    0    0 5792
  2013    0 3136    0    0    0    0 4894
  2014    0 2929    0    0    0    0 4845
  2015    0 4036    0    0    0    0 5689
  2016    0 4635    0    0    0    0 6279
  2017    0 4641    0    0    0    0 6240
  2018    0 4642    0    0    0    0    0
  2019 3916 3986    0    0    0    0    0
  2022 3770 4767    0    0    0    0    0
  2023 3312 3800    0    0    0    0    0
eosnas commented 8 months ago

From Julian email on 2024-03-21: Rob's full name is Robert D. MacDonald. His initials as observer should be RDM. Thanks for catching and for reaching out for clarity.

Will change initials to RDM.