Closed keithamoss closed 8 years ago
Data structure:
CREATE TABLE sro_images
(
id serial NOT NULL,
filename character varying,
format character varying,
mode character varying,
filesize integer,
width smallint,
height smallint,
info json,
exif json,
md5hash character varying,
photohash character varying,
cons_folder character varying,
CONSTRAINT pkey PRIMARY KEY (id)
)
WITH (
OIDS=FALSE
);
ALTER TABLE sro_images
OWNER TO keith;
.jpg
files?
filesize
to get an accurate reading on how big these are
Loot our local cache of images and extract all of the meaningful information we can about them With the aim of being nice to SRO so we don't have to loot ~25GB of image data from them.
Dependencies: None Next: #4, #11 Associated: #8
Process
Potential Challenges