Which new species was observed in my project?

We have a project called Vermont Moths - when we get a new species, I can’t figure out a way to determine WHAT that new species is. When I go to 1500 species, I get a list that says how many obs for each species but it only seems to go down to 19 obs for the species. help!

2 Likes

The only way I know to do this efficiently is to use the API under identifications/recent_taxa:
https://api.inaturalist.org/

e.g. this URL for moths in Vermont:
https://api.inaturalist.org/v1/identifications/recent_taxa?taxon_active=true&current=true&category=improving%2Cleading&place_id=47&taxon_id=47157&without_taxon_id=47224&order=desc&order_by=created_at

In that jumble of code, you can look for where it says “observation”:{“id”: and then a long number, which indicates the observation ID, which you can plug into the URL to find.

A few moth taxa recently observed for the first time in Vermont include:

There’s also the “Discoveries” section on taxon pages under the Trends tab, but that only works for “complete” taxa and also won’t work for a paraphyletic group like moths.

2 Likes

The other option is to download your data and use Excel or similar to summarize it. In Excel, the simplest way is to:

  1. sort the table from oldest to newest by the observation date column
  2. select the whole table
  3. use “remove duplicates”, and look for duplicates in only the species name column

The resulting list will show you the first observation of each species for the project.

2 Likes

thank you both SO MUCH!!

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.