What I found out to work is that: #set $timespan=$day(data_binding='my_binding') #set $obstype='myobs' $getattr($timespan,$obstype).max
To use that in a setting like in hilo.inc: #for $timespan in ($day(data_binding='my_binding'),$week(data_binding='my_binding'),...) <p>$getattr($timespan,'myobs').max</p> #end for If the time context is required, too, one can do it like in the old Seasons skin: #for $timespan,$timespanname in (($day(data_binding='my_binding'),'day'),($week(data_binding='my_binding'),'week'),...) <p class="hilo_$timespanname">$getattr($timespan,'myobs').max</p> #end for I hope that summary can inspire people who face similar problems. -- You received this message because you are subscribed to the Google Groups "weewx-user" group. To unsubscribe from this group and stop receiving emails from it, send an email to weewx-user+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/weewx-user/2a17b3bf-e008-4211-a64b-340bbb92487en%40googlegroups.com.