~ubuntu-branches/ubuntu/trusty/postgis/trusty-security

« back to all changes in this revision

Viewing changes to doc/html/image_src/styles.conf

  • Committer: Bazaar Package Importer
  • Author(s): Francesco Paolo Lovergine
  • Date: 2009-12-11 13:10:34 UTC
  • mfrom: (1.1.9 upstream) (5.2.1 experimental)
  • Revision ID: james.westby@ubuntu.com-20091211131034-wmsz69wxvt95pe5r
Tags: 1.4.0-2
* Upload to unstable.
* Better parameterized debian/rules against postgis $(VERSION).
* Added dblatex and libcunit1-dev among build-deps.
* Added postgis_comments.sql to contrib/ SQL templates.
* Dropping 8.3 support, no more supported for squeeze.
  (closes: #559587)
* Do not stop on error in postrm if the target dir does not exist.
  (closes: #560409)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# This file describes the styles used to render the png images
 
2
# The styleName attribute for every style should be unique.
 
3
#
 
4
# To use a style, prefix the wkt string with the styleName;  i.e. 
 
5
#    Style1;POINT(50 50)
 
6
#
 
7
#    convert -list color
 
8
 
 
9
[Style]
 
10
# The default style if no style is specified.
 
11
styleName = Default
 
12
pointSize = 6
 
13
pointColor = Grey
 
14
lineWidth = 7
 
15
lineColor = Grey
 
16
polygonFillColor = Grey
 
17
polygonStrokeColor = Grey
 
18
polygonStrokeWidth = 0
 
19
 
 
20
[Style]
 
21
# The bottom layer in the rendered WKT image
 
22
styleName = Style1
 
23
pointSize = 6
 
24
pointColor = '#00bfff'
 
25
lineWidth = 7
 
26
lineColor = '#00bfff'
 
27
polygonFillColor = '#00bfff'
 
28
polygonStrokeColor = '#00bfff'
 
29
polygonStrokeWidth = 0
 
30
 
 
31
[Style]
 
32
# The bottom layer in the rendered WKT image
 
33
styleName = Style1-thinline
 
34
pointSize = 6
 
35
pointColor = '#00bfff'
 
36
lineWidth = 3
 
37
lineColor = '#00bfff'
 
38
polygonFillColor = '#00bfff'
 
39
polygonStrokeColor = '#00bfff'
 
40
polygonStrokeWidth = 0
 
41
 
 
42
 
 
43
[Style]
 
44
# The second layer in the rendered WKT image
 
45
styleName = Style2
 
46
pointSize = 6
 
47
pointColor = DarkSeaGreen4
 
48
lineWidth = 7
 
49
lineColor = DarkSeaGreen4
 
50
polygonFillColor = DarkSeaGreen4
 
51
polygonStrokeColor = DarkGreen
 
52
polygonStrokeWidth = 0
 
53