Author Archives: admin

Skype 4.3 su linux Mint Maya

Dopo l’aggiornamento alla versione 4.3 attraverso Synaptic ho avuto questi problemi:

  1. menu_proxy_module_load ubuntu non verniva caricato correttamente;
  2. dopo il  Log in l’applicazione andava in crash.

Queste le soluzioni:

  1.  sudo apt-get install appmenu-gtk:i386;
  2. copy /home/$user$/.Skype to /home/$user$/.Skype_bak.

Una parte della cronologia è stata persa.[:en]After  updating Skype from Synaptic on linux Mint Maya I’ve have had these kind of problems:

  1. menu_proxy_module_load ubuntu don’t load properly;
  2. Crash after Log in.

This is my trouble shooting:

  1.  sudo apt-get install appmenu-gtk:i386;
  2. copy /home/$user$/.Skype to /home/$user$/.Skype_bak.

Probably you’ll lose part of your history

[: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[:]

GPX dei sentieri dell’Ente Foreste (Regione Autonoma della Sardegna)Paths developed by Ente Foreste (Sardinia Region)

Il file dei sentieri dell’Ente Foreste dei sentieri in formato GPX  (EPSG:3003)  elaborato dall’originale fornito qui.

scarica il file  (formato zip)

Fonte: Regione Autonoma della Sardegna (SITR-IDT)File  of the paths (GPX format, EPSG:3003) developed from Ente Foreste of Sardinia Region and  provided here by SITR-IDT.

Download the file  ( zip format)

Fonte: Regione Autonoma della Sardegna (SITR-IDT)

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">