photos_with_apple_metadata (view)

1 row where ZINTRUSIVEOBJECTPRESENCESCORE = "-0.0560302734375" and persons contains "_UNKNOWN_"

View and edit SQL

Suggested facets: date (date), albums (array), persons (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
315 9D1D2C1F-5BBF-4142-AABF-36F7DE028FA4 2018-04-22T00:15:18+00:00
[
    "Museums",
    "Public"
]
[
    "_UNKNOWN_",
    "_UNKNOWN_",
    "_UNKNOWN_"
]
heic 99ce831cc3b5b6b9023d6175b29b6a234da11ec5f93beb38bc24d9d979f4d789 1660836 37.579175 -122.34421666666667 0 0 0 0 0 0 0 0 Burlingame CA United States 9D1D2C1F-5BBF-4142-AABF-36F7DE028FA4 0.370849609375 0.5 0.0 0.038931297721298594 0.10000000149011612 -0.0017681121826171875 0.00678253173828125 0.0013561248779296875 0.009999999776482582 -0.24658203125 -0.0560302734375 0.31787109375 0.0022258758544921875 -0.0206451416015625 -0.05078125 -0.2069091796875 -0.0521240234375 0.11614990234375 -0.126220703125 -0.00042724609375 -0.046661376953125 0.0025806427001953125 0.072509765625 0.055511474609375 -0.2056884765625 0.286376953125 -0.03350830078125

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