ropensci / photosearcher

Searches Flickr for photographs and metadata
https://docs.ropensci.org/photosearcher
15 stars 13 forks source link

Different metadata via photo_search vs. get_photoinfo #7

Closed arw36 closed 2 years ago

arw36 commented 4 years ago

Hi,

This is more of a fundamental questions. Why does different metadata come down for the photo_search and get_photoinfo functions? For some reason, a photo I know should come up in a search (includes keyword in title) doesn't. I was trying to manually append it to be search outputs, but can't pull down the same variables as from the photo_search output.

photo_search(mindate_taken = "2019-04-15", text = "Pseudocheirus")
get_photoinfo(33827082318)

Any help, clarification, would be much appreciated.

Dr-Nathan-Fox commented 4 years ago

The photograph seems to come up if you search with the correct maxdate_taken. I was able to return the photograph in question using:

photo_search(mindate_taken = "2019-04-15", maxdate_taken = "2019-04-28", text = "Pseudocheirus")

I hope this answers your question.