geogeeks-au / maps-for-lost-towns

Georeferencing historic maps through crowdsourcing
4 stars 1 forks source link

Loot our local cache of images and extract all of the meaningful information we can about them #10

Closed keithamoss closed 8 years ago

keithamoss commented 8 years ago

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

keithamoss commented 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;
keithamoss commented 8 years ago

Challenges

TODO

keithamoss commented 8 years ago
screen shot 2016-04-01 at 13 56 10