Version 7 (modified by 8 years ago) (diff) | ,
---|
Set up GPSphoto server on CentOS
- Install a bare web server
- Add the Epel repository
yum install epel-release
- install spatiallite if you chose SQLite as the backend DB:
yum install libspatialite
- Install postgresql server and postgis if Postgres is the backend DB:
yum install postgresql-server postgis
- In order for GPSphoto to work you also need the following packages:
yum install mod_wsgi python-webob python-psycopg2 python-pillow python2-boto
- To make sure exif data is kept with the images install piexif (attached)
yum install piexif-1.0.7-1.noarch.rpm
PostGIS
sudo -i postgres createdb mapserver --no-superuser --no-createdb
psql mapserver
alter user mapserver with password <password>
psql -f /usr/share/postgresql/9.1/contrib/postgis-1.5/postgis.sql -d mapserver psql -f /usr/share/postgresql/9.1/contrib/postgis-1.5/spatial_ref_sys.sql -d mapserver psql -f /usr/share/postgresql/9.1/contrib/postgis_comments.sql -d mapserver
Useful tools
print detailed exif information of image:
identify -verbose P1100818.JPG
Attachments (9)
-
piexif-1.0.7-1.noarch.rpm (30.6 KB) - added by 8 years ago.
piexif is a python library to store exif information in images
-
simplekml-1.3.0-1.noarch.rpm (78.1 KB) - added by 8 years ago.
kml library for python
- spatialite-tools-4.1.1-13.el7.centos.src.rpm (473.4 KB) - added by 8 years ago.
- spatialite-tools-4.1.1-13.el7.centos.x86_64.rpm (169.6 KB) - added by 8 years ago.
- spatialite-tools-debuginfo-4.1.1-13.el7.centos.x86_64.rpm (425.9 KB) - added by 8 years ago.
- pyspatialite-2.6.2_spatialite.2.4.0_4-1.src.rpm (76.0 KB) - added by 8 years ago.
- pyspatialite-2.6.2_spatialite.2.4.0_4-1.x86_64.rpm (981.0 KB) - added by 8 years ago.
- pyspatialite-debuginfo-2.6.2_spatialite.2.4.0_4-1.x86_64.rpm (2.9 MB) - added by 8 years ago.
- piexif-1.0.12-1.noarch.rpm (32.1 KB) - added by 7 years ago.