photos_with_apple_metadata (view)

1 row where "date" is on date 2018-04-22 and longitude = "-122.34424666666666"

View and edit SQL

Suggested facets: albums (array)

rowid photo uuid date albums persons ext sha256 size latitude longitude favorite portrait screenshot slow_mo time_lapse hdr selfie panorama place_city place_state_province place_country ZUUID ZOVERALLAESTHETICSCORE ZCURATIONSCORE ZPROMOTIONSCORE ZHIGHLIGHTVISIBILITYSCORE ZBEHAVIORALSCORE ZFAILURESCORE ZHARMONIOUSCOLORSCORE ZIMMERSIVENESSSCORE ZINTERACTIONSCORE ZINTERESTINGSUBJECTSCORE ZINTRUSIVEOBJECTPRESENCESCORE ZLIVELYCOLORSCORE ZLOWLIGHT ZNOISESCORE ZPLEASANTCAMERATILTSCORE ZPLEASANTCOMPOSITIONSCORE ZPLEASANTLIGHTINGSCORE ZPLEASANTPATTERNSCORE ZPLEASANTPERSPECTIVESCORE ZPLEASANTPOSTPROCESSINGSCORE ZPLEASANTREFLECTIONSSCORE ZPLEASANTSYMMETRYSCORE ZSHARPLYFOCUSEDSUBJECTSCORE ZTASTEFULLYBLURREDSCORE ZWELLCHOSENSUBJECTSCORE ZWELLFRAMEDSUBJECTSCORE ZWELLTIMEDSHOTSCORE
356 F3DAB898-0907-410B-B796-9999D8E773A7 2018-04-22T00:15:46+00:00
[
    "Museums",
    "Public"
]
[]
heic ad9ef159b032c9390823705c5c527212864618c1f40128d3684b850dd5a27f96 857241 37.57923666666667 -122.34424666666666 0 0 0 0 0 0 0 0 Burlingame CA United States F3DAB898-0907-410B-B796-9999D8E773A7 0.322998046875 0.5 0.0 0.038931297721298594 0.10000000149011612 -0.0035114288330078125 0.01099395751953125 0.0016546249389648438 0.009999999776482582 0.367431640625 -0.06573486328125 0.036834716796875 0.0202178955078125 -0.0823974609375 -0.026947021484375 -0.09014892578125 -0.134521484375 0.0221099853515625 0.0318603515625 0.001338958740234375 -0.00354766845703125 0.001934051513671875 0.037811279296875 -0.01739501953125 -0.032958984375 0.427734375 0.456298828125

Advanced export

JSON shape: default, array, newline-delimited

CSV options:

CREATE VIEW photos_with_apple_metadata AS 
    select
        apple_photos.rowid,
        json_object(
            'img_src',
            'https://photos.simonwillison.net/i/' || uploads.sha256 || '.' || uploads.ext || '?w=600'
        ) as photo,
        apple_photos.uuid,
        apple_photos.date,
        apple_photos.albums,
        apple_photos.persons,
        uploads.ext,
        uploads.sha256,
        uploads.size,
        latitude,
        longitude,
        favorite,
        portrait,
        screenshot,
        slow_mo,
        time_lapse,
        hdr,
        selfie,
        panorama,
        place_city,
        place_state_province,
        place_country,
        apple_photos_scores.*
    from
        apple_photos
    join
        uploads on apple_photos.sha256 = uploads.sha256
    left join
        apple_photos_scores on apple_photos.uuid = apple_photos_scores.ZUUID
    order by
        apple_photos.date desc;
Powered by Datasette · Query took 170.962ms · About: dogsheep/dogsheep-photos