ArcGIS vs QGIS, GRASS, gvSIG, uDIG etc clipping contest

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
3 messages Options
Reply | Threaded
Open this post in threaded view
|

ArcGIS vs QGIS, GRASS, gvSIG, uDIG etc clipping contest

Andrea Peri
>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 àèìòù
-----------------


_______________________________________________
[hidden email]
http://lists.gfoss.it/cgi-bin/mailman/listinfo/gfoss
Questa e' una lista di discussione pubblica aperta a tutti.
Non inviate messaggi commerciali.
I messaggi di questa lista non hanno relazione diretta con le posizioni dell'Associazione GFOSS.it.
605 iscritti al 10.7.2012
Reply | Threaded
Open this post in threaded view
|

Re: ArcGIS vs QGIS, GRASS, gvSIG, uDIG etc clipping contest

a.furieri
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 ;-)
nel frattempo anch'io stavo buttando giu' un testbed per splite 4.0;
fortunatamente i miei risultati coincidono bene con quelli di Andrea
:-D

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.

_______________________________________________
[hidden email]
http://lists.gfoss.it/cgi-bin/mailman/listinfo/gfoss
Questa e' una lista di discussione pubblica aperta a tutti.
Non inviate messaggi commerciali.
I messaggi di questa lista non hanno relazione diretta con le posizioni dell'Associazione GFOSS.it.
605 iscritti al 10.7.2012
Reply | Threaded
Open this post in threaded view
|

Re: ArcGIS vs QGIS, GRASS, gvSIG, uDIG etc clipping contest

Markus Neteler
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... :p

ciao
m
_______________________________________________
[hidden email]
http://lists.gfoss.it/cgi-bin/mailman/listinfo/gfoss
Questa e' una lista di discussione pubblica aperta a tutti.
Non inviate messaggi commerciali.
I messaggi di questa lista non hanno relazione diretta con le posizioni dell'Associazione GFOSS.it.
605 iscritti al 10.7.2012