-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathstroomstoringen.map
83 lines (70 loc) · 2.36 KB
/
stroomstoringen.map
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
#==============================================================================
#
# Stroomstoringen.map
#
#==============================================================================
MAP
NAME "stroomstoringen"
INCLUDE "header.inc"
WEB
METADATA
"ows_title" "Stroomstoringen Liander regio Amsterdam"
"ows_abstract" "Stroomstoringen (van vandaag) netwerk van Liander regio Amsterdam."
END
END
########################## LAYER - ONOPGELOSTE STROOMSTORINGEN ##################################
LAYER
NAME "stroomstoring onopgelost"
INCLUDE "connection/dataservices.inc"
DATA "geometry FROM public.stroomstoringen_stroomstoringen USING srid=28992 USING UNIQUE id"
TYPE POLYGON
METADATA
"ows_title" "onopgelost"
"ows_group_title" "onopgelost"
"ows_abstract" "onopgelost"
"gml_featureid" "id"
"gml_include_items" "all"
END
CLASS
NAME "onopgelost"
EXPRESSION ("[storing_status]" ne "opgelost")
STYLE
ANTIALIAS true
COLOR 255 0 0
OPACITY 20
END
STYLE
OUTLINECOLOR 160 0 0
WIDTH 2
END
END
END
########################## LAYER - OPGELOSTE STROOMSTORINGEN ##################################
LAYER
NAME "stroomstoring opgelost"
INCLUDE "connection/dataservices.inc"
DATA "geometry FROM public.stroomstoringen_stroomstoringen USING srid=28992 USING UNIQUE id"
TYPE POLYGON
METADATA
"ows_title" "opgelost"
"ows_group_title" "opgelost"
"ows_abstract" "opgelost"
"gml_featureid" "id"
"gml_include_items" "all"
END
CLASS
NAME "opgelost"
EXPRESSION ("[storing_status]" eq "opgelost")
STYLE
ANTIALIAS true
COLOR 0 255 0
OPACITY 20
END
STYLE
OUTLINECOLOR 0 102 0
WIDTH 2
END
END
END
#=============================================================================
END