-
Notifications
You must be signed in to change notification settings - Fork 8
/
view.profiles
128 lines (87 loc) · 3.34 KB
/
view.profiles
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
#
# This is an example of a filter script.
#
# Modify this for your own needs.
# See http://aprs.no/dokuwiki/doku.php?id=filter.profiles for more information.
#
slow = max-speed < 20 AND moving ;
TrackHide = NOT moving AND
NOT ident~"LE.*|.*@LE.*" AND
symbol ~ ".#|E0|I0|.&|[/\\]-|/_|/y|/r|\\j|.a" ;
IrlpNode = symbol ~ "I0" AND ident ~ "IRLP.*" ;
EchoLink = symbol ~ "E0" AND ident ~ "EL.*" ;
Infrastructure = ident ~ "LD.+" OR
symbol ~ "/r|.#|.&|.a" OR
IrlpNode OR EchoLink OR infra ;
Object = ident ~ ".+@.+";
WXstn = symbol ~ "/_";
# points with tag "SAR", prefix LE or certain APRS symbols are likely
# involved in some SAR operation.
sarRelated = *SAR OR *sar OR
ident ~ "LE.*|.@LE.*" OR
symbol ~ "/a|Es|Ls|Ms|Ss|/c|\\c|/o|/h|/\+|/P|/\!|\\\!";
####################################################
# Automatic tagging.
# sarRelated points are tagged "SAR"
####################################################
AUTOTAG {
sarRelated => { *SAR };
}
####################################################
# Show all APRS
####################################################
PROFILE all_aprs {
EXPORT "ALL APRS" => PUBLIC;
}
#####################################################
# Track mode. Hide the ident for infrastructure
# and other things not "that interesting".
#
# This is also dynamic in the sense that some info
# is hidden when zooming out.
#####################################################
PROFILE track {
EXPORT "Tracking" => PUBLIC;
TrackHide => { hide-ident };
# Hide infrasctructure, objects and WX stations if scale is more than 1 million
scale > 1000000 AND
(Infrastructure OR Object OR WXstn) => { hide-all };
# Hide ident of non-moving objects if scale is more than 2 million
scale > 2000000 AND
NOT moving => { hide-ident };
slow OR *slow => { trail-length = 40, trail-time = 20 };
*longtrail => { trail-length = 120, trail-time = 60 };
}
##################################################
# Show only points that are tagged as SAR
##################################################
PROFILE sar {
EXPORT "Search and Rescue" => ALL;
NOT *SAR => { hide-all };
}
###################################################
# Infrastructure - based on callsign or symbol
# (In Norway LD prefix is used for infrasstructure)
###################################################
PROFILE infra {
EXPORT "Infrastructure" => PUBLIC;
NOT (ident ~ "LD.+" OR symbol ~ "/r|.#" OR IrlpNode OR EchoLink OR infra)
=> { hide-all };
}
###################################################
# Active infrastructure.
###################################################
PROFILE ainfra {
EXPORT "Active infrastructure" => PUBLIC;
NOT infra => { hide-all };
infra => { show-path };
fulldigi => { style = "wdigi" };
igate => { style = "igate" };
}
###################################################
# Show only moving points.
###################################################
PROFILE moving {
EXPORT "Moving trackers" => PUBLIC;
NOT moving => { hide-all };
}