My personal first observations of a species

is there a query so i can list out my personal first observations of all the species I have seen?

Probably not. Sorry.

Though maybe you could do it with JavaScript. You would have to view all your observations first and then run the script on the page. It seems like it would be pretty complex, especially when there’s subspecies/varieties to worry about.

This could get you half way there, perhaps: https://forum.inaturalist.org/t/how-to-use-inaturalists-search-urls-wiki-part-2-of-2/18792
Especially the “Sort by Dates, Faves, or Randomly” section, so you could add the following text to the end of the url in “Your Observations”:

?order_by=observed_on&order=asc

which sorts by first observed in ascending (first-to-last) order, and then filter by a species / group of interest. Ideally you would only show a single observation per species, which I’m not sure how to do.

In full this would be something like: https://www.inaturalist.org/observations?order_by=observed_on&order=asc&user_id=henicorhina just replace my user ID with yours

here’s a related feature request:
https://forum.inaturalist.org/t/sort-list-by-first-last-observed/4069

here’s the closest thing you can get in the system, i think:
https://forum.inaturalist.org/t/sort-list-by-first-last-observed/4069/2

outside of the system, there are lots of ways to get an answer:

  • you could write something (in HTML+Javascript, just Javascript, R, Python, etc.) to figure this out by getting data via the API
  • you could download your observations as CSV, aggregate by taxon, and then get the min(id) and/or min(date) by taxon. (this could be done using Excel, R, SQL, etc.)
2 Likes

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