MushroomObserver / mushroom-observer

A website for sharing observations of mushrooms.
https://mushroomobserver.org
MIT License
78 stars 25 forks source link

Images without geolocation #2309

Open JoeCohen opened 2 months ago

JoeCohen commented 2 months ago

The vast majority of recently created Observations (one year prior to 2024-08-18) that have images also lack lat/lng. 29236 Obss created in the last year 29002 of those have images 21769 lack lat/lng

irb(main):011> Observation.where(Observation[:created_at] > 1.year.ago).count
=> 29236
irb(main):014> Observation.where(Observation[:created_at] > 1.year.ago).where.not(Observation[:thumb_image_id] == nil).count
=> 29002
irb(main):015> Observation.where(Observation[:created_at] > 1.year.ago).where.not(Observation[:thumb_image_id] == nil).where(lat: nil).count
=> 21769
JoeCohen commented 2 months ago

My current guess re no image geoloc:Most (almost all?) were exported from the user's camera or photo app to the user's computer, edited on the computer, then imported to MO. But they were exported without location data.  What to do? There's nothing we can do directly.

nimmolo commented 2 months ago

I like the idea of contacting the big users directly.

Also - it seems your query is for the last year, but the automatic copying of image geolocation is only a few months old, right?

JoeCohen commented 2 months ago

Good question. I don't remember how that worked. I looked at thumbnails of recent Observations by the top 3 users (Evica, Huafang, AK) and found that the EXIF headers lacked GPS data. My guess is that cropped the photos, exported them, and uploaded them.