EXIF Table

From truxwiki.com
Revision as of 13:41, 21 May 2020 by Sam (talk | contribs) (Created page with "The <code>EXIF</code> table holds camera information gleaned from JPGs, TIFFs, MP2s and Type_MPEG4Video...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

The EXIF table holds camera information gleaned from JPGs, TIFFs, MP2s and MP4s.

CREATE TABLE "EXIF" (
    "ID" uuid NOT NULL,
    "FileID" uuid NOT NULL,
    "MediaID" uuid NOT NULL,
    "HashID" uuid NOT NULL,
    "Make" text DEFAULT ''::text NOT NULL,
    "Model" text DEFAULT ''::text NOT NULL,
    "SerialNumber" text DEFAULT ''::text NOT NULL,
    "Latitude" double precision DEFAULT 0 NOT NULL,
    "Longitude" double precision DEFAULT 0 NOT NULL,
    "Altitude" double precision DEFAULT 0 NOT NULL,
    "Heading" double precision DEFAULT 0 NOT NULL,
    "FocalLength" double precision DEFAULT 0 NOT NULL,
    "ShutterCount" integer DEFAULT 0 NOT NULL,
    "GPSTime" timestamp without time zone NOT NULL,
    "CameraTime" timestamp without time zone NOT NULL,
    "Offset" bigint DEFAULT (-1) NOT NULL
);