photos_with_apple_metadata (view)

1 row where ZINTERACTIONSCORE = "0.05999999865889549" and "date" is on date 2017-06-16

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
380 D735F0CE-A3D7-49CB-B83E-594604415A1C 2017-06-16T00:55:34+00:00
[
    "Stolen monasteries",
    "Public"
]
[]
jpeg be2e31a4d8ecf12e6631c7fbd0a093a446a7d23ef5dbeb412c41c14907357d16 5296680 37.76930333333333 -122.46441666666666 0 0 0 0 0 0 0 0 San Francisco CA United States D735F0CE-A3D7-49CB-B83E-594604415A1C 0.498291015625 0.5 0.0 0.038931297721298594 0.10000000149011612 -0.003063201904296875 -0.00627899169921875 0.0009851455688476562 0.05999999865889549 -0.296875 -0.03656005859375 0.28271484375 0.002140045166015625 -0.06622314453125 -0.07977294921875 -0.1859130859375 -0.1502685546875 0.1431884765625 -0.178466796875 -0.00289154052734375 -0.0833740234375 0.002590179443359375 0.0217742919921875 -0.00293731689453125 -0.33740234375 0.17333984375 -0.05267333984375

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 200.148ms · About: dogsheep/dogsheep-photos