<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.osgeo.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Wiki-Dylan</id>
	<title>OSGeo - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.osgeo.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Wiki-Dylan"/>
	<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/wiki/Special:Contributions/Wiki-Dylan"/>
	<updated>2026-04-12T18:17:58Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.35.9</generator>
	<entry>
		<id>https://wiki.osgeo.org/w/index.php?title=OSGeo_Cartographic_Engine&amp;diff=23983</id>
		<title>OSGeo Cartographic Engine</title>
		<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/w/index.php?title=OSGeo_Cartographic_Engine&amp;diff=23983"/>
		<updated>2008-04-07T14:11:10Z</updated>

		<summary type="html">&lt;p&gt;Wiki-Dylan: /* Existing code to be recycled */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Motivation ==&lt;br /&gt;
&lt;br /&gt;
There are plans about new cartographic tools (map composer) for QGIS, as well as for GRASS. We suggest to develop a joint library for the various functions which could be shared across GRASS, QGIS and other projects with bindings to Qt, Python etc. The GUI part will be done within the individual software projects.&lt;br /&gt;
&lt;br /&gt;
== Functionality ==&lt;br /&gt;
&lt;br /&gt;
Shared functions may include&lt;br /&gt;
&lt;br /&gt;
* class breaks (various algorithms)&lt;br /&gt;
* histogram analysis&lt;br /&gt;
* color ramps&lt;br /&gt;
* RGB and possibly CYMK support (aka color transformations) etc.&lt;br /&gt;
* Algorithms for intelligent label placement&lt;br /&gt;
* Symbology management&lt;br /&gt;
* map surround &lt;br /&gt;
* legend&lt;br /&gt;
* cartographic templates (ie. predefined map styles)&lt;br /&gt;
&lt;br /&gt;
== Programming Language ==&lt;br /&gt;
&lt;br /&gt;
* C? C++?&lt;br /&gt;
&lt;br /&gt;
Perhaps we could implement the core in C++, but provide a high level C API for applications and environments wanting to drive the library.  C++ is a strong implementation language, but presenting a C API to the outside world reduces complexity calling from other languages or compiler versions and reduces &amp;quot;interface fragility&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
* Python bindings?&lt;br /&gt;
&lt;br /&gt;
There has been talk on the [http://gmt.soest.hawaii.edu/ GMT] mailing list about Python bindings to the core C API. Since GMT already has a wealth of routines for plotting directly to PS|EPS format files, this route may give developers a great head-start. There has been [http://casoilresource.lawr.ucdavis.edu/drupal/node/561 some work] on the integration of GRASS and GMT in the past, with [http://grass.gdf-hannover.de/wiki/GRASS_AddOns several user-submitted modules].&lt;br /&gt;
&lt;br /&gt;
== Output Formats ==&lt;br /&gt;
&lt;br /&gt;
What output formats do we want to target.  I think at the core this question comes down to whether we want to render everything to a raster format or whether we wish to preserve linework, and text in non-raster form.  That is, whether output output is a raster format, or a raster+vector+text format like postscript/pdf.  &lt;br /&gt;
&lt;br /&gt;
If a cartographic product is the objective, I think selection of an output format like PDF makes a lot of sense, but it does make interactive composition more complicated and it is possible we have limited pdf/postscript development expertise in our developer community (the GMT developers may be of help here...).&lt;br /&gt;
&lt;br /&gt;
== Existing code to be recycled ==&lt;br /&gt;
&lt;br /&gt;
There will be code in GRASS, QGIS, the Python Cartographic Library (http://zcologia.org/cartography) and other sources which could be integrated (check license compatibility). Please indicate precisely where to find the source code, license, programming language:&lt;br /&gt;
&lt;br /&gt;
* Label placement code:&lt;br /&gt;
** Mapserver [http://trac.osgeo.org/mapserver/browser/trunk/mapserver/maplabel.c labeling code] (MapServer License, C language)&lt;br /&gt;
** GRASS [http://trac.osgeo.org/grass/browser/grass/trunk/vector/v.label.sa v.label.sa] (GPL, C language)&lt;br /&gt;
* Color management:&lt;br /&gt;
** MapGuide, [http://trac.osgeo.org/mapguide/browser/trunk/MgDev/Server/src/Services/Feature/FeatureNumericFunctions.cpp CalculateDistribution] and [http://trac.osgeo.org/mapguide/browser/trunk/MgDev/Common/PlatformBase/Data/Color.cpp Color] (LGPL.C++)&lt;br /&gt;
** OpenJump ?&lt;br /&gt;
* Stylization:&lt;br /&gt;
* Postscript/PDF output:&lt;br /&gt;
** GRASS [http://trac.osgeo.org/grass/browser/grass/trunk/ps/ps.map ps.map] (Postscript output) and [http://trac.osgeo.org/grass/browser/grass/trunk/lib/psdriver PS driver]&lt;br /&gt;
* PNG output:&lt;br /&gt;
** GRASS [http://trac.osgeo.org/grass/browser/grass/trunk/lib/pngdriver PNG driver]&lt;br /&gt;
** See AGG below&lt;br /&gt;
** [http://cairographics.org/ Cairo Graphics Library]&lt;br /&gt;
&lt;br /&gt;
* Class breaks:&lt;br /&gt;
** GRASS [http://trac.osgeo.org/grass/browser/grass/trunk/lib/arraystats different algorithms for class breaks] (GPL, C)&lt;br /&gt;
&lt;br /&gt;
== Technologies ==&lt;br /&gt;
&lt;br /&gt;
* AGG (sophisticated rendering of vector/text graphics to raster format - used by MapServer, MapGuide, Mapnik). &lt;br /&gt;
* Freetype - text management and rendering library&lt;br /&gt;
&lt;br /&gt;
== License ==&lt;br /&gt;
&lt;br /&gt;
It is proposed to license the OSGeo Cartographic Library under LGPL. The license needs to be GPL compliant.&lt;br /&gt;
&lt;br /&gt;
== Interested people ==&lt;br /&gt;
&lt;br /&gt;
* [[User:Neteler|Markus Neteler]] (proposer)&lt;br /&gt;
* Horst Düster&lt;br /&gt;
* [[User:Landa|Martin Landa]]&lt;br /&gt;
* [[User:MarcoHugentobler|Marco Hugentobler]]&lt;br /&gt;
* Frank Warmerdam&lt;br /&gt;
* [[User:Adiez|Agustin Diez]]&lt;br /&gt;
* [[User:mlennert|Moritz Lennert]]&lt;br /&gt;
* [[User:Dsampson | Dave Sampson]]: End User, Search and Rescue Maps,&lt;br /&gt;
* [http://casoilresource.lawr.ucdavis.edu/drupal/node/38 Dylan Beaudette]: Soil Science Researcher, OSGeo evangelist&lt;br /&gt;
[[Category: Software Stack]]&lt;/div&gt;</summary>
		<author><name>Wiki-Dylan</name></author>
	</entry>
	<entry>
		<id>https://wiki.osgeo.org/w/index.php?title=OSGeo_Cartographic_Engine&amp;diff=23982</id>
		<title>OSGeo Cartographic Engine</title>
		<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/w/index.php?title=OSGeo_Cartographic_Engine&amp;diff=23982"/>
		<updated>2008-04-07T14:09:57Z</updated>

		<summary type="html">&lt;p&gt;Wiki-Dylan: /* Interested people */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Motivation ==&lt;br /&gt;
&lt;br /&gt;
There are plans about new cartographic tools (map composer) for QGIS, as well as for GRASS. We suggest to develop a joint library for the various functions which could be shared across GRASS, QGIS and other projects with bindings to Qt, Python etc. The GUI part will be done within the individual software projects.&lt;br /&gt;
&lt;br /&gt;
== Functionality ==&lt;br /&gt;
&lt;br /&gt;
Shared functions may include&lt;br /&gt;
&lt;br /&gt;
* class breaks (various algorithms)&lt;br /&gt;
* histogram analysis&lt;br /&gt;
* color ramps&lt;br /&gt;
* RGB and possibly CYMK support (aka color transformations) etc.&lt;br /&gt;
* Algorithms for intelligent label placement&lt;br /&gt;
* Symbology management&lt;br /&gt;
* map surround &lt;br /&gt;
* legend&lt;br /&gt;
* cartographic templates (ie. predefined map styles)&lt;br /&gt;
&lt;br /&gt;
== Programming Language ==&lt;br /&gt;
&lt;br /&gt;
* C? C++?&lt;br /&gt;
&lt;br /&gt;
Perhaps we could implement the core in C++, but provide a high level C API for applications and environments wanting to drive the library.  C++ is a strong implementation language, but presenting a C API to the outside world reduces complexity calling from other languages or compiler versions and reduces &amp;quot;interface fragility&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
* Python bindings?&lt;br /&gt;
&lt;br /&gt;
There has been talk on the [http://gmt.soest.hawaii.edu/ GMT] mailing list about Python bindings to the core C API. Since GMT already has a wealth of routines for plotting directly to PS|EPS format files, this route may give developers a great head-start. There has been [http://casoilresource.lawr.ucdavis.edu/drupal/node/561 some work] on the integration of GRASS and GMT in the past, with [http://grass.gdf-hannover.de/wiki/GRASS_AddOns several user-submitted modules].&lt;br /&gt;
&lt;br /&gt;
== Output Formats ==&lt;br /&gt;
&lt;br /&gt;
What output formats do we want to target.  I think at the core this question comes down to whether we want to render everything to a raster format or whether we wish to preserve linework, and text in non-raster form.  That is, whether output output is a raster format, or a raster+vector+text format like postscript/pdf.  &lt;br /&gt;
&lt;br /&gt;
If a cartographic product is the objective, I think selection of an output format like PDF makes a lot of sense, but it does make interactive composition more complicated and it is possible we have limited pdf/postscript development expertise in our developer community (the GMT developers may be of help here...).&lt;br /&gt;
&lt;br /&gt;
== Existing code to be recycled ==&lt;br /&gt;
&lt;br /&gt;
There will be code in GRASS, QGIS, the Python Cartographic Library (http://zcologia.org/cartography) and other sources which could be integrated (check license compatibility). Please indicate precisely where to find the source code, license, programming language:&lt;br /&gt;
&lt;br /&gt;
* Label placement code:&lt;br /&gt;
** Mapserver [http://trac.osgeo.org/mapserver/browser/trunk/mapserver/maplabel.c labeling code] (MapServer License, C language)&lt;br /&gt;
** GRASS [http://trac.osgeo.org/grass/browser/grass/trunk/vector/v.label.sa v.label.sa] (GPL, C language)&lt;br /&gt;
* Color management:&lt;br /&gt;
** MapGuide, [http://trac.osgeo.org/mapguide/browser/trunk/MgDev/Server/src/Services/Feature/FeatureNumericFunctions.cpp CalculateDistribution] and [http://trac.osgeo.org/mapguide/browser/trunk/MgDev/Common/PlatformBase/Data/Color.cpp Color] (LGPL.C++)&lt;br /&gt;
** OpenJump ?&lt;br /&gt;
* Stylization:&lt;br /&gt;
* Postscript/PDF output:&lt;br /&gt;
** GRASS [http://trac.osgeo.org/grass/browser/grass/trunk/ps/ps.map ps.map] (Postscript output) and [http://trac.osgeo.org/grass/browser/grass/trunk/lib/psdriver PS driver]&lt;br /&gt;
* PNG output:&lt;br /&gt;
** GRASS [http://trac.osgeo.org/grass/browser/grass/trunk/lib/pngdriver PNG driver]&lt;br /&gt;
** See AGG below&lt;br /&gt;
&lt;br /&gt;
* Class breaks:&lt;br /&gt;
** GRASS [http://trac.osgeo.org/grass/browser/grass/trunk/lib/arraystats different algorithms for class breaks] (GPL, C)&lt;br /&gt;
&lt;br /&gt;
== Technologies ==&lt;br /&gt;
&lt;br /&gt;
* AGG (sophisticated rendering of vector/text graphics to raster format - used by MapServer, MapGuide, Mapnik). &lt;br /&gt;
* Freetype - text management and rendering library&lt;br /&gt;
&lt;br /&gt;
== License ==&lt;br /&gt;
&lt;br /&gt;
It is proposed to license the OSGeo Cartographic Library under LGPL. The license needs to be GPL compliant.&lt;br /&gt;
&lt;br /&gt;
== Interested people ==&lt;br /&gt;
&lt;br /&gt;
* [[User:Neteler|Markus Neteler]] (proposer)&lt;br /&gt;
* Horst Düster&lt;br /&gt;
* [[User:Landa|Martin Landa]]&lt;br /&gt;
* [[User:MarcoHugentobler|Marco Hugentobler]]&lt;br /&gt;
* Frank Warmerdam&lt;br /&gt;
* [[User:Adiez|Agustin Diez]]&lt;br /&gt;
* [[User:mlennert|Moritz Lennert]]&lt;br /&gt;
* [[User:Dsampson | Dave Sampson]]: End User, Search and Rescue Maps,&lt;br /&gt;
* [http://casoilresource.lawr.ucdavis.edu/drupal/node/38 Dylan Beaudette]: Soil Science Researcher, OSGeo evangelist&lt;br /&gt;
[[Category: Software Stack]]&lt;/div&gt;</summary>
		<author><name>Wiki-Dylan</name></author>
	</entry>
	<entry>
		<id>https://wiki.osgeo.org/w/index.php?title=OSGeo_Cartographic_Engine&amp;diff=23981</id>
		<title>OSGeo Cartographic Engine</title>
		<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/w/index.php?title=OSGeo_Cartographic_Engine&amp;diff=23981"/>
		<updated>2008-04-07T14:09:45Z</updated>

		<summary type="html">&lt;p&gt;Wiki-Dylan: /* Interested people */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Motivation ==&lt;br /&gt;
&lt;br /&gt;
There are plans about new cartographic tools (map composer) for QGIS, as well as for GRASS. We suggest to develop a joint library for the various functions which could be shared across GRASS, QGIS and other projects with bindings to Qt, Python etc. The GUI part will be done within the individual software projects.&lt;br /&gt;
&lt;br /&gt;
== Functionality ==&lt;br /&gt;
&lt;br /&gt;
Shared functions may include&lt;br /&gt;
&lt;br /&gt;
* class breaks (various algorithms)&lt;br /&gt;
* histogram analysis&lt;br /&gt;
* color ramps&lt;br /&gt;
* RGB and possibly CYMK support (aka color transformations) etc.&lt;br /&gt;
* Algorithms for intelligent label placement&lt;br /&gt;
* Symbology management&lt;br /&gt;
* map surround &lt;br /&gt;
* legend&lt;br /&gt;
* cartographic templates (ie. predefined map styles)&lt;br /&gt;
&lt;br /&gt;
== Programming Language ==&lt;br /&gt;
&lt;br /&gt;
* C? C++?&lt;br /&gt;
&lt;br /&gt;
Perhaps we could implement the core in C++, but provide a high level C API for applications and environments wanting to drive the library.  C++ is a strong implementation language, but presenting a C API to the outside world reduces complexity calling from other languages or compiler versions and reduces &amp;quot;interface fragility&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
* Python bindings?&lt;br /&gt;
&lt;br /&gt;
There has been talk on the [http://gmt.soest.hawaii.edu/ GMT] mailing list about Python bindings to the core C API. Since GMT already has a wealth of routines for plotting directly to PS|EPS format files, this route may give developers a great head-start. There has been [http://casoilresource.lawr.ucdavis.edu/drupal/node/561 some work] on the integration of GRASS and GMT in the past, with [http://grass.gdf-hannover.de/wiki/GRASS_AddOns several user-submitted modules].&lt;br /&gt;
&lt;br /&gt;
== Output Formats ==&lt;br /&gt;
&lt;br /&gt;
What output formats do we want to target.  I think at the core this question comes down to whether we want to render everything to a raster format or whether we wish to preserve linework, and text in non-raster form.  That is, whether output output is a raster format, or a raster+vector+text format like postscript/pdf.  &lt;br /&gt;
&lt;br /&gt;
If a cartographic product is the objective, I think selection of an output format like PDF makes a lot of sense, but it does make interactive composition more complicated and it is possible we have limited pdf/postscript development expertise in our developer community (the GMT developers may be of help here...).&lt;br /&gt;
&lt;br /&gt;
== Existing code to be recycled ==&lt;br /&gt;
&lt;br /&gt;
There will be code in GRASS, QGIS, the Python Cartographic Library (http://zcologia.org/cartography) and other sources which could be integrated (check license compatibility). Please indicate precisely where to find the source code, license, programming language:&lt;br /&gt;
&lt;br /&gt;
* Label placement code:&lt;br /&gt;
** Mapserver [http://trac.osgeo.org/mapserver/browser/trunk/mapserver/maplabel.c labeling code] (MapServer License, C language)&lt;br /&gt;
** GRASS [http://trac.osgeo.org/grass/browser/grass/trunk/vector/v.label.sa v.label.sa] (GPL, C language)&lt;br /&gt;
* Color management:&lt;br /&gt;
** MapGuide, [http://trac.osgeo.org/mapguide/browser/trunk/MgDev/Server/src/Services/Feature/FeatureNumericFunctions.cpp CalculateDistribution] and [http://trac.osgeo.org/mapguide/browser/trunk/MgDev/Common/PlatformBase/Data/Color.cpp Color] (LGPL.C++)&lt;br /&gt;
** OpenJump ?&lt;br /&gt;
* Stylization:&lt;br /&gt;
* Postscript/PDF output:&lt;br /&gt;
** GRASS [http://trac.osgeo.org/grass/browser/grass/trunk/ps/ps.map ps.map] (Postscript output) and [http://trac.osgeo.org/grass/browser/grass/trunk/lib/psdriver PS driver]&lt;br /&gt;
* PNG output:&lt;br /&gt;
** GRASS [http://trac.osgeo.org/grass/browser/grass/trunk/lib/pngdriver PNG driver]&lt;br /&gt;
** See AGG below&lt;br /&gt;
&lt;br /&gt;
* Class breaks:&lt;br /&gt;
** GRASS [http://trac.osgeo.org/grass/browser/grass/trunk/lib/arraystats different algorithms for class breaks] (GPL, C)&lt;br /&gt;
&lt;br /&gt;
== Technologies ==&lt;br /&gt;
&lt;br /&gt;
* AGG (sophisticated rendering of vector/text graphics to raster format - used by MapServer, MapGuide, Mapnik). &lt;br /&gt;
* Freetype - text management and rendering library&lt;br /&gt;
&lt;br /&gt;
== License ==&lt;br /&gt;
&lt;br /&gt;
It is proposed to license the OSGeo Cartographic Library under LGPL. The license needs to be GPL compliant.&lt;br /&gt;
&lt;br /&gt;
== Interested people ==&lt;br /&gt;
&lt;br /&gt;
* [[User:Neteler|Markus Neteler]] (proposer)&lt;br /&gt;
* Horst Düster&lt;br /&gt;
* [[User:Landa|Martin Landa]]&lt;br /&gt;
* [[User:MarcoHugentobler|Marco Hugentobler]]&lt;br /&gt;
* Frank Warmerdam&lt;br /&gt;
* [[User:Adiez|Agustin Diez]]&lt;br /&gt;
* [[User:mlennert|Moritz Lennert]]&lt;br /&gt;
* [[User:Dsampson | Dave Sampson]]: End User, Search and Rescue Maps,&lt;br /&gt;
* [http://casoilresource.lawr.ucdavis.edu/drupal/node/38 | Dylan Beaudette]: Soil Science Researcher, OSGeo evangelist&lt;br /&gt;
[[Category: Software Stack]]&lt;/div&gt;</summary>
		<author><name>Wiki-Dylan</name></author>
	</entry>
	<entry>
		<id>https://wiki.osgeo.org/w/index.php?title=OSGeo_Cartographic_Engine&amp;diff=23980</id>
		<title>OSGeo Cartographic Engine</title>
		<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/w/index.php?title=OSGeo_Cartographic_Engine&amp;diff=23980"/>
		<updated>2008-04-07T14:09:29Z</updated>

		<summary type="html">&lt;p&gt;Wiki-Dylan: /* Interested people */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Motivation ==&lt;br /&gt;
&lt;br /&gt;
There are plans about new cartographic tools (map composer) for QGIS, as well as for GRASS. We suggest to develop a joint library for the various functions which could be shared across GRASS, QGIS and other projects with bindings to Qt, Python etc. The GUI part will be done within the individual software projects.&lt;br /&gt;
&lt;br /&gt;
== Functionality ==&lt;br /&gt;
&lt;br /&gt;
Shared functions may include&lt;br /&gt;
&lt;br /&gt;
* class breaks (various algorithms)&lt;br /&gt;
* histogram analysis&lt;br /&gt;
* color ramps&lt;br /&gt;
* RGB and possibly CYMK support (aka color transformations) etc.&lt;br /&gt;
* Algorithms for intelligent label placement&lt;br /&gt;
* Symbology management&lt;br /&gt;
* map surround &lt;br /&gt;
* legend&lt;br /&gt;
* cartographic templates (ie. predefined map styles)&lt;br /&gt;
&lt;br /&gt;
== Programming Language ==&lt;br /&gt;
&lt;br /&gt;
* C? C++?&lt;br /&gt;
&lt;br /&gt;
Perhaps we could implement the core in C++, but provide a high level C API for applications and environments wanting to drive the library.  C++ is a strong implementation language, but presenting a C API to the outside world reduces complexity calling from other languages or compiler versions and reduces &amp;quot;interface fragility&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
* Python bindings?&lt;br /&gt;
&lt;br /&gt;
There has been talk on the [http://gmt.soest.hawaii.edu/ GMT] mailing list about Python bindings to the core C API. Since GMT already has a wealth of routines for plotting directly to PS|EPS format files, this route may give developers a great head-start. There has been [http://casoilresource.lawr.ucdavis.edu/drupal/node/561 some work] on the integration of GRASS and GMT in the past, with [http://grass.gdf-hannover.de/wiki/GRASS_AddOns several user-submitted modules].&lt;br /&gt;
&lt;br /&gt;
== Output Formats ==&lt;br /&gt;
&lt;br /&gt;
What output formats do we want to target.  I think at the core this question comes down to whether we want to render everything to a raster format or whether we wish to preserve linework, and text in non-raster form.  That is, whether output output is a raster format, or a raster+vector+text format like postscript/pdf.  &lt;br /&gt;
&lt;br /&gt;
If a cartographic product is the objective, I think selection of an output format like PDF makes a lot of sense, but it does make interactive composition more complicated and it is possible we have limited pdf/postscript development expertise in our developer community (the GMT developers may be of help here...).&lt;br /&gt;
&lt;br /&gt;
== Existing code to be recycled ==&lt;br /&gt;
&lt;br /&gt;
There will be code in GRASS, QGIS, the Python Cartographic Library (http://zcologia.org/cartography) and other sources which could be integrated (check license compatibility). Please indicate precisely where to find the source code, license, programming language:&lt;br /&gt;
&lt;br /&gt;
* Label placement code:&lt;br /&gt;
** Mapserver [http://trac.osgeo.org/mapserver/browser/trunk/mapserver/maplabel.c labeling code] (MapServer License, C language)&lt;br /&gt;
** GRASS [http://trac.osgeo.org/grass/browser/grass/trunk/vector/v.label.sa v.label.sa] (GPL, C language)&lt;br /&gt;
* Color management:&lt;br /&gt;
** MapGuide, [http://trac.osgeo.org/mapguide/browser/trunk/MgDev/Server/src/Services/Feature/FeatureNumericFunctions.cpp CalculateDistribution] and [http://trac.osgeo.org/mapguide/browser/trunk/MgDev/Common/PlatformBase/Data/Color.cpp Color] (LGPL.C++)&lt;br /&gt;
** OpenJump ?&lt;br /&gt;
* Stylization:&lt;br /&gt;
* Postscript/PDF output:&lt;br /&gt;
** GRASS [http://trac.osgeo.org/grass/browser/grass/trunk/ps/ps.map ps.map] (Postscript output) and [http://trac.osgeo.org/grass/browser/grass/trunk/lib/psdriver PS driver]&lt;br /&gt;
* PNG output:&lt;br /&gt;
** GRASS [http://trac.osgeo.org/grass/browser/grass/trunk/lib/pngdriver PNG driver]&lt;br /&gt;
** See AGG below&lt;br /&gt;
&lt;br /&gt;
* Class breaks:&lt;br /&gt;
** GRASS [http://trac.osgeo.org/grass/browser/grass/trunk/lib/arraystats different algorithms for class breaks] (GPL, C)&lt;br /&gt;
&lt;br /&gt;
== Technologies ==&lt;br /&gt;
&lt;br /&gt;
* AGG (sophisticated rendering of vector/text graphics to raster format - used by MapServer, MapGuide, Mapnik). &lt;br /&gt;
* Freetype - text management and rendering library&lt;br /&gt;
&lt;br /&gt;
== License ==&lt;br /&gt;
&lt;br /&gt;
It is proposed to license the OSGeo Cartographic Library under LGPL. The license needs to be GPL compliant.&lt;br /&gt;
&lt;br /&gt;
== Interested people ==&lt;br /&gt;
&lt;br /&gt;
* [[User:Neteler|Markus Neteler]] (proposer)&lt;br /&gt;
* Horst Düster&lt;br /&gt;
* [[User:Landa|Martin Landa]]&lt;br /&gt;
* [[User:MarcoHugentobler|Marco Hugentobler]]&lt;br /&gt;
* Frank Warmerdam&lt;br /&gt;
* [[User:Adiez|Agustin Diez]]&lt;br /&gt;
* [[User:mlennert|Moritz Lennert]]&lt;br /&gt;
* [[User:Dsampson | Dave Sampson]]: End User, Search and Rescue Maps,&lt;br /&gt;
* [[http://casoilresource.lawr.ucdavis.edu/drupal/node/38 | Dylan Beaudette]]: Soil Science Researcher, OSGeo evangelist&lt;br /&gt;
[[Category: Software Stack]]&lt;/div&gt;</summary>
		<author><name>Wiki-Dylan</name></author>
	</entry>
	<entry>
		<id>https://wiki.osgeo.org/w/index.php?title=OSGeo_Cartographic_Engine&amp;diff=23979</id>
		<title>OSGeo Cartographic Engine</title>
		<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/w/index.php?title=OSGeo_Cartographic_Engine&amp;diff=23979"/>
		<updated>2008-04-07T14:08:42Z</updated>

		<summary type="html">&lt;p&gt;Wiki-Dylan: /* Output Formats */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Motivation ==&lt;br /&gt;
&lt;br /&gt;
There are plans about new cartographic tools (map composer) for QGIS, as well as for GRASS. We suggest to develop a joint library for the various functions which could be shared across GRASS, QGIS and other projects with bindings to Qt, Python etc. The GUI part will be done within the individual software projects.&lt;br /&gt;
&lt;br /&gt;
== Functionality ==&lt;br /&gt;
&lt;br /&gt;
Shared functions may include&lt;br /&gt;
&lt;br /&gt;
* class breaks (various algorithms)&lt;br /&gt;
* histogram analysis&lt;br /&gt;
* color ramps&lt;br /&gt;
* RGB and possibly CYMK support (aka color transformations) etc.&lt;br /&gt;
* Algorithms for intelligent label placement&lt;br /&gt;
* Symbology management&lt;br /&gt;
* map surround &lt;br /&gt;
* legend&lt;br /&gt;
* cartographic templates (ie. predefined map styles)&lt;br /&gt;
&lt;br /&gt;
== Programming Language ==&lt;br /&gt;
&lt;br /&gt;
* C? C++?&lt;br /&gt;
&lt;br /&gt;
Perhaps we could implement the core in C++, but provide a high level C API for applications and environments wanting to drive the library.  C++ is a strong implementation language, but presenting a C API to the outside world reduces complexity calling from other languages or compiler versions and reduces &amp;quot;interface fragility&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
* Python bindings?&lt;br /&gt;
&lt;br /&gt;
There has been talk on the [http://gmt.soest.hawaii.edu/ GMT] mailing list about Python bindings to the core C API. Since GMT already has a wealth of routines for plotting directly to PS|EPS format files, this route may give developers a great head-start. There has been [http://casoilresource.lawr.ucdavis.edu/drupal/node/561 some work] on the integration of GRASS and GMT in the past, with [http://grass.gdf-hannover.de/wiki/GRASS_AddOns several user-submitted modules].&lt;br /&gt;
&lt;br /&gt;
== Output Formats ==&lt;br /&gt;
&lt;br /&gt;
What output formats do we want to target.  I think at the core this question comes down to whether we want to render everything to a raster format or whether we wish to preserve linework, and text in non-raster form.  That is, whether output output is a raster format, or a raster+vector+text format like postscript/pdf.  &lt;br /&gt;
&lt;br /&gt;
If a cartographic product is the objective, I think selection of an output format like PDF makes a lot of sense, but it does make interactive composition more complicated and it is possible we have limited pdf/postscript development expertise in our developer community (the GMT developers may be of help here...).&lt;br /&gt;
&lt;br /&gt;
== Existing code to be recycled ==&lt;br /&gt;
&lt;br /&gt;
There will be code in GRASS, QGIS, the Python Cartographic Library (http://zcologia.org/cartography) and other sources which could be integrated (check license compatibility). Please indicate precisely where to find the source code, license, programming language:&lt;br /&gt;
&lt;br /&gt;
* Label placement code:&lt;br /&gt;
** Mapserver [http://trac.osgeo.org/mapserver/browser/trunk/mapserver/maplabel.c labeling code] (MapServer License, C language)&lt;br /&gt;
** GRASS [http://trac.osgeo.org/grass/browser/grass/trunk/vector/v.label.sa v.label.sa] (GPL, C language)&lt;br /&gt;
* Color management:&lt;br /&gt;
** MapGuide, [http://trac.osgeo.org/mapguide/browser/trunk/MgDev/Server/src/Services/Feature/FeatureNumericFunctions.cpp CalculateDistribution] and [http://trac.osgeo.org/mapguide/browser/trunk/MgDev/Common/PlatformBase/Data/Color.cpp Color] (LGPL.C++)&lt;br /&gt;
** OpenJump ?&lt;br /&gt;
* Stylization:&lt;br /&gt;
* Postscript/PDF output:&lt;br /&gt;
** GRASS [http://trac.osgeo.org/grass/browser/grass/trunk/ps/ps.map ps.map] (Postscript output) and [http://trac.osgeo.org/grass/browser/grass/trunk/lib/psdriver PS driver]&lt;br /&gt;
* PNG output:&lt;br /&gt;
** GRASS [http://trac.osgeo.org/grass/browser/grass/trunk/lib/pngdriver PNG driver]&lt;br /&gt;
** See AGG below&lt;br /&gt;
&lt;br /&gt;
* Class breaks:&lt;br /&gt;
** GRASS [http://trac.osgeo.org/grass/browser/grass/trunk/lib/arraystats different algorithms for class breaks] (GPL, C)&lt;br /&gt;
&lt;br /&gt;
== Technologies ==&lt;br /&gt;
&lt;br /&gt;
* AGG (sophisticated rendering of vector/text graphics to raster format - used by MapServer, MapGuide, Mapnik). &lt;br /&gt;
* Freetype - text management and rendering library&lt;br /&gt;
&lt;br /&gt;
== License ==&lt;br /&gt;
&lt;br /&gt;
It is proposed to license the OSGeo Cartographic Library under LGPL. The license needs to be GPL compliant.&lt;br /&gt;
&lt;br /&gt;
== Interested people ==&lt;br /&gt;
&lt;br /&gt;
* [[User:Neteler|Markus Neteler]] (proposer)&lt;br /&gt;
* Horst Düster&lt;br /&gt;
* [[User:Landa|Martin Landa]]&lt;br /&gt;
* [[User:MarcoHugentobler|Marco Hugentobler]]&lt;br /&gt;
* Frank Warmerdam&lt;br /&gt;
* [[User:Adiez|Agustin Diez]]&lt;br /&gt;
* [[User:mlennert|Moritz Lennert]]&lt;br /&gt;
* [[User:Dsampson | Dave Sampson]]: End User, Search and Rescue Maps,&lt;br /&gt;
* [[User:Dylan | Dylan Beaudette]]: Soil Science Researcher, OSGeo evangelist&lt;br /&gt;
[[Category: Software Stack]]&lt;/div&gt;</summary>
		<author><name>Wiki-Dylan</name></author>
	</entry>
	<entry>
		<id>https://wiki.osgeo.org/w/index.php?title=OSGeo_Cartographic_Engine&amp;diff=23978</id>
		<title>OSGeo Cartographic Engine</title>
		<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/w/index.php?title=OSGeo_Cartographic_Engine&amp;diff=23978"/>
		<updated>2008-04-07T14:07:46Z</updated>

		<summary type="html">&lt;p&gt;Wiki-Dylan: added python as a language -- linked to GMT&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Motivation ==&lt;br /&gt;
&lt;br /&gt;
There are plans about new cartographic tools (map composer) for QGIS, as well as for GRASS. We suggest to develop a joint library for the various functions which could be shared across GRASS, QGIS and other projects with bindings to Qt, Python etc. The GUI part will be done within the individual software projects.&lt;br /&gt;
&lt;br /&gt;
== Functionality ==&lt;br /&gt;
&lt;br /&gt;
Shared functions may include&lt;br /&gt;
&lt;br /&gt;
* class breaks (various algorithms)&lt;br /&gt;
* histogram analysis&lt;br /&gt;
* color ramps&lt;br /&gt;
* RGB and possibly CYMK support (aka color transformations) etc.&lt;br /&gt;
* Algorithms for intelligent label placement&lt;br /&gt;
* Symbology management&lt;br /&gt;
* map surround &lt;br /&gt;
* legend&lt;br /&gt;
* cartographic templates (ie. predefined map styles)&lt;br /&gt;
&lt;br /&gt;
== Programming Language ==&lt;br /&gt;
&lt;br /&gt;
* C? C++?&lt;br /&gt;
&lt;br /&gt;
Perhaps we could implement the core in C++, but provide a high level C API for applications and environments wanting to drive the library.  C++ is a strong implementation language, but presenting a C API to the outside world reduces complexity calling from other languages or compiler versions and reduces &amp;quot;interface fragility&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
* Python bindings?&lt;br /&gt;
&lt;br /&gt;
There has been talk on the [http://gmt.soest.hawaii.edu/ GMT] mailing list about Python bindings to the core C API. Since GMT already has a wealth of routines for plotting directly to PS|EPS format files, this route may give developers a great head-start. There has been [http://casoilresource.lawr.ucdavis.edu/drupal/node/561 some work] on the integration of GRASS and GMT in the past, with [http://grass.gdf-hannover.de/wiki/GRASS_AddOns several user-submitted modules].&lt;br /&gt;
&lt;br /&gt;
== Output Formats ==&lt;br /&gt;
&lt;br /&gt;
What output formats do we want to target.  I think at the core this question comes down to whether we want to render everything to a raster format or whether we wish to preserve linework, and text in non-raster form.  That is, whether output output is a raster format, or a raster+vector+text format like postscript/pdf.  &lt;br /&gt;
&lt;br /&gt;
If a cartographic product is the objective, I think selection of an output format like PDF makes a lot of sense, but it does make interactive composition more complicated and it is possible we have limited pdf/postscript development expertise in our developer community. &lt;br /&gt;
&lt;br /&gt;
== Existing code to be recycled ==&lt;br /&gt;
&lt;br /&gt;
There will be code in GRASS, QGIS, the Python Cartographic Library (http://zcologia.org/cartography) and other sources which could be integrated (check license compatibility). Please indicate precisely where to find the source code, license, programming language:&lt;br /&gt;
&lt;br /&gt;
* Label placement code:&lt;br /&gt;
** Mapserver [http://trac.osgeo.org/mapserver/browser/trunk/mapserver/maplabel.c labeling code] (MapServer License, C language)&lt;br /&gt;
** GRASS [http://trac.osgeo.org/grass/browser/grass/trunk/vector/v.label.sa v.label.sa] (GPL, C language)&lt;br /&gt;
* Color management:&lt;br /&gt;
** MapGuide, [http://trac.osgeo.org/mapguide/browser/trunk/MgDev/Server/src/Services/Feature/FeatureNumericFunctions.cpp CalculateDistribution] and [http://trac.osgeo.org/mapguide/browser/trunk/MgDev/Common/PlatformBase/Data/Color.cpp Color] (LGPL.C++)&lt;br /&gt;
** OpenJump ?&lt;br /&gt;
* Stylization:&lt;br /&gt;
* Postscript/PDF output:&lt;br /&gt;
** GRASS [http://trac.osgeo.org/grass/browser/grass/trunk/ps/ps.map ps.map] (Postscript output) and [http://trac.osgeo.org/grass/browser/grass/trunk/lib/psdriver PS driver]&lt;br /&gt;
* PNG output:&lt;br /&gt;
** GRASS [http://trac.osgeo.org/grass/browser/grass/trunk/lib/pngdriver PNG driver]&lt;br /&gt;
** See AGG below&lt;br /&gt;
&lt;br /&gt;
* Class breaks:&lt;br /&gt;
** GRASS [http://trac.osgeo.org/grass/browser/grass/trunk/lib/arraystats different algorithms for class breaks] (GPL, C)&lt;br /&gt;
&lt;br /&gt;
== Technologies ==&lt;br /&gt;
&lt;br /&gt;
* AGG (sophisticated rendering of vector/text graphics to raster format - used by MapServer, MapGuide, Mapnik). &lt;br /&gt;
* Freetype - text management and rendering library&lt;br /&gt;
&lt;br /&gt;
== License ==&lt;br /&gt;
&lt;br /&gt;
It is proposed to license the OSGeo Cartographic Library under LGPL. The license needs to be GPL compliant.&lt;br /&gt;
&lt;br /&gt;
== Interested people ==&lt;br /&gt;
&lt;br /&gt;
* [[User:Neteler|Markus Neteler]] (proposer)&lt;br /&gt;
* Horst Düster&lt;br /&gt;
* [[User:Landa|Martin Landa]]&lt;br /&gt;
* [[User:MarcoHugentobler|Marco Hugentobler]]&lt;br /&gt;
* Frank Warmerdam&lt;br /&gt;
* [[User:Adiez|Agustin Diez]]&lt;br /&gt;
* [[User:mlennert|Moritz Lennert]]&lt;br /&gt;
* [[User:Dsampson | Dave Sampson]]: End User, Search and Rescue Maps,&lt;br /&gt;
* [[User:Dylan | Dylan Beaudette]]: Soil Science Researcher, OSGeo evangelist&lt;br /&gt;
[[Category: Software Stack]]&lt;/div&gt;</summary>
		<author><name>Wiki-Dylan</name></author>
	</entry>
	<entry>
		<id>https://wiki.osgeo.org/w/index.php?title=OSGeo_Cartographic_Engine&amp;diff=23977</id>
		<title>OSGeo Cartographic Engine</title>
		<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/w/index.php?title=OSGeo_Cartographic_Engine&amp;diff=23977"/>
		<updated>2008-04-07T14:02:18Z</updated>

		<summary type="html">&lt;p&gt;Wiki-Dylan: /* Interested people */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Motivation ==&lt;br /&gt;
&lt;br /&gt;
There are plans about new cartographic tools (map composer) for QGIS, as well as for GRASS. We suggest to develop a joint library for the various functions which could be shared across GRASS, QGIS and other projects with bindings to Qt, Python etc. The GUI part will be done within the individual software projects.&lt;br /&gt;
&lt;br /&gt;
== Functionality ==&lt;br /&gt;
&lt;br /&gt;
Shared functions may include&lt;br /&gt;
&lt;br /&gt;
* class breaks (various algorithms)&lt;br /&gt;
* histogram analysis&lt;br /&gt;
* color ramps&lt;br /&gt;
* RGB and possibly CYMK support (aka color transformations) etc.&lt;br /&gt;
* Algorithms for intelligent label placement&lt;br /&gt;
* Symbology management&lt;br /&gt;
* map surround &lt;br /&gt;
* legend&lt;br /&gt;
* cartographic templates (ie. predefined map styles)&lt;br /&gt;
&lt;br /&gt;
== Programming Language ==&lt;br /&gt;
&lt;br /&gt;
* C? C++?&lt;br /&gt;
&lt;br /&gt;
Perhaps we could implement the core in C++, but provide a high level C API for applications and environments wanting to drive the library.  C++ is a strong implementation language, but presenting a C API to the outside world reduces complexity calling from other languages or compiler versions and reduces &amp;quot;interface fragility&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
== Output Formats ==&lt;br /&gt;
&lt;br /&gt;
What output formats do we want to target.  I think at the core this question comes down to whether we want to render everything to a raster format or whether we wish to preserve linework, and text in non-raster form.  That is, whether output output is a raster format, or a raster+vector+text format like postscript/pdf.  &lt;br /&gt;
&lt;br /&gt;
If a cartographic product is the objective, I think selection of an output format like PDF makes a lot of sense, but it does make interactive composition more complicated and it is possible we have limited pdf/postscript development expertise in our developer community. &lt;br /&gt;
&lt;br /&gt;
== Existing code to be recycled ==&lt;br /&gt;
&lt;br /&gt;
There will be code in GRASS, QGIS, the Python Cartographic Library (http://zcologia.org/cartography) and other sources which could be integrated (check license compatibility). Please indicate precisely where to find the source code, license, programming language:&lt;br /&gt;
&lt;br /&gt;
* Label placement code:&lt;br /&gt;
** Mapserver [http://trac.osgeo.org/mapserver/browser/trunk/mapserver/maplabel.c labeling code] (MapServer License, C language)&lt;br /&gt;
** GRASS [http://trac.osgeo.org/grass/browser/grass/trunk/vector/v.label.sa v.label.sa] (GPL, C language)&lt;br /&gt;
* Color management:&lt;br /&gt;
** MapGuide, [http://trac.osgeo.org/mapguide/browser/trunk/MgDev/Server/src/Services/Feature/FeatureNumericFunctions.cpp CalculateDistribution] and [http://trac.osgeo.org/mapguide/browser/trunk/MgDev/Common/PlatformBase/Data/Color.cpp Color] (LGPL.C++)&lt;br /&gt;
** OpenJump ?&lt;br /&gt;
* Stylization:&lt;br /&gt;
* Postscript/PDF output:&lt;br /&gt;
** GRASS [http://trac.osgeo.org/grass/browser/grass/trunk/ps/ps.map ps.map] (Postscript output) and [http://trac.osgeo.org/grass/browser/grass/trunk/lib/psdriver PS driver]&lt;br /&gt;
* PNG output:&lt;br /&gt;
** GRASS [http://trac.osgeo.org/grass/browser/grass/trunk/lib/pngdriver PNG driver]&lt;br /&gt;
** See AGG below&lt;br /&gt;
&lt;br /&gt;
* Class breaks:&lt;br /&gt;
** GRASS [http://trac.osgeo.org/grass/browser/grass/trunk/lib/arraystats different algorithms for class breaks] (GPL, C)&lt;br /&gt;
&lt;br /&gt;
== Technologies ==&lt;br /&gt;
&lt;br /&gt;
* AGG (sophisticated rendering of vector/text graphics to raster format - used by MapServer, MapGuide, Mapnik). &lt;br /&gt;
* Freetype - text management and rendering library&lt;br /&gt;
&lt;br /&gt;
== License ==&lt;br /&gt;
&lt;br /&gt;
It is proposed to license the OSGeo Cartographic Library under LGPL. The license needs to be GPL compliant.&lt;br /&gt;
&lt;br /&gt;
== Interested people ==&lt;br /&gt;
&lt;br /&gt;
* [[User:Neteler|Markus Neteler]] (proposer)&lt;br /&gt;
* Horst Düster&lt;br /&gt;
* [[User:Landa|Martin Landa]]&lt;br /&gt;
* [[User:MarcoHugentobler|Marco Hugentobler]]&lt;br /&gt;
* Frank Warmerdam&lt;br /&gt;
* [[User:Adiez|Agustin Diez]]&lt;br /&gt;
* [[User:mlennert|Moritz Lennert]]&lt;br /&gt;
* [[User:Dsampson | Dave Sampson]]: End User, Search and Rescue Maps,&lt;br /&gt;
* [[User:Dylan | Dylan Beaudette]]: Soil Science Researcher, OSGeo evangelist&lt;br /&gt;
[[Category: Software Stack]]&lt;/div&gt;</summary>
		<author><name>Wiki-Dylan</name></author>
	</entry>
	<entry>
		<id>https://wiki.osgeo.org/w/index.php?title=Journal_Volume_1&amp;diff=12021</id>
		<title>Journal Volume 1</title>
		<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/w/index.php?title=Journal_Volume_1&amp;diff=12021"/>
		<updated>2007-03-05T01:06:24Z</updated>

		<summary type="html">&lt;p&gt;Wiki-Dylan: added a possible article, pending approval&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is a draft page for working on the OSGeo [[Newsletter]]&lt;br /&gt;
== Deadlines ==&lt;br /&gt;
These are draft deadlines currently open for discussion.&lt;br /&gt;
# Call for participation and papers - '''February 27, 2007'''&lt;br /&gt;
# Finalise production team - '''March 8, 2007'''&lt;br /&gt;
# Close formal call for papers - '''March 23, 2007'''&lt;br /&gt;
# Draft production - '''April 4, 2007'''&lt;br /&gt;
# Final production - '''April 16, 2007'''&lt;br /&gt;
&lt;br /&gt;
== Status ==&lt;br /&gt;
# Starting up..&lt;br /&gt;
# Setting deadlines&lt;br /&gt;
# Volunteer invite sent to OSGeo discuss list&lt;br /&gt;
&lt;br /&gt;
== Todo ==&lt;br /&gt;
# Set up mailing list&lt;br /&gt;
# Confirm deadlines&lt;br /&gt;
# Public invite for more contributors in particular areas&lt;br /&gt;
&lt;br /&gt;
== Contributors / Topics ==&lt;br /&gt;
See [[Newsletter]] for definition of the following categories.  Add yourself if you are interested. Note that all categories don't have to be filled, so this serves as a rough outline for the types of content we generally hope to have.&lt;br /&gt;
&lt;br /&gt;
# Editorials&lt;br /&gt;
## Author: Tyler Mitchell - '''General updates'''&lt;br /&gt;
# News&lt;br /&gt;
## Author: Tyler Mitchell - '''OSGeo 1st Anniversary'''&lt;br /&gt;
## others...&lt;br /&gt;
# Event Reports (2-3 articles)&lt;br /&gt;
## Author: Venka/Ravi/? - title: '''Map World Forum, India'''&lt;br /&gt;
## Author: TBD - title: '''GRASS Meeting, Italy'''&lt;br /&gt;
# Project Introductions (1-2 articles)&lt;br /&gt;
## Author TBD - OSSIM (pending)&lt;br /&gt;
## Author TBD - Mapbender (dito)&lt;br /&gt;
## Author Tim Sutton - title: '''Introducing openModeller'''&lt;br /&gt;
# Case Studies (2-3 articles)&lt;br /&gt;
## Author TBD - title: TBD ('''MapGuide Open Source''')&lt;br /&gt;
## Author R. Bivand - title: TBD ('''spgrass6''')&lt;br /&gt;
## ...&lt;br /&gt;
# Integration Studies (2-3 articles)&lt;br /&gt;
## Author: Schyler Erle - title: TBD&lt;br /&gt;
## Author: S. Gebbert - title: TBD ('''GRASS-VTK''')&lt;br /&gt;
## Author: Franck Martin - title: '''Tikiwiki a GeoCMS'''&lt;br /&gt;
## Author: Lorenzo Becchi - title: '''Using ka-Map &amp;amp; PyWPS to create a GRASS WEB GIS'''&lt;br /&gt;
## Author: Dylan Beaudette - title: '''Producing Press-ready Maps with GRASS and GMT'''&lt;br /&gt;
## ...&lt;br /&gt;
# Topical Studies (1-2 articles)&lt;br /&gt;
## Author: Landon Blake - title: '''Spatial Relationships and Topology'''&lt;br /&gt;
## ...&lt;br /&gt;
# Programming Tutorials (1-2 articles)&lt;br /&gt;
## Author: Tim Sutton - title: '''Building apps with QGIS API'''&lt;br /&gt;
## Author: Jachym Cepicky - title: TBD ('''PyWPS''')&lt;br /&gt;
## ...&lt;br /&gt;
# Interview(s)&lt;br /&gt;
## ...&lt;br /&gt;
# Developer Announcements&lt;br /&gt;
## Author: Luca Casagrande - title: '''LiveCD Developments'''&lt;br /&gt;
## OSGeo project summaries:&lt;br /&gt;
### Author: MapGuide PSC - title: '''[[MapGuide Project Update - 2007 Q1]]'''&lt;br /&gt;
### Author: Jody Garnett - title: '''GeoTools Project Update - 2007 Q1'''&lt;br /&gt;
## ...&lt;/div&gt;</summary>
		<author><name>Wiki-Dylan</name></author>
	</entry>
	<entry>
		<id>https://wiki.osgeo.org/w/index.php?title=All_Members&amp;diff=4792</id>
		<title>All Members</title>
		<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/w/index.php?title=All_Members&amp;diff=4792"/>
		<updated>2006-05-25T18:48:06Z</updated>

		<summary type="html">&lt;p&gt;Wiki-Dylan: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{|  border=&amp;quot;1&amp;quot; class=&amp;quot;wikitable&amp;quot; style=&amp;quot;margin: 1em 1em 1em 0; background: #f9f9f9; border: 1px #aaaaaa solid; border-collapse: collapse;&amp;quot;&lt;br /&gt;
 ! style=&amp;quot;background:#efefef;&amp;quot; | Name&lt;br /&gt;
 ! style=&amp;quot;background:#ffdead;&amp;quot; | Affiliations&lt;br /&gt;
 ! style=&amp;quot;background:#efefef;&amp;quot; | OSGeo Projects&lt;br /&gt;
 ! style=&amp;quot;background:#ffdead;&amp;quot; | (Lat,Lon)&lt;br /&gt;
 ! style=&amp;quot;background:#efefef;&amp;quot; | About&lt;br /&gt;
|-&lt;br /&gt;
| Add yourself&lt;br /&gt;
| Everyone is welcome&lt;br /&gt;
| In which OSGeo Projects and Committees are you involved&lt;br /&gt;
| Input lat/long here&lt;br /&gt;
| Copy and paste this entry, put it last, and add your information&lt;br /&gt;
|- &lt;br /&gt;
| Chris Holmes &lt;br /&gt;
| [http://topp.openplans.org The Open Planning Project], [http://geoserver.org GeoServer]&lt;br /&gt;
| [http://incubator.osgeo.org Incubator], [http://board.osgeo.org Board], [http://geotools.org GeoTools] &lt;br /&gt;
| (40.72,-74.00)&lt;br /&gt;
| I come from the Java side of the OSGeo fence, getting my start in GeoServer, where I was lead developer for a couple years, and GeoTools, where I still serve on the PMC.  My time is made possible by [http://topp.openplans.org The Open Planning Project (TOPP)], a great non-profit in New York that has been the lead supporter of GeoServer for years now.  I spent the last year in Zambia on a Fulbright Scholarship, looking at the potential for open source software to help implement spatial data infrastructures in developing countries.  It was a bit of a failure, but I learned a ton, and I see a lot of potential for open source in developing countries, towards truly open spatial data infrastructures.  I'm back at TOPP, in a new role as VP of Strategic Development, helping to grow the organization, and figuring out how to make our geospatial stuff self sustaining.  Once that's rolling, I hope to reinvest extra revenue in to figuring out and building a truly open geospatial web.  And just like apache and linux are the bedrock that the World Wide Web rests on, so too do I believe that the geospatial web necessarily must be built on a foundation of OS Geo software.  My continuing thoughts on all of this can be found at http://cholmes.wordpress.com &lt;br /&gt;
|- &lt;br /&gt;
| Michael P. Gerlek&lt;br /&gt;
| [http://www.lizardtech.com LizardTech]&lt;br /&gt;
| [http://visibilitycommittee.osgeo.org Promotion and Visibility Committee]&lt;br /&gt;
| (47.673166,-122.530143)&lt;br /&gt;
| Engineer at LizardTech, doing MrSID and JPEG 2000 stuff and playing with with the next generation of technologies for supporting raster data GIS workflows. Yes, we're a closed-software shop -- but we support and use open source and open standards. I think there is room in the world for both the open and closed development models, and I have a strong interest in helping &amp;quot;closed&amp;quot; companies understand the value of, and contribute to, the open software world.  [[User:mpg]]&lt;br /&gt;
|-&lt;br /&gt;
| Frank Warmerdam&lt;br /&gt;
| Independent&lt;br /&gt;
| [http://www.gdal.org GDAL/OGR], [http://mapserver.gis.umn.edu MapServer], [http://incubator.osgeo.org Incubator], [http://board.osgeo.org Board]&lt;br /&gt;
| (45.45,-77.25)&lt;br /&gt;
| Lead developer of GDAL/OGR and freelance geospatial software developer.&lt;br /&gt;
|-&lt;br /&gt;
| Jason Birch &lt;br /&gt;
| [http://www.nanaimo.ca/ City of Nanaimo] &lt;br /&gt;
| [http://webcommittee.osgeo.org Web Site], [http://visibilitycommittee.osgeo.org Promotion &amp;amp; Visibility]&lt;br /&gt;
| (49.155, -124.005)&lt;br /&gt;
| I am a long-time GIS/IT/'Net junkie, and am currently working for the City of Nanaimo's IT department as a Sr. Applications Analyst (GIS Specialist).   I am excited about what I see happening in the open source geospatial world, with OSGeo as a catalyst. [[User:Jasonbirch]]&lt;br /&gt;
|-&lt;br /&gt;
|Howard Butler &lt;br /&gt;
| [http://www.hobu.biz/ Hobu, Inc] &lt;br /&gt;
| [http://webcommittee.osgeo.org Web Site Committee],&lt;br /&gt;
| (42.00, -93.00)&lt;br /&gt;
| MapServer hacker, MTSC member.  GDAL hacker.  ESRI ArcSDE hack.  Purveyor of Windows binary builds  [[User:hobu]]&lt;br /&gt;
|-&lt;br /&gt;
| Daniel Brookshier&lt;br /&gt;
| CollabNet&lt;br /&gt;
| All, I am the community manager&lt;br /&gt;
| 33.036478,-96.715007&lt;br /&gt;
| I am the community manager for the site. I help/mentor/guide users and projects to ensure that the community is a successs. If you have a question, email me at dbrookshier @ collab net&lt;br /&gt;
|-&lt;br /&gt;
| Markus Neteler&lt;br /&gt;
| [http://mpa.itc.it ITC-irst], [http://www.cealp.it CEA], [http://www.gdf-hannover.de GDF Hannover] &lt;br /&gt;
| [http://grass.itc.it GRASS GIS], [http://board.osgeo.org Board], [http://geodata.osgeo.org Public Geodata Com.], [http://edu.osgeo.org Education Com.], [http://visibilitycommittee.osgeo.org Promotion &amp;amp; Visibility Com.]&lt;br /&gt;
| (46.06714, 11.15113)&lt;br /&gt;
| Developer of GRASS GIS, researcher at ITC-irst + CEA, Trento, Italy and co-founder of GDF Hannover  [[User:neteler]]&lt;br /&gt;
|- &lt;br /&gt;
| R. Paul Warriner&lt;br /&gt;
| [http://www.orchardparkny.org/ Town of Orchard Park]&lt;br /&gt;
| [http://webcommittee.osgeo.org Web Site Committee]&lt;br /&gt;
| (43.17, -78.69)&lt;br /&gt;
| Network Coordinator, old oil field hand (really, I do know what a frac job is), started with remote data comm. from well sites in '84 as a truckdriver, turned computer jockey by Linux in '93, found ArcView 1.0 the same year (I think), and the rest is ..... (oh yeah, I did some of that Calculus, Organic Chemistry, and Thermo thingy stuff along the way). [[User:RPaulW]]&lt;br /&gt;
|-&lt;br /&gt;
|Bart van den Eijnden&lt;br /&gt;
| [http://www.osgis.nl/ OSGIS] &lt;br /&gt;
| [http://chameleon.maptools.org Chameleon],&lt;br /&gt;
| (52.0768396070808, 5.12454)&lt;br /&gt;
| Freelancer working with several open source GIS tools, mainly Chameleon, Mapserver and Geoserver. &lt;br /&gt;
[[User:bartvde]]&lt;br /&gt;
|- &lt;br /&gt;
| Helena Mitasova&lt;br /&gt;
| [http://skagit.meas.ncsu.edu/~helena/ North Carolina State University]&lt;br /&gt;
| [http://grass.itc.it GRASS GIS], [http://wiki.osgeo.org/index.php/Core_Curriculum_Project Curriculum project]&lt;br /&gt;
| (35.77, -78.69)&lt;br /&gt;
| Researcher at NCSU (geospatial technology, environmental modeling, sustainable development), Developer of GRASS GIS. [[User:Helena]]&lt;br /&gt;
|- &lt;br /&gt;
| Daniel Morissette&lt;br /&gt;
| [http://www.mapgears.com/ Mapgears]&lt;br /&gt;
| [http://mapserver.gis.umn.edu/ MapServer], [http://www.gdal.org GDAL/OGR]&lt;br /&gt;
| (48.42, -71.04)&lt;br /&gt;
| Involved in MapServer, GDAL/OGR and most [http://maptools.org/ MapTools.org] projects, mostly around webmapping and data access and distribution.  [[User:dmorissette]]&lt;br /&gt;
|- &lt;br /&gt;
| Ari Jolma&lt;br /&gt;
| [http://users.tkk.fi/~jolma/index.html TKK]&lt;br /&gt;
| [http://www.gdal.org GDAL/OGR], [http://wiki.osgeo.org/index.php/Core_Curriculum_Project Curriculum project]&lt;br /&gt;
| (60° 16' , 24° 47' 4'')&lt;br /&gt;
| Professor at TKK, Finland (geoinformatics, environmental information systems, water resources systems), [http://map.hut.fi/PerlForGeoinformatics/ just another Perl hacker] [[User:ajolma]]&lt;br /&gt;
|- &lt;br /&gt;
| Jeff McKenna&lt;br /&gt;
| [http://www.dmsolutions.ca DM Solutions Group]&lt;br /&gt;
| [http://mapserver.gis.umn.edu/ MapServer]&lt;br /&gt;
| (45.401397610, -75.725861625)&lt;br /&gt;
| MapServer documentation, [http://www.maptools/ms4w MS4W] maintainer, [http://www.maptools.org maptools] co-maintainer.  [[User:jmckenna]]&lt;br /&gt;
|- &lt;br /&gt;
| Ian Turton&lt;br /&gt;
| [http://www.geovista.psu.edu/members/turton/index.html work][http://pennspace.blogspot.com/ blog]&lt;br /&gt;
| [http://www.geotools.org GeoTools] &lt;br /&gt;
| (40.7932, -77.847)&lt;br /&gt;
| [http://www.geotools.org GeoTools] founder and developer, [http://www.geovistastudio.psu.edu GeoVistaStudio] benevolent dictator, [http://geoserver.org GeoServer] user. [[User:ianturton]]&lt;br /&gt;
|- &lt;br /&gt;
| David Blasby&lt;br /&gt;
| [http://topp.openplans.org The Open Planning Project], [http://geoserver.org GeoServer], [http://geotools.org GeoTools] &lt;br /&gt;
| [http://geotools.org GeoTools] &lt;br /&gt;
| (varies)&lt;br /&gt;
| Currently, I'm the Project Lead for Geoserver and am on the GeoTools Project Management Committee.  I'm just starting a GeoWiki (Public Participation GIS) (please contact me if you're interested).  I was the orginal creator of PostGIS, and have contributed to several OS GIS projects, including JTS, JUMP, and Mapserver. &lt;br /&gt;
|- &lt;br /&gt;
| Andrey Kiselev&lt;br /&gt;
| &amp;quot;Radar&amp;quot; R&amp;amp;D Centre (Russia)&lt;br /&gt;
| GDAL/OGR&lt;br /&gt;
| (60.04,30.33)&lt;br /&gt;
| Freelance developer and contributor to GDAL/OGR project.&lt;br /&gt;
|- &lt;br /&gt;
| Helton Uchoa&lt;br /&gt;
| [http://www.geolivre.org.br Geolivre Community], [http://www.open3dgis.org Open 3D GIS Project]&lt;br /&gt;
| [http://webcommittee.osgeo.org Web Site Committee] and [http://wiki.osgeo.org/index.php/Public_Geospatial_Data_Project Public Geospatial Data Project]&lt;br /&gt;
| (-22.96, -43.11)&lt;br /&gt;
| I'm a Geomatics Enginner and I work at [http://www.opengeo.com.br OpenGEO Company] as a GIS Specialist. I'm responsible for many GIS projects using FOSS and the OpenGIS Specifications in Brazil and I have some relevant papers and scientific articles presented in Brazilian and Latin-American conferences and published in scientific magazines. In last year, I have helped, as a teacher, introduce the GNU/FSF philosophy at the Transportation Engineering Department of IME ([http://www.ime.eb.br Military Institute of Engineering - IME], Brazil). I have worked in Geolivre Rio 2004 and 2005 as member of organization commitee. Now I'm working in [http://www.geolivre.org Geolivre Conference 2007]. [[User:Uchoa]]&lt;br /&gt;
|- &lt;br /&gt;
| Toru Mori&lt;br /&gt;
|  [http://www.orkney.co.jp/english Orkney, Inc.]&lt;br /&gt;
|  [http://mapserver.gis.umn.edu/ MapServer], [http://grass.itc.it GRASS GIS]&lt;br /&gt;
|  (35.448, 139.642)&lt;br /&gt;
|  President of Orkney, Inc.  Advocate of Open Geospatial tools in Japan and Asia. Promote open geospatial data. [[User:moritoru]]&lt;br /&gt;
|-&lt;br /&gt;
| Allan Doyle&lt;br /&gt;
| [http://www.eogeo.org EOGEO],[http://museum.mit.edu/cmp MIT Museum],[http://spg.gsfc.nasa.gov/ NASA Earth Science Data Systems Standards Process Group]&lt;br /&gt;
| [http://wiki.osgeo.org/index.php/Public_Geospatial_Data_Project Public Geospatial Data Project]&lt;br /&gt;
| (42.28, -71.24)&lt;br /&gt;
| President of [http://www.eogeo.org EOGEO] and [http://www.intl-interfaces.com International Interfaces], long-time geo-interoperability interests, opensourced (is that a verb?) [http://openmap.bbn.com OpenMap], originator of OGC testbed idea, Web Mapping Testbed, WMS spec editor, worked on WMS Context, [http://www.georss.org GeoRSS]. [http://www.eogeo.org/Members/adoyle more details]. [http://think.random-stuff.org Blog][[User:adoyle]]&lt;br /&gt;
|- &lt;br /&gt;
| Ned Horning&lt;br /&gt;
| [http://cbc.amnh.org/ Center for Biodiversity and Conservation], [http://www.amnh.org/ American Museum of Natural History]&lt;br /&gt;
| [http://wiki.osgeo.org/index.php/Core_Curriculum_Project Curriculum project]&lt;br /&gt;
|(43.9933, -73.0407)&lt;br /&gt;
|Program manager for [http://geospatial.amnh.org/ remote sensing/GIS]. Promoter of open source geospatial tools in the global conservation community. &lt;br /&gt;
|-&lt;br /&gt;
| Paul Spencer&lt;br /&gt;
| [http://www.dmsolutions.ca DM Solutions Group]&lt;br /&gt;
| [http://mapserver.gis.umn.edu/ MapServer], [http://chameleon.maptools.org Chameleon], [http://ka-map.maptools.org kaMap], [http://maptools.org/maplab/index.phtml MapLab], [http://maptools.org/ms4w/index.phtml MS4W], [http://openev.sourceforge.net/ OpenEV]&lt;br /&gt;
| (45.401397610, -75.725861625)&lt;br /&gt;
| CTO of DM Solutions Group, designer/developer/contributor to many open source packages, especially based on MapServer.  Recent interest/focus is on AJAX clients for mapping applications. [[User:pagameba]]&lt;br /&gt;
|-&lt;br /&gt;
| Mark Lucas&lt;br /&gt;
| remotesensing.org&lt;br /&gt;
| [http://www.remotesensing.org  remotesensing.org]  and [http://www.ossim.org ossim] &lt;br /&gt;
| (27.9690219N, 080.5590534W altitude sea level + 5m)&lt;br /&gt;
| CTO, original founder of ImageLinks and remotesensing.org.  Board of Directors [http://www.oss-institute.org/ Open Source Software Institute] and the [http://www.ncospr.org/ National Center for Open Source Policy and Research].  Member of Open Technology Development Tiger team for the Department of Defense (USA).  Lead a team of talented developers on the OSSIM and [http://www.ossim.org/tiki-read_article.php?articleId=3 osgPlanet] projects.  Previously spent 22 years in the United States Air Force and [http://www.nro.gov/ National Reconnaissance Office] and the [http://www.fas.org/irp/nro/hall3.htm Secretary of the Air Force Special Projects] organization working with various classified programs.  Prior to Radiant Blue Technologies, was a Lead Scientist for Intelligence Data Systems, Titan Corporation, and L3-Communciations. [http://web.mac.com/mlucas17/iWeb/Site/Welcome.html  Personal Web site]. [[User:mlucas17]]&lt;br /&gt;
|-&lt;br /&gt;
| Jo Walsh&lt;br /&gt;
| [http://okfn.org/geo/ Open Knowledge Foundation],[http://mappinghacks.com/ Mapping Hacks], [http://publicgeodata.org Public Geodata] &lt;br /&gt;
|  Open Geodata committee&lt;br /&gt;
| (42.368297,-71.108696)&lt;br /&gt;
| Came to geospatial software through collaborative mapping on the semantic web work.  Organising events to get geospatial hackers together with data-creating people and promote public access to state collected geodata. If you are in Europe please see [http://publicgeodata.org Public Geodata] and consider writing to an MEP about public domain data and &amp;quot;intellectual property rights&amp;quot; issues. If you collect GPS tracks, please consider uploading them to [http://openstreetmap.org/ OpenStreetmap] - my only real contribution to this project is to talk about it a lot. I co-wrote &amp;quot;Mapping Hacks&amp;quot; with Schuyler Erle and Rich Gibson, with a lot of contributions from OSGeo type of people. Last year wrote a lot of software using OSM and [http://openguides.org/ OpenGuides] with [[Mapserver]] to provide a basis for collaborative local &amp;quot;portal&amp;quot; type services on community wireless networks. Now more interested in doing collaborative writing and research projects. [[User:JoWalsh]]  &lt;br /&gt;
|-&lt;br /&gt;
| Dave McIlhagga&lt;br /&gt;
| [http://www.dmsolutions.ca DM Solutions Group]&lt;br /&gt;
| [http://visibilitycommittee.osgeo.org Promotion and Visibility Committee]&lt;br /&gt;
| (45.401397610, -75.725861625)&lt;br /&gt;
| President &amp;amp; CEO of DM Solutions Group. Active promoter of open source geospatial technologies. Led DM Solutions Group to become a major contributor and advocate of MapServer and development of key open source MapServer utilities including [http://chameleon.maptools.org Chameleon], [http://ka-map.maptools.org kaMap], [http://maptools.org/maplab/index.phtml MapLab], [http://maptools.org/ms4w/index.phtml MS4W]. Provided financial and resource support for setup of a key home for open source geospatial projects at [http://www.maptools.org MapTools]. Led the organizing committee for [http://www.omsug.ca/osgis2004/index.html OSGIS], the first Open Source Geospatial conference in North America which coincided with the second MapServer User Meeting. Spearheaded the integration of the two major open source geospatial conferences from North America and Europe/Asia, as the [http://www.foss4g2006.org/ Free and Open Source Software for Geoinformations] single international event to be held in Lausanne Switzerland. [[User:davemac]]&lt;br /&gt;
|-&lt;br /&gt;
| Pericles (Perry) Nacionales&lt;br /&gt;
| [http://land.umn.edu University of Minnesota]&lt;br /&gt;
| [http://webcommittee.osgeo.org Web Site Committee]&lt;br /&gt;
| (44.9873167, -93.1851500)&lt;br /&gt;
| Promoter of open source geospatial technologies specially in the field of natural resources management and conservation, advocate of open and interoperability standards, MTSC member, author of [http://mapserver.gis.umn.edu/docs/tutorial/tutorial/tutorial MapServer Tutorial].&lt;br /&gt;
|-&lt;br /&gt;
| Norman Vine&lt;br /&gt;
| Independent&lt;br /&gt;
| &lt;br /&gt;
| (41:31:38N, 70:39:43W)&lt;br /&gt;
| Independent software developer [[User:Nhv]] &lt;br /&gt;
|-&lt;br /&gt;
| Mike Adair&lt;br /&gt;
| [http://www.geoconnections.org/CGDI.cfm Natural Resources Canada/GeoConnections]&lt;br /&gt;
| [http://communitymapbuilder.org MapBuilder]&lt;br /&gt;
| (45.27, -75.75)&lt;br /&gt;
| Contributor and member of MapBuilder PMC.  Interested primarily in AJAX client technology for mapping, but also in the whole SDI stack. [[User:madair]]&lt;br /&gt;
|-&lt;br /&gt;
| Stefan F. Keller&lt;br /&gt;
| University of Applied Sciences Rapperswil (HSR), [http://www.ifs.hsr.ch Institute for Software]&lt;br /&gt;
| [http://webgis.hsr.ch/javawps JavaWPS]&lt;br /&gt;
| (47.2240, 8.8181)&lt;br /&gt;
| Promotor of open source and commercial technologies specially in the field of information retrieval, databases, GIS and visualization. Advocate of open and interoperability standards, member of national GIS standardization (e-geo, SNV) and umbrella (SOGI) organizations. Creator of [http://wwww.geometa.info geometa.info], one of the first search engines for geospatial services (WMS), metadata and online maps (Lucene-based); contributor of geo-webservices for german Wikipedia. [[User:Sfkeller]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Arnulf Christl | Arnulf Christl]]&lt;br /&gt;
| [http://www.ccgis.de CCGIS], [http://www.geo-consortium.de Geo-Consortium]&lt;br /&gt;
| [http://www.mapbender.org Mapbender], [http://www.umn-mapserver.de UMN MapServer (Germany)], [http://board.osgeo.org Board], [http://visibilitycommittee.osgeo.org Promotion and Visibility Committee]&lt;br /&gt;
| (7.0707, 50.7342)&lt;br /&gt;
| Mapbender PSC, Promoter of [http://www.gnu.org Free Software] and [http://www.osi.org Open Source] :-) Business (...and Open Source Software!)&lt;br /&gt;
|-&lt;br /&gt;
|V.RaviKumar&lt;br /&gt;
|Geologist&lt;br /&gt;
|OSGeo member [http://freegis.gnu.org.in/grass_geosciencedataset.pdf],[''GRASS Indian exmple'']&lt;br /&gt;
| 17° N 79° E&lt;br /&gt;
| A Geologist from India who is interested in FOSS software. GRASS in particular. Conducted a FOSS workshop at Hyderabad, India in May 2005.  The workshop boosted our spirits with a large participation and good articles  on various FOSS software. An entire session was for GRASS, Qgis software.  Presently lecturing in various forums on the capability of GRASS and   allied FOSS GIS. With the help of Free Software Foundation India, trying  to spread awareness of GRASS GIS, GNU-Linux and FOSS. Countries like India have a lot to gain with the spread of FOSS.&lt;br /&gt;
|- &lt;br /&gt;
|David Hastings&lt;br /&gt;
|UN Economic and Social Commission for Asia and the Pacific, Bangkok&lt;br /&gt;
|Member of original Grass Interagency Steering Committee, etc.&lt;br /&gt;
| 13.75°N  100.5°E&lt;br /&gt;
| A physicist/geophysicist/geological engineer who has used GRASS since 1987, and on the GRASS Interagency Steering Committee for the original public-domain package.  I wrote the Linux Mini-HOWTO on GRASS-GIS (which is now woefully out of date); and taught short courses in scientific (as opposed to cartographic) GIS since 1980.  In 1994 I moved my teaching to the Web, developing the CyberInstitute Short-Course on GIS.  Currently, I'm at UN ESCAP.  Open-Source is a great capacity- building environment for software communities worldwide.  In developing countries, rather than being stuck merely teaching people to cut and paste stuff within a proprietary office suite, you can be part of the full development team, customizing the software to your community's needs, helping your country to have its own software development community - and hopefully making a satisfying living in the process.&lt;br /&gt;
|-&lt;br /&gt;
| Gary Sherman&lt;br /&gt;
| [http://mrcc.com Micro Resources], [http://qgis.org Quantum GIS]&lt;br /&gt;
| OSGeo Member&lt;br /&gt;
| (-149.567, 61.32138)&lt;br /&gt;
| Consultant, &amp;quot;Father&amp;quot; of Quantum GIS, long-time Linux user and Open Source proponent.&lt;br /&gt;
|-&lt;br /&gt;
| Astrid Emde&lt;br /&gt;
| [http://www.mapbender.org Mapbender], MapServer, PostgreSQL/PostGIS&lt;br /&gt;
| Mapbender Development&lt;br /&gt;
| (7.0707, 50.7342)&lt;br /&gt;
| Projects with MapServer, PostgreSQL/PostGIS, Mapbender. Part of the Mapbender Developer Team. Courses for Mapbender, UMN MapServer, PostgreSQL/PostGIS and WMS, WFS &lt;br /&gt;
|-&lt;br /&gt;
| Jeroen Ticheler&lt;br /&gt;
| [http://geonetwork.sourceforge.net GeoNetwork opensource], [http://sourceforge.net/projects/intermap InterMap opensource], [http://www.fao.org/geonetwork Food and Agriculture Organization GeoNetwork]&lt;br /&gt;
| OSGeo member&lt;br /&gt;
| 42.07420°N, 12.34343°E&lt;br /&gt;
| I've initiated the development of the GeoNetwork opensource Spatial Data Catalog software and its embedded InterMap opensource Map Viewer. I hope to contribute possitively to the creation of a comprehensive, FOSS based toolkit for Spatial Data Infrastructures (SDIs) that help people share and use geospatial data and information in an easy and cost effective way. I focus especially on the data sharing within the United Nations system and in countries under development. I promote free and open source software as an excellent option for more sustainable development in these countries, proving it works by applying and further developing it in my day to day work. [http://lists.eogeo.org/mailman/listinfo/opensdi OpenSDI] is a forum to discuss foss and cots integration.&lt;br /&gt;
|-&lt;br /&gt;
| Dirceu Machado&lt;br /&gt;
| [http://www.pti.org.br Itaipu Tecnology Park]&lt;br /&gt;
| OSGeo member,GRASS&lt;br /&gt;
| 59°S, -24°E&lt;br /&gt;
| I'm a brazilian developer of open source GIS/WEB_GIS applications using PHP, JAVA and Python with Mapserver and PostGIS and also a user and enthusiast of Linux and BSD's OS. I'm excited with the idea of a community like this one and i wish to help in any way i can with development's (if necessary) and/or documentation translations to portuguese language. Actualy i'm working in a project to develop a GIS viewer and map generator (for printing purposes) in Python based on the idea of the JUMP Project.&lt;br /&gt;
|-&lt;br /&gt;
| Kevin Yam&lt;br /&gt;
| [http://www.ene.gov.on.ca Ontario Ministry of the Environment], [http://www.lio.mnr.gov.on.ca, Land Information Ontario]&lt;br /&gt;
| OSGeo member&lt;br /&gt;
| 43.709, -79.544&lt;br /&gt;
| Program coordinator for information management within the Provinicial Ministry of the Environment. I focus especially on data sharing between government agencies, departments and local stakeholders, and I am a promoter of open source geospatial tools applicable to environmental monitoring and observing [[User:kevinyam]]&lt;br /&gt;
|-&lt;br /&gt;
| Colin Gowens&lt;br /&gt;
| Geographer, GIS Professional&lt;br /&gt;
| OSGeo member&lt;br /&gt;
| 33.7518, -84.3920&lt;br /&gt;
| User of GRASS, GDAL, OGR, PostGIS and Mapserver since 2002.  The open source GIS software and community have proven tremendously valuable to my GIS endeavors.&lt;br /&gt;
|-&lt;br /&gt;
| David Bitner&lt;br /&gt;
| [http://maps.macnoise.com/interactive/, Metropolitan Airports Commission], Freelance&lt;br /&gt;
| OSGeo member&lt;br /&gt;
| 44.844, -93.560&lt;br /&gt;
| Active PostGIS and MapServer user.  GIS application developer for airport authority and other freelance projects.  Member of Geodata Workgroup.  Serve on Regional/State committees (Minnesota) for Data Sharing and Enterprise Geospatial Architecture.  Member of Twin Cities Mapserver Users Group.&lt;br /&gt;
|-&lt;br /&gt;
| Tyler Mitchell&lt;br /&gt;
| [http://spatialguru.com, Spatialguru.com], [http://timberline.ca, Timberline GIS]&lt;br /&gt;
| OSGeo Member, [http://visibilitycommittee.osgeo.org Promotion and Visibility Committee], [http://edu.osgeo.org Education Committee]&lt;br /&gt;
| 54, -121 (lat/lon)&lt;br /&gt;
| MapServer, PostGIS, GRASS, GDAL user.  GIS Manager for production shop focused on natural resource management.  [http://oreilly.com/catalog/webmapping, O'Reilly Author], writer, promoter of Open Source GIS.&lt;br /&gt;
|-&lt;br /&gt;
| Rafael Medeiros Sperb&lt;br /&gt;
| [http://www.univali.br, G10 - UNIVALI]&lt;br /&gt;
| OSGeo Member&lt;br /&gt;
| -26.60, -48.70 (lat/lon)&lt;br /&gt;
|-&lt;br /&gt;
| Steven M. Ottens&lt;br /&gt;
| [http://www.geodan.com/ Geodan]&lt;br /&gt;
| [http://communitymapbuilder.org MapBuilder]&lt;br /&gt;
| 52.34, 4.91  (lat/lon)&lt;br /&gt;
| Contributor and member of MapBuilder PMC.  [[User:stvn]]&lt;br /&gt;
|-&lt;br /&gt;
| Stefano Maffulli&lt;br /&gt;
| Politecnico di Milano&lt;br /&gt;
| [http://visibilitycommittee.osgeo.org Promotion and Visibility Committee], [http://wiki.osgeo.org/index.php/International_Outreach International Outreach], [http://wiki.osgeo.org/index.php/Public_Geospatial_Data_Project Public Geospatial Data]&lt;br /&gt;
| 45, 9 (Lat,Lon)&lt;br /&gt;
| Architect, worked within the GIS_Lab at University of Florence on research about sustainable development of historical cities.  At Joint Research Center (Ispra) worked within the EU funded project [http://commongis.org CommonGIS].  Currently working with Politecnico di Milano as consultant on [http://www.corila.it/ Methodologies and technologies for conservation and restoration of historical Venetian buildings]&lt;br /&gt;
|-&lt;br /&gt;
| Dave Patton&lt;br /&gt;
| [http://members.shaw.ca/davepatton/ CIS Canadian Information Systems]&lt;br /&gt;
| helping the Website Committee&lt;br /&gt;
| 49.27N 123.15W&lt;br /&gt;
| Self-employed computer consultant.  Co-lead developer for [http://punt.sourceforge.net/ Punt], an Open Source multi-language Windows desktop application that allows the user to view the terrain of any world in 3D.  Canadian Coordinator and co-administrator of [http://www.confluence.org/index.php the Degree Confluence Project]  [[User:Dpatton]]&lt;br /&gt;
|-&lt;br /&gt;
|  Jody Garnett&amp;lt;br&amp;gt;[[User:Jive]]&lt;br /&gt;
| [http://docs.codehaus.org/display/GEOTOOLS/Home GeoTools]&lt;br /&gt;
| Iccubation and limited Website Committee&lt;br /&gt;
| missing&lt;br /&gt;
| It seems all I do is email, must be due to [http://docs.codehaus.org/display/GEOTOOLS/Home GeoTools], [http://docs.codehaus.org/display/GEOS/Home GeoServer], [http://docs.codehaus.org/display/GEO/Home GeoAPI] and [http://udig.refractions.net uDig]. I am working at [http://www.refractions.net/ Refractions Research, Inc], a small consulting company with an open source habit.&lt;br /&gt;
|-&lt;br /&gt;
| Justin Deoliveira&lt;br /&gt;
| [http://topp.openplans.org The Open Planning Project], [http://docs.codehaus.org/display/GEOTOOLS/Home GeoTools], [http://docs.codehaus.org/display/GEOS/Home GeoServer]&lt;br /&gt;
| [http://docs.codehaus.org/display/GEOTOOLS/Home GeoTools]&lt;br /&gt;
| undeterministic&lt;br /&gt;
| [http://docs.codehaus.org/display/GEOTOOLS/Home GeoTools] module maintainer, [http://docs.codehaus.org/display/GEOS/Home GeoServer] developer, and [http://udig.refractions.net uDig] committer. I have been kicking around the Java GIS world for approximately 3 years contributing as an active developer on said projects. For the last year or so I have been working for a non-profit company known as [http://topp.openplans.org The Open Planning Project]. &lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Dylan Beaudette&lt;br /&gt;
| [http://casoilresource.lawr.ucdavis.edu/drupal/node/38 UCD]&lt;br /&gt;
| GRASS&lt;br /&gt;
| Input lat/long here&lt;br /&gt;
| Soils and Biogeochemistry M.S. student at University of California, Davis. Interested in the use and proliferation of OSS in the sciences, particularly soil science. GIS and geomorphologic analysis; presentation of USDA-NCSS digital soil survey information / soils education through visual example.&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Wiki-Dylan</name></author>
	</entry>
	<entry>
		<id>https://wiki.osgeo.org/w/index.php?title=All_Members&amp;diff=4791</id>
		<title>All Members</title>
		<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/w/index.php?title=All_Members&amp;diff=4791"/>
		<updated>2006-05-25T18:47:03Z</updated>

		<summary type="html">&lt;p&gt;Wiki-Dylan: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{|  border=&amp;quot;1&amp;quot; class=&amp;quot;wikitable&amp;quot; style=&amp;quot;margin: 1em 1em 1em 0; background: #f9f9f9; border: 1px #aaaaaa solid; border-collapse: collapse;&amp;quot;&lt;br /&gt;
 ! style=&amp;quot;background:#efefef;&amp;quot; | Name&lt;br /&gt;
 ! style=&amp;quot;background:#ffdead;&amp;quot; | Affiliations&lt;br /&gt;
 ! style=&amp;quot;background:#efefef;&amp;quot; | OSGeo Projects&lt;br /&gt;
 ! style=&amp;quot;background:#ffdead;&amp;quot; | (Lat,Lon)&lt;br /&gt;
 ! style=&amp;quot;background:#efefef;&amp;quot; | About&lt;br /&gt;
|-&lt;br /&gt;
| Add yourself&lt;br /&gt;
| Everyone is welcome&lt;br /&gt;
| In which OSGeo Projects and Committees are you involved&lt;br /&gt;
| Input lat/long here&lt;br /&gt;
| Copy and paste this entry, put it last, and add your information&lt;br /&gt;
|- &lt;br /&gt;
| Chris Holmes &lt;br /&gt;
| [http://topp.openplans.org The Open Planning Project], [http://geoserver.org GeoServer]&lt;br /&gt;
| [http://incubator.osgeo.org Incubator], [http://board.osgeo.org Board], [http://geotools.org GeoTools] &lt;br /&gt;
| (40.72,-74.00)&lt;br /&gt;
| I come from the Java side of the OSGeo fence, getting my start in GeoServer, where I was lead developer for a couple years, and GeoTools, where I still serve on the PMC.  My time is made possible by [http://topp.openplans.org The Open Planning Project (TOPP)], a great non-profit in New York that has been the lead supporter of GeoServer for years now.  I spent the last year in Zambia on a Fulbright Scholarship, looking at the potential for open source software to help implement spatial data infrastructures in developing countries.  It was a bit of a failure, but I learned a ton, and I see a lot of potential for open source in developing countries, towards truly open spatial data infrastructures.  I'm back at TOPP, in a new role as VP of Strategic Development, helping to grow the organization, and figuring out how to make our geospatial stuff self sustaining.  Once that's rolling, I hope to reinvest extra revenue in to figuring out and building a truly open geospatial web.  And just like apache and linux are the bedrock that the World Wide Web rests on, so too do I believe that the geospatial web necessarily must be built on a foundation of OS Geo software.  My continuing thoughts on all of this can be found at http://cholmes.wordpress.com &lt;br /&gt;
|- &lt;br /&gt;
| Michael P. Gerlek&lt;br /&gt;
| [http://www.lizardtech.com LizardTech]&lt;br /&gt;
| [http://visibilitycommittee.osgeo.org Promotion and Visibility Committee]&lt;br /&gt;
| (47.673166,-122.530143)&lt;br /&gt;
| Engineer at LizardTech, doing MrSID and JPEG 2000 stuff and playing with with the next generation of technologies for supporting raster data GIS workflows. Yes, we're a closed-software shop -- but we support and use open source and open standards. I think there is room in the world for both the open and closed development models, and I have a strong interest in helping &amp;quot;closed&amp;quot; companies understand the value of, and contribute to, the open software world.  [[User:mpg]]&lt;br /&gt;
|-&lt;br /&gt;
| Frank Warmerdam&lt;br /&gt;
| Independent&lt;br /&gt;
| [http://www.gdal.org GDAL/OGR], [http://mapserver.gis.umn.edu MapServer], [http://incubator.osgeo.org Incubator], [http://board.osgeo.org Board]&lt;br /&gt;
| (45.45,-77.25)&lt;br /&gt;
| Lead developer of GDAL/OGR and freelance geospatial software developer.&lt;br /&gt;
|-&lt;br /&gt;
| Jason Birch &lt;br /&gt;
| [http://www.nanaimo.ca/ City of Nanaimo] &lt;br /&gt;
| [http://webcommittee.osgeo.org Web Site], [http://visibilitycommittee.osgeo.org Promotion &amp;amp; Visibility]&lt;br /&gt;
| (49.155, -124.005)&lt;br /&gt;
| I am a long-time GIS/IT/'Net junkie, and am currently working for the City of Nanaimo's IT department as a Sr. Applications Analyst (GIS Specialist).   I am excited about what I see happening in the open source geospatial world, with OSGeo as a catalyst. [[User:Jasonbirch]]&lt;br /&gt;
|-&lt;br /&gt;
|Howard Butler &lt;br /&gt;
| [http://www.hobu.biz/ Hobu, Inc] &lt;br /&gt;
| [http://webcommittee.osgeo.org Web Site Committee],&lt;br /&gt;
| (42.00, -93.00)&lt;br /&gt;
| MapServer hacker, MTSC member.  GDAL hacker.  ESRI ArcSDE hack.  Purveyor of Windows binary builds  [[User:hobu]]&lt;br /&gt;
|-&lt;br /&gt;
| Daniel Brookshier&lt;br /&gt;
| CollabNet&lt;br /&gt;
| All, I am the community manager&lt;br /&gt;
| 33.036478,-96.715007&lt;br /&gt;
| I am the community manager for the site. I help/mentor/guide users and projects to ensure that the community is a successs. If you have a question, email me at dbrookshier @ collab net&lt;br /&gt;
|-&lt;br /&gt;
| Markus Neteler&lt;br /&gt;
| [http://mpa.itc.it ITC-irst], [http://www.cealp.it CEA], [http://www.gdf-hannover.de GDF Hannover] &lt;br /&gt;
| [http://grass.itc.it GRASS GIS], [http://board.osgeo.org Board], [http://geodata.osgeo.org Public Geodata Com.], [http://edu.osgeo.org Education Com.], [http://visibilitycommittee.osgeo.org Promotion &amp;amp; Visibility Com.]&lt;br /&gt;
| (46.06714, 11.15113)&lt;br /&gt;
| Developer of GRASS GIS, researcher at ITC-irst + CEA, Trento, Italy and co-founder of GDF Hannover  [[User:neteler]]&lt;br /&gt;
|- &lt;br /&gt;
| R. Paul Warriner&lt;br /&gt;
| [http://www.orchardparkny.org/ Town of Orchard Park]&lt;br /&gt;
| [http://webcommittee.osgeo.org Web Site Committee]&lt;br /&gt;
| (43.17, -78.69)&lt;br /&gt;
| Network Coordinator, old oil field hand (really, I do know what a frac job is), started with remote data comm. from well sites in '84 as a truckdriver, turned computer jockey by Linux in '93, found ArcView 1.0 the same year (I think), and the rest is ..... (oh yeah, I did some of that Calculus, Organic Chemistry, and Thermo thingy stuff along the way). [[User:RPaulW]]&lt;br /&gt;
|-&lt;br /&gt;
|Bart van den Eijnden&lt;br /&gt;
| [http://www.osgis.nl/ OSGIS] &lt;br /&gt;
| [http://chameleon.maptools.org Chameleon],&lt;br /&gt;
| (52.0768396070808, 5.12454)&lt;br /&gt;
| Freelancer working with several open source GIS tools, mainly Chameleon, Mapserver and Geoserver. &lt;br /&gt;
[[User:bartvde]]&lt;br /&gt;
|- &lt;br /&gt;
| Helena Mitasova&lt;br /&gt;
| [http://skagit.meas.ncsu.edu/~helena/ North Carolina State University]&lt;br /&gt;
| [http://grass.itc.it GRASS GIS], [http://wiki.osgeo.org/index.php/Core_Curriculum_Project Curriculum project]&lt;br /&gt;
| (35.77, -78.69)&lt;br /&gt;
| Researcher at NCSU (geospatial technology, environmental modeling, sustainable development), Developer of GRASS GIS. [[User:Helena]]&lt;br /&gt;
|- &lt;br /&gt;
| Daniel Morissette&lt;br /&gt;
| [http://www.mapgears.com/ Mapgears]&lt;br /&gt;
| [http://mapserver.gis.umn.edu/ MapServer], [http://www.gdal.org GDAL/OGR]&lt;br /&gt;
| (48.42, -71.04)&lt;br /&gt;
| Involved in MapServer, GDAL/OGR and most [http://maptools.org/ MapTools.org] projects, mostly around webmapping and data access and distribution.  [[User:dmorissette]]&lt;br /&gt;
|- &lt;br /&gt;
| Ari Jolma&lt;br /&gt;
| [http://users.tkk.fi/~jolma/index.html TKK]&lt;br /&gt;
| [http://www.gdal.org GDAL/OGR], [http://wiki.osgeo.org/index.php/Core_Curriculum_Project Curriculum project]&lt;br /&gt;
| (60° 16' , 24° 47' 4'')&lt;br /&gt;
| Professor at TKK, Finland (geoinformatics, environmental information systems, water resources systems), [http://map.hut.fi/PerlForGeoinformatics/ just another Perl hacker] [[User:ajolma]]&lt;br /&gt;
|- &lt;br /&gt;
| Jeff McKenna&lt;br /&gt;
| [http://www.dmsolutions.ca DM Solutions Group]&lt;br /&gt;
| [http://mapserver.gis.umn.edu/ MapServer]&lt;br /&gt;
| (45.401397610, -75.725861625)&lt;br /&gt;
| MapServer documentation, [http://www.maptools/ms4w MS4W] maintainer, [http://www.maptools.org maptools] co-maintainer.  [[User:jmckenna]]&lt;br /&gt;
|- &lt;br /&gt;
| Ian Turton&lt;br /&gt;
| [http://www.geovista.psu.edu/members/turton/index.html work][http://pennspace.blogspot.com/ blog]&lt;br /&gt;
| [http://www.geotools.org GeoTools] &lt;br /&gt;
| (40.7932, -77.847)&lt;br /&gt;
| [http://www.geotools.org GeoTools] founder and developer, [http://www.geovistastudio.psu.edu GeoVistaStudio] benevolent dictator, [http://geoserver.org GeoServer] user. [[User:ianturton]]&lt;br /&gt;
|- &lt;br /&gt;
| David Blasby&lt;br /&gt;
| [http://topp.openplans.org The Open Planning Project], [http://geoserver.org GeoServer], [http://geotools.org GeoTools] &lt;br /&gt;
| [http://geotools.org GeoTools] &lt;br /&gt;
| (varies)&lt;br /&gt;
| Currently, I'm the Project Lead for Geoserver and am on the GeoTools Project Management Committee.  I'm just starting a GeoWiki (Public Participation GIS) (please contact me if you're interested).  I was the orginal creator of PostGIS, and have contributed to several OS GIS projects, including JTS, JUMP, and Mapserver. &lt;br /&gt;
|- &lt;br /&gt;
| Andrey Kiselev&lt;br /&gt;
| &amp;quot;Radar&amp;quot; R&amp;amp;D Centre (Russia)&lt;br /&gt;
| GDAL/OGR&lt;br /&gt;
| (60.04,30.33)&lt;br /&gt;
| Freelance developer and contributor to GDAL/OGR project.&lt;br /&gt;
|- &lt;br /&gt;
| Helton Uchoa&lt;br /&gt;
| [http://www.geolivre.org.br Geolivre Community], [http://www.open3dgis.org Open 3D GIS Project]&lt;br /&gt;
| [http://webcommittee.osgeo.org Web Site Committee] and [http://wiki.osgeo.org/index.php/Public_Geospatial_Data_Project Public Geospatial Data Project]&lt;br /&gt;
| (-22.96, -43.11)&lt;br /&gt;
| I'm a Geomatics Enginner and I work at [http://www.opengeo.com.br OpenGEO Company] as a GIS Specialist. I'm responsible for many GIS projects using FOSS and the OpenGIS Specifications in Brazil and I have some relevant papers and scientific articles presented in Brazilian and Latin-American conferences and published in scientific magazines. In last year, I have helped, as a teacher, introduce the GNU/FSF philosophy at the Transportation Engineering Department of IME ([http://www.ime.eb.br Military Institute of Engineering - IME], Brazil). I have worked in Geolivre Rio 2004 and 2005 as member of organization commitee. Now I'm working in [http://www.geolivre.org Geolivre Conference 2007]. [[User:Uchoa]]&lt;br /&gt;
|- &lt;br /&gt;
| Toru Mori&lt;br /&gt;
|  [http://www.orkney.co.jp/english Orkney, Inc.]&lt;br /&gt;
|  [http://mapserver.gis.umn.edu/ MapServer], [http://grass.itc.it GRASS GIS]&lt;br /&gt;
|  (35.448, 139.642)&lt;br /&gt;
|  President of Orkney, Inc.  Advocate of Open Geospatial tools in Japan and Asia. Promote open geospatial data. [[User:moritoru]]&lt;br /&gt;
|-&lt;br /&gt;
| Allan Doyle&lt;br /&gt;
| [http://www.eogeo.org EOGEO],[http://museum.mit.edu/cmp MIT Museum],[http://spg.gsfc.nasa.gov/ NASA Earth Science Data Systems Standards Process Group]&lt;br /&gt;
| [http://wiki.osgeo.org/index.php/Public_Geospatial_Data_Project Public Geospatial Data Project]&lt;br /&gt;
| (42.28, -71.24)&lt;br /&gt;
| President of [http://www.eogeo.org EOGEO] and [http://www.intl-interfaces.com International Interfaces], long-time geo-interoperability interests, opensourced (is that a verb?) [http://openmap.bbn.com OpenMap], originator of OGC testbed idea, Web Mapping Testbed, WMS spec editor, worked on WMS Context, [http://www.georss.org GeoRSS]. [http://www.eogeo.org/Members/adoyle more details]. [http://think.random-stuff.org Blog][[User:adoyle]]&lt;br /&gt;
|- &lt;br /&gt;
| Ned Horning&lt;br /&gt;
| [http://cbc.amnh.org/ Center for Biodiversity and Conservation], [http://www.amnh.org/ American Museum of Natural History]&lt;br /&gt;
| [http://wiki.osgeo.org/index.php/Core_Curriculum_Project Curriculum project]&lt;br /&gt;
|(43.9933, -73.0407)&lt;br /&gt;
|Program manager for [http://geospatial.amnh.org/ remote sensing/GIS]. Promoter of open source geospatial tools in the global conservation community. &lt;br /&gt;
|-&lt;br /&gt;
| Paul Spencer&lt;br /&gt;
| [http://www.dmsolutions.ca DM Solutions Group]&lt;br /&gt;
| [http://mapserver.gis.umn.edu/ MapServer], [http://chameleon.maptools.org Chameleon], [http://ka-map.maptools.org kaMap], [http://maptools.org/maplab/index.phtml MapLab], [http://maptools.org/ms4w/index.phtml MS4W], [http://openev.sourceforge.net/ OpenEV]&lt;br /&gt;
| (45.401397610, -75.725861625)&lt;br /&gt;
| CTO of DM Solutions Group, designer/developer/contributor to many open source packages, especially based on MapServer.  Recent interest/focus is on AJAX clients for mapping applications. [[User:pagameba]]&lt;br /&gt;
|-&lt;br /&gt;
| Mark Lucas&lt;br /&gt;
| remotesensing.org&lt;br /&gt;
| [http://www.remotesensing.org  remotesensing.org]  and [http://www.ossim.org ossim] &lt;br /&gt;
| (27.9690219N, 080.5590534W altitude sea level + 5m)&lt;br /&gt;
| CTO, original founder of ImageLinks and remotesensing.org.  Board of Directors [http://www.oss-institute.org/ Open Source Software Institute] and the [http://www.ncospr.org/ National Center for Open Source Policy and Research].  Member of Open Technology Development Tiger team for the Department of Defense (USA).  Lead a team of talented developers on the OSSIM and [http://www.ossim.org/tiki-read_article.php?articleId=3 osgPlanet] projects.  Previously spent 22 years in the United States Air Force and [http://www.nro.gov/ National Reconnaissance Office] and the [http://www.fas.org/irp/nro/hall3.htm Secretary of the Air Force Special Projects] organization working with various classified programs.  Prior to Radiant Blue Technologies, was a Lead Scientist for Intelligence Data Systems, Titan Corporation, and L3-Communciations. [http://web.mac.com/mlucas17/iWeb/Site/Welcome.html  Personal Web site]. [[User:mlucas17]]&lt;br /&gt;
|-&lt;br /&gt;
| Jo Walsh&lt;br /&gt;
| [http://okfn.org/geo/ Open Knowledge Foundation],[http://mappinghacks.com/ Mapping Hacks], [http://publicgeodata.org Public Geodata] &lt;br /&gt;
|  Open Geodata committee&lt;br /&gt;
| (42.368297,-71.108696)&lt;br /&gt;
| Came to geospatial software through collaborative mapping on the semantic web work.  Organising events to get geospatial hackers together with data-creating people and promote public access to state collected geodata. If you are in Europe please see [http://publicgeodata.org Public Geodata] and consider writing to an MEP about public domain data and &amp;quot;intellectual property rights&amp;quot; issues. If you collect GPS tracks, please consider uploading them to [http://openstreetmap.org/ OpenStreetmap] - my only real contribution to this project is to talk about it a lot. I co-wrote &amp;quot;Mapping Hacks&amp;quot; with Schuyler Erle and Rich Gibson, with a lot of contributions from OSGeo type of people. Last year wrote a lot of software using OSM and [http://openguides.org/ OpenGuides] with [[Mapserver]] to provide a basis for collaborative local &amp;quot;portal&amp;quot; type services on community wireless networks. Now more interested in doing collaborative writing and research projects. [[User:JoWalsh]]  &lt;br /&gt;
|-&lt;br /&gt;
| Dave McIlhagga&lt;br /&gt;
| [http://www.dmsolutions.ca DM Solutions Group]&lt;br /&gt;
| [http://visibilitycommittee.osgeo.org Promotion and Visibility Committee]&lt;br /&gt;
| (45.401397610, -75.725861625)&lt;br /&gt;
| President &amp;amp; CEO of DM Solutions Group. Active promoter of open source geospatial technologies. Led DM Solutions Group to become a major contributor and advocate of MapServer and development of key open source MapServer utilities including [http://chameleon.maptools.org Chameleon], [http://ka-map.maptools.org kaMap], [http://maptools.org/maplab/index.phtml MapLab], [http://maptools.org/ms4w/index.phtml MS4W]. Provided financial and resource support for setup of a key home for open source geospatial projects at [http://www.maptools.org MapTools]. Led the organizing committee for [http://www.omsug.ca/osgis2004/index.html OSGIS], the first Open Source Geospatial conference in North America which coincided with the second MapServer User Meeting. Spearheaded the integration of the two major open source geospatial conferences from North America and Europe/Asia, as the [http://www.foss4g2006.org/ Free and Open Source Software for Geoinformations] single international event to be held in Lausanne Switzerland. [[User:davemac]]&lt;br /&gt;
|-&lt;br /&gt;
| Pericles (Perry) Nacionales&lt;br /&gt;
| [http://land.umn.edu University of Minnesota]&lt;br /&gt;
| [http://webcommittee.osgeo.org Web Site Committee]&lt;br /&gt;
| (44.9873167, -93.1851500)&lt;br /&gt;
| Promoter of open source geospatial technologies specially in the field of natural resources management and conservation, advocate of open and interoperability standards, MTSC member, author of [http://mapserver.gis.umn.edu/docs/tutorial/tutorial/tutorial MapServer Tutorial].&lt;br /&gt;
|-&lt;br /&gt;
| Norman Vine&lt;br /&gt;
| Independent&lt;br /&gt;
| &lt;br /&gt;
| (41:31:38N, 70:39:43W)&lt;br /&gt;
| Independent software developer [[User:Nhv]] &lt;br /&gt;
|-&lt;br /&gt;
| Mike Adair&lt;br /&gt;
| [http://www.geoconnections.org/CGDI.cfm Natural Resources Canada/GeoConnections]&lt;br /&gt;
| [http://communitymapbuilder.org MapBuilder]&lt;br /&gt;
| (45.27, -75.75)&lt;br /&gt;
| Contributor and member of MapBuilder PMC.  Interested primarily in AJAX client technology for mapping, but also in the whole SDI stack. [[User:madair]]&lt;br /&gt;
|-&lt;br /&gt;
| Stefan F. Keller&lt;br /&gt;
| University of Applied Sciences Rapperswil (HSR), [http://www.ifs.hsr.ch Institute for Software]&lt;br /&gt;
| [http://webgis.hsr.ch/javawps JavaWPS]&lt;br /&gt;
| (47.2240, 8.8181)&lt;br /&gt;
| Promotor of open source and commercial technologies specially in the field of information retrieval, databases, GIS and visualization. Advocate of open and interoperability standards, member of national GIS standardization (e-geo, SNV) and umbrella (SOGI) organizations. Creator of [http://wwww.geometa.info geometa.info], one of the first search engines for geospatial services (WMS), metadata and online maps (Lucene-based); contributor of geo-webservices for german Wikipedia. [[User:Sfkeller]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Arnulf Christl | Arnulf Christl]]&lt;br /&gt;
| [http://www.ccgis.de CCGIS], [http://www.geo-consortium.de Geo-Consortium]&lt;br /&gt;
| [http://www.mapbender.org Mapbender], [http://www.umn-mapserver.de UMN MapServer (Germany)], [http://board.osgeo.org Board], [http://visibilitycommittee.osgeo.org Promotion and Visibility Committee]&lt;br /&gt;
| (7.0707, 50.7342)&lt;br /&gt;
| Mapbender PSC, Promoter of [http://www.gnu.org Free Software] and [http://www.osi.org Open Source] :-) Business (...and Open Source Software!)&lt;br /&gt;
|-&lt;br /&gt;
|V.RaviKumar&lt;br /&gt;
|Geologist&lt;br /&gt;
|OSGeo member [http://freegis.gnu.org.in/grass_geosciencedataset.pdf],[''GRASS Indian exmple'']&lt;br /&gt;
| 17° N 79° E&lt;br /&gt;
| A Geologist from India who is interested in FOSS software. GRASS in particular. Conducted a FOSS workshop at Hyderabad, India in May 2005.  The workshop boosted our spirits with a large participation and good articles  on various FOSS software. An entire session was for GRASS, Qgis software.  Presently lecturing in various forums on the capability of GRASS and   allied FOSS GIS. With the help of Free Software Foundation India, trying  to spread awareness of GRASS GIS, GNU-Linux and FOSS. Countries like India have a lot to gain with the spread of FOSS.&lt;br /&gt;
|- &lt;br /&gt;
|David Hastings&lt;br /&gt;
|UN Economic and Social Commission for Asia and the Pacific, Bangkok&lt;br /&gt;
|Member of original Grass Interagency Steering Committee, etc.&lt;br /&gt;
| 13.75°N  100.5°E&lt;br /&gt;
| A physicist/geophysicist/geological engineer who has used GRASS since 1987, and on the GRASS Interagency Steering Committee for the original public-domain package.  I wrote the Linux Mini-HOWTO on GRASS-GIS (which is now woefully out of date); and taught short courses in scientific (as opposed to cartographic) GIS since 1980.  In 1994 I moved my teaching to the Web, developing the CyberInstitute Short-Course on GIS.  Currently, I'm at UN ESCAP.  Open-Source is a great capacity- building environment for software communities worldwide.  In developing countries, rather than being stuck merely teaching people to cut and paste stuff within a proprietary office suite, you can be part of the full development team, customizing the software to your community's needs, helping your country to have its own software development community - and hopefully making a satisfying living in the process.&lt;br /&gt;
|-&lt;br /&gt;
| Gary Sherman&lt;br /&gt;
| [http://mrcc.com Micro Resources], [http://qgis.org Quantum GIS]&lt;br /&gt;
| OSGeo Member&lt;br /&gt;
| (-149.567, 61.32138)&lt;br /&gt;
| Consultant, &amp;quot;Father&amp;quot; of Quantum GIS, long-time Linux user and Open Source proponent.&lt;br /&gt;
|-&lt;br /&gt;
| Astrid Emde&lt;br /&gt;
| [http://www.mapbender.org Mapbender], MapServer, PostgreSQL/PostGIS&lt;br /&gt;
| Mapbender Development&lt;br /&gt;
| (7.0707, 50.7342)&lt;br /&gt;
| Projects with MapServer, PostgreSQL/PostGIS, Mapbender. Part of the Mapbender Developer Team. Courses for Mapbender, UMN MapServer, PostgreSQL/PostGIS and WMS, WFS &lt;br /&gt;
|-&lt;br /&gt;
| Jeroen Ticheler&lt;br /&gt;
| [http://geonetwork.sourceforge.net GeoNetwork opensource], [http://sourceforge.net/projects/intermap InterMap opensource], [http://www.fao.org/geonetwork Food and Agriculture Organization GeoNetwork]&lt;br /&gt;
| OSGeo member&lt;br /&gt;
| 42.07420°N, 12.34343°E&lt;br /&gt;
| I've initiated the development of the GeoNetwork opensource Spatial Data Catalog software and its embedded InterMap opensource Map Viewer. I hope to contribute possitively to the creation of a comprehensive, FOSS based toolkit for Spatial Data Infrastructures (SDIs) that help people share and use geospatial data and information in an easy and cost effective way. I focus especially on the data sharing within the United Nations system and in countries under development. I promote free and open source software as an excellent option for more sustainable development in these countries, proving it works by applying and further developing it in my day to day work. [http://lists.eogeo.org/mailman/listinfo/opensdi OpenSDI] is a forum to discuss foss and cots integration.&lt;br /&gt;
|-&lt;br /&gt;
| Dirceu Machado&lt;br /&gt;
| [http://www.pti.org.br Itaipu Tecnology Park]&lt;br /&gt;
| OSGeo member,GRASS&lt;br /&gt;
| 59°S, -24°E&lt;br /&gt;
| I'm a brazilian developer of open source GIS/WEB_GIS applications using PHP, JAVA and Python with Mapserver and PostGIS and also a user and enthusiast of Linux and BSD's OS. I'm excited with the idea of a community like this one and i wish to help in any way i can with development's (if necessary) and/or documentation translations to portuguese language. Actualy i'm working in a project to develop a GIS viewer and map generator (for printing purposes) in Python based on the idea of the JUMP Project.&lt;br /&gt;
|-&lt;br /&gt;
| Kevin Yam&lt;br /&gt;
| [http://www.ene.gov.on.ca Ontario Ministry of the Environment], [http://www.lio.mnr.gov.on.ca, Land Information Ontario]&lt;br /&gt;
| OSGeo member&lt;br /&gt;
| 43.709, -79.544&lt;br /&gt;
| Program coordinator for information management within the Provinicial Ministry of the Environment. I focus especially on data sharing between government agencies, departments and local stakeholders, and I am a promoter of open source geospatial tools applicable to environmental monitoring and observing [[User:kevinyam]]&lt;br /&gt;
|-&lt;br /&gt;
| Colin Gowens&lt;br /&gt;
| Geographer, GIS Professional&lt;br /&gt;
| OSGeo member&lt;br /&gt;
| 33.7518, -84.3920&lt;br /&gt;
| User of GRASS, GDAL, OGR, PostGIS and Mapserver since 2002.  The open source GIS software and community have proven tremendously valuable to my GIS endeavors.&lt;br /&gt;
|-&lt;br /&gt;
| David Bitner&lt;br /&gt;
| [http://maps.macnoise.com/interactive/, Metropolitan Airports Commission], Freelance&lt;br /&gt;
| OSGeo member&lt;br /&gt;
| 44.844, -93.560&lt;br /&gt;
| Active PostGIS and MapServer user.  GIS application developer for airport authority and other freelance projects.  Member of Geodata Workgroup.  Serve on Regional/State committees (Minnesota) for Data Sharing and Enterprise Geospatial Architecture.  Member of Twin Cities Mapserver Users Group.&lt;br /&gt;
|-&lt;br /&gt;
| Tyler Mitchell&lt;br /&gt;
| [http://spatialguru.com, Spatialguru.com], [http://timberline.ca, Timberline GIS]&lt;br /&gt;
| OSGeo Member, [http://visibilitycommittee.osgeo.org Promotion and Visibility Committee], [http://edu.osgeo.org Education Committee]&lt;br /&gt;
| 54, -121 (lat/lon)&lt;br /&gt;
| MapServer, PostGIS, GRASS, GDAL user.  GIS Manager for production shop focused on natural resource management.  [http://oreilly.com/catalog/webmapping, O'Reilly Author], writer, promoter of Open Source GIS.&lt;br /&gt;
|-&lt;br /&gt;
| Rafael Medeiros Sperb&lt;br /&gt;
| [http://www.univali.br, G10 - UNIVALI]&lt;br /&gt;
| OSGeo Member&lt;br /&gt;
| -26.60, -48.70 (lat/lon)&lt;br /&gt;
|-&lt;br /&gt;
| Steven M. Ottens&lt;br /&gt;
| [http://www.geodan.com/ Geodan]&lt;br /&gt;
| [http://communitymapbuilder.org MapBuilder]&lt;br /&gt;
| 52.34, 4.91  (lat/lon)&lt;br /&gt;
| Contributor and member of MapBuilder PMC.  [[User:stvn]]&lt;br /&gt;
|-&lt;br /&gt;
| Stefano Maffulli&lt;br /&gt;
| Politecnico di Milano&lt;br /&gt;
| [http://visibilitycommittee.osgeo.org Promotion and Visibility Committee], [http://wiki.osgeo.org/index.php/International_Outreach International Outreach], [http://wiki.osgeo.org/index.php/Public_Geospatial_Data_Project Public Geospatial Data]&lt;br /&gt;
| 45, 9 (Lat,Lon)&lt;br /&gt;
| Architect, worked within the GIS_Lab at University of Florence on research about sustainable development of historical cities.  At Joint Research Center (Ispra) worked within the EU funded project [http://commongis.org CommonGIS].  Currently working with Politecnico di Milano as consultant on [http://www.corila.it/ Methodologies and technologies for conservation and restoration of historical Venetian buildings]&lt;br /&gt;
|-&lt;br /&gt;
| Dave Patton&lt;br /&gt;
| [http://members.shaw.ca/davepatton/ CIS Canadian Information Systems]&lt;br /&gt;
| helping the Website Committee&lt;br /&gt;
| 49.27N 123.15W&lt;br /&gt;
| Self-employed computer consultant.  Co-lead developer for [http://punt.sourceforge.net/ Punt], an Open Source multi-language Windows desktop application that allows the user to view the terrain of any world in 3D.  Canadian Coordinator and co-administrator of [http://www.confluence.org/index.php the Degree Confluence Project]  [[User:Dpatton]]&lt;br /&gt;
|-&lt;br /&gt;
|  Jody Garnett&amp;lt;br&amp;gt;[[User:Jive]]&lt;br /&gt;
| [http://docs.codehaus.org/display/GEOTOOLS/Home GeoTools]&lt;br /&gt;
| Iccubation and limited Website Committee&lt;br /&gt;
| missing&lt;br /&gt;
| It seems all I do is email, must be due to [http://docs.codehaus.org/display/GEOTOOLS/Home GeoTools], [http://docs.codehaus.org/display/GEOS/Home GeoServer], [http://docs.codehaus.org/display/GEO/Home GeoAPI] and [http://udig.refractions.net uDig]. I am working at [http://www.refractions.net/ Refractions Research, Inc], a small consulting company with an open source habit.&lt;br /&gt;
|-&lt;br /&gt;
| Justin Deoliveira&lt;br /&gt;
| [http://topp.openplans.org The Open Planning Project], [http://docs.codehaus.org/display/GEOTOOLS/Home GeoTools], [http://docs.codehaus.org/display/GEOS/Home GeoServer]&lt;br /&gt;
| [http://docs.codehaus.org/display/GEOTOOLS/Home GeoTools]&lt;br /&gt;
| undeterministic&lt;br /&gt;
| [http://docs.codehaus.org/display/GEOTOOLS/Home GeoTools] module maintainer, [http://docs.codehaus.org/display/GEOS/Home GeoServer] developer, and [http://udig.refractions.net uDig] committer. I have been kicking around the Java GIS world for approximately 3 years contributing as an active developer on said projects. For the last year or so I have been working for a non-profit company known as [http://topp.openplans.org The Open Planning Project]. &lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Dylan Beaudette&lt;br /&gt;
| [http://casoilresource.lawr.ucdavis.edu/drupal/node/38]&lt;br /&gt;
| GRASS&lt;br /&gt;
| Input lat/long here&lt;br /&gt;
| Soils and Biogeochemistry M.S. student at University of California, Davis. Interested in the use and proliferation of OSS in the sciences, particularly soil science. GIS and geomorphologic analysis; presentation of USDA-NCSS digital soil survey information / soils education through visual example.&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Wiki-Dylan</name></author>
	</entry>
	<entry>
		<id>https://wiki.osgeo.org/w/index.php?title=Where_2.0_2006&amp;diff=4790</id>
		<title>Where 2.0 2006</title>
		<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/w/index.php?title=Where_2.0_2006&amp;diff=4790"/>
		<updated>2006-05-25T18:41:30Z</updated>

		<summary type="html">&lt;p&gt;Wiki-Dylan: added my info for the osgeo booth&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;''' Look for plenty of OSGeo visibility and participation at Where 2.0.'''&lt;br /&gt;
&lt;br /&gt;
''' Join us at the booth, the Birds of a Feather gathering, or Developer Roundtable!'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Speakers ==&lt;br /&gt;
Several people from OSGeo (and some non-OSGeo) are doing presentations at the conference.&lt;br /&gt;
* Chris Holmes: [http://conferences.oreillynet.com/cs/where2006/view/e_sess/9403 Lightning Talk on Geoserver]&lt;br /&gt;
* Sean Sternfeldt: Lightning Talk on MapGuide Open Source&lt;br /&gt;
* Gary Lang: [http://conferences.oreillynet.com/cs/where2006/view/e_sess/9390 &amp;quot;Opening” the Possibilities: API’s and Open Source Code]&lt;br /&gt;
* Frank Warmerdam: [http://conferences.oreillynet.com/cs/where2006/view/e_sess/9404 GDAL]&lt;br /&gt;
* Dylan Beaudette: [http://conferences.oreillynet.com/cs/where2006/view/e_sess/9344 GRASS]&lt;br /&gt;
* Schuyler Erle: [http://conferences.oreillynet.com/cs/where2006/view/e_sess/9310 Schuyler will likely do some OSGeo open geodata stuff]&lt;br /&gt;
* Frank Warmerdam [http://conferences.oreillynet.com/cs/where2006/view/e_sess/9389 OSGeo Foundation Intro]&lt;br /&gt;
* ''More to come''&lt;br /&gt;
&lt;br /&gt;
== Booth Area ==&lt;br /&gt;
A 10 foot x 10 foot OSGeo booth area will be available for use by OSGeo members and projects, on Tuesday June 13.&lt;br /&gt;
&lt;br /&gt;
* Two 6’ draped counters (20 linear feet) &lt;br /&gt;
* 2 counter height stools &lt;br /&gt;
* 8’ high draped backwall to hang banner &lt;br /&gt;
* High speed Internet connection &lt;br /&gt;
* Electrical connection for two computers &lt;br /&gt;
&lt;br /&gt;
If you are planning to attend the event and would like to participate and represent your project, ADD YOUR NAME AND PROJECT below by May 31.   &lt;br /&gt;
&lt;br /&gt;
* Tyler Mitchell, OSGeo in general&lt;br /&gt;
* Dave McIlhagga, OSGeo in general&lt;br /&gt;
* Jo Walsh, OSGeo in general&lt;br /&gt;
* Pete Southwood or Arnab Ganguly, MapGuide Open Source&lt;br /&gt;
* mpg, OSGeo in general (Tuesday only)&lt;br /&gt;
* Arnulf Christl, OSGeo in detail, Mapbender&lt;br /&gt;
* Chris Holmes, OSGeo (and GeoServer).&lt;br /&gt;
* Rich Gibson, OSGeo in general&lt;br /&gt;
* Dylan Beaudette, GRASS, general stuff&lt;br /&gt;
* Add your name and project here&lt;br /&gt;
&lt;br /&gt;
Booth staffing and scheduling will be determined once interested participants are known.&lt;br /&gt;
&lt;br /&gt;
'''Exhibit Move-in Hours:'''	&lt;br /&gt;
&lt;br /&gt;
Monday, June 12, 2:00 pm – 6:00 pm&lt;br /&gt;
&lt;br /&gt;
Tuesday, June 13, 7:00 am – 10:00 am&lt;br /&gt;
&lt;br /&gt;
'''Exhibit Show Hours: '''	&lt;br /&gt;
Tuesday, June 13, 10:00 am – 7:30 pm&lt;br /&gt;
&lt;br /&gt;
(Actual open time: 10-11, 12-2, 3-4:30, 6-7:30 reception)&lt;br /&gt;
&lt;br /&gt;
'''Exhibit Move-out Hours:'''	&lt;br /&gt;
&lt;br /&gt;
Tuesday, June 13, 7:00 pm – 10:00 pm&lt;br /&gt;
&lt;br /&gt;
== Birds of a Feather Gathering ==&lt;br /&gt;
An informal gathering of the open source geospatial community will occur at:&lt;br /&gt;
&lt;br /&gt;
*  Tuesday, June 13&lt;br /&gt;
*  now at 8:30 pm - 9:30 pm&lt;br /&gt;
*  Location:  Plaza Room&lt;br /&gt;
&lt;br /&gt;
Tyler is now running the BOF.&lt;br /&gt;
&lt;br /&gt;
The &amp;quot;agenda&amp;quot; will be something like this:&lt;br /&gt;
&lt;br /&gt;
* Welcome (BOF Host: Tyler)&lt;br /&gt;
&lt;br /&gt;
* &amp;quot;What is OSGeo?&amp;quot; (5-10 mins) (Speaker 1)&lt;br /&gt;
&lt;br /&gt;
* &amp;quot;OSGeo and the Open Geodata Project&amp;quot; (5 mins) (Speaker: Jo Walsh)&lt;br /&gt;
&lt;br /&gt;
* &amp;quot;An OSGeo Project&amp;quot; (5 mins) (Speaker 3)&lt;br /&gt;
&lt;br /&gt;
* &amp;quot;An OSGeo Project&amp;quot; (5 mins) (Speaker 4)&lt;br /&gt;
&lt;br /&gt;
* open discussion (remainder of time, until wee small hours)&lt;br /&gt;
&lt;br /&gt;
The actual agenda will firm up closer to the time, when we get a better feel for who is going to be presenting what on the main stage, e.g. we don't want to repeat a &amp;quot;What is OSGeo&amp;quot; talk -- and who is actually going to be at the conference.&lt;br /&gt;
&lt;br /&gt;
Preference for &amp;quot;Project&amp;quot; speakers will be those who don't get main-stage airtime.  Also, note that I'm explicitly including the &amp;quot;Edu&amp;quot; and &amp;quot;OpenData&amp;quot; groups as projects.&lt;br /&gt;
&lt;br /&gt;
== Press Event: Developer Roundtable ==&lt;br /&gt;
&lt;br /&gt;
Section got too big -- moved to separate page: [[OSGeo at Where PressEvent]]&lt;br /&gt;
&lt;br /&gt;
== Pre-Conference Messaging ==&lt;br /&gt;
OSGeo has the opportunity to email conference attendees who have opted in to receive communications regarding the event.  The conference organizers at O'Reilly will provide a list 7-10 days prior to the conference. Chris Holmes has volunteered to craft a message promoting OSGeo activities at Where 2.0 and invite others to join us.&lt;br /&gt;
&lt;br /&gt;
== Advert ==&lt;br /&gt;
Look for a one page ad promoting OSGeo in the conference program.  It is a minimalist design, as our resources are limited here.  We will reuse this as a flyer promoting OSGeo.&lt;/div&gt;</summary>
		<author><name>Wiki-Dylan</name></author>
	</entry>
</feed>