inbo / eurobutt-checklist

National checklists and red lists for European butterflies
https://inbo.github.io/eurobutt-checklist/
MIT License
0 stars 1 forks source link

Mapping occurrenceStatus #12

Closed peterdesmet closed 5 years ago

peterdesmet commented 5 years ago

There are some values where I don't know how to map occurrenceStatus:

distribution %<>% mutate(occurrenceStatus = recode(input_status,
  Ex = "absent",
  M = "?",
  P = "present",
  .default = ""
))

What is M?

peterdesmet commented 5 years ago

Also, establishmentMeans was mapped before:

distribution %<>% 
  mutate(establishmentMeans = raw_status) %>%
  mutate(establishmentMeans = recode(establishmentMeans
            ,"Breeding"="native"
            ,"NeedsConfirmation"="uncertain")) 

But that information is not available in raw_status, only the 3 values listed above.

peterdesmet commented 5 years ago

Answered by Dirk: M is regular migrant. His suggestion is to map this to absent.

I would not populate establishmentMeans, as we don't have information on this.