From 53c2686d7329f458c1ed0d4e1a154e4988a2374c Mon Sep 17 00:00:00 2001 From: Kevin Neufeld Date: Tue, 24 Nov 2009 21:46:00 +0000 Subject: [PATCH] added an ST_DumpPoints image to the collection. git-svn-id: http://svn.osgeo.org/postgis/trunk@4891 b70326c6-7e19-0410-871a-916f4a2858ee --- doc/html/image_src/Makefile.in | 1 + doc/html/image_src/st_dumppoints01.wkt | 5 ++++ doc/html/image_src/styles.conf | 33 ++++++++++++++++++++++++++ 3 files changed, 39 insertions(+) create mode 100644 doc/html/image_src/st_dumppoints01.wkt diff --git a/doc/html/image_src/Makefile.in b/doc/html/image_src/Makefile.in index dcd052fa5..c4b520d8f 100644 --- a/doc/html/image_src/Makefile.in +++ b/doc/html/image_src/Makefile.in @@ -43,6 +43,7 @@ IMAGES= \ ../images/st_crosses03.png \ ../images/st_crosses04.png \ ../images/st_difference01.png \ + ../images/st_dumppoints01.png \ ../images/st_issimple01.png \ ../images/st_issimple02.png \ ../images/st_issimple03.png \ diff --git a/doc/html/image_src/st_dumppoints01.wkt b/doc/html/image_src/st_dumppoints01.wkt new file mode 100644 index 000000000..383540523 --- /dev/null +++ b/doc/html/image_src/st_dumppoints01.wkt @@ -0,0 +1,5 @@ +Style1;POINT( 26 25 ) +Style2;LINESTRING ( 26 75, 101 100 ) +Style3;POLYGON (( 76 0, 76 75, 26 50, 76 0 )) +Style4;POLYGON (( 101 0, 101 75, 176 75, 176 0, 101 0 ), ( 151 25, 126 50, 151 50, 151 25 )) +Style5;MULTIPOLYGON ((( 26 125, 26 200, 126 200, 126 125, 26 125 ), ( 51 150, 101 150, 76 175, 51 150 )), (( 151 100, 151 200, 176 175, 151 100 ))) diff --git a/doc/html/image_src/styles.conf b/doc/html/image_src/styles.conf index b2b8c3512..af4f2400a 100644 --- a/doc/html/image_src/styles.conf +++ b/doc/html/image_src/styles.conf @@ -83,3 +83,36 @@ lineColor = DarkSeaGreen4 polygonFillColor = DarkSeaGreen4 polygonStrokeColor = DarkGreen polygonStrokeWidth = 0 + +[Style] +# The third layer in the rendered WKT image +styleName = Style3 +pointSize = 6 +pointColor = yellow +lineWidth = 3 +lineColor = yellow +polygonFillColor = yellow +polygonStrokeColor = yellow +polygonStrokeWidth = 0 + +[Style] +# The fourth layer in the rendered WKT image +styleName = Style4 +pointSize = 6 +pointColor = olive +lineWidth = 3 +lineColor = olive +polygonFillColor = olive +polygonStrokeColor = olive +polygonStrokeWidth = 0 + +[Style] +# The fifth layer in the rendered WKT image +styleName = Style5 +pointSize = 6 +pointColor = turquoise +lineWidth = 3 +lineColor = turquoise +polygonFillColor = turquoise +polygonStrokeColor = turquoise +polygonStrokeWidth = 0 -- 2.50.1