wiki:DevWikiDocNewFeature

Version 14 (modified by robe, 15 years ago) ( diff )

Submitting documentation for a new PostGIS patch!

Back to PostGIS Dev Main

If you are submitting a patch for a new feature, keep in mind we only allow new feature patches for semi-major (minor) and major releases, not for micro releases. So for example if the latest stable version of PostGIS is 1.4 or 1.4 is in freeze mode (which usually happens about 2 months or more before planned release), then your new feature must go into 1.5. If you are supplying a bug fix then that can go into the next stable release. So for example a bug fix for 1.4.0 will go into both 1.4.1 and 1.5.0. A bug fix that fixes further back can be provided for 1.3,1.4, and 1.5

For new features, we expect documentation as part of the submission. To document a new function, please do the following:

  1. Make a copy of template.xml located in trunk/doc of the PostGIS subversion repository (https://svn.osgeo.org/postgis/trunk/doc)
  2. Fill in respective information for your new function and make sure to remove anything that is not relevant.
    1. If its not MM compliant please remove that section, but if it is please note the MM section.
    2. If it doesn't support curves, 3D etc., please remove that too.
  1. Make very sure in the Availability part to note the PostGIS version this is slated for and if it relies on GEOS, the minimum GEOS version required. This is important so that it gets properly highlighted as new in the documentation and people know which version of GEOS they need to be running to have access to this function.
  2. The refpurpose description is kind of important. You want it to be short but very meaningful. This is the description that shows on the index pages and also

gets added to postgis_comments.sql — which is what people looking at PgAdminIII or help in psql see.

  1. Name your xml file accordingly e.g. mysuperfunc.xml.
  2. Submit this file as part of your new function patch.

Using the WKT "ImageMagick" image generator to build images!

As of PostGIS 1.4 documentation we have an image autogenerator — thanks to Kevin Neufeld. To use it to generate images for your examples, do the following:

  1. Define queries using your new function or if you want to provide images for existing then do that and be carefull to make sure the generated geometries fit in a 200x200 grid.
  1. For your query do an ST_AsText to generate the WKT output of it and save this in the image_src folder on

doc/html/image_src with a .wkt extension prefixed with a style for each geometry. There are lots of examples to look at in that folder.

You can have several wkts in your .wkt if you want them to be overlaid on top of each other

Below is an example:

Style1;MULTIPOINT ( 8 24, 10 92, 12 154, 17 68, 28 10, 29 52, 29 84, 55 50, 56 24, 131 14, 160 180, 189 180 )
Style2;POINT(60.3333333333333 77.6666666666667)

We currently have 4 styles to pick from which are defined in the doc/html/image_src/styles.conf file.

These are Default,Style1,Style1-thinline, Style2

  1. In the doc where you want the image placed, give it the same name as your file except instead of

.wkt extension use a .png. The files when generated will end in a .png extension and be placed in the images folder.

  1. Add your new images to the doc/html/image_src/Makefile build script
Note: See TracWiki for help on using the wiki.