Changes between Version 16 and Version 17 of GPSphotos


Ignore:
Timestamp:
10/19/16 00:00:36 (8 years ago)
Author:
jorrit
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • GPSphotos

    v16 v17  
    66yum install epel-release
    77}}}
    8  * install spatiallite if you chose SQLite as the backend DB:
    9 {{{
    10 yum install libspatialite
    11 }}}
    12 * Install postgresql server and postgis if Postgres is the backend DB, see the PostgresQL / Postgis section below
    13 
    148 * In order for GPSphoto to work you also need the following packages:
    159{{{
     
    3125
    3226== PostgresQL / PostGIS ==
     27If 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
    3329
    3430Get the latest postgres / postgis by install the Yum repo from https://yum.postgresql.org/repopackages.php and install the following packages:
     
    6763SELECT postgis_full_version();
    6864}}}
    69 == Useful tools ==
     65=== Load the gpsphoto table  ===
     66{{{
     67psql -f gpsphoto/table.sql -d mapserver
     68}}}
     69== Spatialite ==
     70 * install spatiallite if you chose SQLite as the backend DB:
     71{{{
     72yum install libspatialite
     73}}}
     74
     75
     76
     77
     78== Useful tools and commands ==
    7079print detailed exif information of image:
    7180{{{
    7281identify -verbose P1100818.JPG
    7382}}}
    74 
    75 === Load the gpsphoto table  ===
    76 {{{
    77 psql -f gpsphoto/table.sql -d mapserver
    78 }}}