Skip to content

Instantly share code, notes, and snippets.

@ethanwhite
Created October 16, 2019 20:39
Show Gist options
  • Save ethanwhite/f4ab83f3c626666882b59e081bd1f18f to your computer and use it in GitHub Desktop.
Save ethanwhite/f4ab83f3c626666882b59e081bd1f18f to your computer and use it in GitHub Desktop.
spocc GBIF limit issue

Worked a few days ago, now errors

dipo_df = occ(query = "Dipodomys spectabilis", 
  from = "gbif",
  limit = 1000,
  has_coords = TRUE)

Warning messages:
1: gbif: No records returned in GBIF for Dipodomys spectabilis 
2: gbif: Max limit of 300 exceeded 

Works now

dipo_df = occ(query = "Dipodomys spectabilis", 
  from = "gbif",
  limit = 300,
  has_coords = TRUE)
@ethanwhite
Copy link
Author

Looks like just a temporary blip in the web service.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment