Changes between Version 16 and Version 17 of GPSphotos
- Timestamp:
- 10/19/16 00:00:36 (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
GPSphotos
v16 v17 6 6 yum install epel-release 7 7 }}} 8 * install spatiallite if you chose SQLite as the backend DB:9 {{{10 yum install libspatialite11 }}}12 * Install postgresql server and postgis if Postgres is the backend DB, see the PostgresQL / Postgis section below13 14 8 * In order for GPSphoto to work you also need the following packages: 15 9 {{{ … … 31 25 32 26 == PostgresQL / PostGIS == 27 If you chose postgis as your DB back-end, continue with this section. If you prefer sqlite, which is more lightweight, but also does not scale that well continue at the next section. 28 33 29 34 30 Get the latest postgres / postgis by install the Yum repo from https://yum.postgresql.org/repopackages.php and install the following packages: … … 67 63 SELECT postgis_full_version(); 68 64 }}} 69 == Useful tools == 65 === Load the gpsphoto table === 66 {{{ 67 psql -f gpsphoto/table.sql -d mapserver 68 }}} 69 == Spatialite == 70 * install spatiallite if you chose SQLite as the backend DB: 71 {{{ 72 yum install libspatialite 73 }}} 74 75 76 77 78 == Useful tools and commands == 70 79 print detailed exif information of image: 71 80 {{{ 72 81 identify -verbose P1100818.JPG 73 82 }}} 74 75 === Load the gpsphoto table ===76 {{{77 psql -f gpsphoto/table.sql -d mapserver78 }}}