1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174
|
# This file describes the styles used to render the png images
# The styleName attribute for every style should be unique.
#
# To use a style, prefix the wkt string with the styleName; i.e.
# Style1;POINT(50 50)
#
# convert -list color
[Style]
# The default style if no style is specified.
styleName = Default
pointSize = 6
pointColor = Grey
lineWidth = 7
lineColor = Grey
polygonFillColor = Grey
polygonStrokeColor = Grey
polygonStrokeWidth = 0
[Style]
# The bottom layer in the rendered WKT image
styleName = Style1
pointSize = 6
pointColor = "#00bfff"
lineWidth = 7
lineColor = "#00bfff"
polygonFillColor = "#00bfff"
polygonStrokeColor = "#00bfff"
polygonStrokeWidth = 0
[Style]
# The bottom layer in the rendered WKT image
styleName = Style1-alpha
pointSize = 6
pointColor = "#0000ff80"
lineWidth = 7
lineColor = "#0000ff80"
polygonFillColor = "#0000ff80"
polygonStrokeColor = "#0000ff80"
polygonStrokeWidth = 0
[Style]
# The bottom layer in the rendered WKT image
styleName = Style1-thinline
pointSize = 6
pointColor = "#00bfff"
lineWidth = 3
lineColor = "#00bfff"
polygonFillColor = "#00bfff"
polygonStrokeColor = "#00bfff"
polygonStrokeWidth = 0
[Style]
# The bottom layer in the rendered WKT image
styleName = Style1-mediumline
pointSize = 6
pointColor = "#00bfff"
lineWidth = 5
lineColor = "#00bfff"
polygonFillColor = "#00bfff"
polygonStrokeColor = "#00bfff"
polygonStrokeWidth = 0
[Style]
# The second layer in the rendered WKT image
styleName = Style2
pointSize = 6
pointColor = DarkSeaGreen4
lineWidth = 7
lineColor = DarkSeaGreen4
polygonFillColor = DarkSeaGreen4
polygonStrokeColor = DarkGreen
polygonStrokeWidth = 0
[Style]
# The second layer in the rendered WKT image
styleName = Style2-alpha
pointSize = 6
pointColor = "#00ff0080"
lineWidth = 7
lineColor = "#00ff0080"
polygonFillColor = "#00ff0080"
polygonStrokeColor = "#00ff0080"
polygonStrokeWidth = 0
[Style]
# The second layer in the rendered WKT image
styleName = Style2-mediumline
pointSize = 6
pointColor = DarkSeaGreen4
lineWidth = 5
lineColor = DarkSeaGreen4
polygonFillColor = DarkSeaGreen4
polygonStrokeColor = DarkGreen
polygonStrokeWidth = 0
[Style]
# The second layer in the rendered WKT image
styleName = Style2-thinline
pointSize = 6
pointColor = DarkSeaGreen4
lineWidth = 3
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
[Style]
# The fifth layer in the rendered WKT image
styleName = Style6
pointSize = 6
pointColor = red
lineWidth = 5
lineColor = red
polygonFillColor = red
polygonStrokeColor = red
polygonStrokeWidth = 0
[Style]
# The fifth layer in the rendered WKT image
styleName = Style7-smallpoint
pointSize = 3
pointColor = orange
lineWidth = 5
lineColor = orange
polygonFillColor = orange
polygonStrokeColor = orange
polygonStrokeWidth = 0
[Style]
# The bottom layer in the rendered WKT image
styleName = StrokedPoly1
pointSize = 6
pointColor = "#00bfff"
lineWidth = 7
lineColor = "#00bfff"
polygonFillColor = "#00bfff"
polygonStrokeColor = "#000000"
polygonStrokeWidth = 1
|