Plant phenology graph data

Is there a way to download the monthly data from a species phenology graph?
Thanks

1 Like

the underlying data comes from the API via /v1/observations/popular_field_values.

for example, you could get data for Rudbeckia amplexicaulis (taxon 200073) from https://api.inaturalist.org/v1/observations/popular_field_values?taxon_id=200073&per_page=50&unannotated=true

…

you can also get the data via /v1/observations/histogram. this one will allow you to specify different time intervals (ex. month of year, monthly, daily, weekly, etc.), though you will have to make a separate request for each phenology value (flowering, budding, etc.).

for example, the corresponding month-of-year “flowering” data set for R. amplexicaulis could be obtained from https://api.inaturalist.org/v1/observations/histogram?term_id=12&term_value_id=13&taxon_id=200073&interval=month_of_year

this page may help to display this data in a more human-friendly format:
https://jumear.github.io/stirfry/iNatAPIv1_observation_histogram?term_id=12&term_value_id=13&taxon_id=200073&interval=month_of_year

annotation codes can be found here: https://forum.inaturalist.org/t/how-to-use-inaturalists-search-urls-wiki-part-2/18792#heading--annotations

4 Likes

Thanks for all you do for iNaturalist.

4 Likes

This is great. Can use this for week_of_year. I added place_id and got results, but am having troubling with getting results for a defined rectangle.

what is the URL that you’re using to try to get the results for the defined rectangle? (if you want to keep the location private, take a look at the way i’ve defined a rectangle around part of the Greater Houston area: https://jumear.github.io/stirfry/iNatAPIv1_observation_histogram?nelat=30&nelng=-95&swlat=29.5&swlng=-95.7&interval=week_of_year. does that look like more or less how you’re defining a rectangle?)

I think this will work, thanks
https://api.inaturalist.org/v1/observations/histogram?term_id=12&term_value_id=13&taxon_id=67818&interval=week_of_year&place_id=any&nelat=33.6&nelng=-94.0&swlat=28.8&swlng=-96.5

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