photos_with_apple_metadata (view)

1 row where ZPLEASANTLIGHTINGSCORE = "0.121826171875" and "date" is on date 2020-04-23

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
199 AC1D606E-185E-4B60-8213-782BE58B9DCE 2020-04-23T23:29:15+00:00
[
    "Photography homework composition April 2020",
    "Public"
]
[]
jpeg 6416af8c3fbce9295cc68411b2710c23ed8736a4ff4e23dd59627b960839241d 8772563     1 0 0 0 0 0 0 0       AC1D606E-185E-4B60-8213-782BE58B9DCE 0.4287109375 0.75 0.0 0.05801526718694745 0.10000000149011612 -0.0013885498046875 0.024078369140625 0.0015668869018554688 0.009999999776482582 -0.280517578125 -0.0966796875 0.0313720703125 0.01837158203125 -0.006389617919921875 0.0133056640625 -0.011474609375 0.121826171875 0.034027099609375 0.306640625 0.01020050048828125 -0.005748748779296875 0.0057525634765625 0.456298828125 0.650390625 0.0997314453125 0.7548828125 0.040557861328125

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