From Jeroen.Ticheler at geocat.net Tue Jul 21 18:01:13 2009 From: Jeroen.Ticheler at geocat.net (Jeroen Ticheler) Date: Tue, 21 Jul 2009 18:01:13 +0200 Subject: [Freegis-list] GeoNetwork opensource v2.4.0 released Message-ID: Dear all, We're proud to announce the release of GeoNetwork opensource 2.4.0. This is a major release for the project. GeoNetwork opensource ( http://geonetwork-opensource.org ) is a standards based geospatial catalog application that helps people and organizations to organize and publish their geospatial data through the web. It is currently used in numerous Spatial Data Infrastructure initiatives across the world. Important improvements have been made to ease of use, advanced metadata editing, performance and interoperability making it one of the most advanced, if not the most advanced geospatial metadata catalog available on the market today. The software provides an easy to use web interface to search geospatial data across multiple catalogs, combine distributed map services in the embedded map viewer, send annotated interactive maps to friends by email, publish geospatial data using the online metadata editing tools and optionally the embedded GeoServer map server. Administrators have the option to manage user and group accounts, configure the server through web based and desktop utilities and schedule metadata harvesting from other catalogs. You will find support for a number of metadata formats (ISO19115/19119 following ISO19139, FGDC and Dublin Core), a number of catalog interfaces (OGC-CSW2.0.2 ISO profile client and server, OAI-PMH client and server, GeoRSS server, GEO OpenSearch server, WebDAV harvesting, GeoNetwork to GeoNetwork harvesting support). A single, platform independent installer allows to install and run the software on a PC or a server on Windows, Linux and Mac OS X. The installer can be downloaded as an executable Windows file or as a platform independent .jar installer. It creates a Start menu on Windows computers. Command line installations are also possible for remote installations. Please refer to chapter 6 of the manual for detailed installation instructions. The GeoNetwork community has been expanding quickly over the last years. The current release has been possible because of all those that contributed to the project through code contributions, testing, bug reports and fixes as well as many suggestions. GeoNetwork opensource is part of the Open Source Geospatial Foundation (OSGeo, http://www.osgeo.org) software stack, providing software you can trust tobe free, open and sustainable. Voluntary support is provided through mailing lists, websites and online forums. Several companies also provide commercial support to help organizations to implement, integrate and maintain the software. You can find them in the Service Provider directory on the OSGeo website. Thanks and congratulations to the all community members! Jeroen Ticheler ____________________________________________________ Jeroen Ticheler GeoCat bv Grotenhuisweg 61 7384 CT Wilp Tel: +31 (0)6 81286572 http://geocat.net Please consider the environment before printing this email. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://www.intevation.de/pipermail/freegis-list/attachments/20090721/75aa4660/attachment.html -------------- next part -------------- A non-text attachment was scrubbed... Name: geonetwork240_screenshot_s.jpg Type: image/jpeg Size: 16988 bytes Desc: not available Url : http://www.intevation.de/pipermail/freegis-list/attachments/20090721/75aa4660/geonetwork240_screenshot_s.jpg -------------- next part -------------- A non-text attachment was scrubbed... Name: GeoCat_small.png Type: image/png Size: 837 bytes Desc: not available Url : http://www.intevation.de/pipermail/freegis-list/attachments/20090721/75aa4660/GeoCat_small.png From mailingliste_gis at gmx.de Tue Jul 28 07:22:23 2009 From: mailingliste_gis at gmx.de (mailingliste_gis@gmx.de) Date: Tue, 28 Jul 2009 07:22:23 +0200 Subject: [Freegis-list] (no subject) Message-ID: <20090728052223.282860@gmx.net> Dear all, I'm looking for a free software to visualize vector and raster data like a GIS do. But it should be no full GIS like qgis or gvsig or grass. It should be just a viewer! Very easy to use! a.) In the way like a webgis looks like and works, but not with a web- or mapserver behind. b.) A non "geoman" should use it! c.) To use on a cd or an usb stick d.) and free many thanks -- Jetzt kostenlos herunterladen: Internet Explorer 8 und Mozilla Firefox 3 - sicherer, schneller und einfacher! http://portal.gmx.net/de/go/chbrowser From b4hand at users.sourceforge.net Wed Jul 29 21:34:14 2009 From: b4hand at users.sourceforge.net (Brandon Forehand) Date: Wed, 29 Jul 2009 12:34:14 -0700 Subject: [Freegis-list] Strange behavior in Tree::R CPAN module Message-ID: <20090729193414.GA27961@valhalla.localdomain> So, I was using the Tree::R module, and I ran into a strange problem, so I wrote a small unit test to test the problem, and it appears the source of the bug may be in Tree::R itself. The underlying cause seems to be that when you remove everything from a Tree::R object and then insert something back into the same Tree::R object, the resulting number of objects in the Tree is no longer correct. Here's a small unit test that reproduces the bug: use strict; use warnings; use Test::More tests => 5; BEGIN { use_ok('Tree::R'); } my $r_tree = Tree::R->new(); isa_ok($r_tree, 'Tree::R'); my $rects = { 1 => [0, 0, 10, 20], 2 => [20, 0, 10, 20], 3 => [0, 30, 10, 20], 4 => [20, 30, 10, 20], }; for my $rect (keys %$rects) { $r_tree->insert($rect, @{$rects->{$rect}}); } { my @objects; $r_tree->objects(\@objects); is(scalar(@objects), 4); } for my $rect (keys %$rects) { $r_tree->remove($rect); } { my @objects; $r_tree->objects(\@objects); is(scalar(@objects), 0); } $r_tree->insert($rects->{1}, @{$rects->{1}}); { my @objects; $r_tree->objects(\@objects); is(scalar(@objects), 1); } In this unit test, the last test fails for me. Instead of the value 1, I got 2. I don't believe that this is the intended behavior -- Brandon Forehand From Jeroen.Ticheler at geocat.net Wed Jul 29 22:47:28 2009 From: Jeroen.Ticheler at geocat.net (Jeroen Ticheler) Date: Wed, 29 Jul 2009 22:47:28 +0200 Subject: [Freegis-list] (no subject) In-Reply-To: <20090728052223.282860@gmx.net> References: <20090728052223.282860@gmx.net> Message-ID: <88C40A42-D08E-4B88-9657-59DF9BD9B492@geocat.net> Check out Geopublisher: http://en.geopublishing.org/Geopublisher Ciao, Jeroen On Jul 28, 2009, at 7:22 AM, mailingliste_gis at gmx.de wrote: > Dear all, > > I'm looking for a free software to visualize vector and raster data > like a GIS do. But it should be no full GIS like qgis or gvsig or > grass. It should be just a viewer! Very easy to use! > > a.) In the way like a webgis looks like and works, but not with a > web- or mapserver behind. > b.) A non "geoman" should use it! > c.) To use on a cd or an usb stick > d.) and free > > many thanks > -- > Jetzt kostenlos herunterladen: Internet Explorer 8 und Mozilla > Firefox 3 - > sicherer, schneller und einfacher! http://portal.gmx.net/de/go/chbrowser > > _______________________________________________ > Freegis-list mailing list > Freegis-list at intevation.de > https://www.intevation.de/mailman/listinfo/freegis-list > From jan-oliver.wagner at intevation.de Wed Jul 29 23:07:06 2009 From: jan-oliver.wagner at intevation.de (Jan-Oliver Wagner) Date: Wed, 29 Jul 2009 23:07:06 +0200 Subject: [Freegis-list] (GIS Viewer) Message-ID: <200907292307.07526.jan-oliver.wagner@intevation.de> This is an email answer by Markus Neteler that was stopped by mailing list software: On Tue, Jul 28, 2009 at 7:22 AM, wrote: > Dear all, > > I'm looking for a free software to visualize vector and raster data like a GIS do. But it should be no full GIS like qgis or gvsig or grass. It should be just a viewer! Very easy to use! > > a.) In the way like a webgis looks like and works, but not with a web- or mapserver behind. > b.) A non "geoman" should use it! > c.) To use on a cd or an usb stick > d.) and free You may check http://openlayers.org/ and others... Markus From editor at gisuser.com Wed Jul 29 23:40:18 2009 From: editor at gisuser.com (Glenn Letham) Date: Wed, 29 Jul 2009 15:40:18 -0600 Subject: [Freegis-list] (GIS Viewer) In-Reply-To: <200907292307.07526.jan-oliver.wagner@intevation.de> References: <200907292307.07526.jan-oliver.wagner@intevation.de> Message-ID: <97A0303F69914E2A9DFA413D42052635@168PC> check out the LizardTech Express Viewer (free) ___________________________ Glenn Letham, Co-Founder Managing Editor Spatial Media LLC Mob: +1 970-690-3417 editor at gisuser.com GISuser.com, LBSzone.com Amerisurv.com, SymbianOne.com blog.gisuser.com Find Me: Twitter: http://www.twitter.com/gletham http://www.linkedin.com/GISuser http://blog.gisuser.com http://www.schmap.me/glenn/ http://budurl.com/glennfacebook http://www.dopplr.com/traveller/gisuser/ Twitter also @gisuser / @lbszone ___________________________ ----- Original Message ----- From: "Jan-Oliver Wagner" To: Cc: "freegis freegisliste" Sent: Wednesday, July 29, 2009 3:07 PM Subject: Re: [Freegis-list] (GIS Viewer) > > This is an email answer by Markus Neteler that was stopped > by mailing list software: > > On Tue, Jul 28, 2009 at 7:22 AM, wrote: >> Dear all, >> >> I'm looking for a free software to visualize vector and raster data like >> a > GIS do. But it should be no full GIS like qgis or gvsig or grass. It > should be > just a viewer! Very easy to use! >> >> a.) In the way like a webgis looks like and works, but not with a web- or > mapserver behind. >> b.) A non "geoman" should use it! >> c.) To use on a cd or an usb stick >> d.) and free > > You may check > http://openlayers.org/ > > and others... > > Markus > > > > _______________________________________________ > Freegis-list mailing list > Freegis-list at intevation.de > https://www.intevation.de/mailman/listinfo/freegis-list From cavallini at faunalia.it Thu Jul 30 08:43:47 2009 From: cavallini at faunalia.it (Paolo Cavallini) Date: Thu, 30 Jul 2009 08:43:47 +0200 Subject: [Freegis-list] (GIS Viewer) In-Reply-To: <97A0303F69914E2A9DFA413D42052635@168PC> References: <200907292307.07526.jan-oliver.wagner@intevation.de> <97A0303F69914E2A9DFA413D42052635@168PC> Message-ID: <4A714123.9070002@faunalia.it> Glenn Letham ha scritto: > check out the LizardTech Express Viewer (free) free as beer, not as speech -- Paolo Cavallini: http://www.faunalia.it/pc