[Gfoss] ArcGIS vs QGIS, GRASS, gvSIG, uDIG etc clipping contest

>Qualcuno che ha fatto un test con PostGIS? Sarei curioso..
>
>ciao
>Markus

Lo sto provando io sulla mia macchina.

Mi interessa vedere quanto impattano le varie funzioni a parità di hardware.

Intanto ecc i risultati con spatialite4.0.

Prova 1: selezione di elementi intersecanti senza elaborazione spaziale

select datetime(‘now’);

select
count(*)
from
Contours20Ft a,
StudyArea1MileBuffer b
where
ST_Intersects(a.geometry, b.geometry)=1
AND a.ROWID IN (
SELECT ROWID FROM SpatialIndex
WHERE f_table_name=‘DB=main.Contours20Ft’ AND search_frame=b.geometry
)
;
select datetime(‘now’);

→ impiegato 3 minuti e 8 secondi

Prova 2: selezione di elementi intersecanti , successivo taglio e inserimento in tabella.


select datetime(‘now’);
create table risult2 (id integer primary key);
select AddGeometryColumn(‘risult2’,‘geometry’,2260,‘MULTILINESTRING’,‘XY’);

insert into risult2 (geometry) select
CastToMulti(ST_Intersection(a.geometry,b.geometry)) as geometry
from
Contours20Ft a,
StudyArea1MileBuffer b
where
ST_Intersects(a.geometry, b.geometry)=1
AND a.ROWID IN (
SELECT ROWID FROM SpatialIndex
WHERE f_table_name=‘DB=main.Contours20Ft’ AND search_frame=b.geometry
)
;

select datetime(‘now’);

impiegato 4minuti 20 secondi

Andrea Peri
. . . . . . . . .
qwerty àèìòù

On Sat, 10 Nov 2012 11:06:22 +0100, Andrea Peri wrote:

Qualcuno che ha fatto un test con PostGIS? Sarei curioso..

ciao
Markus

Lo sto provando io sulla mia macchina.
Mi interessa vedere quanto impattano le varie funzioni a parità di
hardware.
Intanto ecc i risultati con spatialite4.0.

buffo quando le cose si incrociano spontaneamente :wink:
nel frattempo anch'io stavo buttando giu' un testbed per splite 4.0;
fortunatamente i miei risultati coincidono bene con quelli di Andrea :smiley:

chi e' interssato al testbed con qualche commento di ordine generale
sul Clipping Contest puo' leggere qua tutta la storia:

https://www.gaia-gis.it/fossil/libspatialite/wiki?name=benchmark-4.0

ciao Sandro

--
Il messaggio e' stato analizzato alla ricerca di virus o
contenuti pericolosi da MailScanner, ed e'
risultato non infetto.

Visto lo stress sul uso della parola benchmark, ho messo
questo commento sollo il mio blog:

"Sorry for being carelss with using the word "benchmark", of course it
is a "contest" as stated in the title. It may become a benchmark when
executed on the same machine with most software packages in question
being installed on it. "

Spero che lo accettate adesso... :stuck_out_tongue:

ciao
m