photos_on_a_map (view)

1 row where "date" is on date 2017-11-05, ext = "heic" and longitude = "-122.46450833333333" sorted by date descending

View and edit SQL

longitude

  • -122.46450833333333 · 1

ext

  • heic · 1

date (date)

  • 2017-11-05 · 1
date ▲ latitude longitude sha256 ext popup
2017-11-05T23:06:58+00:00 37.76914166666667 -122.46450833333333 a981be272530aba690ff4d6e292c3dbfeb1fee4c9fcca39346043012cf486e49 heic
{
    "title": "Taken on 2017-11-05T23:06:58+00:00",
    "image": "https://photos.simonwillison.net/i/a981be272530aba690ff4d6e292c3dbfeb1fee4c9fcca39346043012cf486e49.heic?w=400",
    "link": "https://photos.simonwillison.net/i/a981be272530aba690ff4d6e292c3dbfeb1fee4c9fcca39346043012cf486e49.heic?w=1200"
}

Advanced export

JSON shape: default, array, newline-delimited

CSV options:

CREATE VIEW photos_on_a_map AS select
      date,
      latitude,
      longitude,
      apple_photos.sha256,
      uploads.ext,
      json_object(
        'title',
        'Taken on ' || date,
        'image',
        'https://photos.simonwillison.net/i/' || uploads.sha256 || '.' || uploads.ext || '?w=400',
        'link',
        'https://photos.simonwillison.net/i/' || uploads.sha256 || '.' || uploads.ext || '?w=1200'
      ) as popup
    from
      apple_photos
      join uploads on apple_photos.sha256 = uploads.sha256
    where
      latitude is not null
    order by
      date desc;
Powered by Datasette · Query took 24.014ms · About: dogsheep/dogsheep-photos