You can subscribe to this list here.
2005 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(3) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2006 |
Jan
(1) |
Feb
(2) |
Mar
(12) |
Apr
(1) |
May
(4) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(4) |
Dec
(5) |
2007 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(1) |
Oct
|
Nov
|
Dec
|
2008 |
Jan
(3) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2011 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(1) |
Dec
|
From: Bob P. <rjp...@sh...> - 2011-11-25 23:19:30
|
Hi I downloaded gvSig http://www.gvsig.org/web/projects/gvsig-desktop/official/gvsig-1.11/downloads Final Version for Windows. During the installation I was given a language choice. I chose English. The installation was all in English, but the application once installed, turned out to be in Spanish. The second install gave the same results. Is there a workaround for this?? Bob Pawley |
From: Fernando G. <fer...@gm...> - 2008-01-23 13:27:10
|
Bonjour Thibault, y a long temps que j'ai abandonn=E9 OrbisCAD et GDBMS. Maintenant je suis en train de d=E9velopper a nouveau GIS qui s'appelle OrbisGIS. Il est d=E9velopp=E9 dans le IRSTV =E0 la France. Il a support po= ur raster et aura les fonctionnalit=E9s de =E9dition de OrbisCAD tr=E8s t=F4t.= Il utilise une =E9volution de GDBMS qui s'appelle GDMS (sans la 'B') qui est beaucoup plus stable que GDBMS et plus amiable pour le developeur. Tout est GPL et disponible ici: http://orbisgis.cerma.archi.fr/ Le site web de GDMS: http://orbisgis.cerma.archi.fr/?page_id=3D44 Le manuel d'utilisation: http://geosysin.iict.ch/irstv-trac/browser/documentation/gdms/developer/man= ual/gdms_devs_document.pdf?format=3Draw Exemples de code: http://geosysin.iict.ch/irstv-trac/browser/documentation/gdms/developer/cod= e/DocumentationExamples.java.html?format=3Draw Il y a aussi des mailing liste o=F9 poser des question pour les probl=E8mes= qui peut arriver. There is a long time since I last developed OrbisCAD and GDBMS. Currently I'm involved in the development of a new GIS called OrbisGIS. It's developed in the IRSTV French institute. It has support for raster and it will have the editing functionalities of OrbisCAD very soon. It uses an evolution of GDBMS called GDMS (without the 'B') which is much more stable and more developer friendly than GDBMS. Everything is GPL and available here: http://orbisgis.cerma.archi.fr/ GDMS web site: http://orbisgis.cerma.archi.fr/?page_id=3D44 User manual: http://geosysin.iict.ch/irstv-trac/browser/documentation/gdms/= developer/manual/gdms_devs_document.pdf?format=3Draw Code examples: http://geosysin.iict.ch/irstv-trac/browser/documentation/gdm= s/developer/code/DocumentationExamples.java.html?format=3Draw There is also two mailing lists to ask the questions for the problems that can arise. D=E9sole pour mon fran=E7ais et pour l'inconv=E9nient. Fernando On Jan 23, 2008 2:06 PM, Thibault Mousset < thi...@gm...> wrote: > Coucou > Tu peux me traduire =E7a stp, saute lesparties > > Hi Everybody, > I'm trying to use GDBMS to exctract information of a shape file. > I read the gdbms tuorial. I've succeeded to exctract information from a > dwg file, but with a shape file, i got an error wich is: > > > java.sql.SQLException: SOO10 Invalid argument in JDBC call > > at org.hsqldb.jdbcDriver.getConnection (Unknown Source) > > at org.hsqldb.jdbcDriver.connect(Unknown Source) > > at java.sql.DriverManager.getConnection(DriverManager.java:525) > > at java.sql.DriverManager.getConnection(DriverManager.java:171) > > at com.hardcode.gdbms.engine.data.DataSourceFactory.finalizeThis( > > DataSourceFactory.java:1805) > > ... > > > Here is a piece of code of this test: > > File file =3D new File("esp_localizador.shp"); > > DataSourceFactory factory =3D new DataSourceFactory(); > > SpatialDataSource source =3D factory.getSpatialDataSource(file); > > source.start(); > > source.beginTrans(); > > > > Value[] valores =3D source.getRow(0); > > > > for (long i =3D 0; i < 1; i++) > > { > > System.out.println(); > > Value[] values =3D source.getRow(i); > > > > for (Value val : values) > > { > > System.out.print(val.toString() + '\t'); > > } > > } > > source.stop(); > > > > > I tried different ways to extract the information but i still have this > "Invalid argument in JDBC call". > Do you know why do I have this error ? > > Thanks a lot in advance. > > -- > Thibault Mousset > > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > Orbiscad-users mailing list > Orb...@li... > https://lists.sourceforge.net/lists/listinfo/orbiscad-users > > |
From: Thibault M. <thi...@gm...> - 2008-01-23 13:13:54
|
Hi Everybody, I'm trying to use GDBMS to exctract information of a shape file. I read the gdbms tuorial. I've succeeded to exctract information from a dwg file, but with a shape file, i got an error wich is: > java.sql.SQLException: SOO10 Invalid argument in JDBC call > at org.hsqldb.jdbcDriver.getConnection (Unknown Source) > at org.hsqldb.jdbcDriver.connect(Unknown Source) > at java.sql.DriverManager.getConnection(DriverManager.java:525) > at java.sql.DriverManager.getConnection(DriverManager.java:171) > at com.hardcode.gdbms.engine.data.DataSourceFactory.finalizeThis( > DataSourceFactory.java:1805) > ... Here is a piece of code of this test: File file = new File("esp_localizador.shp"); > DataSourceFactory factory = new DataSourceFactory(); > SpatialDataSource source = factory.getSpatialDataSource(file); > source.start(); > source.beginTrans(); > > Value[] valores = source.getRow(0); > > for (long i = 0; i < 1; i++) > { > System.out.println(); > Value[] values = source.getRow(i); > > for (Value val : values) > { > System.out.print(val.toString() + '\t'); > } > } > source.stop(); I tried different ways to extract the information but i still have this "Invalid argument in JDBC call". Do you know why do I have this error ? Thanks a lot in advance. -- Thibault Mousset |
From: Thibault M. <thi...@gm...> - 2008-01-23 13:06:07
|
Coucou Tu peux me traduire =E7a stp, saute lesparties Hi Everybody, I'm trying to use GDBMS to exctract information of a shape file. I read the gdbms tuorial. I've succeeded to exctract information from a dwg file, but with a shape file, i got an error wich is: > java.sql.SQLException: SOO10 Invalid argument in JDBC call > at org.hsqldb.jdbcDriver.getConnection(Unknown Source) > at org.hsqldb.jdbcDriver.connect(Unknown Source) > at java.sql.DriverManager.getConnection(DriverManager.java:525) > at java.sql.DriverManager.getConnection(DriverManager.java:171) > at com.hardcode.gdbms.engine.data.DataSourceFactory.finalizeThis( > DataSourceFactory.java:1805) > ... Here is a piece of code of this test: File file =3D new File("esp_localizador.shp"); > DataSourceFactory factory =3D new DataSourceFactory(); > SpatialDataSource source =3D factory.getSpatialDataSource(file); > source.start(); > source.beginTrans(); > > Value[] valores =3D source.getRow(0); > > for (long i =3D 0; i < 1; i++) > { > System.out.println(); > Value[] values =3D source.getRow(i); > > for (Value val : values) > { > System.out.print(val.toString() + '\t'); > } > } > source.stop(); I tried different ways to extract the information but i still have this "Invalid argument in JDBC call". Do you know why do I have this error ? Thanks a lot in advance. -- Thibault Mousset |
From: <ll...@si...> - 2007-09-12 08:20:47
|
Dear all, We would like to announce that registration form <http://www.sigte.udg.es/jornadassiglibre/index.php?page=inscripciones> to the II Spanish FOSS Conference has been /*activated*. /You can find more information in the website <http://www.sigte.udg.es/jornadassiglibre> of the event. Remember that Spanish is the official language of the Conference but, English communications or papers will also be accepted. Deadlines: Abstract submission deadline: October 15^th 2007 Full Paper submission deadline: January 31^st 2008 Lluís Vicens http://www.sigte.udg.es/jornadassiglibre -- Lluís Vicens SIGTE -- Universitat de Girona Plaça Ferrater Mora, 1 17071 Girona http://www.sigte.udg.es ll...@si... |
From: Alessandro F. <fa...@in...> - 2006-12-11 10:48:55
|
Well, I installed both (Kosmo and gvSig 1.0). I couldn't install the english version of Kosmo, even if the installer gave me the option, so we choose gvSig that now is availbale as v.1 RC3. It support DXF till v.2000 and seems like is working good (at the moment). Alessio >Send Orbiscad-users mailing list submissions to > orb...@li... > >To subscribe or unsubscribe via the World Wide Web, visit > https://lists.sourceforge.net/lists/listinfo/orbiscad-users >or, via email, send a message with subject or body 'help' to > orb...@li... > >You can reach the person managing the list at > orb...@li... > >When replying, please edit your Subject line so it is more specific >than "Re: Contents of Orbiscad-users digest..." > > >Today's Topics: > > 1. Re: Orbiscad-users Digest, Vol 2, Issue 1 ( Fernando Gonz?lez ) > > >---------------------------------------------------------------------- > >Message: 1 >Date: Thu, 7 Dec 2006 10:31:26 +0100 >From: " Fernando Gonz?lez " <fer...@gm...> >Subject: Re: [Orbiscad-users] Orbiscad-users Digest, Vol 2, Issue 1 >To: orb...@li... >Message-ID: > <6ce...@ma...> >Content-Type: text/plain; charset="iso-8859-1" > >Kosmo (http://www.saig.es/kosmo.php) can edit shp files and can show dxf >files. gvSIG also but the OrbisCAD driver is the same as the gvSIG 0.6 so it >won't likely work neither. Furthermore, it's not a very stable software. You >can also take a look at QGis (I don't know if it supports dxf, ...) > >Let me know what software finally fits your needs. > >Bye. >Fernando > >On 12/6/06, Alessandro Fanna <fa...@in...> wrote: >> >> Thanks for the reply, Fernando. >> In your opinion, wich OS Gis viewer that supports shp files is the best >> for viewing (editing is not necessary) DXF files? >> >> >> >Send Orbiscad-users mailing list submissions to >> > orb...@li... >> > >> >To subscribe or unsubscribe via the World Wide Web, visit >> > https://lists.sourceforge.net/lists/listinfo/orbiscad-users >> >or, via email, send a message with subject or body 'help' to >> > orb...@li... >> > >> >You can reach the person managing the list at >> > orb...@li... >> > >> >When replying, please edit your Subject line so it is more specific >> >than "Re: Contents of Orbiscad-users digest..." >> > >> > >> >Today's Topics: >> > >> > 1. Unable to see dxf. (Alessandro Fanna) >> > 2. Re: Unable to see dxf. ( Fernando Gonz?lez ) >> > >> > >> >---------------------------------------------------------------------- >> > >> >Message: 1 >> >Date: Tue, 5 Dec 2006 10:24:50 +0100 >> >From: Alessandro Fanna <fa...@in...> >> >Subject: [Orbiscad-users] Unable to see dxf. >> >To: orb...@li.... >> >Message-ID: <E8D...@in...> >> >Content-Type: text/plain; charset="us-ascii" >> > >> >Hello to all, I'm a first user of this software and just installed it on >> a XP machine. >> >This is probably a simple rookie problem, but after installation I'm not >> able to see dxf files. I mean, I go to the main window, choose the DXF >> option and load the dxf file, but nothing displays. >> >Loading shp files goes smooth, am I missing something? >> > >> >Thanks, >> > >> >Alessio >> > >> > >> > >> > >> >------------------------------ >> > >> >Message: 2 >> >Date: Tue, 5 Dec 2006 10:30:32 +0100 >> >From: " Fernando Gonz?lez " <fer...@gm...> >> >Subject: Re: [Orbiscad-users] Unable to see dxf. >> >To: orb...@li... >> >Message-ID: >> > <6ce...@ma...> >> >Content-Type: text/plain; charset="iso-8859-1" >> > >> >Hi Alessandro, >> > >> >You aren't missing anything. The problem is that OrbisCAD doesn?t support >> >DXF format very well... >> > >> >greetings, >> >Fernando > > > >> >On 12/5/06, Alessandro Fanna <fa...@in...> wrote: >> >> >> >> Hello to all, I'm a first user of this software and just installed it >> on a >> >> XP machine. >> >> This is probably a simple rookie problem, but after installation I'm >> not >> >> able to see dxf files. I mean, I go to the main window, choose the DXF >> >> option and load the dxf file, but nothing displays. >> >> Loading shp files goes smooth, am I missing something? >> >> >> >> Thanks, >> >> >> >> Alessio >> >> >> >> >> >> >> ------------------------------------------------------------------------- >> >> Take Surveys. Earn Cash. Influence the Future of IT >> >> Join SourceForge.net's Techsay panel and you'll get the chance to share >> >> your >> >> opinions on IT & business topics through brief surveys - and earn cash >> >> >> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV >> >> _______________________________________________ >> >> Orbiscad-users mailing list >> >> Orb...@li... >> >> https://lists.sourceforge.net/lists/listinfo/orbiscad-users >> >> >> >-------------- next part -------------- >> >An HTML attachment was scrubbed... >> >URL: >> http://sourceforge.net/mailarchive/forum.php?forum=orbiscad-users/attachments/20061205/7b7cf781/attachment.html >> > >> >------------------------------ >> > >> >------------------------------------------------------------------------- >> >Take Surveys. Earn Cash. Influence the Future of IT >> >Join SourceForge.net's Techsay panel and you'll get the chance to share >> your >> >opinions on IT & business topics through brief surveys - and earn cash >> >http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV >> > >> >------------------------------ >> > >> >_______________________________________________ >> >Orbiscad-users mailing list >> >Orb...@li... >> >https://lists.sourceforge.net/lists/listinfo/orbiscad-users >> > >> > >> >End of Orbiscad-users Digest, Vol 2, Issue 1 >> >******************************************** >> >> >> >> ------------------------------------------------------------------------- >> Take Surveys. Earn Cash. Influence the Future of IT >> Join SourceForge.net's Techsay panel and you'll get the chance to share >> your >> opinions on IT & business topics through brief surveys - and earn cash >> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV >> _______________________________________________ >> Orbiscad-users mailing list >> Orb...@li... >> https://lists.sourceforge.net/lists/listinfo/orbiscad-users >> >-------------- next part -------------- >An HTML attachment was scrubbed... >URL: http://sourceforge.net/mailarchive/forum.php?forum=orbiscad-users/attachments/20061207/d6072e3d/attachment.html > >------------------------------ > >------------------------------------------------------------------------- >Take Surveys. Earn Cash. Influence the Future of IT >Join SourceForge.net's Techsay panel and you'll get the chance to share your >opinions on IT & business topics through brief surveys - and earn cash >http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > >------------------------------ > >_______________________________________________ >Orbiscad-users mailing list >Orb...@li... >https://lists.sourceforge.net/lists/listinfo/orbiscad-users > > >End of Orbiscad-users Digest, Vol 2, Issue 3 >******************************************** |
From: <fer...@gm...> - 2006-12-07 09:31:27
|
Kosmo (http://www.saig.es/kosmo.php) can edit shp files and can show dxf files. gvSIG also but the OrbisCAD driver is the same as the gvSIG 0.6 so it won't likely work neither. Furthermore, it's not a very stable software. You can also take a look at QGis (I don't know if it supports dxf, ...) Let me know what software finally fits your needs. Bye. Fernando On 12/6/06, Alessandro Fanna <fa...@in...> wrote: > > Thanks for the reply, Fernando. > In your opinion, wich OS Gis viewer that supports shp files is the best > for viewing (editing is not necessary) DXF files? > > > >Send Orbiscad-users mailing list submissions to > > orb...@li... > > > >To subscribe or unsubscribe via the World Wide Web, visit > > https://lists.sourceforge.net/lists/listinfo/orbiscad-users > >or, via email, send a message with subject or body 'help' to > > orb...@li... > > > >You can reach the person managing the list at > > orb...@li... > > > >When replying, please edit your Subject line so it is more specific > >than "Re: Contents of Orbiscad-users digest..." > > > > > >Today's Topics: > > > > 1. Unable to see dxf. (Alessandro Fanna) > > 2. Re: Unable to see dxf. ( Fernando Gonz?lez ) > > > > > >---------------------------------------------------------------------- > > > >Message: 1 > >Date: Tue, 5 Dec 2006 10:24:50 +0100 > >From: Alessandro Fanna <fa...@in...> > >Subject: [Orbiscad-users] Unable to see dxf. > >To: orb...@li.... > >Message-ID: <E8D...@in...> > >Content-Type: text/plain; charset="us-ascii" > > > >Hello to all, I'm a first user of this software and just installed it on > a XP machine. > >This is probably a simple rookie problem, but after installation I'm not > able to see dxf files. I mean, I go to the main window, choose the DXF > option and load the dxf file, but nothing displays. > >Loading shp files goes smooth, am I missing something? > > > >Thanks, > > > >Alessio > > > > > > > > > >------------------------------ > > > >Message: 2 > >Date: Tue, 5 Dec 2006 10:30:32 +0100 > >From: " Fernando Gonz?lez " <fer...@gm...> > >Subject: Re: [Orbiscad-users] Unable to see dxf. > >To: orb...@li... > >Message-ID: > > <6ce...@ma...> > >Content-Type: text/plain; charset="iso-8859-1" > > > >Hi Alessandro, > > > >You aren't missing anything. The problem is that OrbisCAD doesn?t support > >DXF format very well... > > > >greetings, > >Fernando > > > >On 12/5/06, Alessandro Fanna <fa...@in...> wrote: > >> > >> Hello to all, I'm a first user of this software and just installed it > on a > >> XP machine. > >> This is probably a simple rookie problem, but after installation I'm > not > >> able to see dxf files. I mean, I go to the main window, choose the DXF > >> option and load the dxf file, but nothing displays. > >> Loading shp files goes smooth, am I missing something? > >> > >> Thanks, > >> > >> Alessio > >> > >> > >> > ------------------------------------------------------------------------- > >> Take Surveys. Earn Cash. Influence the Future of IT > >> Join SourceForge.net's Techsay panel and you'll get the chance to share > >> your > >> opinions on IT & business topics through brief surveys - and earn cash > >> > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > >> _______________________________________________ > >> Orbiscad-users mailing list > >> Orb...@li... > >> https://lists.sourceforge.net/lists/listinfo/orbiscad-users > >> > >-------------- next part -------------- > >An HTML attachment was scrubbed... > >URL: > http://sourceforge.net/mailarchive/forum.php?forum=orbiscad-users/attachments/20061205/7b7cf781/attachment.html > > > >------------------------------ > > > >------------------------------------------------------------------------- > >Take Surveys. Earn Cash. Influence the Future of IT > >Join SourceForge.net's Techsay panel and you'll get the chance to share > your > >opinions on IT & business topics through brief surveys - and earn cash > >http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > > > >------------------------------ > > > >_______________________________________________ > >Orbiscad-users mailing list > >Orb...@li... > >https://lists.sourceforge.net/lists/listinfo/orbiscad-users > > > > > >End of Orbiscad-users Digest, Vol 2, Issue 1 > >******************************************** > > > > ------------------------------------------------------------------------- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to share > your > opinions on IT & business topics through brief surveys - and earn cash > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > _______________________________________________ > Orbiscad-users mailing list > Orb...@li... > https://lists.sourceforge.net/lists/listinfo/orbiscad-users > |
From: Alessandro F. <fa...@in...> - 2006-12-06 08:45:55
|
Thanks for the reply, Fernando. In your opinion, wich OS Gis viewer that supports shp files is the best for viewing (editing is not necessary) DXF files? >Send Orbiscad-users mailing list submissions to > orb...@li... > >To subscribe or unsubscribe via the World Wide Web, visit > https://lists.sourceforge.net/lists/listinfo/orbiscad-users >or, via email, send a message with subject or body 'help' to > orb...@li... > >You can reach the person managing the list at > orb...@li... > >When replying, please edit your Subject line so it is more specific >than "Re: Contents of Orbiscad-users digest..." > > >Today's Topics: > > 1. Unable to see dxf. (Alessandro Fanna) > 2. Re: Unable to see dxf. ( Fernando Gonz?lez ) > > >---------------------------------------------------------------------- > >Message: 1 >Date: Tue, 5 Dec 2006 10:24:50 +0100 >From: Alessandro Fanna <fa...@in...> >Subject: [Orbiscad-users] Unable to see dxf. >To: orb...@li.... >Message-ID: <E8D...@in...> >Content-Type: text/plain; charset="us-ascii" > >Hello to all, I'm a first user of this software and just installed it on a XP machine. >This is probably a simple rookie problem, but after installation I'm not able to see dxf files. I mean, I go to the main window, choose the DXF option and load the dxf file, but nothing displays. >Loading shp files goes smooth, am I missing something? > >Thanks, > >Alessio > > > > >------------------------------ > >Message: 2 >Date: Tue, 5 Dec 2006 10:30:32 +0100 >From: " Fernando Gonz?lez " <fer...@gm...> >Subject: Re: [Orbiscad-users] Unable to see dxf. >To: orb...@li... >Message-ID: > <6ce...@ma...> >Content-Type: text/plain; charset="iso-8859-1" > >Hi Alessandro, > >You aren't missing anything. The problem is that OrbisCAD doesn?t support >DXF format very well... > >greetings, >Fernando > >On 12/5/06, Alessandro Fanna <fa...@in...> wrote: >> >> Hello to all, I'm a first user of this software and just installed it on a >> XP machine. >> This is probably a simple rookie problem, but after installation I'm not >> able to see dxf files. I mean, I go to the main window, choose the DXF >> option and load the dxf file, but nothing displays. >> Loading shp files goes smooth, am I missing something? >> >> Thanks, >> >> Alessio >> >> >> ------------------------------------------------------------------------- >> Take Surveys. Earn Cash. Influence the Future of IT >> Join SourceForge.net's Techsay panel and you'll get the chance to share >> your >> opinions on IT & business topics through brief surveys - and earn cash >> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV >> _______________________________________________ >> Orbiscad-users mailing list >> Orb...@li... >> https://lists.sourceforge.net/lists/listinfo/orbiscad-users >> >-------------- next part -------------- >An HTML attachment was scrubbed... >URL: http://sourceforge.net/mailarchive/forum.php?forum=orbiscad-users/attachments/20061205/7b7cf781/attachment.html > >------------------------------ > >------------------------------------------------------------------------- >Take Surveys. Earn Cash. Influence the Future of IT >Join SourceForge.net's Techsay panel and you'll get the chance to share your >opinions on IT & business topics through brief surveys - and earn cash >http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > >------------------------------ > >_______________________________________________ >Orbiscad-users mailing list >Orb...@li... >https://lists.sourceforge.net/lists/listinfo/orbiscad-users > > >End of Orbiscad-users Digest, Vol 2, Issue 1 >******************************************** |
From: <fer...@gm...> - 2006-12-05 09:30:35
|
Hi Alessandro, You aren't missing anything. The problem is that OrbisCAD doesn=B4t support DXF format very well... greetings, Fernando On 12/5/06, Alessandro Fanna <fa...@in...> wrote: > > Hello to all, I'm a first user of this software and just installed it on = a > XP machine. > This is probably a simple rookie problem, but after installation I'm not > able to see dxf files. I mean, I go to the main window, choose the DXF > option and load the dxf file, but nothing displays. > Loading shp files goes smooth, am I missing something? > > Thanks, > > Alessio > > > ------------------------------------------------------------------------- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to share > your > opinions on IT & business topics through brief surveys - and earn cash > http://www.techsay.com/default.php?page=3Djoin.php&p=3Dsourceforge&CID=3D= DEVDEV > _______________________________________________ > Orbiscad-users mailing list > Orb...@li... > https://lists.sourceforge.net/lists/listinfo/orbiscad-users > |
From: Alessandro F. <fa...@in...> - 2006-12-05 09:25:09
|
Hello to all, I'm a first user of this software and just installed it on a XP machine. This is probably a simple rookie problem, but after installation I'm not able to see dxf files. I mean, I go to the main window, choose the DXF option and load the dxf file, but nothing displays. Loading shp files goes smooth, am I missing something? Thanks, Alessio |
From: <fer...@gm...> - 2006-11-15 09:48:50
|
SSdtIGdsYWQgdG8gaGVhciB0aGF0LiBZZXMgaXQgd2FzIGEgbG90IG9mIHdvcmsgYW5kIHRoZSBz b2Z0d2FyZSBpcwp0aG9yb3VnaGx5IGRlc2lnbmVkLiBOZXZlcnRoZWxlc3MsIEkgdGhpbmsgaXQn cyBub3Qgd29ydGggdG8ga2VlcCB0aGUgd29yawp3aXRoIE9yYmlzQ0FEIHNpbmNlIHRoZXJlIGFy ZSBvdGhlciBwcm9qZWN0cyB3aXRoIHRoZSBzYW1lIGFuZCBtb3JlCmZ1bmN0aW9uYWxpdGllcyBh bmQgd2l0aCBtb3JlIGRldmVsb3BtZW50IGFuZCBlY29ub21pY2FsIHBvd2VyIHRoYW4gbXlzZWxm LgpJIHBlcnNvbmFsbHkgbGlrZSBLb3NtbyAoaHR0cDovL3d3dy5zYWlnLmVzL2tvc21vLnBocCkg YnV0IHRoZXJlIGFyZSBvdGhlcnMKbGlrZSB1RGlnLCBRR0lTLCBndlNJRy4uLiAoeW91IHdpbGwg ZmluZCB0aGVtIGVhc2lseSBpbiBnb29nbGUpLgoKRmVybmFuZG8KCk9uIDExLzE1LzA2LCBjaHJp cyBoZXJtYW5zZW4gPGNsaEB0aW1iZXJsaW5lLmNhPiB3cm90ZToKPgo+IEhlbGxvIEZlcm5hbmRv Owo+Cj4gVGhhbmtzIHZlcnkgbXVjaCBmb3IgeW91ciBwcm9tcHQgcmVwbHksIGl0IGV4cGxhaW5z IGNsZWFybHkgaG93IHRvIHNvbHZlCj4gbXkgcHJvYmxlbS4gIEkgd2lsbCBjb250aW51ZSB0byB0 cnkgb3V0IHRoZSBzb2Z0d2FyZS4KPgo+IEl0IHNlZW1zIHlvdSBoYXZlIGRvbmUgYSBsb3Qgb2Yg d29yay4gIERvIHlvdSB0aGluayBhbnlvbmUgZWxzZSBtYXkgY29tZQo+IGFsb25nIGFuZCBwaWNr IGl0IHVwPwo+Cj4gT24gMTEvMTUvMDYsIEZlcm5hbmRvIEdvbnrDoWxleiA8ZmVyZ29uY29AZ21h aWwuY29tPiB3cm90ZToKPiA+Cj4gPiBIZWxsbyBDaHJpcywKPiA+Cj4gPiBZb3UgaGF2ZSBkb25l IGV2ZXJ5dGhpbmcgcmlnaHQgYnV0IHlvdSBoYXZlbid0IHVuZGVyc3Rvb2Qgd2VsbCB0aGUgIkph dmEKPiA+IE9wZW4gZGlhbG9ndWUsIGFza2luZyBtZSB0byBjaG9vc2UgYW4gRk1hcCBER04gRHJp dmVyIi4gVGhhdCBkaWFsb2cgaXMKPiA+IGFza2luZyB5b3UgdG8gY2hvb3NlIGEgREdOIGZpbGUs IG5vdCBhIERHTiBEcml2ZXIuLi4KPiA+Cj4gPiBCeSB0aGUgd2F5LCBJIGhhdmUgdG8gd2FybiB5 b3UgdGhhdCB0aGUgcHJvamVjdCBpcyBubyBsb25nZXIgYmVpbmcKPiA+IGRldmVsb3BlZCwgSSBk aWQgaXQgaW4gbXkgZnJlZSB0aW1lIGFuZCBub3cgSSBoYXZlbid0IGFueSBvZiBpdC4uLiBzbyB0 aGVyZQo+ID4gd29uJ3QgYmUgYW55IGJ1ZyBmaXhlcyBvciBzby4KPiA+Cj4gPiBGZWVsIGZyZWUg dG8gYXNrIHRoZSBmb3J1bSBpZiB5b3UgaGF2ZSBhbnkgcHJvYmxlbS4uLiAoYW55IHNtYWxsIHBy b2JsZW0KPiA+IDspCj4gPgo+ID4gYmVzdCByZWdhcmRzLAo+ID4gRmVybmFuZG8KPiA+Cj4gPiBP biAxMS8xNC8wNiwgY2hyaXMgaGVybWFuc2VuIDwgY2xoQHRpbWJlcmxpbmUuY2E+IHdyb3RlOgo+ ID4KPiA+ID4gSGVsbG8sIGxpc3Q7Cj4gPiA+Cj4gPiA+IE15IGZpcnN0IHBvc3QsIHRhbWJpw6lu IG5lY2VzaXRvIGRhciB1bmFzIGdyYWNpYXMgYSBsYSBnZW50ZSBkZQo+ID4gPiBvcmJpc2NhZCEK PiA+ID4KPiA+ID4gSSBkb3dubG9hZGVkIE9yYmlzQ0FELWxpbnV4LTEuMC50Z3ogdG9kYXkgYW5k IGV4cGFuZGVkIGludG8KPiA+ID4gL2hvbWUvY2xoL0Rlc2t0b3AvT3JiaXNDQUQuCj4gPiA+Cj4g PiA+IEZyb20gdGhlIGNvbW1hbmQgbGluZSwgSToKPiA+ID4KPiA+ID4gY2QgL2hvbWUvY2xoL0Rl c2t0b3AvT3JiaXNDQUQKPiA+ID4gLi9PcmJpc0NBRC1lbmdsaXNoLnNoCj4gPiA+Cj4gPiA+IElu IHRoZSB0ZXJtaW5hbCB3aW5kb3csIEkgc2VlIHRoZSBmb2xsb3dpbmcgb3V0cHV0Ogo+ID4gPgo+ ID4gPiBTUEhFUk9JRFsiV0dTODQiLCA2Mzc4MTM3LjAsIDI5OC4yNTcyMjM1NjNdCj4gPiA+IEdy YXBoaWNMYXllcjogQ29uc3RydWN0b3IKPiA+ID4gREVCVUcgW21haW5dICggSTE4Ti5qYXZhOjEy MSkgLSBlbgo+ID4gPiBERUJVRyBbbWFpbl0gKEkxOE4uamF2YToxMjkpIC0gMQo+ID4gPiBJbWFn ZW4gY29uIG51bGwgZW4gREVTQUNUVUFMSVpBRE8uIFdpZHRoID0gNzY0Cj4gPiA+Cj4gPiA+IFVw IGNvbWVzIHRoZSBhcHBsaWNhdGlvbi4KPiA+ID4KPiA+ID4gTW9zdCBjb250cm9scyBhcmUgZGlz YWJsZWQuICBJIHRyeSB0aGUgIm9wZW4iIGJ1dHRvbi4KPiA+ID4KPiA+ID4gQSBwb3AtdXAgY29t ZXMgdXAgdGhhdCBzYXlzOgo+ID4gPgo+ID4gPiBPcGVuCj4gPiA+IE11c3QgY2hvb3NlIG9uZSBv ZiB0aGUgbGlzdCBpdGVtcwo+ID4gPgo+ID4gPiBTZWxlY3Qgd2l6YXJkCj4gPiA+IEZNYXAgU2hh cGVmaWxlIERyaXZlcgo+ID4gPiBHREJNUyBQb3N0R0lTIGRyaXZlcgo+ID4gPiBGTWFwIERYRiBE cml2ZXIKPiA+ID4gRk1hcCBER04gRHJpdmVyCj4gPiA+IEZNYXAgRFdHIERyaXZlcgo+ID4gPgo+ ID4gPiBJIHNlbGVjdCBGTWFwIERHTiBEcml2ZXIuICBVcCBjb21lcyB0aGUgSmF2YSBPcGVuIGRp YWxvZ3VlLCBhc2tpbmcgbWUKPiA+ID4gdG8gY2hvb3NlIGFuIEZNYXAgREdOIERyaXZlci4KPiA+ ID4KPiA+ID4gSG1tPyAgV2hlcmUgd291bGQgSSBmaW5kIG9uZSBvZiB0aG9zZT8KPiA+ID4KPiA+ ID4gSSBjaGFuZ2UgaW50byB0aGUgL2hvbWUvY2xoL0Rlc2t0b3AvT3JiaXNDQUQgZGlyZWN0b3J5 IGJ1dCBzZWUgb25seQo+ID4gPiBkaXJlY3RvcmllcyBmcm9tIHRoZXJlIG9uIGRvd24uCj4gPiA+ Cj4gPiA+IEFtIEkgbWlzc2luZyBzb21ldGhpbmc/ICBBbiBlbnZpcm9ubWVudCB2YXJpYWJsZSBu ZWVkcyBzZXR0aW5nPyAgV3JvbmcKPiA+ID4gamF2YSBydW50aW1lIGZvciBteSBtYWNoaW5lPwo+ ID4gPgo+ID4gPiBFbnZpcm9ubWVudDoKPiA+ID4KPiA+ID4gVWJ1bnR1IDYuMTAgVG9zaGliYSBQ NCBIVC4KPiA+ID4KPiA+ID4gVGhhbmtzIGluIGFkdmFuY2U7IEkgbG9vayBmb3J3YXJkIHRvIHRy eWluZyB0aGlzIG91dCBpbiBhIGJpdCBtb3JlCj4gPiA+IGRldGFpbCB3aGVuIEkgZ2V0IHRoaXMg cHJvYmxlbSByZXNvbHZlZCEKPiA+ID4KPiA+ID4gLS0KPiA+ID4gQ2hyaXMgSGVybWFuc2VuIMqY IFRpbWJlcmxpbmUgRm9yZXN0IEludmVudG9yeSBDb25zdWx0YW50cwo+ID4gPiA0MDEgypggOTU4 IFdlc3QgOHRoIEF2ZW51ZSDKmCBWYW5jb3V2ZXIgQkMgQ0FOQURBICBWNVogMUU1Cj4gPiA+IG1h aWx0bzpjbGhAdGltYmVybGluZS5jYSDKmCB0ZWw6ICsxLjYwNC43MTQuMjg3OAo+ID4gPiBtb2Jp bGU6ICszMy42LjgzLjQxLjc1LjI0IEdyZW5vYmxlIC0gVmFuY291dmVyKzlocnMKPiA+ID4KPiA+ ID4gQydlc3QgbWEgZmHDp29uIGRlIHBhcmxlci4KPiA+ID4KPiA+ID4gLS0tLS0tLS0tLS0tLS0t LS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t LQo+ID4gPiBVc2luZyBUb21jYXQgYnV0IG5lZWQgdG8gZG8gbW9yZT8gTmVlZCB0byBzdXBwb3J0 IHdlYiBzZXJ2aWNlcywKPiA+ID4gc2VjdXJpdHk/Cj4gPiA+IEdldCBzdHVmZiBkb25lIHF1aWNr bHkgd2l0aCBwcmUtaW50ZWdyYXRlZCB0ZWNobm9sb2d5IHRvIG1ha2UgeW91ciBqb2IKPiA+ID4g ZWFzaWVyCj4gPiA+IERvd25sb2FkIElCTSBXZWJTcGhlcmUgQXBwbGljYXRpb24gU2VydmVyIHYu MS4wLjEgYmFzZWQgb24gQXBhY2hlCj4gPiA+IEdlcm9uaW1vCj4gPiA+Cj4gPiA+IGh0dHA6Ly9z ZWwuYXMtdXMuZmFsa2FnLm5ldC9zZWw/Y21kPWxuayZraWQ9MTIwNzA5JmJpZD0yNjMwNTcmZGF0 PTEyMTY0Mgo+ID4gPgo+ID4gPiBfX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19f X19fX19fX19fXwo+ID4gPiBPcmJpc2NhZC11c2VycyBtYWlsaW5nIGxpc3QKPiA+ID4gT3JiaXNj YWQtdXNlcnNAbGlzdHMuc291cmNlZm9yZ2UubmV0Cj4gPiA+IGh0dHBzOi8vbGlzdHMuc291cmNl Zm9yZ2UubmV0L2xpc3RzL2xpc3RpbmZvL29yYmlzY2FkLXVzZXJzCj4gPiA+Cj4gPiA+Cj4gPiA+ Cj4gPgo+ID4KPiA+IC0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t LS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0KPiA+IFRha2UgU3VydmV5cy4gRWFybiBDYXNo LiBJbmZsdWVuY2UgdGhlIEZ1dHVyZSBvZiBJVAo+ID4gSm9pbiBTb3VyY2VGb3JnZS5uZXQncyBU ZWNoc2F5IHBhbmVsIGFuZCB5b3UnbGwgZ2V0IHRoZSBjaGFuY2UgdG8gc2hhcmUKPiA+IHlvdXIK PiA+IG9waW5pb25zIG9uIElUICYgYnVzaW5lc3MgdG9waWNzIHRocm91Z2ggYnJpZWYgc3VydmV5 cyAtIGFuZCBlYXJuIGNhc2gKPiA+IGh0dHA6Ly93d3cudGVjaHNheS5jb20vZGVmYXVsdC5waHA/ cGFnZT1qb2luLnBocCZwPXNvdXJjZWZvcmdlJkNJRD1ERVZERVYKPiA+Cj4gPgo+ID4gX19fX19f X19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX18KPiA+IE9yYmlzY2FkLXVz ZXJzIG1haWxpbmcgbGlzdAo+ID4gT3JiaXNjYWQtdXNlcnNAbGlzdHMuc291cmNlZm9yZ2UubmV0 Cj4gPiBodHRwczovL2xpc3RzLnNvdXJjZWZvcmdlLm5ldC9saXN0cy9saXN0aW5mby9vcmJpc2Nh ZC11c2Vycwo+ID4KPiA+Cj4gPgo+Cj4KPiAtLQo+IENocmlzIEhlcm1hbnNlbiDKmCBUaW1iZXJs aW5lIEZvcmVzdCBJbnZlbnRvcnkgQ29uc3VsdGFudHMKPiA0MDEgypggOTU4IFdlc3QgOHRoIEF2 ZW51ZSDKmCBWYW5jb3V2ZXIgQkMgQ0FOQURBICBWNVogMUU1Cj4gbWFpbHRvOmNsaEB0aW1iZXJs aW5lLmNhIMqYIHRlbDogKzEuNjA0LjcxNC4yODc4Cj4gbW9iaWxlOiArMzMuNi44My40MS43NS4y NCBHcmVub2JsZSAtIFZhbmNvdXZlcis5aHJzCj4KPiBDJ2VzdCBtYSBmYcOnb24gZGUgcGFybGVy Lgo+IC0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t LS0tLS0tLS0tLS0tLS0tLS0tLS0KPiBUYWtlIFN1cnZleXMuIEVhcm4gQ2FzaC4gSW5mbHVlbmNl IHRoZSBGdXR1cmUgb2YgSVQKPiBKb2luIFNvdXJjZUZvcmdlLm5ldCdzIFRlY2hzYXkgcGFuZWwg YW5kIHlvdSdsbCBnZXQgdGhlIGNoYW5jZSB0byBzaGFyZQo+IHlvdXIKPiBvcGluaW9ucyBvbiBJ VCAmIGJ1c2luZXNzIHRvcGljcyB0aHJvdWdoIGJyaWVmIHN1cnZleXMgLSBhbmQgZWFybiBjYXNo Cj4gaHR0cDovL3d3dy50ZWNoc2F5LmNvbS9kZWZhdWx0LnBocD9wYWdlPWpvaW4ucGhwJnA9c291 cmNlZm9yZ2UmQ0lEPURFVkRFVgo+Cj4gX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19f X19fX19fX19fX19fX18KPiBPcmJpc2NhZC11c2VycyBtYWlsaW5nIGxpc3QKPiBPcmJpc2NhZC11 c2Vyc0BsaXN0cy5zb3VyY2Vmb3JnZS5uZXQKPiBodHRwczovL2xpc3RzLnNvdXJjZWZvcmdlLm5l dC9saXN0cy9saXN0aW5mby9vcmJpc2NhZC11c2Vycwo+Cj4KPgo= |
From: chris h. <cl...@ti...> - 2006-11-15 09:18:31
|
SGVsbG8gRmVybmFuZG87CgpUaGFua3MgdmVyeSBtdWNoIGZvciB5b3VyIHByb21wdCByZXBseSwg aXQgZXhwbGFpbnMgY2xlYXJseSBob3cgdG8gc29sdmUgbXkKcHJvYmxlbS4gIEkgd2lsbCBjb250 aW51ZSB0byB0cnkgb3V0IHRoZSBzb2Z0d2FyZS4KCkl0IHNlZW1zIHlvdSBoYXZlIGRvbmUgYSBs b3Qgb2Ygd29yay4gIERvIHlvdSB0aGluayBhbnlvbmUgZWxzZSBtYXkgY29tZQphbG9uZyBhbmQg cGljayBpdCB1cD8KCk9uIDExLzE1LzA2LCBGZXJuYW5kbyBHb256w6FsZXogPGZlcmdvbmNvQGdt YWlsLmNvbT4gd3JvdGU6Cj4KPiBIZWxsbyBDaHJpcywKPgo+IFlvdSBoYXZlIGRvbmUgZXZlcnl0 aGluZyByaWdodCBidXQgeW91IGhhdmVuJ3QgdW5kZXJzdG9vZCB3ZWxsIHRoZSAiSmF2YQo+IE9w ZW4gZGlhbG9ndWUsIGFza2luZyBtZSB0byBjaG9vc2UgYW4gRk1hcCBER04gRHJpdmVyIi4gVGhh dCBkaWFsb2cgaXMKPiBhc2tpbmcgeW91IHRvIGNob29zZSBhIERHTiBmaWxlLCBub3QgYSBER04g RHJpdmVyLi4uCj4KPiBCeSB0aGUgd2F5LCBJIGhhdmUgdG8gd2FybiB5b3UgdGhhdCB0aGUgcHJv amVjdCBpcyBubyBsb25nZXIgYmVpbmcKPiBkZXZlbG9wZWQsIEkgZGlkIGl0IGluIG15IGZyZWUg dGltZSBhbmQgbm93IEkgaGF2ZW4ndCBhbnkgb2YgaXQuLi4gc28gdGhlcmUKPiB3b24ndCBiZSBh bnkgYnVnIGZpeGVzIG9yIHNvLgo+Cj4gRmVlbCBmcmVlIHRvIGFzayB0aGUgZm9ydW0gaWYgeW91 IGhhdmUgYW55IHByb2JsZW0uLi4gKGFueSBzbWFsbCBwcm9ibGVtCj4gOykKPgo+IGJlc3QgcmVn YXJkcywKPiBGZXJuYW5kbwo+Cj4gT24gMTEvMTQvMDYsIGNocmlzIGhlcm1hbnNlbiA8Y2xoQHRp bWJlcmxpbmUuY2E+IHdyb3RlOgo+Cj4gPiBIZWxsbywgbGlzdDsKPiA+Cj4gPiBNeSBmaXJzdCBw b3N0LCB0YW1iacOpbiBuZWNlc2l0byBkYXIgdW5hcyBncmFjaWFzIGEgbGEgZ2VudGUgZGUgb3Ji aXNjYWQhCj4gPgo+ID4gSSBkb3dubG9hZGVkIE9yYmlzQ0FELWxpbnV4LTEuMC50Z3ogdG9kYXkg YW5kIGV4cGFuZGVkIGludG8KPiA+IC9ob21lL2NsaC9EZXNrdG9wL09yYmlzQ0FELgo+ID4KPiA+ IEZyb20gdGhlIGNvbW1hbmQgbGluZSwgSToKPiA+Cj4gPiBjZCAvaG9tZS9jbGgvRGVza3RvcC9P cmJpc0NBRAo+ID4gLi9PcmJpc0NBRC1lbmdsaXNoLnNoCj4gPgo+ID4gSW4gdGhlIHRlcm1pbmFs IHdpbmRvdywgSSBzZWUgdGhlIGZvbGxvd2luZyBvdXRwdXQ6Cj4gPgo+ID4gU1BIRVJPSURbIldH Uzg0IiwgNjM3ODEzNy4wLCAyOTguMjU3MjIzNTYzXQo+ID4gR3JhcGhpY0xheWVyOiBDb25zdHJ1 Y3Rvcgo+ID4gREVCVUcgW21haW5dICggSTE4Ti5qYXZhOjEyMSkgLSBlbgo+ID4gREVCVUcgW21h aW5dIChJMThOLmphdmE6MTI5KSAtIDEKPiA+IEltYWdlbiBjb24gbnVsbCBlbiBERVNBQ1RVQUxJ WkFETy4gV2lkdGggPSA3NjQKPiA+Cj4gPiBVcCBjb21lcyB0aGUgYXBwbGljYXRpb24uCj4gPgo+ ID4gTW9zdCBjb250cm9scyBhcmUgZGlzYWJsZWQuICBJIHRyeSB0aGUgIm9wZW4iIGJ1dHRvbi4K PiA+Cj4gPiBBIHBvcC11cCBjb21lcyB1cCB0aGF0IHNheXM6Cj4gPgo+ID4gT3Blbgo+ID4gTXVz dCBjaG9vc2Ugb25lIG9mIHRoZSBsaXN0IGl0ZW1zCj4gPgo+ID4gU2VsZWN0IHdpemFyZAo+ID4g Rk1hcCBTaGFwZWZpbGUgRHJpdmVyCj4gPiBHREJNUyBQb3N0R0lTIGRyaXZlcgo+ID4gRk1hcCBE WEYgRHJpdmVyCj4gPiBGTWFwIERHTiBEcml2ZXIKPiA+IEZNYXAgRFdHIERyaXZlcgo+ID4KPiA+ IEkgc2VsZWN0IEZNYXAgREdOIERyaXZlci4gIFVwIGNvbWVzIHRoZSBKYXZhIE9wZW4gZGlhbG9n dWUsIGFza2luZyBtZSB0bwo+ID4gY2hvb3NlIGFuIEZNYXAgREdOIERyaXZlci4KPiA+Cj4gPiBI bW0/ICBXaGVyZSB3b3VsZCBJIGZpbmQgb25lIG9mIHRob3NlPwo+ID4KPiA+IEkgY2hhbmdlIGlu dG8gdGhlIC9ob21lL2NsaC9EZXNrdG9wL09yYmlzQ0FEIGRpcmVjdG9yeSBidXQgc2VlIG9ubHkK PiA+IGRpcmVjdG9yaWVzIGZyb20gdGhlcmUgb24gZG93bi4KPiA+Cj4gPiBBbSBJIG1pc3Npbmcg c29tZXRoaW5nPyAgQW4gZW52aXJvbm1lbnQgdmFyaWFibGUgbmVlZHMgc2V0dGluZz8gIFdyb25n Cj4gPiBqYXZhIHJ1bnRpbWUgZm9yIG15IG1hY2hpbmU/Cj4gPgo+ID4gRW52aXJvbm1lbnQ6Cj4g Pgo+ID4gVWJ1bnR1IDYuMTAgVG9zaGliYSBQNCBIVC4KPiA+Cj4gPiBUaGFua3MgaW4gYWR2YW5j ZTsgSSBsb29rIGZvcndhcmQgdG8gdHJ5aW5nIHRoaXMgb3V0IGluIGEgYml0IG1vcmUKPiA+IGRl dGFpbCB3aGVuIEkgZ2V0IHRoaXMgcHJvYmxlbSByZXNvbHZlZCEKPiA+Cj4gPiAtLQo+ID4gQ2hy aXMgSGVybWFuc2VuIMqYIFRpbWJlcmxpbmUgRm9yZXN0IEludmVudG9yeSBDb25zdWx0YW50cwo+ ID4gNDAxIMqYIDk1OCBXZXN0IDh0aCBBdmVudWUgypggVmFuY291dmVyIEJDIENBTkFEQSAgVjVa IDFFNQo+ID4gbWFpbHRvOmNsaEB0aW1iZXJsaW5lLmNhIMqYIHRlbDogKzEuNjA0LjcxNC4yODc4 Cj4gPiBtb2JpbGU6ICszMy42LjgzLjQxLjc1LjI0IEdyZW5vYmxlIC0gVmFuY291dmVyKzlocnMK PiA+Cj4gPiBDJ2VzdCBtYSBmYcOnb24gZGUgcGFybGVyLgo+ID4KPiA+IC0tLS0tLS0tLS0tLS0t LS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t LS0KPiA+IFVzaW5nIFRvbWNhdCBidXQgbmVlZCB0byBkbyBtb3JlPyBOZWVkIHRvIHN1cHBvcnQg d2ViIHNlcnZpY2VzLAo+ID4gc2VjdXJpdHk/Cj4gPiBHZXQgc3R1ZmYgZG9uZSBxdWlja2x5IHdp dGggcHJlLWludGVncmF0ZWQgdGVjaG5vbG9neSB0byBtYWtlIHlvdXIgam9iCj4gPiBlYXNpZXIK PiA+IERvd25sb2FkIElCTSBXZWJTcGhlcmUgQXBwbGljYXRpb24gU2VydmVyIHYuMS4wLjEgYmFz ZWQgb24gQXBhY2hlCj4gPiBHZXJvbmltbwo+ID4gaHR0cDovL3NlbC5hcy11cy5mYWxrYWcubmV0 L3NlbD9jbWQ9bG5rJmtpZD0xMjA3MDkmYmlkPTI2MzA1NyZkYXQ9MTIxNjQyCj4gPgo+ID4gX19f X19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX18KPiA+IE9yYmlzY2Fk LXVzZXJzIG1haWxpbmcgbGlzdAo+ID4gT3JiaXNjYWQtdXNlcnNAbGlzdHMuc291cmNlZm9yZ2Uu bmV0Cj4gPiBodHRwczovL2xpc3RzLnNvdXJjZWZvcmdlLm5ldC9saXN0cy9saXN0aW5mby9vcmJp c2NhZC11c2Vycwo+ID4KPiA+Cj4gPgo+Cj4gLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t LS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLQo+IFRha2UgU3VydmV5 cy4gRWFybiBDYXNoLiBJbmZsdWVuY2UgdGhlIEZ1dHVyZSBvZiBJVAo+IEpvaW4gU291cmNlRm9y Z2UubmV0J3MgVGVjaHNheSBwYW5lbCBhbmQgeW91J2xsIGdldCB0aGUgY2hhbmNlIHRvIHNoYXJl Cj4geW91cgo+IG9waW5pb25zIG9uIElUICYgYnVzaW5lc3MgdG9waWNzIHRocm91Z2ggYnJpZWYg c3VydmV5cyAtIGFuZCBlYXJuIGNhc2gKPiBodHRwOi8vd3d3LnRlY2hzYXkuY29tL2RlZmF1bHQu cGhwP3BhZ2U9am9pbi5waHAmcD1zb3VyY2Vmb3JnZSZDSUQ9REVWREVWCj4KPiBfX19fX19fX19f X19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fXwo+IE9yYmlzY2FkLXVzZXJzIG1h aWxpbmcgbGlzdAo+IE9yYmlzY2FkLXVzZXJzQGxpc3RzLnNvdXJjZWZvcmdlLm5ldAo+IGh0dHBz Oi8vbGlzdHMuc291cmNlZm9yZ2UubmV0L2xpc3RzL2xpc3RpbmZvL29yYmlzY2FkLXVzZXJzCj4K Pgo+CgoKLS0gCkNocmlzIEhlcm1hbnNlbiDKmCBUaW1iZXJsaW5lIEZvcmVzdCBJbnZlbnRvcnkg Q29uc3VsdGFudHMKNDAxIMqYIDk1OCBXZXN0IDh0aCBBdmVudWUgypggVmFuY291dmVyIEJDIENB TkFEQSAgVjVaIDFFNQptYWlsdG86Y2xoQHRpbWJlcmxpbmUuY2EgypggdGVsOiArMS42MDQuNzE0 LjI4NzgKbW9iaWxlOiArMzMuNi44My40MS43NS4yNCBHcmVub2JsZSAtIFZhbmNvdXZlcis5aHJz CgpDJ2VzdCBtYSBmYcOnb24gZGUgcGFybGVyLgo= |
From: <fer...@gm...> - 2006-11-15 07:57:50
|
SGVsbG8gQ2hyaXMsCgpZb3UgaGF2ZSBkb25lIGV2ZXJ5dGhpbmcgcmlnaHQgYnV0IHlvdSBoYXZl bid0IHVuZGVyc3Rvb2Qgd2VsbCB0aGUgIkphdmEKT3BlbiBkaWFsb2d1ZSwgYXNraW5nIG1lIHRv IGNob29zZSBhbiBGTWFwIERHTiBEcml2ZXIiLiBUaGF0IGRpYWxvZyBpcwphc2tpbmcgeW91IHRv IGNob29zZSBhIERHTiBmaWxlLCBub3QgYSBER04gRHJpdmVyLi4uCgpCeSB0aGUgd2F5LCBJIGhh dmUgdG8gd2FybiB5b3UgdGhhdCB0aGUgcHJvamVjdCBpcyBubyBsb25nZXIgYmVpbmcKZGV2ZWxv cGVkLCBJIGRpZCBpdCBpbiBteSBmcmVlIHRpbWUgYW5kIG5vdyBJIGhhdmVuJ3QgYW55IG9mIGl0 Li4uIHNvIHRoZXJlCndvbid0IGJlIGFueSBidWcgZml4ZXMgb3Igc28uCgpGZWVsIGZyZWUgdG8g YXNrIHRoZSBmb3J1bSBpZiB5b3UgaGF2ZSBhbnkgcHJvYmxlbS4uLiAoYW55IHNtYWxsIHByb2Js ZW0gOykKCmJlc3QgcmVnYXJkcywKRmVybmFuZG8KCk9uIDExLzE0LzA2LCBjaHJpcyBoZXJtYW5z ZW4gPGNsaEB0aW1iZXJsaW5lLmNhPiB3cm90ZToKPgo+IEhlbGxvLCBsaXN0Owo+Cj4gTXkgZmly c3QgcG9zdCwgdGFtYmnDqW4gbmVjZXNpdG8gZGFyIHVuYXMgZ3JhY2lhcyBhIGxhIGdlbnRlIGRl IG9yYmlzY2FkIQo+Cj4gSSBkb3dubG9hZGVkIE9yYmlzQ0FELWxpbnV4LTEuMC50Z3ogdG9kYXkg YW5kIGV4cGFuZGVkIGludG8KPiAvaG9tZS9jbGgvRGVza3RvcC9PcmJpc0NBRC4KPgo+IEZyb20g dGhlIGNvbW1hbmQgbGluZSwgSToKPgo+IGNkIC9ob21lL2NsaC9EZXNrdG9wL09yYmlzQ0FECj4g Li9PcmJpc0NBRC1lbmdsaXNoLnNoCj4KPiBJbiB0aGUgdGVybWluYWwgd2luZG93LCBJIHNlZSB0 aGUgZm9sbG93aW5nIG91dHB1dDoKPgo+IFNQSEVST0lEWyJXR1M4NCIsIDYzNzgxMzcuMCwgMjk4 LjI1NzIyMzU2M10KPiBHcmFwaGljTGF5ZXI6IENvbnN0cnVjdG9yCj4gREVCVUcgW21haW5dICgg STE4Ti5qYXZhOjEyMSkgLSBlbgo+IERFQlVHIFttYWluXSAoSTE4Ti5qYXZhOjEyOSkgLSAxCj4g SW1hZ2VuIGNvbiBudWxsIGVuIERFU0FDVFVBTElaQURPLiBXaWR0aCA9IDc2NAo+Cj4gVXAgY29t ZXMgdGhlIGFwcGxpY2F0aW9uLgo+Cj4gTW9zdCBjb250cm9scyBhcmUgZGlzYWJsZWQuICBJIHRy eSB0aGUgIm9wZW4iIGJ1dHRvbi4KPgo+IEEgcG9wLXVwIGNvbWVzIHVwIHRoYXQgc2F5czoKPgo+ IE9wZW4KPiBNdXN0IGNob29zZSBvbmUgb2YgdGhlIGxpc3QgaXRlbXMKPgo+IFNlbGVjdCB3aXph cmQKPiBGTWFwIFNoYXBlZmlsZSBEcml2ZXIKPiBHREJNUyBQb3N0R0lTIGRyaXZlcgo+IEZNYXAg RFhGIERyaXZlcgo+IEZNYXAgREdOIERyaXZlcgo+IEZNYXAgRFdHIERyaXZlcgo+Cj4gSSBzZWxl Y3QgRk1hcCBER04gRHJpdmVyLiAgVXAgY29tZXMgdGhlIEphdmEgT3BlbiBkaWFsb2d1ZSwgYXNr aW5nIG1lIHRvCj4gY2hvb3NlIGFuIEZNYXAgREdOIERyaXZlci4KPgo+IEhtbT8gIFdoZXJlIHdv dWxkIEkgZmluZCBvbmUgb2YgdGhvc2U/Cj4KPiBJIGNoYW5nZSBpbnRvIHRoZSAvaG9tZS9jbGgv RGVza3RvcC9PcmJpc0NBRCBkaXJlY3RvcnkgYnV0IHNlZSBvbmx5Cj4gZGlyZWN0b3JpZXMgZnJv bSB0aGVyZSBvbiBkb3duLgo+Cj4gQW0gSSBtaXNzaW5nIHNvbWV0aGluZz8gIEFuIGVudmlyb25t ZW50IHZhcmlhYmxlIG5lZWRzIHNldHRpbmc/ICBXcm9uZwo+IGphdmEgcnVudGltZSBmb3IgbXkg bWFjaGluZT8KPgo+IEVudmlyb25tZW50Ogo+Cj4gVWJ1bnR1IDYuMTAgVG9zaGliYSBQNCBIVC4K Pgo+IFRoYW5rcyBpbiBhZHZhbmNlOyBJIGxvb2sgZm9yd2FyZCB0byB0cnlpbmcgdGhpcyBvdXQg aW4gYSBiaXQgbW9yZSBkZXRhaWwKPiB3aGVuIEkgZ2V0IHRoaXMgcHJvYmxlbSByZXNvbHZlZCEK Pgo+IC0tCj4gQ2hyaXMgSGVybWFuc2VuIMqYIFRpbWJlcmxpbmUgRm9yZXN0IEludmVudG9yeSBD b25zdWx0YW50cwo+IDQwMSDKmCA5NTggV2VzdCA4dGggQXZlbnVlIMqYIFZhbmNvdXZlciBCQyBD QU5BREEgIFY1WiAxRTUKPiBtYWlsdG86Y2xoQHRpbWJlcmxpbmUuY2EgypggdGVsOiArMS42MDQu NzE0LjI4NzgKPiBtb2JpbGU6ICszMy42LjgzLjQxLjc1LjI0IEdyZW5vYmxlIC0gVmFuY291dmVy KzlocnMKPgo+IEMnZXN0IG1hIGZhw6dvbiBkZSBwYXJsZXIuCj4gLS0tLS0tLS0tLS0tLS0tLS0t LS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLQo+ IFVzaW5nIFRvbWNhdCBidXQgbmVlZCB0byBkbyBtb3JlPyBOZWVkIHRvIHN1cHBvcnQgd2ViIHNl cnZpY2VzLCBzZWN1cml0eT8KPiBHZXQgc3R1ZmYgZG9uZSBxdWlja2x5IHdpdGggcHJlLWludGVn cmF0ZWQgdGVjaG5vbG9neSB0byBtYWtlIHlvdXIgam9iCj4gZWFzaWVyCj4gRG93bmxvYWQgSUJN IFdlYlNwaGVyZSBBcHBsaWNhdGlvbiBTZXJ2ZXIgdi4xLjAuMSBiYXNlZCBvbiBBcGFjaGUgR2Vy b25pbW8KPiBodHRwOi8vc2VsLmFzLXVzLmZhbGthZy5uZXQvc2VsP2NtZD1sbmsma2lkPTEyMDcw OSZiaWQ9MjYzMDU3JmRhdD0xMjE2NDIKPgo+IF9fX19fX19fX19fX19fX19fX19fX19fX19fX19f X19fX19fX19fX19fX19fX19fCj4gT3JiaXNjYWQtdXNlcnMgbWFpbGluZyBsaXN0Cj4gT3JiaXNj YWQtdXNlcnNAbGlzdHMuc291cmNlZm9yZ2UubmV0Cj4gaHR0cHM6Ly9saXN0cy5zb3VyY2Vmb3Jn ZS5uZXQvbGlzdHMvbGlzdGluZm8vb3JiaXNjYWQtdXNlcnMKPgo+Cj4K |
From: chris h. <cl...@ti...> - 2006-11-14 15:48:23
|
SGVsbG8sIGxpc3Q7CgpNeSBmaXJzdCBwb3N0LCB0YW1iacOpbiBuZWNlc2l0byBkYXIgdW5hcyBn cmFjaWFzIGEgbGEgZ2VudGUgZGUgb3JiaXNjYWQhCgpJIGRvd25sb2FkZWQgT3JiaXNDQUQtbGlu dXgtMS4wLnRneiB0b2RheSBhbmQgZXhwYW5kZWQgaW50bwovaG9tZS9jbGgvRGVza3RvcC9PcmJp c0NBRC4KCkZyb20gdGhlIGNvbW1hbmQgbGluZSwgSToKCmNkIC9ob21lL2NsaC9EZXNrdG9wL09y YmlzQ0FECi4vT3JiaXNDQUQtZW5nbGlzaC5zaAoKSW4gdGhlIHRlcm1pbmFsIHdpbmRvdywgSSBz ZWUgdGhlIGZvbGxvd2luZyBvdXRwdXQ6CgpTUEhFUk9JRFsiV0dTODQiLCA2Mzc4MTM3LjAsIDI5 OC4yNTcyMjM1NjNdCkdyYXBoaWNMYXllcjogQ29uc3RydWN0b3IKREVCVUcgW21haW5dIChJMThO LmphdmE6MTIxKSAtIGVuCkRFQlVHIFttYWluXSAoSTE4Ti5qYXZhOjEyOSkgLSAxCkltYWdlbiBj b24gbnVsbCBlbiBERVNBQ1RVQUxJWkFETy4gV2lkdGggPSA3NjQKClVwIGNvbWVzIHRoZSBhcHBs aWNhdGlvbi4KCk1vc3QgY29udHJvbHMgYXJlIGRpc2FibGVkLiAgSSB0cnkgdGhlICJvcGVuIiBi dXR0b24uCgpBIHBvcC11cCBjb21lcyB1cCB0aGF0IHNheXM6CgpPcGVuCk11c3QgY2hvb3NlIG9u ZSBvZiB0aGUgbGlzdCBpdGVtcwoKU2VsZWN0IHdpemFyZApGTWFwIFNoYXBlZmlsZSBEcml2ZXIK R0RCTVMgUG9zdEdJUyBkcml2ZXIKRk1hcCBEWEYgRHJpdmVyCkZNYXAgREdOIERyaXZlcgpGTWFw IERXRyBEcml2ZXIKCkkgc2VsZWN0IEZNYXAgREdOIERyaXZlci4gIFVwIGNvbWVzIHRoZSBKYXZh IE9wZW4gZGlhbG9ndWUsIGFza2luZyBtZSB0bwpjaG9vc2UgYW4gRk1hcCBER04gRHJpdmVyLgoK SG1tPyAgV2hlcmUgd291bGQgSSBmaW5kIG9uZSBvZiB0aG9zZT8KCkkgY2hhbmdlIGludG8gdGhl IC9ob21lL2NsaC9EZXNrdG9wL09yYmlzQ0FEIGRpcmVjdG9yeSBidXQgc2VlIG9ubHkKZGlyZWN0 b3JpZXMgZnJvbSB0aGVyZSBvbiBkb3duLgoKQW0gSSBtaXNzaW5nIHNvbWV0aGluZz8gIEFuIGVu dmlyb25tZW50IHZhcmlhYmxlIG5lZWRzIHNldHRpbmc/ICBXcm9uZyBqYXZhCnJ1bnRpbWUgZm9y IG15IG1hY2hpbmU/CgpFbnZpcm9ubWVudDoKClVidW50dSA2LjEwIFRvc2hpYmEgUDQgSFQuCgpU aGFua3MgaW4gYWR2YW5jZTsgSSBsb29rIGZvcndhcmQgdG8gdHJ5aW5nIHRoaXMgb3V0IGluIGEg Yml0IG1vcmUgZGV0YWlsCndoZW4gSSBnZXQgdGhpcyBwcm9ibGVtIHJlc29sdmVkIQoKLS0gCkNo cmlzIEhlcm1hbnNlbiDKmCBUaW1iZXJsaW5lIEZvcmVzdCBJbnZlbnRvcnkgQ29uc3VsdGFudHMK NDAxIMqYIDk1OCBXZXN0IDh0aCBBdmVudWUgypggVmFuY291dmVyIEJDIENBTkFEQSAgVjVaIDFF NQptYWlsdG86Y2xoQHRpbWJlcmxpbmUuY2EgypggdGVsOiArMS42MDQuNzE0LjI4NzgKbW9iaWxl OiArMzMuNi44My40MS43NS4yNCBHcmVub2JsZSAtIFZhbmNvdXZlcis5aHJzCgpDJ2VzdCBtYSBm YcOnb24gZGUgcGFybGVyLgo= |
From: <fer...@gm...> - 2006-05-18 07:17:10
|
Thanks Lluis, We will think about it. greetings, Fernando On 5/17/06, Llu=EDs Vicens <ll...@si...> wrote: > > Dear colleagues, > > Maybe you or someone in your team can be interested in participating in > this Open Source GIS Users Meeting (feel free to distribute this message)= : > > GIS & Remote Sensing Service (SIGTE) of the University of Girona (in > Spain) is organizing an* Open Source GIS Users Meeting* that will be held > in Girona during March 5th, 6th and 7th 2007. > > The main purpose of this meeting is not only to present and show new or > existing Open Source GIS software (and its capabilities or improvements). > Moreover, we are really interested in showing real applications and > experiences using any Open Source GIS software and their degree of presen= ce > in professional fields of work, pointing out advantages and disadvantages= . > > The official language of this meeting will be Spanish but English > communications or papers will also be accepted. > > We hope you'll find it interesting. > > Important dates: > > > > *Papers* > > *Deadline Abstract:* September 30th 2006 > > *Deadline Papers:* December 20th 2006 > > > *Registration* > > *Early registration:* until November 30th 2006 > > *Late registration:* after 30th 2006 > > *Registration deadline:* until February 23rd 2007 > > > > More information on User's meeting website > http://www.sigte.udg.es/jornadassiglibre > > Contact: inf...@si... > > > Sincerely, > > Llu=EDs Vicens > GIS Projects > > SIGTE - Universitat de Girona > Pla=E7a Ferrater Mora, 1 > 17071 Girona > http://www.sigte.udg.es > ll...@si... > > > |
From: <ll...@si...> - 2006-05-17 09:42:38
|
Dear colleagues, Maybe you or someone in your team can be interested in participating in t= his Open Source GIS Users Meeting (feel free to distribute this message): GIS & Remote Sensing Service (SIGTE) of the University of Girona (in Spai= n) is organizing an Open Source GIS Users Meeting that will be held in Giron= a during March 5th, 6th and 7th 2007. The main purpose of this meeting is not only to present and show new or existing Open Source GIS software (and its capabilities or improvements). Moreover, we are really interested in showing real applications and experiences using any Open Source GIS software and their degree of presen= ce in professional fields of work, pointing out advantages and disadvantages. The official language of this meeting will be Spanish but English communications or papers will also be accepted. We hope you=92ll find it interesting. Important dates: Papers Deadline Abstract: September 30th 2006 Deadline Papers: December 20th 2006 Registration Early registration: until November 30th 2006 Late registration: after 30th 2006 Registration deadline: until February 23rd 2007 More information on User=92s meeting website http://www.sigte.udg.es/jornadassiglibre Contact: inf...@si... Sincerely, Llu=EDs Vicens GIS Projects SIGTE - Universitat de Girona Pla=E7a Ferrater Mora, 1 17071 Girona http://www.sigte.udg.es ll...@si... |
From: <fer...@gm...> - 2006-05-11 08:56:30
|
It's strange since it's the first time we get that failure. I think it can be caused by two things: (a) The working directory isn't orbiscad root directory. You have to launch orbiscad from the orbiscad root directory. (b) Your download is wrong. You will have to download it again. Hope it helps, Fernando On 5/11/06, Lorenzo Perone <lor...@gm...> wrote: > > I'm trying to use orbiscad on ubuntu 5.10 > when I run perone@lorenzo-nb:/opt/orbiscad$ ./OrbisCAD-english.sh > the output is > > SPHEROID["WGS84", 6378137.0, 298.257223563] > GraphicLayer: Constructor > DEBUG [main] (I18N.java:121) - en > DEBUG [main] (I18N.java:129) - 1 > Exception in thread "main" java.lang.NullPointerException > at scriptManager.ScriptManager.getScriptsNames(ScriptManager.java > :58) > at org.estouro.ui.EditorFrame.addScriptMenus(EditorFrame.java:551= )is > > at org.estouro.ui.EditorFrame.<init>(EditorFrame.java:194) > at org.estouro.Estouro.main(Estouro.java:74) > > I suppose the problem is about java, but I can't resolve it. > By. > -- > Lorenzo Perone > |
From: Lorenzo P. <lor...@gm...> - 2006-05-11 07:16:12
|
I'm trying to use orbiscad on ubuntu 5.10 when I run perone@lorenzo-nb:/opt/orbiscad$ ./OrbisCAD-english.sh the output is SPHEROID["WGS84", 6378137.0, 298.257223563] GraphicLayer: Constructor DEBUG [main] (I18N.java:121) - en DEBUG [main] (I18N.java:129) - 1 Exception in thread "main" java.lang.NullPointerException at scriptManager.ScriptManager.getScriptsNames(ScriptManager.java :58) at org.estouro.ui.EditorFrame.addScriptMenus(EditorFrame.java:551)i= s at org.estouro.ui.EditorFrame.<init>(EditorFrame.java:194) at org.estouro.Estouro.main(Estouro.java:74) I suppose the problem is about java, but I can't resolve it. By. --=20 Lorenzo Perone |
From: listas <li...@sa...> - 2006-04-25 14:25:14
|
Buenas tardes a todos. Nos permitimos hacer esta incursión y enviar este correo a través de esta lista sólo para informaros del nacimiento de un nuevo proyecto de software SIG libre, que creemos ayudará, haciendo crecer un poco más la masa crítica de usuarios y desarrolladores, a que el software libre tenga la evolución y crecimiento que todos deseamos para él, y se convierta, definitivamente, en una alternativa real y sólida. Éste es el único correo que enviaremos a través de la misma y, a partir de ahora, informaremos a aquellos que así lo deseen a través de una lista propia, además de la comunicación de novedades generales a través de la lista de SIG de RedIris. Saludos a todos En primer lugar, tenemos el placer de informar a todos los que, de una u otra manera, formáis parte de la Comunidad SIG, del desarrollo y liberación de /kosmo //- Sistema Abierto de Información Geográfica/. Está aún en desarrollo y, aunque contiene ya una importante cantidad de recursos y funciones básicas y avanzadas, aún le faltan otras no menos importantes. A pesar de ello, hemos considerado que su estado actual es suficientemente maduro como para darlo a conocer. De esta forma esperamos, por un lado, que sea una herramienta de ayuda y útil para gran cantidad de usuarios y, por otro, empezar a recoger ya en esta fase de gestación avanzada todos aquellos comentarios, sugerencias, etc. que, a buen seguro, redundarán en una aun mayor adaptabilidad a las necesidades de los usuarios. Más información, descargas, etc: Web: http://www.saig.es Lista de usuarios: http://lists.saig.es/mailman/listinfo/kosmo - Se trata de la liberación de un cliente SIG de escritorio de funcionalidades avanzadas, y que no es mas que el primer componente de una serie de desarrollos que tenemos en marcha y que, a partir de ahora, esperamos ir dando a conocer a toda la comunidad. - Tenemos abiertas colaboraciones y esperamos intensificarlas próximamente con el ámbito universitario como una fuente inapreciable de enriquecimiento, aunque no se trata de un proyecto académico. - Hay numerosos trabajos para distintas administraciones basados en kosmo, aunque ninguno de ellos lo financia. - Se trata de un proyecto de Software Libre empresarial. - Los componentes e impulsores principales de este proyecto hemos estado dirigiendo y desarrollando grandes proyectos directamente relacionados con los Sistemas de Información Geográfica, tanto con software comercial como con software libre, en ambos casos desde hace más de una década. - Es tal la confianza que tenemos en la viabilidad del Software Libre y, más concretamente, en este proyecto, que la mayoría de nosotros hemos emprendido este nuevo camino, y no solo con una nueva apuesta profesional y personal, sino, además, apostando fuertemente y poniendo en él todos los recursos financieros necesarios para su correcto desarrollo. - Si no estamos en un error, creemos que se trata, si no de la primera, de una de las primeras veces que, desde una empresa privada, se hace una apuesta tan clara y decidida, y se desarrolla con recursos íntegramente propios un Sistema Abierto de Información Geográfica destinado desde su concepción a ser liberado a la comunidad. - Tanto su continuidad en el tiempo como su continua evolución está garantizada, ya que son numerosos los proyectos que están en marcha con Kosmo como núcleo básico, tanto para diversas administraciones como para importantes empresas de utilities y del ámbito de la cartografía. Además, confiamos en que, de la misma forma en que nosotros llevamos años enriqueciéndonos profesionalmente de la comunidad de software libre, y lo seguimos haciendo al día de hoy, nuestro trabajo sea considerado suficientemente interesante por la comunidad, y consigamos su apoyo para, entre todos, hacer crecer aun más este proyecto, en beneficio de la comunidad. - Ésta es una de las razones por las que nuestro proyecto no se ha realizado desde cero con software propio que podría (o no) ser mejor que otros: nos basamos en proyectos que han tenido y tienen un fuerte impacto y seguimiento internacional en la comunidad de desarrollo de SIG libre: JUMP, Geotools, JTS, etc. - Aprovechamos todo lo que podemos; modificamos lo que creemos necesario para mejorar su funcionamiento; corregimos los errores que detectamos; desarrollamos mucho software propio para funcionalidades que no están disponibles; desarrollamos mucho software propio para integrar y compatibilizar todos los componentes que hay dispersos e integrarlos en un proyecto compacto y estable. Esperamos que os sea de utilidad y contar con vuestro apoyo y colaboración. Un saludo a todos. Equipo de desarrollo de Kosmo |
From: <fer...@gm...> - 2006-03-28 10:25:18
|
Hi Jonathan, I have checked the bat and it seems ok. I think the problem is the way the file is unpacked. If I unpack the file with FilZip it doesn't work but if I unpack it with WinRar it works. I can't tell why it happens but maybe tryin= g to unpack it with another tool will solve the problem. Can you try? If you try another unpacking tool and it still doesn't work don't hesitate to tell us about it. greetings, Fernando On 3/27/06, Jonathan Aguero <ju...@ps...> wrote: > > Here it is the file. > > I am running jre 1.5 on my pc. > > Please note that I changed the extension to txt so that I can send it to > you. I also tried the bat file for the Spanish version without any luck. > > > > Jonathan > > > > -----Original Message----- > *From:* orb...@li... [mailto: > orb...@li...] *On Behalf Of *Fernando > Gonz=E1lez > *Sent:* Monday, March 27, 2006 10:21 AM > > *To:* orb...@li... > *Subject:* Re: [Orbiscad-users] How to install orbisCAD on Windows > > > > Hi Jonathan, > > I have just downloaded OrbisCAD and launched it without any problem. JAI > isn't needed because OrbisCAD already comes with JRE so I can't figure ou= t > what's going on. > > Usually that behaviour takes place when the bat file is wrong and doesn't > reference the correct libraries. I remember I uploaded a release with a t= ypo > in the .bat with the same behaviour you're reporting but I replaced that > version shortly after that. Can you please send us the bat file an a list= ing > of the OrbisCAD root directory? > > greetings > > On 3/27/06, *Jonathan Aguero* <ju...@ps...> wrote: > > Fernando and List, > > > > I managed to uncompress the file but now I don't know what else to do. > There is not exe file in the directory, if I run the bat file the OrbisCA= D > logo appears but nothing else happen. I suspect there is something to do > with the Java Advance Imaging API but I am not sure since there is no er= ror > messages. Do I have to install the jai first? > > Thanks in advance. > > > > Jonathan > > > > -----Original Message----- > *From:* orb...@li... [mailto: > orb...@li...] *On Behalf Of *Fernando > Gonz=E1lez > *Sent:* Monday, March 27, 2006 2:35 AM > *To:* orb...@li... > *Subject:* Re: [Orbiscad-users] How to install orbisCAD on Windows > > > > Hello Jonathan, > > The file you have downloaded is a tgz. This file is packaged with tar > and compresed with gzip so I think you have uncompressed the file but > not unpackaged it. I think that changing the file name by adding a > ".tar" at the end will allow to unpack the contents. > > This is not the first time we receive this issue so we'll change the way > we pack OrbisCAD in the next version. > > By the way, what decompressing tool are you using? Is it winzip? I think > it works fine with winrar... > > greetings > Fernando > > Jonathan Aguero wrote: > > > Dear Friends, > > > > I downloaded the file for installing OrbisCad on Windows but when I > > decompress the file there is a single file without extension so I > > don't know how to install it. > > > > Jonathan Aguero Valverde > > > > Research Assistant and PhD Student > > > > Pennsylvania State University > > > > The Pennsylvania Transportation Institute > > > > 201 Transportation Research Building > > > > University Park, PA 16802 > > > > www.personal.psu.edu/jua130 > > > > > > |
From: Jonathan A. <ju...@ps...> - 2006-03-27 17:20:04
|
jre\bin\javaw.exe -Xmx512M -cp = orbisCAD-1.0.jar;commons-transaction-1.1.jar;log4j-1.2.8.jar;units-0.01.j= ar;sif-1.0-SNAPSHOT.jar;postgresql-8.0-310.jdbc3.jar;postgis-jdbc-driver.= jar;main-2.1.1.jar;legacy-2.1.1.jar;junit-3.8.1.jar;jts-1.6.jar;iver-util= es-1.0-SNAPSHOT.jar;idw-1.3.0.jar;hsqldb-1.8.0.1.jar;geoapi-2.0.jar;gdbms= -drivers-1.0.jar;gdbms-1.0.jar;fmap-0.5-SNAPSHOT.jar;driver-manager-1.0-S= NAPSHOT.jar;cms-0.5.jar;viatoris-1.0-SNAPSHOT.jar;jdom-1.0.jar;Jama-1.0.1= .jar;jdwglib.jar;dwg.jar;bsh-2.0b4.jar org.estouro.Estouro en=0A= |
From: <fer...@gm...> - 2006-03-27 15:21:26
|
Hi Jonathan, I have just downloaded OrbisCAD and launched it without any problem. JAI isn't needed because OrbisCAD already comes with JRE so I can't figure out what's going on. Usually that behaviour takes place when the bat file is wrong and doesn't reference the correct libraries. I remember I uploaded a release with a typ= o in the .bat with the same behaviour you're reporting but I replaced that version shortly after that. Can you please send us the bat file an a listin= g of the OrbisCAD root directory? greetings On 3/27/06, Jonathan Aguero <ju...@ps...> wrote: > > Fernando and List, > > > > I managed to uncompress the file but now I don't know what else to do. > There is not exe file in the directory, if I run the bat file the OrbisCA= D > logo appears but nothing else happen. I suspect there is something to do > with the Java Advance Imaging API but I am not sure since there is no er= ror > messages. Do I have to install the jai first? > > Thanks in advance. > > > > Jonathan > > > > -----Original Message----- > *From:* orb...@li... [mailto: > orb...@li...] *On Behalf Of *Fernando > Gonz=E1lez > *Sent:* Monday, March 27, 2006 2:35 AM > *To:* orb...@li... > *Subject:* Re: [Orbiscad-users] How to install orbisCAD on Windows > > > > Hello Jonathan, > > The file you have downloaded is a tgz. This file is packaged with tar > and compresed with gzip so I think you have uncompressed the file but > not unpackaged it. I think that changing the file name by adding a > ".tar" at the end will allow to unpack the contents. > > This is not the first time we receive this issue so we'll change the way > we pack OrbisCAD in the next version. > > By the way, what decompressing tool are you using? Is it winzip? I think > it works fine with winrar... > > greetings > Fernando > > Jonathan Aguero wrote: > > > Dear Friends, > > > > I downloaded the file for installing OrbisCad on Windows but when I > > decompress the file there is a single file without extension so I > > don't know how to install it. > > > > Jonathan Aguero Valverde > > > > Research Assistant and PhD Student > > > > Pennsylvania State University > > > > The Pennsylvania Transportation Institute > > > > 201 Transportation Research Building > > > > University Park, PA 16802 > > > > www.personal.psu.edu/jua130 > > > |
From: Jonathan A. <ju...@ps...> - 2006-03-27 14:42:04
|
Fernando and List, =20 I managed to uncompress the file but now I don=92t know what else to do. = There is not exe file in the directory, if I run the bat file the OrbisCAD = logo appears but nothing else happen. I suspect there is something to do with = the Java Advance Imaging API but I am not sure since there is no error messages. Do I have to install the jai first? Thanks in advance. =20 Jonathan=20 =20 -----Original Message----- From: orb...@li... [mailto:orb...@li...] On Behalf Of = Fernando Gonz=E1lez Sent: Monday, March 27, 2006 2:35 AM To: orb...@li... Subject: Re: [Orbiscad-users] How to install orbisCAD on Windows =20 Hello Jonathan, The file you have downloaded is a tgz. This file is packaged with tar=20 and compresed with gzip so I think you have uncompressed the file but=20 not unpackaged it. I think that changing the file name by adding a=20 ".tar" at the end will allow to unpack the contents. This is not the first time we receive this issue so we'll change the way = we pack OrbisCAD in the next version. By the way, what decompressing tool are you using? Is it winzip? I think = it works fine with winrar... greetings Fernando Jonathan Aguero wrote: > Dear Friends, > > I downloaded the file for installing OrbisCad on Windows but when I=20 > decompress the file there is a single file without extension so I=20 > don't know how to install it. > > Jonathan Aguero Valverde > > Research Assistant and PhD Student > > Pennsylvania State University > > The Pennsylvania Transportation Institute > > 201 Transportation Research Building > > University Park, PA 16802 > > www.personal.psu.edu/jua130 > |
From: <fer...@gm...> - 2006-03-27 07:35:32
|
Hello Jonathan, The file you have downloaded is a tgz. This file is packaged with tar and compresed with gzip so I think you have uncompressed the file but not unpackaged it. I think that changing the file name by adding a ".tar" at the end will allow to unpack the contents. This is not the first time we receive this issue so we'll change the way we pack OrbisCAD in the next version. By the way, what decompressing tool are you using? Is it winzip? I think it works fine with winrar... greetings Fernando Jonathan Aguero wrote: > Dear Friends, > > I downloaded the file for installing OrbisCad on Windows but when I > decompress the file there is a single file without extension so I > don't know how to install it. > > Jonathan Aguero Valverde > > Research Assistant and PhD Student > > Pennsylvania State University > > The Pennsylvania Transportation Institute > > 201 Transportation Research Building > > University Park, PA 16802 > > www.personal.psu.edu/jua130 > |
From: Jonathan A. <ju...@ps...> - 2006-03-26 23:16:33
|
Dear Friends, I downloaded the file for installing OrbisCad on Windows but when I decompress the file there is a single file without extension so I don't = know how to install it. =20 Jonathan Aguero Valverde Research Assistant and PhD Student Pennsylvania State University The Pennsylvania Transportation Institute 201 Transportation Research Building University Park, PA 16802 www.personal.psu.edu/jua130 =20 |