Difference between revisions of "PostGIS SoC Ideas 2007"

From OSGeo
Jump to navigation Jump to search
m
 
(10 intermediate revisions by 5 users not shown)
Line 14: Line 14:
 
communication networks, composed by Links and Nodes, and performing
 
communication networks, composed by Links and Nodes, and performing
 
tasks such as least cost path finding.
 
tasks such as least cost path finding.
+
 
 +
==== Linking to CGAL Library ====
 +
 
 +
The [http://www.cgal.org/ Computational Geometry Algorithms Library] supports many algorithms for spatial analysis. Voronois, delaunays, etc.
 +
==== Linking to Boost Graph Library ====
 +
 
 +
The [http://www.boost.org/libs/graph/doc/index.html Boost Graph Library] supports many algorithms for graph and network analysis. Because it uses a generic iterator-based interface, it can easily be grafted into other frameworks simply by providing the appropriate iterator classes.
 +
 
 
=== Coverage model and operations ===
 
=== Coverage model and operations ===
 
   
 
   
Allow storage and operations on coverage (raster-like) data.
+
Allow storage and operations on coverage (raster-like) data. Geo-referenced images (aerial photo, satellite images) by are acquired by remote sensing techniques, as well as ordinary photo will be supported to be stored, indexed, accessed and processed within PostgreSQL/PostGIS database. Similar approach as Oracle GeoRaster will be taken.
+
 
 +
For more information about this Project on Google SoC 2007, please follow this link: [http://code.google.com/soc/osgeo/appinfo.html?csaid=2425D23F080CAAFB]
 +
 
 +
More detail information about the design and implementation is coming soon.
 +
 
 +
Any advice or comments, please email to me [mailto://solo.lin@gmail.com].
 +
 
 
=== GEOS performance improvements ===
 
=== GEOS performance improvements ===
 
   
 
   
Line 30: Line 43:
  
 
Developers in the PostGIS community who would be interested in supporting one of the above projects:
 
Developers in the PostGIS community who would be interested in supporting one of the above projects:
* [[User:Mloskot|Mateusz Loskot]] - I'm strongly interested in supporting ''GEOS performance improvements'' task
+
* [[User:Mloskot|Mateusz Loskot]] - mloskot[]gmail.com - interested in supporting ''GEOS performance improvements'' task
* [[User:Tkeitt|Tim Keitt]] - I'm interested in supporting "Linking PostGIS to the Boost Graph Library"
+
* [[User:Tkeitt|Tim Keitt]] - I'm interested in supporting "Network model and operations" and "Coverage model and operations" tasks
  
 
== Other projects ==
 
== Other projects ==
  
 
Please see [[Google Summer of Code]]
 
Please see [[Google Summer of Code]]
 +
 +
 +
[[Category:Google Summer of Code]]

Latest revision as of 01:55, 15 April 2008

Ideas for Google Summer of Code students wanting to work on PostGIS

Topology model and operations

The project consists in providing a standardized interface for storing topology information, that is sets of Edges, Nodes, Areas and their relations in constituting a Feature. There's already a draft implementation of the model, what can be done is (in random order):

  • Implementing topological operation directly using the topology model rather then converting input to simple Geometries.
  • Import from / export to popular topology data formats (ie: TIGER)

Network model and operations

The project is aimed at providing a standardized interface for topological network information storage and operations. Tipical use would be modeling communication networks, composed by Links and Nodes, and performing tasks such as least cost path finding.

Linking to CGAL Library

The Computational Geometry Algorithms Library supports many algorithms for spatial analysis. Voronois, delaunays, etc.

Linking to Boost Graph Library

The Boost Graph Library supports many algorithms for graph and network analysis. Because it uses a generic iterator-based interface, it can easily be grafted into other frameworks simply by providing the appropriate iterator classes.

Coverage model and operations

Allow storage and operations on coverage (raster-like) data. Geo-referenced images (aerial photo, satellite images) by are acquired by remote sensing techniques, as well as ordinary photo will be supported to be stored, indexed, accessed and processed within PostgreSQL/PostGIS database. Similar approach as Oracle GeoRaster will be taken.

For more information about this Project on Google SoC 2007, please follow this link: [1]

More detail information about the design and implementation is coming soon.

Any advice or comments, please email to me [2].

GEOS performance improvements

The GEOS C++ library suffers from a design too closely bound to it's Java-implemented parent, JTS. This approach has introduced an unnecessary overhead throughout the whole operations flow due to excessive dynamic polymorphism and heap allocations. Redesigning the most used subsystems could improve the overall performance. Random ideas:

  • Redesign index classes using a templated approach.
  • Enforce use of standard algorithms wherever appropriate.

Potential Mentors

Developers in the PostGIS community who would be interested in supporting one of the above projects:

  • Mateusz Loskot - mloskot[]gmail.com - interested in supporting GEOS performance improvements task
  • Tim Keitt - I'm interested in supporting "Network model and operations" and "Coverage model and operations" tasks

Other projects

Please see Google Summer of Code