annotate weather.tcl @ 543:a513b98f2a37

weather: Improve alias handling and do some work on stations listing.
author Matti Hamalainen <ccr@tnsp.org>
date Wed, 08 Jul 2020 00:42:05 +0300
parents 8e02d736bcc3
children 3b363fd0a60b
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
153
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
1 ##########################################################################
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
2 #
541
8e02d736bcc3 weather: Bump version.
Matti Hamalainen <ccr@tnsp.org>
parents: 540
diff changeset
3 # Weather v2.0.0 by Matti 'ccr' Hamalainen <ccr@tnsp.org>
487
b4be881a9908 fetch_weather, weather: Add primitive support for wind direction data.
Matti Hamalainen <ccr@tnsp.org>
parents: 455
diff changeset
4 # (C) Copyright 2014-2020 Tecnic Software productions (TNSP)
153
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
5 #
183
4abb7a940e24 weather: Add comments.
Matti Hamalainen <ccr@tnsp.org>
parents: 174
diff changeset
6 # Requires data fetcher to be run as a cronjob, see fetch_weather.pl
4abb7a940e24 weather: Add comments.
Matti Hamalainen <ccr@tnsp.org>
parents: 174
diff changeset
7 # for more information.
153
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
8 #
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
9 # This script is freely distributable under GNU GPL (version 2) license.
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
10 #
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
11 ##########################################################################
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
12
273
38a5bce4b078 weather: Move configuration to separate file.
Matti Hamalainen <ccr@tnsp.org>
parents: 248
diff changeset
13 ### The configuration should be in config.weather in same directory
38a5bce4b078 weather: Move configuration to separate file.
Matti Hamalainen <ccr@tnsp.org>
parents: 248
diff changeset
14 ### as this script. Or change the line below to point where ever
38a5bce4b078 weather: Move configuration to separate file.
Matti Hamalainen <ccr@tnsp.org>
parents: 248
diff changeset
15 ### you wish. See "config.weather.example" for an example config file.
38a5bce4b078 weather: Move configuration to separate file.
Matti Hamalainen <ccr@tnsp.org>
parents: 248
diff changeset
16 source [file dirname [info script]]/config.weather
153
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
17
344
25fc5a2b42ae weather: Use utillib for matching enabled channels.
Matti Hamalainen <ccr@tnsp.org>
parents: 335
diff changeset
18 ### Required utillib.tcl
25fc5a2b42ae weather: Use utillib for matching enabled channels.
Matti Hamalainen <ccr@tnsp.org>
parents: 335
diff changeset
19 source [file dirname [info script]]/utillib.tcl
25fc5a2b42ae weather: Use utillib for matching enabled channels.
Matti Hamalainen <ccr@tnsp.org>
parents: 335
diff changeset
20
153
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
21
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
22 ##########################################################################
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
23 # No need to look below this line
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
24 ##########################################################################
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
25 set weather_name "Weather"
541
8e02d736bcc3 weather: Bump version.
Matti Hamalainen <ccr@tnsp.org>
parents: 540
diff changeset
26 set weather_version "2.0.0"
184
a496dc87a7c1 weather: Bump version.
Matti Hamalainen <ccr@tnsp.org>
parents: 183
diff changeset
27
153
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
28
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
29 ### Initialization messages
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
30 package require textutil::split
499
3da1d036ae48 weather: Bump version, adjust copyright message when loading.
Matti Hamalainen <ccr@tnsp.org>
parents: 497
diff changeset
31 set weather_message "$weather_name v$weather_version (C) 2014-2020 ccr/TNSP"
153
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
32 putlog "$weather_message"
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
33
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
34
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
35 #-------------------------------------------------------------------------
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
36 proc weather_log {arg} {
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
37 global weather_logmsg weather_name
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
38 if {$weather_logmsg != 0} {
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
39 putlog "$weather_name: $arg"
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
40 }
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
41 }
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
42
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
43
538
f07c972e269a weather: Refactor much of the messages system to match the quotedb one.
Matti Hamalainen <ccr@tnsp.org>
parents: 537
diff changeset
44 proc weather_qm {uid} {
f07c972e269a weather: Refactor much of the messages system to match the quotedb one.
Matti Hamalainen <ccr@tnsp.org>
parents: 537
diff changeset
45 global weather_messages
f07c972e269a weather: Refactor much of the messages system to match the quotedb one.
Matti Hamalainen <ccr@tnsp.org>
parents: 537
diff changeset
46
f07c972e269a weather: Refactor much of the messages system to match the quotedb one.
Matti Hamalainen <ccr@tnsp.org>
parents: 537
diff changeset
47 if {[info exists weather_messages($uid)]} {
f07c972e269a weather: Refactor much of the messages system to match the quotedb one.
Matti Hamalainen <ccr@tnsp.org>
parents: 537
diff changeset
48 return $weather_messages($uid)
f07c972e269a weather: Refactor much of the messages system to match the quotedb one.
Matti Hamalainen <ccr@tnsp.org>
parents: 537
diff changeset
49 } else {
f07c972e269a weather: Refactor much of the messages system to match the quotedb one.
Matti Hamalainen <ccr@tnsp.org>
parents: 537
diff changeset
50 return $uid
285
259f093c9503 weather: Make some more messages configurable.
Matti Hamalainen <ccr@tnsp.org>
parents: 280
diff changeset
51 }
259f093c9503 weather: Make some more messages configurable.
Matti Hamalainen <ccr@tnsp.org>
parents: 280
diff changeset
52 }
259f093c9503 weather: Make some more messages configurable.
Matti Hamalainen <ccr@tnsp.org>
parents: 280
diff changeset
53
259f093c9503 weather: Make some more messages configurable.
Matti Hamalainen <ccr@tnsp.org>
parents: 280
diff changeset
54
538
f07c972e269a weather: Refactor much of the messages system to match the quotedb one.
Matti Hamalainen <ccr@tnsp.org>
parents: 537
diff changeset
55 proc weather_msg {apublic anick achan aid {aargs {}}} {
429
1ada0cb9bdd9 weather: Some stray weather_msg_do calls were left in, fix those.
Matti Hamalainen <ccr@tnsp.org>
parents: 426
diff changeset
56 global weather_preferredmsg
538
f07c972e269a weather: Refactor much of the messages system to match the quotedb one.
Matti Hamalainen <ccr@tnsp.org>
parents: 537
diff changeset
57 set amsg [weather_qm $aid]
f07c972e269a weather: Refactor much of the messages system to match the quotedb one.
Matti Hamalainen <ccr@tnsp.org>
parents: 537
diff changeset
58 set amsg [string map [list "@cmd@" "!sää"] $amsg]
f07c972e269a weather: Refactor much of the messages system to match the quotedb one.
Matti Hamalainen <ccr@tnsp.org>
parents: 537
diff changeset
59 utl_msg_args $weather_preferredmsg $apublic $anick $achan $amsg $aargs
f07c972e269a weather: Refactor much of the messages system to match the quotedb one.
Matti Hamalainen <ccr@tnsp.org>
parents: 537
diff changeset
60 }
f07c972e269a weather: Refactor much of the messages system to match the quotedb one.
Matti Hamalainen <ccr@tnsp.org>
parents: 537
diff changeset
61
f07c972e269a weather: Refactor much of the messages system to match the quotedb one.
Matti Hamalainen <ccr@tnsp.org>
parents: 537
diff changeset
62
f07c972e269a weather: Refactor much of the messages system to match the quotedb one.
Matti Hamalainen <ccr@tnsp.org>
parents: 537
diff changeset
63 proc weather_smsg {apublic anick achan amsg {aargs {}}} {
f07c972e269a weather: Refactor much of the messages system to match the quotedb one.
Matti Hamalainen <ccr@tnsp.org>
parents: 537
diff changeset
64 global weather_preferredmsg
f07c972e269a weather: Refactor much of the messages system to match the quotedb one.
Matti Hamalainen <ccr@tnsp.org>
parents: 537
diff changeset
65 set amsg [string map [list "@cmd@" "!sää"] $amsg]
f07c972e269a weather: Refactor much of the messages system to match the quotedb one.
Matti Hamalainen <ccr@tnsp.org>
parents: 537
diff changeset
66 utl_msg_args $weather_preferredmsg $apublic $anick $achan $amsg $aargs
163
bee5cd89d41c weather: Moar work on getting the frontend script code up and running.
Matti Hamalainen <ccr@tnsp.org>
parents: 161
diff changeset
67 }
bee5cd89d41c weather: Moar work on getting the frontend script code up and running.
Matti Hamalainen <ccr@tnsp.org>
parents: 161
diff changeset
68
bee5cd89d41c weather: Moar work on getting the frontend script code up and running.
Matti Hamalainen <ccr@tnsp.org>
parents: 161
diff changeset
69
bee5cd89d41c weather: Moar work on getting the frontend script code up and running.
Matti Hamalainen <ccr@tnsp.org>
parents: 161
diff changeset
70 #-------------------------------------------------------------------------
bee5cd89d41c weather: Moar work on getting the frontend script code up and running.
Matti Hamalainen <ccr@tnsp.org>
parents: 161
diff changeset
71 proc weather_load_aliases {} {
bee5cd89d41c weather: Moar work on getting the frontend script code up and running.
Matti Hamalainen <ccr@tnsp.org>
parents: 161
diff changeset
72 global weather_aliasfile weather_aliases
bee5cd89d41c weather: Moar work on getting the frontend script code up and running.
Matti Hamalainen <ccr@tnsp.org>
parents: 161
diff changeset
73
bee5cd89d41c weather: Moar work on getting the frontend script code up and running.
Matti Hamalainen <ccr@tnsp.org>
parents: 161
diff changeset
74 # Create dict
bee5cd89d41c weather: Moar work on getting the frontend script code up and running.
Matti Hamalainen <ccr@tnsp.org>
parents: 161
diff changeset
75 array unset weather_aliases
bee5cd89d41c weather: Moar work on getting the frontend script code up and running.
Matti Hamalainen <ccr@tnsp.org>
parents: 161
diff changeset
76 array set weather_aliases {}
421
0f7524550aa2 weather: Cosmetics, stray whitespace.
Matti Hamalainen <ccr@tnsp.org>
parents: 419
diff changeset
77
163
bee5cd89d41c weather: Moar work on getting the frontend script code up and running.
Matti Hamalainen <ccr@tnsp.org>
parents: 161
diff changeset
78 # Read datafile
bee5cd89d41c weather: Moar work on getting the frontend script code up and running.
Matti Hamalainen <ccr@tnsp.org>
parents: 161
diff changeset
79 if {![catch {set ufile [open $weather_aliasfile r 0600]} uerrmsg]} {
bee5cd89d41c weather: Moar work on getting the frontend script code up and running.
Matti Hamalainen <ccr@tnsp.org>
parents: 161
diff changeset
80 while {![eof $ufile]} {
bee5cd89d41c weather: Moar work on getting the frontend script code up and running.
Matti Hamalainen <ccr@tnsp.org>
parents: 161
diff changeset
81 gets $ufile uline
bee5cd89d41c weather: Moar work on getting the frontend script code up and running.
Matti Hamalainen <ccr@tnsp.org>
parents: 161
diff changeset
82 set udata [split $uline "|"]
bee5cd89d41c weather: Moar work on getting the frontend script code up and running.
Matti Hamalainen <ccr@tnsp.org>
parents: 161
diff changeset
83 if {[llength $udata] == 2} {
bee5cd89d41c weather: Moar work on getting the frontend script code up and running.
Matti Hamalainen <ccr@tnsp.org>
parents: 161
diff changeset
84 set weather_aliases([lindex $udata 0]) [lindex $udata 1]
bee5cd89d41c weather: Moar work on getting the frontend script code up and running.
Matti Hamalainen <ccr@tnsp.org>
parents: 161
diff changeset
85 }
bee5cd89d41c weather: Moar work on getting the frontend script code up and running.
Matti Hamalainen <ccr@tnsp.org>
parents: 161
diff changeset
86 }
bee5cd89d41c weather: Moar work on getting the frontend script code up and running.
Matti Hamalainen <ccr@tnsp.org>
parents: 161
diff changeset
87 close $ufile
bee5cd89d41c weather: Moar work on getting the frontend script code up and running.
Matti Hamalainen <ccr@tnsp.org>
parents: 161
diff changeset
88 } else {
bee5cd89d41c weather: Moar work on getting the frontend script code up and running.
Matti Hamalainen <ccr@tnsp.org>
parents: 161
diff changeset
89 weather_log "Could not open data file: $uerrmsg"
161
2c9db9a29429 weather: More work, bugfixes.
Matti Hamalainen <ccr@tnsp.org>
parents: 157
diff changeset
90 }
163
bee5cd89d41c weather: Moar work on getting the frontend script code up and running.
Matti Hamalainen <ccr@tnsp.org>
parents: 161
diff changeset
91 }
bee5cd89d41c weather: Moar work on getting the frontend script code up and running.
Matti Hamalainen <ccr@tnsp.org>
parents: 161
diff changeset
92
bee5cd89d41c weather: Moar work on getting the frontend script code up and running.
Matti Hamalainen <ccr@tnsp.org>
parents: 161
diff changeset
93
bee5cd89d41c weather: Moar work on getting the frontend script code up and running.
Matti Hamalainen <ccr@tnsp.org>
parents: 161
diff changeset
94 proc weather_save_aliases {} {
bee5cd89d41c weather: Moar work on getting the frontend script code up and running.
Matti Hamalainen <ccr@tnsp.org>
parents: 161
diff changeset
95 global weather_aliasfile weather_aliases
bee5cd89d41c weather: Moar work on getting the frontend script code up and running.
Matti Hamalainen <ccr@tnsp.org>
parents: 161
diff changeset
96
bee5cd89d41c weather: Moar work on getting the frontend script code up and running.
Matti Hamalainen <ccr@tnsp.org>
parents: 161
diff changeset
97 if {![catch {set ufile [open $weather_aliasfile w 0600]} uerrmsg]} {
bee5cd89d41c weather: Moar work on getting the frontend script code up and running.
Matti Hamalainen <ccr@tnsp.org>
parents: 161
diff changeset
98 foreach {ukey uvalue} [array get weather_aliases] {
bee5cd89d41c weather: Moar work on getting the frontend script code up and running.
Matti Hamalainen <ccr@tnsp.org>
parents: 161
diff changeset
99 puts $ufile "$ukey|$uvalue"
bee5cd89d41c weather: Moar work on getting the frontend script code up and running.
Matti Hamalainen <ccr@tnsp.org>
parents: 161
diff changeset
100 }
bee5cd89d41c weather: Moar work on getting the frontend script code up and running.
Matti Hamalainen <ccr@tnsp.org>
parents: 161
diff changeset
101 close $ufile
bee5cd89d41c weather: Moar work on getting the frontend script code up and running.
Matti Hamalainen <ccr@tnsp.org>
parents: 161
diff changeset
102 } else {
bee5cd89d41c weather: Moar work on getting the frontend script code up and running.
Matti Hamalainen <ccr@tnsp.org>
parents: 161
diff changeset
103 weather_log "Could not open data file: $uerrmsg"
bee5cd89d41c weather: Moar work on getting the frontend script code up and running.
Matti Hamalainen <ccr@tnsp.org>
parents: 161
diff changeset
104 }
bee5cd89d41c weather: Moar work on getting the frontend script code up and running.
Matti Hamalainen <ccr@tnsp.org>
parents: 161
diff changeset
105 }
bee5cd89d41c weather: Moar work on getting the frontend script code up and running.
Matti Hamalainen <ccr@tnsp.org>
parents: 161
diff changeset
106
bee5cd89d41c weather: Moar work on getting the frontend script code up and running.
Matti Hamalainen <ccr@tnsp.org>
parents: 161
diff changeset
107
171
5434903331df weather: Add some comments.
Matti Hamalainen <ccr@tnsp.org>
parents: 167
diff changeset
108 # If there exists an alias for given string/name, return it
163
bee5cd89d41c weather: Moar work on getting the frontend script code up and running.
Matti Hamalainen <ccr@tnsp.org>
parents: 161
diff changeset
109 proc weather_get_alias {uname} {
bee5cd89d41c weather: Moar work on getting the frontend script code up and running.
Matti Hamalainen <ccr@tnsp.org>
parents: 161
diff changeset
110 global weather_aliases
bee5cd89d41c weather: Moar work on getting the frontend script code up and running.
Matti Hamalainen <ccr@tnsp.org>
parents: 161
diff changeset
111 set utmp [array get weather_aliases $uname]
bee5cd89d41c weather: Moar work on getting the frontend script code up and running.
Matti Hamalainen <ccr@tnsp.org>
parents: 161
diff changeset
112 if {[llength $utmp] > 0} {
bee5cd89d41c weather: Moar work on getting the frontend script code up and running.
Matti Hamalainen <ccr@tnsp.org>
parents: 161
diff changeset
113 return [lindex $utmp 1]
bee5cd89d41c weather: Moar work on getting the frontend script code up and running.
Matti Hamalainen <ccr@tnsp.org>
parents: 161
diff changeset
114 }
bee5cd89d41c weather: Moar work on getting the frontend script code up and running.
Matti Hamalainen <ccr@tnsp.org>
parents: 161
diff changeset
115 return $uname
161
2c9db9a29429 weather: More work, bugfixes.
Matti Hamalainen <ccr@tnsp.org>
parents: 157
diff changeset
116 }
2c9db9a29429 weather: More work, bugfixes.
Matti Hamalainen <ccr@tnsp.org>
parents: 157
diff changeset
117
2c9db9a29429 weather: More work, bugfixes.
Matti Hamalainen <ccr@tnsp.org>
parents: 157
diff changeset
118
153
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
119 #-------------------------------------------------------------------------
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
120 proc weather_update {} {
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
121 global weather_datafile weather_data
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
122
172
2c89e47739e8 weather: Change weather data loading to not discard current data if data
Matti Hamalainen <ccr@tnsp.org>
parents: 171
diff changeset
123 # Check if we can open the weather data file
2c89e47739e8 weather: Change weather data loading to not discard current data if data
Matti Hamalainen <ccr@tnsp.org>
parents: 171
diff changeset
124 if {![catch {set ufile [open $weather_datafile r 0600]} uerrmsg]} {
2c89e47739e8 weather: Change weather data loading to not discard current data if data
Matti Hamalainen <ccr@tnsp.org>
parents: 171
diff changeset
125 # Create dict
2c89e47739e8 weather: Change weather data loading to not discard current data if data
Matti Hamalainen <ccr@tnsp.org>
parents: 171
diff changeset
126 array unset weather_data
2c89e47739e8 weather: Change weather data loading to not discard current data if data
Matti Hamalainen <ccr@tnsp.org>
parents: 171
diff changeset
127 array set weather_data {}
163
bee5cd89d41c weather: Moar work on getting the frontend script code up and running.
Matti Hamalainen <ccr@tnsp.org>
parents: 161
diff changeset
128
172
2c89e47739e8 weather: Change weather data loading to not discard current data if data
Matti Hamalainen <ccr@tnsp.org>
parents: 171
diff changeset
129 set wtemp_min_val 500000
2c89e47739e8 weather: Change weather data loading to not discard current data if data
Matti Hamalainen <ccr@tnsp.org>
parents: 171
diff changeset
130 set wtemp_max_val -500000
2c89e47739e8 weather: Change weather data loading to not discard current data if data
Matti Hamalainen <ccr@tnsp.org>
parents: 171
diff changeset
131 set wtemp_min_key ""
2c89e47739e8 weather: Change weather data loading to not discard current data if data
Matti Hamalainen <ccr@tnsp.org>
parents: 171
diff changeset
132 set wtemp_max_key ""
2c89e47739e8 weather: Change weather data loading to not discard current data if data
Matti Hamalainen <ccr@tnsp.org>
parents: 171
diff changeset
133
2c89e47739e8 weather: Change weather data loading to not discard current data if data
Matti Hamalainen <ccr@tnsp.org>
parents: 171
diff changeset
134 # Read in the data
153
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
135 while {![eof $ufile]} {
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
136 gets $ufile uline
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
137 set udata [split $uline "|"]
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
138 if {[llength $udata] > 0} {
414
d623652df6b5 fetch_weather / weather: Add weather measurement station location data (GPS WGS-84 lat/long/height) to weather cache. Not used in weather.tcl yet, tho.
Matti Hamalainen <ccr@tnsp.org>
parents: 409
diff changeset
139 set utemp [lindex $udata 6]
153
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
140 set ukey [lindex $udata 0]
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
141
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
142 set weather_data($ukey) $udata
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
143
421
0f7524550aa2 weather: Cosmetics, stray whitespace.
Matti Hamalainen <ccr@tnsp.org>
parents: 419
diff changeset
144 if {[string is double -strict $utemp]} {
161
2c9db9a29429 weather: More work, bugfixes.
Matti Hamalainen <ccr@tnsp.org>
parents: 157
diff changeset
145 if {$utemp < $wtemp_min_val} {
2c9db9a29429 weather: More work, bugfixes.
Matti Hamalainen <ccr@tnsp.org>
parents: 157
diff changeset
146 set wtemp_min_key $ukey
2c9db9a29429 weather: More work, bugfixes.
Matti Hamalainen <ccr@tnsp.org>
parents: 157
diff changeset
147 set wtemp_min_val $utemp
2c9db9a29429 weather: More work, bugfixes.
Matti Hamalainen <ccr@tnsp.org>
parents: 157
diff changeset
148 }
2c9db9a29429 weather: More work, bugfixes.
Matti Hamalainen <ccr@tnsp.org>
parents: 157
diff changeset
149 if {$utemp > $wtemp_max_val} {
2c9db9a29429 weather: More work, bugfixes.
Matti Hamalainen <ccr@tnsp.org>
parents: 157
diff changeset
150 set wtemp_max_key $ukey
2c9db9a29429 weather: More work, bugfixes.
Matti Hamalainen <ccr@tnsp.org>
parents: 157
diff changeset
151 set wtemp_max_val $utemp
2c9db9a29429 weather: More work, bugfixes.
Matti Hamalainen <ccr@tnsp.org>
parents: 157
diff changeset
152 }
153
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
153 }
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
154 }
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
155 }
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
156 close $ufile
421
0f7524550aa2 weather: Cosmetics, stray whitespace.
Matti Hamalainen <ccr@tnsp.org>
parents: 419
diff changeset
157
334
088bb2621595 weather: Do not attempt to access weather data through unset / invalid
Matti Hamalainen <ccr@tnsp.org>
parents: 287
diff changeset
158 # Store min/max
088bb2621595 weather: Do not attempt to access weather data through unset / invalid
Matti Hamalainen <ccr@tnsp.org>
parents: 287
diff changeset
159 if {$wtemp_min_key != "" && $wtemp_max_key != ""} {
088bb2621595 weather: Do not attempt to access weather data through unset / invalid
Matti Hamalainen <ccr@tnsp.org>
parents: 287
diff changeset
160 set weather_data(w_min) $weather_data($wtemp_min_key)
088bb2621595 weather: Do not attempt to access weather data through unset / invalid
Matti Hamalainen <ccr@tnsp.org>
parents: 287
diff changeset
161 set weather_data(w_max) $weather_data($wtemp_max_key)
088bb2621595 weather: Do not attempt to access weather data through unset / invalid
Matti Hamalainen <ccr@tnsp.org>
parents: 287
diff changeset
162 } else {
088bb2621595 weather: Do not attempt to access weather data through unset / invalid
Matti Hamalainen <ccr@tnsp.org>
parents: 287
diff changeset
163 set weather_data(w_min) 0
088bb2621595 weather: Do not attempt to access weather data through unset / invalid
Matti Hamalainen <ccr@tnsp.org>
parents: 287
diff changeset
164 set weather_data(w_max) 0
088bb2621595 weather: Do not attempt to access weather data through unset / invalid
Matti Hamalainen <ccr@tnsp.org>
parents: 287
diff changeset
165 }
153
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
166 } else {
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
167 weather_log "Could not open data file: $uerrmsg"
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
168 }
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
169 }
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
170
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
171
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
172 #-------------------------------------------------------------------------
171
5434903331df weather: Add some comments.
Matti Hamalainen <ccr@tnsp.org>
parents: 167
diff changeset
173 # Weather data update loop
153
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
174 proc weather_exec {} {
421
0f7524550aa2 weather: Cosmetics, stray whitespace.
Matti Hamalainen <ccr@tnsp.org>
parents: 419
diff changeset
175 global weather_check_period weather_running
153
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
176
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
177 # Perform update
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
178 weather_update
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
179
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
180 # Schedule next update
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
181 set weather_running [clock seconds]
173
3ea14355e2d4 weather: Fix a silly bug in the weather data update loop. :S
Matti Hamalainen <ccr@tnsp.org>
parents: 172
diff changeset
182 timer $weather_check_period weather_exec
153
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
183 }
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
184
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
185
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
186 #-------------------------------------------------------------------------
535
edbc0190e82a weather: Move some functions around into more logical location.
Matti Hamalainen <ccr@tnsp.org>
parents: 499
diff changeset
187 # Translate wind direction compass degree to name
edbc0190e82a weather: Move some functions around into more logical location.
Matti Hamalainen <ccr@tnsp.org>
parents: 499
diff changeset
188 proc weather_get_wind_direction {uangle} {
edbc0190e82a weather: Move some functions around into more logical location.
Matti Hamalainen <ccr@tnsp.org>
parents: 499
diff changeset
189 global weather_msg_wind_directions
edbc0190e82a weather: Move some functions around into more logical location.
Matti Hamalainen <ccr@tnsp.org>
parents: 499
diff changeset
190
edbc0190e82a weather: Move some functions around into more logical location.
Matti Hamalainen <ccr@tnsp.org>
parents: 499
diff changeset
191 # If the data was not got, return empty value
edbc0190e82a weather: Move some functions around into more logical location.
Matti Hamalainen <ccr@tnsp.org>
parents: 499
diff changeset
192 if {$uangle == ""} {
edbc0190e82a weather: Move some functions around into more logical location.
Matti Hamalainen <ccr@tnsp.org>
parents: 499
diff changeset
193 return ""
edbc0190e82a weather: Move some functions around into more logical location.
Matti Hamalainen <ccr@tnsp.org>
parents: 499
diff changeset
194 }
edbc0190e82a weather: Move some functions around into more logical location.
Matti Hamalainen <ccr@tnsp.org>
parents: 499
diff changeset
195
edbc0190e82a weather: Move some functions around into more logical location.
Matti Hamalainen <ccr@tnsp.org>
parents: 499
diff changeset
196 # Calculate index to array of 8 compass direction names based on the angle we have
edbc0190e82a weather: Move some functions around into more logical location.
Matti Hamalainen <ccr@tnsp.org>
parents: 499
diff changeset
197 set uvalue [expr int(floor(fmod($uangle + 45.0/2, 360.0) / 45.0))]
edbc0190e82a weather: Move some functions around into more logical location.
Matti Hamalainen <ccr@tnsp.org>
parents: 499
diff changeset
198 if {$uvalue >= 0 && $uvalue < [llength $weather_msg_wind_directions]} {
edbc0190e82a weather: Move some functions around into more logical location.
Matti Hamalainen <ccr@tnsp.org>
parents: 499
diff changeset
199 return [lindex $weather_msg_wind_directions $uvalue]
edbc0190e82a weather: Move some functions around into more logical location.
Matti Hamalainen <ccr@tnsp.org>
parents: 499
diff changeset
200 } else {
edbc0190e82a weather: Move some functions around into more logical location.
Matti Hamalainen <ccr@tnsp.org>
parents: 499
diff changeset
201 return "ERROR ($udir)"
edbc0190e82a weather: Move some functions around into more logical location.
Matti Hamalainen <ccr@tnsp.org>
parents: 499
diff changeset
202 }
edbc0190e82a weather: Move some functions around into more logical location.
Matti Hamalainen <ccr@tnsp.org>
parents: 499
diff changeset
203 }
edbc0190e82a weather: Move some functions around into more logical location.
Matti Hamalainen <ccr@tnsp.org>
parents: 499
diff changeset
204
edbc0190e82a weather: Move some functions around into more logical location.
Matti Hamalainen <ccr@tnsp.org>
parents: 499
diff changeset
205
edbc0190e82a weather: Move some functions around into more logical location.
Matti Hamalainen <ccr@tnsp.org>
parents: 499
diff changeset
206 proc weather_get_raw_table_value {utable uvalue} {
edbc0190e82a weather: Move some functions around into more logical location.
Matti Hamalainen <ccr@tnsp.org>
parents: 499
diff changeset
207 # If the data was not got, return empty value
edbc0190e82a weather: Move some functions around into more logical location.
Matti Hamalainen <ccr@tnsp.org>
parents: 499
diff changeset
208 if {$uvalue == "" || $uvalue == "NaN"} {
edbc0190e82a weather: Move some functions around into more logical location.
Matti Hamalainen <ccr@tnsp.org>
parents: 499
diff changeset
209 return ""
edbc0190e82a weather: Move some functions around into more logical location.
Matti Hamalainen <ccr@tnsp.org>
parents: 499
diff changeset
210 }
edbc0190e82a weather: Move some functions around into more logical location.
Matti Hamalainen <ccr@tnsp.org>
parents: 499
diff changeset
211
edbc0190e82a weather: Move some functions around into more logical location.
Matti Hamalainen <ccr@tnsp.org>
parents: 499
diff changeset
212 return "[expr int($uvalue) + 1]/[llength $utable]"
edbc0190e82a weather: Move some functions around into more logical location.
Matti Hamalainen <ccr@tnsp.org>
parents: 499
diff changeset
213 }
edbc0190e82a weather: Move some functions around into more logical location.
Matti Hamalainen <ccr@tnsp.org>
parents: 499
diff changeset
214
edbc0190e82a weather: Move some functions around into more logical location.
Matti Hamalainen <ccr@tnsp.org>
parents: 499
diff changeset
215
edbc0190e82a weather: Move some functions around into more logical location.
Matti Hamalainen <ccr@tnsp.org>
parents: 499
diff changeset
216 # "Translate" a straight table index (0-N) to table value
edbc0190e82a weather: Move some functions around into more logical location.
Matti Hamalainen <ccr@tnsp.org>
parents: 499
diff changeset
217 proc weather_get_table_value {utable uvalue} {
edbc0190e82a weather: Move some functions around into more logical location.
Matti Hamalainen <ccr@tnsp.org>
parents: 499
diff changeset
218 # If the data was not got, return empty value
edbc0190e82a weather: Move some functions around into more logical location.
Matti Hamalainen <ccr@tnsp.org>
parents: 499
diff changeset
219 if {$uvalue == "" || $uvalue == "NaN"} {
edbc0190e82a weather: Move some functions around into more logical location.
Matti Hamalainen <ccr@tnsp.org>
parents: 499
diff changeset
220 return ""
edbc0190e82a weather: Move some functions around into more logical location.
Matti Hamalainen <ccr@tnsp.org>
parents: 499
diff changeset
221 }
edbc0190e82a weather: Move some functions around into more logical location.
Matti Hamalainen <ccr@tnsp.org>
parents: 499
diff changeset
222
edbc0190e82a weather: Move some functions around into more logical location.
Matti Hamalainen <ccr@tnsp.org>
parents: 499
diff changeset
223 set uvalue [expr int($uvalue)]
edbc0190e82a weather: Move some functions around into more logical location.
Matti Hamalainen <ccr@tnsp.org>
parents: 499
diff changeset
224 set ulen [llength $utable]
edbc0190e82a weather: Move some functions around into more logical location.
Matti Hamalainen <ccr@tnsp.org>
parents: 499
diff changeset
225 if {$uvalue >= 0 && $uvalue < $ulen} {
edbc0190e82a weather: Move some functions around into more logical location.
Matti Hamalainen <ccr@tnsp.org>
parents: 499
diff changeset
226 return [lindex $utable $uvalue]
edbc0190e82a weather: Move some functions around into more logical location.
Matti Hamalainen <ccr@tnsp.org>
parents: 499
diff changeset
227 } else {
edbc0190e82a weather: Move some functions around into more logical location.
Matti Hamalainen <ccr@tnsp.org>
parents: 499
diff changeset
228 return "ERROR ($uvalue)"
edbc0190e82a weather: Move some functions around into more logical location.
Matti Hamalainen <ccr@tnsp.org>
parents: 499
diff changeset
229 }
edbc0190e82a weather: Move some functions around into more logical location.
Matti Hamalainen <ccr@tnsp.org>
parents: 499
diff changeset
230 }
edbc0190e82a weather: Move some functions around into more logical location.
Matti Hamalainen <ccr@tnsp.org>
parents: 499
diff changeset
231
edbc0190e82a weather: Move some functions around into more logical location.
Matti Hamalainen <ccr@tnsp.org>
parents: 499
diff changeset
232
edbc0190e82a weather: Move some functions around into more logical location.
Matti Hamalainen <ccr@tnsp.org>
parents: 499
diff changeset
233 # Produce one location of weather data as a string
edbc0190e82a weather: Move some functions around into more logical location.
Matti Hamalainen <ccr@tnsp.org>
parents: 499
diff changeset
234 proc weather_get_str {udata umsg} {
edbc0190e82a weather: Move some functions around into more logical location.
Matti Hamalainen <ccr@tnsp.org>
parents: 499
diff changeset
235 global weather_msg_cloudiness
edbc0190e82a weather: Move some functions around into more logical location.
Matti Hamalainen <ccr@tnsp.org>
parents: 499
diff changeset
236 global weather_msg_precipitation
edbc0190e82a weather: Move some functions around into more logical location.
Matti Hamalainen <ccr@tnsp.org>
parents: 499
diff changeset
237
edbc0190e82a weather: Move some functions around into more logical location.
Matti Hamalainen <ccr@tnsp.org>
parents: 499
diff changeset
238 array unset uvals
edbc0190e82a weather: Move some functions around into more logical location.
Matti Hamalainen <ccr@tnsp.org>
parents: 499
diff changeset
239 set uvals(station) [lindex $udata 0]
edbc0190e82a weather: Move some functions around into more logical location.
Matti Hamalainen <ccr@tnsp.org>
parents: 499
diff changeset
240 set uvals(type) [lindex $udata 1]
edbc0190e82a weather: Move some functions around into more logical location.
Matti Hamalainen <ccr@tnsp.org>
parents: 499
diff changeset
241 set uvals(c_lat) [lindex $udata 2]
edbc0190e82a weather: Move some functions around into more logical location.
Matti Hamalainen <ccr@tnsp.org>
parents: 499
diff changeset
242 set uvals(c_lng) [lindex $udata 3]
edbc0190e82a weather: Move some functions around into more logical location.
Matti Hamalainen <ccr@tnsp.org>
parents: 499
diff changeset
243 set uvals(c_height) [lindex $udata 4]
edbc0190e82a weather: Move some functions around into more logical location.
Matti Hamalainen <ccr@tnsp.org>
parents: 499
diff changeset
244 set uvals(vtime) [lindex $udata 5]
edbc0190e82a weather: Move some functions around into more logical location.
Matti Hamalainen <ccr@tnsp.org>
parents: 499
diff changeset
245 set uvals(temp) [lindex $udata 6]
edbc0190e82a weather: Move some functions around into more logical location.
Matti Hamalainen <ccr@tnsp.org>
parents: 499
diff changeset
246 set uvals(humidity) [lindex $udata 7]
edbc0190e82a weather: Move some functions around into more logical location.
Matti Hamalainen <ccr@tnsp.org>
parents: 499
diff changeset
247 set uvals(wind_speed) [lindex $udata 8]
edbc0190e82a weather: Move some functions around into more logical location.
Matti Hamalainen <ccr@tnsp.org>
parents: 499
diff changeset
248 set uvals(wind_direction) [weather_get_wind_direction [lindex $udata 9]]
edbc0190e82a weather: Move some functions around into more logical location.
Matti Hamalainen <ccr@tnsp.org>
parents: 499
diff changeset
249 set uvals(wind_direction_deg) [lindex $udata 9]
edbc0190e82a weather: Move some functions around into more logical location.
Matti Hamalainen <ccr@tnsp.org>
parents: 499
diff changeset
250 set uvals(cloudiness) [weather_get_table_value $weather_msg_cloudiness [lindex $udata 10]]
edbc0190e82a weather: Move some functions around into more logical location.
Matti Hamalainen <ccr@tnsp.org>
parents: 499
diff changeset
251 set uvals(cloudiness_val) [weather_get_raw_table_value $weather_msg_cloudiness [lindex $udata 10]]
edbc0190e82a weather: Move some functions around into more logical location.
Matti Hamalainen <ccr@tnsp.org>
parents: 499
diff changeset
252 set uvals(road_surface_temp) [lindex $udata 11]
edbc0190e82a weather: Move some functions around into more logical location.
Matti Hamalainen <ccr@tnsp.org>
parents: 499
diff changeset
253 set uvals(precipitation) [lindex $udata 12]
edbc0190e82a weather: Move some functions around into more logical location.
Matti Hamalainen <ccr@tnsp.org>
parents: 499
diff changeset
254 set uvals(visibility) [lindex $udata 13]
edbc0190e82a weather: Move some functions around into more logical location.
Matti Hamalainen <ccr@tnsp.org>
parents: 499
diff changeset
255 set uvals(precipitation2) [weather_get_table_value $weather_msg_precipitation [lindex $udata 14]]
edbc0190e82a weather: Move some functions around into more logical location.
Matti Hamalainen <ccr@tnsp.org>
parents: 499
diff changeset
256 set uvals(precipitation_val) [weather_get_raw_table_value $weather_msg_precipitation [lindex $udata 14]]
edbc0190e82a weather: Move some functions around into more logical location.
Matti Hamalainen <ccr@tnsp.org>
parents: 499
diff changeset
257
edbc0190e82a weather: Move some functions around into more logical location.
Matti Hamalainen <ccr@tnsp.org>
parents: 499
diff changeset
258 if {[expr [clock seconds] - $uvals(vtime)] < 3600} {
edbc0190e82a weather: Move some functions around into more logical location.
Matti Hamalainen <ccr@tnsp.org>
parents: 499
diff changeset
259 set uvals(ctime) [clock format $uvals(vtime) -format "%H:%M"]
edbc0190e82a weather: Move some functions around into more logical location.
Matti Hamalainen <ccr@tnsp.org>
parents: 499
diff changeset
260 } else {
edbc0190e82a weather: Move some functions around into more logical location.
Matti Hamalainen <ccr@tnsp.org>
parents: 499
diff changeset
261 set uvals(ctime) [clock format $uvals(vtime) -format "%H:%M (%d.%m.%Y)"]
edbc0190e82a weather: Move some functions around into more logical location.
Matti Hamalainen <ccr@tnsp.org>
parents: 499
diff changeset
262 }
edbc0190e82a weather: Move some functions around into more logical location.
Matti Hamalainen <ccr@tnsp.org>
parents: 499
diff changeset
263
edbc0190e82a weather: Move some functions around into more logical location.
Matti Hamalainen <ccr@tnsp.org>
parents: 499
diff changeset
264 set astr ""
edbc0190e82a weather: Move some functions around into more logical location.
Matti Hamalainen <ccr@tnsp.org>
parents: 499
diff changeset
265 foreach aitem $umsg {
edbc0190e82a weather: Move some functions around into more logical location.
Matti Hamalainen <ccr@tnsp.org>
parents: 499
diff changeset
266 set atmp $aitem
edbc0190e82a weather: Move some functions around into more logical location.
Matti Hamalainen <ccr@tnsp.org>
parents: 499
diff changeset
267 foreach {akey aval} [array get uvals] {
edbc0190e82a weather: Move some functions around into more logical location.
Matti Hamalainen <ccr@tnsp.org>
parents: 499
diff changeset
268 if {$aval != ""} {
edbc0190e82a weather: Move some functions around into more logical location.
Matti Hamalainen <ccr@tnsp.org>
parents: 499
diff changeset
269 set atmp [string map [list "@${akey}@" $aval] $atmp]
edbc0190e82a weather: Move some functions around into more logical location.
Matti Hamalainen <ccr@tnsp.org>
parents: 499
diff changeset
270 }
edbc0190e82a weather: Move some functions around into more logical location.
Matti Hamalainen <ccr@tnsp.org>
parents: 499
diff changeset
271 }
edbc0190e82a weather: Move some functions around into more logical location.
Matti Hamalainen <ccr@tnsp.org>
parents: 499
diff changeset
272 if {$atmp != $aitem || [string first "@" $aitem] < 0} {
edbc0190e82a weather: Move some functions around into more logical location.
Matti Hamalainen <ccr@tnsp.org>
parents: 499
diff changeset
273 append astr $atmp
edbc0190e82a weather: Move some functions around into more logical location.
Matti Hamalainen <ccr@tnsp.org>
parents: 499
diff changeset
274 }
edbc0190e82a weather: Move some functions around into more logical location.
Matti Hamalainen <ccr@tnsp.org>
parents: 499
diff changeset
275 }
edbc0190e82a weather: Move some functions around into more logical location.
Matti Hamalainen <ccr@tnsp.org>
parents: 499
diff changeset
276
edbc0190e82a weather: Move some functions around into more logical location.
Matti Hamalainen <ccr@tnsp.org>
parents: 499
diff changeset
277 return $astr
edbc0190e82a weather: Move some functions around into more logical location.
Matti Hamalainen <ccr@tnsp.org>
parents: 499
diff changeset
278 }
edbc0190e82a weather: Move some functions around into more logical location.
Matti Hamalainen <ccr@tnsp.org>
parents: 499
diff changeset
279
edbc0190e82a weather: Move some functions around into more logical location.
Matti Hamalainen <ccr@tnsp.org>
parents: 499
diff changeset
280
edbc0190e82a weather: Move some functions around into more logical location.
Matti Hamalainen <ccr@tnsp.org>
parents: 499
diff changeset
281 # Get data by location key
538
f07c972e269a weather: Refactor much of the messages system to match the quotedb one.
Matti Hamalainen <ccr@tnsp.org>
parents: 537
diff changeset
282 proc weather_get_str_by_key {ukey} {
535
edbc0190e82a weather: Move some functions around into more logical location.
Matti Hamalainen <ccr@tnsp.org>
parents: 499
diff changeset
283 global weather_data weather_msg_result
edbc0190e82a weather: Move some functions around into more logical location.
Matti Hamalainen <ccr@tnsp.org>
parents: 499
diff changeset
284 return [weather_get_str $weather_data($ukey) $weather_msg_result]
edbc0190e82a weather: Move some functions around into more logical location.
Matti Hamalainen <ccr@tnsp.org>
parents: 499
diff changeset
285 }
edbc0190e82a weather: Move some functions around into more logical location.
Matti Hamalainen <ccr@tnsp.org>
parents: 499
diff changeset
286
edbc0190e82a weather: Move some functions around into more logical location.
Matti Hamalainen <ccr@tnsp.org>
parents: 499
diff changeset
287
edbc0190e82a weather: Move some functions around into more logical location.
Matti Hamalainen <ccr@tnsp.org>
parents: 499
diff changeset
288 #-------------------------------------------------------------------------
171
5434903331df weather: Add some comments.
Matti Hamalainen <ccr@tnsp.org>
parents: 167
diff changeset
289 # Script initialization
5434903331df weather: Add some comments.
Matti Hamalainen <ccr@tnsp.org>
parents: 167
diff changeset
290 #-------------------------------------------------------------------------
5434903331df weather: Add some comments.
Matti Hamalainen <ccr@tnsp.org>
parents: 167
diff changeset
291
153
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
292 if {![info exists weather_data]} {
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
293 array set weather_data {}
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
294 }
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
295
163
bee5cd89d41c weather: Moar work on getting the frontend script code up and running.
Matti Hamalainen <ccr@tnsp.org>
parents: 161
diff changeset
296 if {![info exists weather_aliases]} {
bee5cd89d41c weather: Moar work on getting the frontend script code up and running.
Matti Hamalainen <ccr@tnsp.org>
parents: 161
diff changeset
297 array set weather_aliases {}
bee5cd89d41c weather: Moar work on getting the frontend script code up and running.
Matti Hamalainen <ccr@tnsp.org>
parents: 161
diff changeset
298 }
bee5cd89d41c weather: Moar work on getting the frontend script code up and running.
Matti Hamalainen <ccr@tnsp.org>
parents: 161
diff changeset
299
153
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
300 if {[info exists weather_running]} {
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
301 set weather_last [expr [clock seconds] - $weather_running]
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
302 } else {
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
303 set weather_last -1
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
304 }
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
305
163
bee5cd89d41c weather: Moar work on getting the frontend script code up and running.
Matti Hamalainen <ccr@tnsp.org>
parents: 161
diff changeset
306 weather_log "Loading aliases."
bee5cd89d41c weather: Moar work on getting the frontend script code up and running.
Matti Hamalainen <ccr@tnsp.org>
parents: 161
diff changeset
307 weather_load_aliases
bee5cd89d41c weather: Moar work on getting the frontend script code up and running.
Matti Hamalainen <ccr@tnsp.org>
parents: 161
diff changeset
308
153
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
309 if {$weather_last < 0 || $weather_last > [expr $weather_check_period * 60]} {
364
3b67c66fe0dc weather: Add debugging prints.
Matti Hamalainen <ccr@tnsp.org>
parents: 360
diff changeset
310 weather_log "Starting weather update timer."
153
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
311 weather_exec
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
312 } else {
364
3b67c66fe0dc weather: Add debugging prints.
Matti Hamalainen <ccr@tnsp.org>
parents: 360
diff changeset
313 weather_log "Continuing weather updates."
153
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
314 weather_update
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
315 }
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
316
163
bee5cd89d41c weather: Moar work on getting the frontend script code up and running.
Matti Hamalainen <ccr@tnsp.org>
parents: 161
diff changeset
317
153
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
318 #-------------------------------------------------------------------------
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
319 proc weather_cmd {unick uhand uchan uargs upublic} {
163
bee5cd89d41c weather: Moar work on getting the frontend script code up and running.
Matti Hamalainen <ccr@tnsp.org>
parents: 161
diff changeset
320 global weather_default_locations weather_data weather_max_results weather_aliases
538
f07c972e269a weather: Refactor much of the messages system to match the quotedb one.
Matti Hamalainen <ccr@tnsp.org>
parents: 537
diff changeset
321 global weather_msg_list_station weather_msg_result weather_messages
163
bee5cd89d41c weather: Moar work on getting the frontend script code up and running.
Matti Hamalainen <ccr@tnsp.org>
parents: 161
diff changeset
322
153
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
323 # Check and handle arguments
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
324 set rarglist [::textutil::split::splitx $uargs {\s+}]
453
c69368f97c10 weather: Rename a variable to be more descriptive.
Matti Hamalainen <ccr@tnsp.org>
parents: 451
diff changeset
325 set rcmd [lindex $rarglist 0]
153
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
326
453
c69368f97c10 weather: Rename a variable to be more descriptive.
Matti Hamalainen <ccr@tnsp.org>
parents: 451
diff changeset
327 if {$rcmd == "?" || $rcmd == "help" || $rcmd == "apua"} {
540
3174701325c0 weather: Fixes to the help.
Matti Hamalainen <ccr@tnsp.org>
parents: 538
diff changeset
328 foreach ukey $weather_messages(usage_full) {
3174701325c0 weather: Fixes to the help.
Matti Hamalainen <ccr@tnsp.org>
parents: 538
diff changeset
329 weather_msg $upublic $unick $uchan $ukey
538
f07c972e269a weather: Refactor much of the messages system to match the quotedb one.
Matti Hamalainen <ccr@tnsp.org>
parents: 537
diff changeset
330 }
153
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
331 return 0
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
332 }
217
67018e353536 weather: Add new sub-command for listing measurement stations matching given name pattern.
Matti Hamalainen <ccr@tnsp.org>
parents: 215
diff changeset
333
453
c69368f97c10 weather: Rename a variable to be more descriptive.
Matti Hamalainen <ccr@tnsp.org>
parents: 451
diff changeset
334 if {$rcmd == "asemat" || $rcmd == "stations"} {
217
67018e353536 weather: Add new sub-command for listing measurement stations matching given name pattern.
Matti Hamalainen <ccr@tnsp.org>
parents: 215
diff changeset
335 # List stations/locations matching the given pattern
67018e353536 weather: Add new sub-command for listing measurement stations matching given name pattern.
Matti Hamalainen <ccr@tnsp.org>
parents: 215
diff changeset
336 if {[llength $rarglist] < 2} {
538
f07c972e269a weather: Refactor much of the messages system to match the quotedb one.
Matti Hamalainen <ccr@tnsp.org>
parents: 537
diff changeset
337 weather_msg $upublic $unick $uchan "usage_stations"
217
67018e353536 weather: Add new sub-command for listing measurement stations matching given name pattern.
Matti Hamalainen <ccr@tnsp.org>
parents: 215
diff changeset
338 return 0
67018e353536 weather: Add new sub-command for listing measurement stations matching given name pattern.
Matti Hamalainen <ccr@tnsp.org>
parents: 215
diff changeset
339 }
67018e353536 weather: Add new sub-command for listing measurement stations matching given name pattern.
Matti Hamalainen <ccr@tnsp.org>
parents: 215
diff changeset
340
453
c69368f97c10 weather: Rename a variable to be more descriptive.
Matti Hamalainen <ccr@tnsp.org>
parents: 451
diff changeset
341 set rmatch [join [lrange $rarglist 1 end] " "]
217
67018e353536 weather: Add new sub-command for listing measurement stations matching given name pattern.
Matti Hamalainen <ccr@tnsp.org>
parents: 215
diff changeset
342 set result {}
67018e353536 weather: Add new sub-command for listing measurement stations matching given name pattern.
Matti Hamalainen <ccr@tnsp.org>
parents: 215
diff changeset
343
67018e353536 weather: Add new sub-command for listing measurement stations matching given name pattern.
Matti Hamalainen <ccr@tnsp.org>
parents: 215
diff changeset
344 foreach {ukey uvalue} [array get weather_data] {
453
c69368f97c10 weather: Rename a variable to be more descriptive.
Matti Hamalainen <ccr@tnsp.org>
parents: 451
diff changeset
345 if {![string match "w_*" $ukey] && [string match -nocase "*${rmatch}*" $ukey]} {
421
0f7524550aa2 weather: Cosmetics, stray whitespace.
Matti Hamalainen <ccr@tnsp.org>
parents: 419
diff changeset
346 lappend result [weather_get_str $uvalue $weather_msg_list_station]
217
67018e353536 weather: Add new sub-command for listing measurement stations matching given name pattern.
Matti Hamalainen <ccr@tnsp.org>
parents: 215
diff changeset
347 }
67018e353536 weather: Add new sub-command for listing measurement stations matching given name pattern.
Matti Hamalainen <ccr@tnsp.org>
parents: 215
diff changeset
348 }
67018e353536 weather: Add new sub-command for listing measurement stations matching given name pattern.
Matti Hamalainen <ccr@tnsp.org>
parents: 215
diff changeset
349
543
a513b98f2a37 weather: Improve alias handling and do some work on stations listing.
Matti Hamalainen <ccr@tnsp.org>
parents: 541
diff changeset
350 if {[llength $result] > 0} {
a513b98f2a37 weather: Improve alias handling and do some work on stations listing.
Matti Hamalainen <ccr@tnsp.org>
parents: 541
diff changeset
351 set res ""
a513b98f2a37 weather: Improve alias handling and do some work on stations listing.
Matti Hamalainen <ccr@tnsp.org>
parents: 541
diff changeset
352 if {[llength $result] > 10} {
a513b98f2a37 weather: Improve alias handling and do some work on stations listing.
Matti Hamalainen <ccr@tnsp.org>
parents: 541
diff changeset
353 set res [weather_qm "stations_limit"]
a513b98f2a37 weather: Improve alias handling and do some work on stations listing.
Matti Hamalainen <ccr@tnsp.org>
parents: 541
diff changeset
354 }
a513b98f2a37 weather: Improve alias handling and do some work on stations listing.
Matti Hamalainen <ccr@tnsp.org>
parents: 541
diff changeset
355 append res [join [lrange $result 0 10] " ; "]
a513b98f2a37 weather: Improve alias handling and do some work on stations listing.
Matti Hamalainen <ccr@tnsp.org>
parents: 541
diff changeset
356 } else {
a513b98f2a37 weather: Improve alias handling and do some work on stations listing.
Matti Hamalainen <ccr@tnsp.org>
parents: 541
diff changeset
357 set res [weather_qm "stations_no_matches"]
a513b98f2a37 weather: Improve alias handling and do some work on stations listing.
Matti Hamalainen <ccr@tnsp.org>
parents: 541
diff changeset
358 }
538
f07c972e269a weather: Refactor much of the messages system to match the quotedb one.
Matti Hamalainen <ccr@tnsp.org>
parents: 537
diff changeset
359 weather_msg $upublic $unick $uchan "stations_list" [list $res]
217
67018e353536 weather: Add new sub-command for listing measurement stations matching given name pattern.
Matti Hamalainen <ccr@tnsp.org>
parents: 215
diff changeset
360 return 0
453
c69368f97c10 weather: Rename a variable to be more descriptive.
Matti Hamalainen <ccr@tnsp.org>
parents: 451
diff changeset
361 } elseif {$rcmd == "lahin" || $rcmd == "lähin" || $rcmd == "closest" || $rcmd == "nearest"} {
430
8efbb045d44d weather: Implement searching for nearest of measurement stations based on given lat/long coordinates.
Matti Hamalainen <ccr@tnsp.org>
parents: 429
diff changeset
362 # List stations nearest to given coordinates
454
112f8afa2f04 weather: Improve "nearest" sub-command argument parsing.
Matti Hamalainen <ccr@tnsp.org>
parents: 453
diff changeset
363 set qargs [join [lrange $rarglist 1 end] ""]
455
511f1b28c8d1 weather: Improve parsing of GPS coordinates.
Matti Hamalainen <ccr@tnsp.org>
parents: 454
diff changeset
364 if {![regexp {@?(\d+|\d+\.\d+|\.\d+)\s*,\s*(\d+|\d+\.\d+|\.\d+)} $qargs -> d_lat d_lng]} {
538
f07c972e269a weather: Refactor much of the messages system to match the quotedb one.
Matti Hamalainen <ccr@tnsp.org>
parents: 537
diff changeset
365 weather_msg $upublic $unick $uchan "usage_nearest"
430
8efbb045d44d weather: Implement searching for nearest of measurement stations based on given lat/long coordinates.
Matti Hamalainen <ccr@tnsp.org>
parents: 429
diff changeset
366 return 0
8efbb045d44d weather: Implement searching for nearest of measurement stations based on given lat/long coordinates.
Matti Hamalainen <ccr@tnsp.org>
parents: 429
diff changeset
367 }
8efbb045d44d weather: Implement searching for nearest of measurement stations based on given lat/long coordinates.
Matti Hamalainen <ccr@tnsp.org>
parents: 429
diff changeset
368
8efbb045d44d weather: Implement searching for nearest of measurement stations based on given lat/long coordinates.
Matti Hamalainen <ccr@tnsp.org>
parents: 429
diff changeset
369 # Check argument types
437
e28c3347a948 Backed out changeset 3c816fdc302f "great circle distance", for now.
Matti Hamalainen <ccr@tnsp.org>
parents: 436
diff changeset
370 if {![string is double -strict $d_lat] || ![string is double -strict $d_lng]} {
538
f07c972e269a weather: Refactor much of the messages system to match the quotedb one.
Matti Hamalainen <ccr@tnsp.org>
parents: 537
diff changeset
371 weather_msg $upublic $unick $uchan "nearest_invalid"
430
8efbb045d44d weather: Implement searching for nearest of measurement stations based on given lat/long coordinates.
Matti Hamalainen <ccr@tnsp.org>
parents: 429
diff changeset
372 return 0
8efbb045d44d weather: Implement searching for nearest of measurement stations based on given lat/long coordinates.
Matti Hamalainen <ccr@tnsp.org>
parents: 429
diff changeset
373 }
8efbb045d44d weather: Implement searching for nearest of measurement stations based on given lat/long coordinates.
Matti Hamalainen <ccr@tnsp.org>
parents: 429
diff changeset
374
8efbb045d44d weather: Implement searching for nearest of measurement stations based on given lat/long coordinates.
Matti Hamalainen <ccr@tnsp.org>
parents: 429
diff changeset
375 # Calculate distances between given coordinates for each location
8efbb045d44d weather: Implement searching for nearest of measurement stations based on given lat/long coordinates.
Matti Hamalainen <ccr@tnsp.org>
parents: 429
diff changeset
376 set result {}
8efbb045d44d weather: Implement searching for nearest of measurement stations based on given lat/long coordinates.
Matti Hamalainen <ccr@tnsp.org>
parents: 429
diff changeset
377 foreach {ukey uvalue} [array get weather_data] {
8efbb045d44d weather: Implement searching for nearest of measurement stations based on given lat/long coordinates.
Matti Hamalainen <ccr@tnsp.org>
parents: 429
diff changeset
378 if {![string match "w_*" $ukey]} {
437
e28c3347a948 Backed out changeset 3c816fdc302f "great circle distance", for now.
Matti Hamalainen <ccr@tnsp.org>
parents: 436
diff changeset
379 set delta_lat [expr {$d_lat - [lindex $uvalue 2]}]
e28c3347a948 Backed out changeset 3c816fdc302f "great circle distance", for now.
Matti Hamalainen <ccr@tnsp.org>
parents: 436
diff changeset
380 set delta_lng [expr {$d_lng - [lindex $uvalue 3]}]
e28c3347a948 Backed out changeset 3c816fdc302f "great circle distance", for now.
Matti Hamalainen <ccr@tnsp.org>
parents: 436
diff changeset
381 set dist [expr { sqrt($delta_lat * $delta_lat + $delta_lng * $delta_lng) }]
430
8efbb045d44d weather: Implement searching for nearest of measurement stations based on given lat/long coordinates.
Matti Hamalainen <ccr@tnsp.org>
parents: 429
diff changeset
382 lappend result [list $ukey $dist]
8efbb045d44d weather: Implement searching for nearest of measurement stations based on given lat/long coordinates.
Matti Hamalainen <ccr@tnsp.org>
parents: 429
diff changeset
383 }
8efbb045d44d weather: Implement searching for nearest of measurement stations based on given lat/long coordinates.
Matti Hamalainen <ccr@tnsp.org>
parents: 429
diff changeset
384 }
8efbb045d44d weather: Implement searching for nearest of measurement stations based on given lat/long coordinates.
Matti Hamalainen <ccr@tnsp.org>
parents: 429
diff changeset
385
8efbb045d44d weather: Implement searching for nearest of measurement stations based on given lat/long coordinates.
Matti Hamalainen <ccr@tnsp.org>
parents: 429
diff changeset
386 # Sort the list by distance
8efbb045d44d weather: Implement searching for nearest of measurement stations based on given lat/long coordinates.
Matti Hamalainen <ccr@tnsp.org>
parents: 429
diff changeset
387 set usorted [lsort -real -index 1 $result]
8efbb045d44d weather: Implement searching for nearest of measurement stations based on given lat/long coordinates.
Matti Hamalainen <ccr@tnsp.org>
parents: 429
diff changeset
388
8efbb045d44d weather: Implement searching for nearest of measurement stations based on given lat/long coordinates.
Matti Hamalainen <ccr@tnsp.org>
parents: 429
diff changeset
389 # Create a result list for few best/first matches
8efbb045d44d weather: Implement searching for nearest of measurement stations based on given lat/long coordinates.
Matti Hamalainen <ccr@tnsp.org>
parents: 429
diff changeset
390 set uresult {}
8efbb045d44d weather: Implement searching for nearest of measurement stations based on given lat/long coordinates.
Matti Hamalainen <ccr@tnsp.org>
parents: 429
diff changeset
391 foreach {uval} [lrange $usorted 0 2] {
540
3174701325c0 weather: Fixes to the help.
Matti Hamalainen <ccr@tnsp.org>
parents: 538
diff changeset
392 lappend uresult [weather_get_str $weather_data([lindex $uval 0]) $weather_msg_list_station]
430
8efbb045d44d weather: Implement searching for nearest of measurement stations based on given lat/long coordinates.
Matti Hamalainen <ccr@tnsp.org>
parents: 429
diff changeset
393 }
8efbb045d44d weather: Implement searching for nearest of measurement stations based on given lat/long coordinates.
Matti Hamalainen <ccr@tnsp.org>
parents: 429
diff changeset
394
8efbb045d44d weather: Implement searching for nearest of measurement stations based on given lat/long coordinates.
Matti Hamalainen <ccr@tnsp.org>
parents: 429
diff changeset
395 # Print out the result
8efbb045d44d weather: Implement searching for nearest of measurement stations based on given lat/long coordinates.
Matti Hamalainen <ccr@tnsp.org>
parents: 429
diff changeset
396 set res [join $uresult " ; "]
538
f07c972e269a weather: Refactor much of the messages system to match the quotedb one.
Matti Hamalainen <ccr@tnsp.org>
parents: 537
diff changeset
397 weather_msg $upublic $unick $uchan "nearest_stations" [list $d_lat $d_lng $res]
430
8efbb045d44d weather: Implement searching for nearest of measurement stations based on given lat/long coordinates.
Matti Hamalainen <ccr@tnsp.org>
parents: 429
diff changeset
398 return 0
453
c69368f97c10 weather: Rename a variable to be more descriptive.
Matti Hamalainen <ccr@tnsp.org>
parents: 451
diff changeset
399 } elseif {$rcmd == "vakio" || $rcmd == "default" || $rcmd == "vakiot" || $rcmd == "defaults"} {
217
67018e353536 weather: Add new sub-command for listing measurement stations matching given name pattern.
Matti Hamalainen <ccr@tnsp.org>
parents: 215
diff changeset
400 # List or set the default weather station name patterns for this user
67018e353536 weather: Add new sub-command for listing measurement stations matching given name pattern.
Matti Hamalainen <ccr@tnsp.org>
parents: 215
diff changeset
401
171
5434903331df weather: Add some comments.
Matti Hamalainen <ccr@tnsp.org>
parents: 167
diff changeset
402 # Access check
536
1044fbacb8a7 weather: Use utl_valid_user instead of weather_valid_user.
Matti Hamalainen <ccr@tnsp.org>
parents: 535
diff changeset
403 if {![utl_valid_user $uhand]} {
538
f07c972e269a weather: Refactor much of the messages system to match the quotedb one.
Matti Hamalainen <ccr@tnsp.org>
parents: 537
diff changeset
404 weather_msg $upublic $unick $uchan "user_not_known"
163
bee5cd89d41c weather: Moar work on getting the frontend script code up and running.
Matti Hamalainen <ccr@tnsp.org>
parents: 161
diff changeset
405 return 0
bee5cd89d41c weather: Moar work on getting the frontend script code up and running.
Matti Hamalainen <ccr@tnsp.org>
parents: 161
diff changeset
406 }
421
0f7524550aa2 weather: Cosmetics, stray whitespace.
Matti Hamalainen <ccr@tnsp.org>
parents: 419
diff changeset
407
163
bee5cd89d41c weather: Moar work on getting the frontend script code up and running.
Matti Hamalainen <ccr@tnsp.org>
parents: 161
diff changeset
408 if {[llength $rarglist] == 1} {
bee5cd89d41c weather: Moar work on getting the frontend script code up and running.
Matti Hamalainen <ccr@tnsp.org>
parents: 161
diff changeset
409 set lista [getuser $uhand XTRA "weather_locations"]
bee5cd89d41c weather: Moar work on getting the frontend script code up and running.
Matti Hamalainen <ccr@tnsp.org>
parents: 161
diff changeset
410 if {$lista == "" || $lista == "{}"} {
538
f07c972e269a weather: Refactor much of the messages system to match the quotedb one.
Matti Hamalainen <ccr@tnsp.org>
parents: 537
diff changeset
411 weather_msg $upublic $unick $uchan "def_not_set" [list $uhand]
163
bee5cd89d41c weather: Moar work on getting the frontend script code up and running.
Matti Hamalainen <ccr@tnsp.org>
parents: 161
diff changeset
412 } else {
bee5cd89d41c weather: Moar work on getting the frontend script code up and running.
Matti Hamalainen <ccr@tnsp.org>
parents: 161
diff changeset
413 set lista [join [split $lista ";"] " ; "]
538
f07c972e269a weather: Refactor much of the messages system to match the quotedb one.
Matti Hamalainen <ccr@tnsp.org>
parents: 537
diff changeset
414 weather_msg $upublic $unick $uchan "def_value" [list $uhand $lista]
163
bee5cd89d41c weather: Moar work on getting the frontend script code up and running.
Matti Hamalainen <ccr@tnsp.org>
parents: 161
diff changeset
415 }
bee5cd89d41c weather: Moar work on getting the frontend script code up and running.
Matti Hamalainen <ccr@tnsp.org>
parents: 161
diff changeset
416 } else {
bee5cd89d41c weather: Moar work on getting the frontend script code up and running.
Matti Hamalainen <ccr@tnsp.org>
parents: 161
diff changeset
417 # Split the list of desired locations
bee5cd89d41c weather: Moar work on getting the frontend script code up and running.
Matti Hamalainen <ccr@tnsp.org>
parents: 161
diff changeset
418 set qlist [::textutil::split::splitx [join [lrange $rarglist 1 end] " "] {\s*\;\s*}]
bee5cd89d41c weather: Moar work on getting the frontend script code up and running.
Matti Hamalainen <ccr@tnsp.org>
parents: 161
diff changeset
419 set nlist [lsearch -all -inline -not -exact $qlist ""]
bee5cd89d41c weather: Moar work on getting the frontend script code up and running.
Matti Hamalainen <ccr@tnsp.org>
parents: 161
diff changeset
420
bee5cd89d41c weather: Moar work on getting the frontend script code up and running.
Matti Hamalainen <ccr@tnsp.org>
parents: 161
diff changeset
421 if {[llength $nlist] > 0} {
538
f07c972e269a weather: Refactor much of the messages system to match the quotedb one.
Matti Hamalainen <ccr@tnsp.org>
parents: 537
diff changeset
422 weather_msg $upublic $unick $uchan "def_set_to" [list [join $nlist " ; "]]
163
bee5cd89d41c weather: Moar work on getting the frontend script code up and running.
Matti Hamalainen <ccr@tnsp.org>
parents: 161
diff changeset
423 setuser $uhand XTRA "weather_locations" [join $nlist ";"]
bee5cd89d41c weather: Moar work on getting the frontend script code up and running.
Matti Hamalainen <ccr@tnsp.org>
parents: 161
diff changeset
424 } else {
538
f07c972e269a weather: Refactor much of the messages system to match the quotedb one.
Matti Hamalainen <ccr@tnsp.org>
parents: 537
diff changeset
425 weather_msg $upublic $unick $uchan "usage_def_set"
163
bee5cd89d41c weather: Moar work on getting the frontend script code up and running.
Matti Hamalainen <ccr@tnsp.org>
parents: 161
diff changeset
426 }
bee5cd89d41c weather: Moar work on getting the frontend script code up and running.
Matti Hamalainen <ccr@tnsp.org>
parents: 161
diff changeset
427 }
bee5cd89d41c weather: Moar work on getting the frontend script code up and running.
Matti Hamalainen <ccr@tnsp.org>
parents: 161
diff changeset
428 return 0
453
c69368f97c10 weather: Rename a variable to be more descriptive.
Matti Hamalainen <ccr@tnsp.org>
parents: 451
diff changeset
429 } elseif {$rcmd == "alias"} {
171
5434903331df weather: Add some comments.
Matti Hamalainen <ccr@tnsp.org>
parents: 167
diff changeset
430 # Alias a string to another, only certain users have access (+n flag)
536
1044fbacb8a7 weather: Use utl_valid_user instead of weather_valid_user.
Matti Hamalainen <ccr@tnsp.org>
parents: 535
diff changeset
431 if {![utl_valid_user $uhand] || ![matchattr $uhand n]} {
538
f07c972e269a weather: Refactor much of the messages system to match the quotedb one.
Matti Hamalainen <ccr@tnsp.org>
parents: 537
diff changeset
432 weather_msg $upublic $unick $uchan "no_access"
153
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
433 return 0
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
434 }
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
435
163
bee5cd89d41c weather: Moar work on getting the frontend script code up and running.
Matti Hamalainen <ccr@tnsp.org>
parents: 161
diff changeset
436 set qlist [::textutil::split::splitx [join [lrange $rarglist 1 end] " "] {\s*=\s*}]
153
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
437 set nlist [lsearch -all -inline -not -exact $qlist ""]
163
bee5cd89d41c weather: Moar work on getting the frontend script code up and running.
Matti Hamalainen <ccr@tnsp.org>
parents: 161
diff changeset
438 if {[llength $nlist] < 2} {
538
f07c972e269a weather: Refactor much of the messages system to match the quotedb one.
Matti Hamalainen <ccr@tnsp.org>
parents: 537
diff changeset
439 weather_msg $upublic $unick $uchan "usage_alias"
163
bee5cd89d41c weather: Moar work on getting the frontend script code up and running.
Matti Hamalainen <ccr@tnsp.org>
parents: 161
diff changeset
440 return 0
bee5cd89d41c weather: Moar work on getting the frontend script code up and running.
Matti Hamalainen <ccr@tnsp.org>
parents: 161
diff changeset
441 }
421
0f7524550aa2 weather: Cosmetics, stray whitespace.
Matti Hamalainen <ccr@tnsp.org>
parents: 419
diff changeset
442
163
bee5cd89d41c weather: Moar work on getting the frontend script code up and running.
Matti Hamalainen <ccr@tnsp.org>
parents: 161
diff changeset
443 set ualias [lindex $nlist 0]
bee5cd89d41c weather: Moar work on getting the frontend script code up and running.
Matti Hamalainen <ccr@tnsp.org>
parents: 161
diff changeset
444 set uname [lindex $nlist 1]
543
a513b98f2a37 weather: Improve alias handling and do some work on stations listing.
Matti Hamalainen <ccr@tnsp.org>
parents: 541
diff changeset
445
a513b98f2a37 weather: Improve alias handling and do some work on stations listing.
Matti Hamalainen <ccr@tnsp.org>
parents: 541
diff changeset
446 if {[info exists weather_aliases($ualias)]} {
a513b98f2a37 weather: Improve alias handling and do some work on stations listing.
Matti Hamalainen <ccr@tnsp.org>
parents: 541
diff changeset
447 weather_msg $upublic $unick $uchan "alias_updated" [list $ualias $weather_aliases($ualias) $uname]
a513b98f2a37 weather: Improve alias handling and do some work on stations listing.
Matti Hamalainen <ccr@tnsp.org>
parents: 541
diff changeset
448 } else {
a513b98f2a37 weather: Improve alias handling and do some work on stations listing.
Matti Hamalainen <ccr@tnsp.org>
parents: 541
diff changeset
449 weather_msg $upublic $unick $uchan "alias_set" [list $ualias $uname]
a513b98f2a37 weather: Improve alias handling and do some work on stations listing.
Matti Hamalainen <ccr@tnsp.org>
parents: 541
diff changeset
450 }
a513b98f2a37 weather: Improve alias handling and do some work on stations listing.
Matti Hamalainen <ccr@tnsp.org>
parents: 541
diff changeset
451
163
bee5cd89d41c weather: Moar work on getting the frontend script code up and running.
Matti Hamalainen <ccr@tnsp.org>
parents: 161
diff changeset
452 set weather_aliases($ualias) $uname
153
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
453
163
bee5cd89d41c weather: Moar work on getting the frontend script code up and running.
Matti Hamalainen <ccr@tnsp.org>
parents: 161
diff changeset
454 weather_save_aliases
153
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
455 return 0
453
c69368f97c10 weather: Rename a variable to be more descriptive.
Matti Hamalainen <ccr@tnsp.org>
parents: 451
diff changeset
456 } elseif {$rcmd == "unalias"} {
171
5434903331df weather: Add some comments.
Matti Hamalainen <ccr@tnsp.org>
parents: 167
diff changeset
457 # Remove one alias, only certain users have access (+n flag)
536
1044fbacb8a7 weather: Use utl_valid_user instead of weather_valid_user.
Matti Hamalainen <ccr@tnsp.org>
parents: 535
diff changeset
458 if {![utl_valid_user $uhand] || ![matchattr $uhand n]} {
538
f07c972e269a weather: Refactor much of the messages system to match the quotedb one.
Matti Hamalainen <ccr@tnsp.org>
parents: 537
diff changeset
459 weather_msg $upublic $unick $uchan "no_access"
161
2c9db9a29429 weather: More work, bugfixes.
Matti Hamalainen <ccr@tnsp.org>
parents: 157
diff changeset
460 return 0
2c9db9a29429 weather: More work, bugfixes.
Matti Hamalainen <ccr@tnsp.org>
parents: 157
diff changeset
461 }
2c9db9a29429 weather: More work, bugfixes.
Matti Hamalainen <ccr@tnsp.org>
parents: 157
diff changeset
462
163
bee5cd89d41c weather: Moar work on getting the frontend script code up and running.
Matti Hamalainen <ccr@tnsp.org>
parents: 161
diff changeset
463 if {[llength $rarglist] < 2} {
538
f07c972e269a weather: Refactor much of the messages system to match the quotedb one.
Matti Hamalainen <ccr@tnsp.org>
parents: 537
diff changeset
464 weather_msg $upublic $unick $uchan "usage_unalias"
163
bee5cd89d41c weather: Moar work on getting the frontend script code up and running.
Matti Hamalainen <ccr@tnsp.org>
parents: 161
diff changeset
465 return 0
161
2c9db9a29429 weather: More work, bugfixes.
Matti Hamalainen <ccr@tnsp.org>
parents: 157
diff changeset
466 }
163
bee5cd89d41c weather: Moar work on getting the frontend script code up and running.
Matti Hamalainen <ccr@tnsp.org>
parents: 161
diff changeset
467
bee5cd89d41c weather: Moar work on getting the frontend script code up and running.
Matti Hamalainen <ccr@tnsp.org>
parents: 161
diff changeset
468 set ualias [lindex $rarglist 1]
543
a513b98f2a37 weather: Improve alias handling and do some work on stations listing.
Matti Hamalainen <ccr@tnsp.org>
parents: 541
diff changeset
469
a513b98f2a37 weather: Improve alias handling and do some work on stations listing.
Matti Hamalainen <ccr@tnsp.org>
parents: 541
diff changeset
470 if {![info exists weather_aliases($ualias)]} {
a513b98f2a37 weather: Improve alias handling and do some work on stations listing.
Matti Hamalainen <ccr@tnsp.org>
parents: 541
diff changeset
471 weather_msg $upublic $unick $uchan "alias_not_exist" [list $ualias]
a513b98f2a37 weather: Improve alias handling and do some work on stations listing.
Matti Hamalainen <ccr@tnsp.org>
parents: 541
diff changeset
472 return 0
a513b98f2a37 weather: Improve alias handling and do some work on stations listing.
Matti Hamalainen <ccr@tnsp.org>
parents: 541
diff changeset
473 }
a513b98f2a37 weather: Improve alias handling and do some work on stations listing.
Matti Hamalainen <ccr@tnsp.org>
parents: 541
diff changeset
474
538
f07c972e269a weather: Refactor much of the messages system to match the quotedb one.
Matti Hamalainen <ccr@tnsp.org>
parents: 537
diff changeset
475 weather_msg $upublic $unick $uchan "alias_unset" [list $ualias $weather_aliases($ualias)]
163
bee5cd89d41c weather: Moar work on getting the frontend script code up and running.
Matti Hamalainen <ccr@tnsp.org>
parents: 161
diff changeset
476 unset weather_aliases($ualias)
543
a513b98f2a37 weather: Improve alias handling and do some work on stations listing.
Matti Hamalainen <ccr@tnsp.org>
parents: 541
diff changeset
477 weather_save_aliases
163
bee5cd89d41c weather: Moar work on getting the frontend script code up and running.
Matti Hamalainen <ccr@tnsp.org>
parents: 161
diff changeset
478
bee5cd89d41c weather: Moar work on getting the frontend script code up and running.
Matti Hamalainen <ccr@tnsp.org>
parents: 161
diff changeset
479 weather_save_aliases
161
2c9db9a29429 weather: More work, bugfixes.
Matti Hamalainen <ccr@tnsp.org>
parents: 157
diff changeset
480 return 0
453
c69368f97c10 weather: Rename a variable to be more descriptive.
Matti Hamalainen <ccr@tnsp.org>
parents: 451
diff changeset
481 } elseif {$rcmd == "list"} {
174
d94be9a1be6a weather: Add support for listing currently defined aliases.
Matti Hamalainen <ccr@tnsp.org>
parents: 173
diff changeset
482 # List all currently defined aliases
d94be9a1be6a weather: Add support for listing currently defined aliases.
Matti Hamalainen <ccr@tnsp.org>
parents: 173
diff changeset
483 set ulist {}
543
a513b98f2a37 weather: Improve alias handling and do some work on stations listing.
Matti Hamalainen <ccr@tnsp.org>
parents: 541
diff changeset
484 set ulistitem [weather_qm "alias_item"]
a513b98f2a37 weather: Improve alias handling and do some work on stations listing.
Matti Hamalainen <ccr@tnsp.org>
parents: 541
diff changeset
485 set ulistsep [weather_qm "alias_list_sep"]
a513b98f2a37 weather: Improve alias handling and do some work on stations listing.
Matti Hamalainen <ccr@tnsp.org>
parents: 541
diff changeset
486
174
d94be9a1be6a weather: Add support for listing currently defined aliases.
Matti Hamalainen <ccr@tnsp.org>
parents: 173
diff changeset
487 foreach {ukey uvalue} [array get weather_aliases] {
543
a513b98f2a37 weather: Improve alias handling and do some work on stations listing.
Matti Hamalainen <ccr@tnsp.org>
parents: 541
diff changeset
488 lappend ulist [utl_str_map_values $ulistitem [list $ukey $uvalue]]
174
d94be9a1be6a weather: Add support for listing currently defined aliases.
Matti Hamalainen <ccr@tnsp.org>
parents: 173
diff changeset
489 }
543
a513b98f2a37 weather: Improve alias handling and do some work on stations listing.
Matti Hamalainen <ccr@tnsp.org>
parents: 541
diff changeset
490
a513b98f2a37 weather: Improve alias handling and do some work on stations listing.
Matti Hamalainen <ccr@tnsp.org>
parents: 541
diff changeset
491 weather_msg $upublic $unick $uchan "alias_list" [list [join $ulist $ulistsep]]
174
d94be9a1be6a weather: Add support for listing currently defined aliases.
Matti Hamalainen <ccr@tnsp.org>
parents: 173
diff changeset
492 return 0
161
2c9db9a29429 weather: More work, bugfixes.
Matti Hamalainen <ccr@tnsp.org>
parents: 157
diff changeset
493 }
2c9db9a29429 weather: More work, bugfixes.
Matti Hamalainen <ccr@tnsp.org>
parents: 157
diff changeset
494
153
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
495 # Get args or default location(s)
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
496 set rargs [join $rarglist " "]
161
2c9db9a29429 weather: More work, bugfixes.
Matti Hamalainen <ccr@tnsp.org>
parents: 157
diff changeset
497 if {$rargs == "" && $uhand != "" && $uhand != "{}" && $uhand != "*"} {
153
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
498 set rargs [getuser $uhand XTRA "weather_locations"]
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
499 }
161
2c9db9a29429 weather: More work, bugfixes.
Matti Hamalainen <ccr@tnsp.org>
parents: 157
diff changeset
500 if {$rargs == ""} {
153
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
501 set rargs $weather_default_locations
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
502 }
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
503
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
504 # Handle argument list
156
a1f4c163e48c weather: Add max results limit.
Matti Hamalainen <ccr@tnsp.org>
parents: 153
diff changeset
505 set nresults 0
153
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
506 set rarglist [::textutil::split::splitx $rargs "\s*\;\s*"]
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
507 foreach rarg $rarglist {
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
508 if {$rarg == "min"} {
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
509 # Min temp
538
f07c972e269a weather: Refactor much of the messages system to match the quotedb one.
Matti Hamalainen <ccr@tnsp.org>
parents: 537
diff changeset
510 weather_msg $upublic $unick $uchan "temp_min" [list [weather_get_str_by_key "w_min"]]
156
a1f4c163e48c weather: Add max results limit.
Matti Hamalainen <ccr@tnsp.org>
parents: 153
diff changeset
511 incr nresults
153
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
512 } elseif {$rarg == "max"} {
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
513 # Max temp
538
f07c972e269a weather: Refactor much of the messages system to match the quotedb one.
Matti Hamalainen <ccr@tnsp.org>
parents: 537
diff changeset
514 weather_msg $upublic $unick $uchan "temp_max" [list [weather_get_str_by_key "w_max"]]
156
a1f4c163e48c weather: Add max results limit.
Matti Hamalainen <ccr@tnsp.org>
parents: 153
diff changeset
515 incr nresults
153
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
516 } elseif {$rarg == "minmax" || $rarg == "min max" || $rarg == "maxmin" || $rarg == "max min"} {
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
517 # Min & Max temps
538
f07c972e269a weather: Refactor much of the messages system to match the quotedb one.
Matti Hamalainen <ccr@tnsp.org>
parents: 537
diff changeset
518 weather_msg $upublic $unick $uchan "temp_minmax" [list [weather_get_str_by_key "w_min"] [weather_get_str_by_key "w_max"]]
156
a1f4c163e48c weather: Add max results limit.
Matti Hamalainen <ccr@tnsp.org>
parents: 153
diff changeset
519 incr nresults
153
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
520 } else {
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
521 # Location match
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
522 set ufound 0
163
bee5cd89d41c weather: Moar work on getting the frontend script code up and running.
Matti Hamalainen <ccr@tnsp.org>
parents: 161
diff changeset
523 set rarg [weather_get_alias $rarg]
153
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
524 foreach {ukey uvalue} [array get weather_data] {
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
525 if {![string match "w_*" $ukey] && [string match -nocase "*${rarg}*" $ukey]} {
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
526 if {[llength $uvalue] > 0} {
538
f07c972e269a weather: Refactor much of the messages system to match the quotedb one.
Matti Hamalainen <ccr@tnsp.org>
parents: 537
diff changeset
527 weather_smsg $upublic $unick $uchan [weather_get_str $uvalue $weather_msg_result]
156
a1f4c163e48c weather: Add max results limit.
Matti Hamalainen <ccr@tnsp.org>
parents: 153
diff changeset
528 incr nresults
153
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
529 } else {
538
f07c972e269a weather: Refactor much of the messages system to match the quotedb one.
Matti Hamalainen <ccr@tnsp.org>
parents: 537
diff changeset
530 weather_msg $upublic $unick $uchan "no_results" [list $ukey]
153
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
531 }
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
532 incr ufound
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
533 }
421
0f7524550aa2 weather: Cosmetics, stray whitespace.
Matti Hamalainen <ccr@tnsp.org>
parents: 419
diff changeset
534
0f7524550aa2 weather: Cosmetics, stray whitespace.
Matti Hamalainen <ccr@tnsp.org>
parents: 419
diff changeset
535 # Check for results limit
161
2c9db9a29429 weather: More work, bugfixes.
Matti Hamalainen <ccr@tnsp.org>
parents: 157
diff changeset
536 if {$nresults >= $weather_max_results} {
2c9db9a29429 weather: More work, bugfixes.
Matti Hamalainen <ccr@tnsp.org>
parents: 157
diff changeset
537 return 0
2c9db9a29429 weather: More work, bugfixes.
Matti Hamalainen <ccr@tnsp.org>
parents: 157
diff changeset
538 }
153
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
539 }
421
0f7524550aa2 weather: Cosmetics, stray whitespace.
Matti Hamalainen <ccr@tnsp.org>
parents: 419
diff changeset
540
153
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
541 if {$ufound == 0} {
538
f07c972e269a weather: Refactor much of the messages system to match the quotedb one.
Matti Hamalainen <ccr@tnsp.org>
parents: 537
diff changeset
542 weather_msg $upublic $unick $uchan "no_data_for_location" [list $rarg]
153
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
543 }
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
544 }
421
0f7524550aa2 weather: Cosmetics, stray whitespace.
Matti Hamalainen <ccr@tnsp.org>
parents: 419
diff changeset
545
163
bee5cd89d41c weather: Moar work on getting the frontend script code up and running.
Matti Hamalainen <ccr@tnsp.org>
parents: 161
diff changeset
546 # Check for results limit
156
a1f4c163e48c weather: Add max results limit.
Matti Hamalainen <ccr@tnsp.org>
parents: 153
diff changeset
547 if {$nresults >= $weather_max_results} {
a1f4c163e48c weather: Add max results limit.
Matti Hamalainen <ccr@tnsp.org>
parents: 153
diff changeset
548 return 0
a1f4c163e48c weather: Add max results limit.
Matti Hamalainen <ccr@tnsp.org>
parents: 153
diff changeset
549 }
153
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
550 }
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
551 return 0
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
552 }
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
553
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
554
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
555
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
556 #-------------------------------------------------------------------------
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
557 proc weather_cmd_pub {unick uhost uhand uchan uargs} {
220
03579553233b weather: Add setting for specifying channels where weather commands are available.
Matti Hamalainen <ccr@tnsp.org>
parents: 218
diff changeset
558 global weather_channels
03579553233b weather: Add setting for specifying channels where weather commands are available.
Matti Hamalainen <ccr@tnsp.org>
parents: 218
diff changeset
559
344
25fc5a2b42ae weather: Use utillib for matching enabled channels.
Matti Hamalainen <ccr@tnsp.org>
parents: 335
diff changeset
560 if {[utl_match_delim_list $weather_channels $uchan]} {
25fc5a2b42ae weather: Use utillib for matching enabled channels.
Matti Hamalainen <ccr@tnsp.org>
parents: 335
diff changeset
561 return [weather_cmd $unick $uhand $uchan $uargs 1]
220
03579553233b weather: Add setting for specifying channels where weather commands are available.
Matti Hamalainen <ccr@tnsp.org>
parents: 218
diff changeset
562 }
03579553233b weather: Add setting for specifying channels where weather commands are available.
Matti Hamalainen <ccr@tnsp.org>
parents: 218
diff changeset
563
03579553233b weather: Add setting for specifying channels where weather commands are available.
Matti Hamalainen <ccr@tnsp.org>
parents: 218
diff changeset
564 return 0
153
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
565 }
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
566
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
567 #-------------------------------------------------------------------------
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
568 proc weather_cmd_msg {unick uhost uhand uargs} {
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
569 return [weather_cmd $unick $uhand "PRIV" $uargs 0]
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
570 }
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
571
8b888a9f07df New script, weather.tcl. Needs backend stuff to be implemented.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
572 # end of script