Tips and tricks

[:it]Importare un file GDB in un database postGIS[:en]Import file GDB to postGIS[:]

[:it]Questa è la sintassi che ho utilizzato per importare un geodatabase ESRI (formato GDB) in un geodatabase Postgis 2.0:

ogr2ogr -f "PostgreSQL" PG:"host=hostname user=username dbname=mydb password=mypwd" mygeodb.gdb/ -a_srs EPSG:3003

Fonte: gdal.org[:en]This is the syntax I used to import an ESRI geodatabase (GDB format) into an existing postGIS database:

ogr2ogr -f "PostgreSQL" PG:"host=hostname user=username dbname=mydb password=mypwd" mygeodb.gdb/ -a_srs EPSG:3003 - overwtrite

Font: gdal.org[:]

PSQL command linePSQL da riga di comando

Below some commands line I used to manage spatial data:

Import shape to postgis

shp2pgsql -s epsg_code -c -g geometry_column -I -t 2D -W LATIN1 shapename schemaname.tablename | psql -h hostname -d mydb -U username

Di seguito alcuni comandi psql che uso per gestire i dati geografici:

Import shape to postgis

shp2pgsql -s epsg_code -c -g geometry_column -I -t 2D -W LATIN1 shapename schemaname.tablename | psql -h hostname -d mydb -U username

La porta 8005 è in usata da un altro processo (Apache Tomcat)Port 8005 seems already used by another process (Apache Tomcat)

Se la porta 8005, in cui Tomcat è in ascolto per il segnale di shutdown, è già utilizzata da un altro processo si può cambiare per utilizzare un altro numero di porta modificando il file

%CATALINA_HOME%\conf\server.xml:

<Server port="8006" shutdown="SHUTDOWN">

If  the port number 8005, where tomcat is listening for SHUTDOWN signal, is already used by another process.
You could just change that with another port number by editing the file

%CATALINA_HOME%\conf\server.xml:

<Server port="8006" shutdown="SHUTDOWN">