Skip to content

Commit

Permalink
New checks
Browse files Browse the repository at this point in the history
  • Loading branch information
linusblomqvist committed Sep 5, 2024
1 parent 037c127 commit d45d503
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion check_ebird_checklists/check_ebird_checklists_fcn.R
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ create_chk <- function(txt_file, too_many_species, too_many_species_stationary,
midnight = time_observations_started == hms("00:00:00"),
high_number_species = number_species > too_many_species,
only_one_species = all_species_reported & number_species==1 & duration_minutes > 5,
same_count_all_species = all_species_reported & median_count>0 & number_distinct_count==1 & number_species>2,
same_count_all_species = all_species_reported & median_count>0 & number_distinct_count==1 & number_species > 5,
multi_day = time_observations_started + minutes(duration_minutes) > hours(24),
too_many_observers = number_observers > too_many_observers,
too_short_duration = all_species_reported & number_species/duration_minutes > 10,
Expand Down
File renamed without changes.

0 comments on commit d45d503

Please sign in to comment.